/* ============================================================
   CYANOTONE — Global Stylesheet
   Fair-Fusion B.V. · Eindhoven, The Netherlands
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --dark:          #102418;
  --navy:          #1e3a6e;
  --green:         #3d8a42;
  --green-bright:  #52b858;
  --green-light:   #edf7ee;
  --green-accent:  #92e09a;
  --text:          #1a2232;
  --muted:         #6b7280;
  --bg:            #f8f9fb;
  --white:         #ffffff;
  --border:        #e2e8f0;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(30,58,110,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 12px 40px rgba(30,58,110,0.14), 0 2px 8px rgba(0,0,0,0.08);
  --radius:     12px;
  --radius-lg:  18px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.9; }
}

/* Elements to animate: start hidden, reveal on scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.animate-delay-1 { transition-delay: 0.08s; }
.scroll-animate.animate-delay-2 { transition-delay: 0.16s; }
.scroll-animate.animate-delay-3 { transition-delay: 0.24s; }
.scroll-animate.animate-delay-4 { transition-delay: 0.32s; }
.scroll-animate.animate-delay-5 { transition-delay: 0.40s; }
.scroll-animate.animate-delay-6 { transition-delay: 0.48s; }

/* Keyframe version for non-scroll elements */
.animate {
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}


/* ---------- NAVIGATION ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* ---- Cyanotone brand logo ---- */
.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: #7a9a80;
  letter-spacing: 0.04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

/* Footer version */
footer .logo-name { color: rgba(255,255,255,0.92); }
footer .logo-sub  { color: rgba(255,255,255,0.40); }

/* ---- Product photos ---- */
.photo-hero {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(10,30,16,0.82) 0%, transparent 100%);
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.photo-full-bleed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}

.photo-full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-full-bleed:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: rgba(74, 124, 47, 0.07);
}

.nav-cta {
  background: var(--green-bright) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.01em;
  margin-left: 8px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s !important;
}

.nav-cta:hover {
  background: var(--green) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(106, 170, 53, 0.4) !important;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--bg); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--white);
  border-color: var(--green-bright);
}

.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(106, 170, 53, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.40);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ---------- HERO (home) ---------- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 120px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Radial glow behind text */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(82, 184, 88, 0.36) 0%, rgba(61, 138, 66, 0.10) 55%, transparent 75%);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

/* Ambient corner glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 184, 88, 0.16) 0%, transparent 65%);
  z-index: 0;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 213, 106, 0.12);
  color: var(--green-accent);
  border: 1px solid rgba(168, 213, 106, 0.30);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Glass card */
.hero-glass-card {
  display: inline-flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.glass-stat {
  padding: 22px 32px;
  text-align: center;
  position: relative;
}

.glass-stat + .glass-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.glass-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.glass-stat-value em {
  color: var(--green-accent);
  font-style: normal;
}

.glass-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  background: linear-gradient(140deg, #174d27 0%, #28924a 55%, #1d7040 100%);
  color: var(--white);
  padding: 88px 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle dot-grid overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: 0;
}

/* Large decorative ring top-right */
.page-hero::after {
  content: '';
  position: absolute;
  top: -110px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  z-index: 0;
}

.page-hero-ring {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  z-index: 0;
}

.page-hero-blob {
  position: absolute;
  bottom: 60px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 72px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
}

.page-hero-wave {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
}

/* ---------- STATS SECTION ---------- */
/* ---------- HERO MOLECULE ---------- */
.hero-molecule {
  position: absolute;
  bottom: 10px;
  right: 3%;
  width: 480px;
  height: 320px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='90'%3E%3Cpath d='M26 2L50 16V44L26 58L2 44V16L26 2ZM26 62L50 76V90L2 90V76L26 62Z' fill='none' stroke='%233d8a42' stroke-opacity='0.05' stroke-width='1.2'/%3E%3C/svg%3E");
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  padding: 24px 32px;
  text-align: center;
  position: relative;
}

.stat-block + .stat-block {
  border-left: 1px solid var(--border);
}

.stat-num {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.4s;
}

.stat-num em {
  color: var(--green-bright);
  font-style: normal;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ---------- SECTION SCAFFOLD ---------- */
section {
  padding: 96px 32px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
  font-weight: 400;
}

/* ---------- SCIENCE PROCESS STRIP ---------- */
.process-strip {
  background: linear-gradient(180deg, #f0faf2 0%, var(--white) 100%);
  border-bottom: 1px solid #d4edda;
  padding: 60px 32px;
}

.process-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}

.process-step {
  padding: 0 16px;
}

.process-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #c0e0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(61,138,66,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-step:hover .process-icon-wrap {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(61,138,66,0.18);
}

.process-step-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 5px;
}

.process-step-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.process-step-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.process-step-formula {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid #c0e0c8;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  opacity: 0.45;
}

.process-arrow svg {
  width: 28px;
  height: 28px;
}

.section-bg {
  background: var(--green-light);
}

.section-bg-white {
  background: var(--white);
}

/* ---------- FEATURE CARDS ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid transparent;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 30px 26px;
  transition: box-shadow 0.22s, transform 0.22s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead tr {
  background: transparent;
}

.compare-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.th-feature {
  background: var(--navy);
  color: var(--white);
  width: 33%;
}

.th-cyano {
  background: var(--green);
  color: var(--white);
  width: 34%;
}

.th-conv {
  background: #475569;
  color: var(--white);
  width: 33%;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) td.td-feature {
  background: #f5f6f8;
}

.compare-table tbody tr:nth-child(even) td.td-cyano {
  background: #edf7e4;
}

.compare-table tbody tr:nth-child(even) td.td-conv {
  background: #f8f8fa;
}

.compare-table td {
  padding: 16px 24px;
  font-size: 14px;
  vertical-align: middle;
}

.td-feature {
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}

.td-cyano {
  background: #f3fae9;
  color: var(--green);
  font-weight: 600;
}

.td-conv {
  background: var(--white);
  color: var(--muted);
}

.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
}

.badge-yes::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-weight: 600;
}

.badge-no::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e2e8f0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 3.5l5 5M8.5 3.5l-5 5' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--dark);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(74, 124, 47, 0.25) 0%, transparent 65%);
  z-index: 0;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ---------- PRICING CARDS ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.22s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border: 2px solid var(--green-bright);
  background: linear-gradient(160deg, #f4fbe8 0%, var(--white) 100%);
  box-shadow: 0 0 0 4px rgba(106, 170, 53, 0.10), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-bright);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(106, 170, 53, 0.35);
}

.pricing-vol {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.pricing-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  vertical-align: baseline;
}

.pricing-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- ORDER / CONTACT FORM ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.form-card > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106, 170, 53, 0.15);
}

.form-group textarea {
  height: 118px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
}

/* Pricing info box inside form */
.price-info-box {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #f0fae5;
  border: 1px solid #b6dea0;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* Success message */
.success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: #f0fae5;
  border: 1.5px solid var(--green);
  border-radius: 10px;
  padding: 18px 22px;
  color: var(--green);
  font-weight: 700;
  margin-top: 18px;
  font-size: 15px;
}

.success-msg.visible {
  display: flex;
}

/* ---------- PRODUCT PAGE ---------- */
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-visual {
  background: linear-gradient(145deg, var(--green-light), #ddefc8);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  border: 1px solid rgba(74, 124, 47, 0.15);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 124, 47, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.product-visual-icon {
  font-size: 72px;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.product-visual h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.product-visual p {
  font-size: 14px;
  color: #4a6c38;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

.product-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.vtag {
  background: rgba(74, 124, 47, 0.12);
  color: var(--green);
  border: 1px solid rgba(74, 124, 47, 0.22);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.03em;
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow 0.2s;
}

.spec-item:hover {
  box-shadow: var(--shadow-sm);
}

.spec-item dt {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 6px;
}

.spec-item dd {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Application cards */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
}

.app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.app-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.app-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.app-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.contact-info-panel {
  /* left column */
}

.contact-info-panel .section-tag {
  margin-bottom: 10px;
}

.contact-info-panel h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.contact-info-panel > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 14.5px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  display: block;
}

.contact-item-text a {
  color: var(--green);
  font-weight: 600;
}

.contact-item-text a:hover {
  color: var(--green-bright);
}

.shop-callout {
  background: var(--green-light);
  border: 1px solid rgba(74, 124, 47, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.shop-callout h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.shop-callout p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ---------- INFO STRIP (shop) ---------- */
.info-strip {
  background: var(--bg);
  padding: 64px 32px;
  border-top: 1px solid var(--border);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.info-strip-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.info-strip-item:hover {
  box-shadow: var(--shadow-sm);
}

.info-strip-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.info-strip-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.info-strip-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- INTRO OFFER BOX ---------- */
.offer-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--green-light);
  border: 1px solid rgba(74, 124, 47, 0.25);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 56px;
}

.offer-box-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-box strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.offer-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- ABOUT FAIR-FUSION (home) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-card {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(74, 124, 47, 0.15);
}

.about-card-logo {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-block;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.about-card-logo img {
  height: 46px;
  width: auto;
}

.about-card address {
  font-style: normal;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2.0;
}

.about-card address strong {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

.about-card address a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.about-card address a:hover {
  color: var(--green-bright);
}

/* ---------- CONFIDENTIALITY NOTICE ---------- */
.confidentiality {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 32px;
  text-align: center;
}

.confidentiality p {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.confidentiality strong {
  color: var(--navy);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.60);
  padding: 60px 32px 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  background: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- MOBILE NAV MENU ---------- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 14px;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  section { padding: 72px 24px; }

  .hero-molecule { display: none; }
  .process-inner { grid-template-columns: 1fr; gap: 8px; }
  .process-arrow { transform: rotate(90deg); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block + .stat-block { border-left: none; }
  .stat-block:nth-child(2n+1) { border-right: 1px solid var(--border); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .hero { padding: 80px 20px 72px; }
  .page-hero { padding: 60px 20px 0; }
  .cta-band { padding: 60px 20px; }

  .hero h1 { letter-spacing: -0.025em; }
  .hero-glass-card {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .glass-stat + .glass-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
  }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 20px 16px; }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
