/* ===========================
   Fructify — Premium Landing Page
   =========================== */

/* --- Design Tokens --- */
:root {
  --color-primary: #0D1B2A;
  --color-primary-deep: #060f18;
  --color-secondary: #4A7C2E;
  --color-accent: #7CB342;
  --color-accent-bright: #9CCC65;
  --color-neutral: #94a3b8;
  --color-surface: #0f2234;
  --color-surface-light: #162d45;
  --color-white: #FFFFFF;
  --color-text: #e2e8f0;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-height: 140px;
  --container-max: 1200px;
  --section-padding: 120px 0;
  --border-color: rgba(124, 179, 66, 0.12);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--color-primary-deep);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Canvas Background --- */
#grid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Section Labels (pill tags) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label--center {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-label--green {
  background: rgba(124, 179, 66, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(124, 179, 66, 0.2);
}

.section-label--red {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.section-label--white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Section Headings --- */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-neutral);
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub--light { color: rgba(255,255,255,0.5); }

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent-bright) 0%, var(--color-accent) 40%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  transition: transform 0.3s var(--ease-out-expo);
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Glowing green button */
.btn--glow {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.3), 0 0 60px rgba(124, 179, 66, 0.1);
  font-weight: 700;
}

.btn--glow:hover {
  box-shadow: 0 0 30px rgba(124, 179, 66, 0.5), 0 0 80px rgba(124, 179, 66, 0.2);
  transform: translateY(-2px);
}

/* Glass button */
.btn--glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Outline button */
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(124, 179, 66, 0.3);
}

.btn--outline:hover {
  background: rgba(124, 179, 66, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 14px;
}

.btn--submit {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.25);
  padding: 16px 32px;
}

.btn--submit:hover {
  box-shadow: 0 0 30px rgba(124, 179, 66, 0.45);
  transform: translateY(-2px);
}

/* =============================
   Section 1: Navigation
   ============================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(6, 15, 24, 0.6);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background: rgba(6, 15, 24, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo-img {
  height: 120px;
  width: auto;
  transition: opacity 0.2s ease;
  object-fit: contain;
  filter: brightness(1.8) contrast(1.15);
}

.navbar__logo:hover .navbar__logo-img { opacity: 0.8; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.navbar__link:hover {
  color: var(--color-white);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid rgba(124, 179, 66, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar__cta-link:hover {
  background: rgba(124, 179, 66, 0.1);
  border-color: var(--color-accent);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =============================
   Section 2: Hero
   ============================= */
.hero {
  position: relative;
  padding: 180px 0 140px;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 27, 42, 1) 0%, var(--color-primary-deep) 100%);
}

/* Animated gradient orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.15) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74, 124, 46, 0.12) 0%, transparent 70%);
  bottom: -15%; left: -10%;
  animation-delay: -4s;
}

.hero__glow--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -8s;
}

@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.1); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Hero vertical stacked layout */
.hero__text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

/* Eyebrow badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  padding: 8px 18px;
  background: rgba(124, 179, 66, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 179, 66, 0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(124, 179, 66, 0); }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-neutral);
  margin-bottom: 32px;
}

/* Hero value proposition checklist */
.hero__value-props {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
}

.hero__value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__value-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.25);
  border-radius: 6px;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Floating UI Mockup Cards ---- */
.hero__cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto 72px;
}

.hero__visual {
  position: relative;
  width: 100%;
}

.hero__card {
  width: 100%;
  background: rgba(15, 34, 52, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(124, 179, 66, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(124, 179, 66, 0.05);
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Second card floats with offset timing */
.hero__card--alt {
  animation-delay: -3s;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__card-dots {
  display: flex;
  gap: 6px;
}

.hero__card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero__card-dots span:first-child { background: #ef4444; opacity: 0.7; }
.hero__card-dots span:nth-child(2) { background: #eab308; opacity: 0.7; }
.hero__card-dots span:last-child { background: #22c55e; opacity: 0.7; }

.hero__card-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.hero__card-body {
  padding: 24px 20px;
}

.hero__card-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.hero__card-line--label {
  color: var(--color-accent);
  font-weight: 500;
}

.hero__card-line--dim {
  color: rgba(255, 255, 255, 0.35);
}

.hero__card-line--prompt {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.hero__card-caret {
  width: 2px;
  height: 16px;
  background: var(--color-accent);
  animation: blink 1s steps(2) infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero__card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}

.hero__card-typing {
  display: flex;
  gap: 4px;
  padding-top: 4px;
}

.hero__card-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.4;
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.hero__card-typing span:nth-child(2) { animation-delay: 0.15s; }
.hero__card-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-6px); opacity: 1; }
}

/* --- Claude Brand Color --- */
.claude-brand {
  color: #d97757;
  font-weight: 600;
}

/* --- Claude Thinking Animation (breathing orb) --- */
.claude-thinking {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.claude-thinking__orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8956f, #d97757 50%, #b85a3a);
  box-shadow: 0 0 12px rgba(217, 119, 87, 0.5), 0 0 24px rgba(217, 119, 87, 0.2);
  animation: claude-breathe 2.4s ease-in-out infinite;
}

.claude-thinking__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(217, 119, 87, 0.7);
  letter-spacing: 0.5px;
}

@keyframes claude-breathe {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(217, 119, 87, 0.3);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 20px rgba(217, 119, 87, 0.6), 0 0 40px rgba(217, 119, 87, 0.2);
  }
}

/* --- Hero Disclaimer --- */
.hero__disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 560px;
  margin: 0 auto 8px;
  line-height: 1.5;
  text-align: center;
}

/* Social proof strip */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 600px;
  margin: 0 auto;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  display: inline;
}

.hero__proof-label {
  font-size: 0.8rem;
  color: var(--color-neutral);
  letter-spacing: 0.02em;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================
   Section 3: Problem / Solution
   ============================= */
.problem-solution {
  position: relative;
  padding: var(--section-padding);
  background: var(--color-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.problem-solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.problem-solution__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.problem-solution__heading--green {
  color: var(--color-accent-bright);
}

.problem-solution__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item, .solution-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.problem-item {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.08);
}

.problem-item:hover {
  background: rgba(239, 68, 68, 0.08);
}

.solution-item {
  background: rgba(124, 179, 66, 0.04);
  border: 1px solid rgba(124, 179, 66, 0.08);
}

.solution-item:hover {
  background: rgba(124, 179, 66, 0.08);
}

.problem-item__icon, .solution-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-top: 2px;
}

.problem-item__icon {
  background: rgba(239, 68, 68, 0.1);
}

.solution-item__icon {
  background: rgba(124, 179, 66, 0.1);
}

.problem-item p, .solution-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-neutral);
}

.solution-punchline {
  font-weight: 700;
  color: var(--color-accent) !important;
  font-size: 1.05rem !important;
}

/* =============================
   Section 4: Pricing
   ============================= */
.pricing {
  position: relative;
  padding: var(--section-padding);
  background: var(--color-primary-deep);
  overflow: hidden;
}

.pricing__glow {
  position: absolute;
  width: 800px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 179, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.pricing__card:hover {
  transform: translateY(-8px);
}

.pricing__card-inner {
  background: var(--color-surface);
  border-radius: 18px;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing__card--featured {
  background: linear-gradient(180deg, rgba(124,179,66,0.4) 0%, rgba(124,179,66,0.08) 100%);
  transform: scale(1.04);
}

.pricing__card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing__card--featured .pricing__card-inner {
  background: linear-gradient(180deg, var(--color-surface-light) 0%, var(--color-surface) 100%);
}

.pricing__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: conic-gradient(from 180deg, transparent, rgba(124,179,66,0.15), transparent, rgba(124,179,66,0.15), transparent);
  animation: spin-glow 6s linear infinite;
  z-index: -1;
  filter: blur(2px);
}

@keyframes spin-glow {
  to { transform: rotate(360deg); }
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
  z-index: 2;
}

.pricing__tier {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.pricing__term {
  font-size: 0.85rem;
  color: var(--color-neutral);
  margin-left: 4px;
}

.pricing__features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing__features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-neutral);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing__features li:last-child { border-bottom: none; }

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(124, 179, 66, 0.3);
}

.pricing__btn {
  width: 100%;
  justify-content: center;
}

/* =============================
   Section 5: Who It's For
   ============================= */
.audience {
  padding: var(--section-padding);
  background: var(--color-primary);
  border-top: 1px solid var(--border-color);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience__card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.audience__card:hover {
  background: rgba(124, 179, 66, 0.04);
  border-color: rgba(124, 179, 66, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.audience__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 179, 66, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.audience__card:hover .audience__icon-wrap {
  background: rgba(124, 179, 66, 0.15);
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.15);
}

.audience__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.audience__card p {
  font-size: 0.9rem;
  color: var(--color-neutral);
  line-height: 1.65;
}

/* =============================
   Section 6: How It Works
   ============================= */
.how-it-works {
  padding: var(--section-padding);
  background: var(--color-primary-deep);
  border-top: 1px solid var(--border-color);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.steps__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.steps__number-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(124, 179, 66, 0.08);
  border: 1px solid rgba(124, 179, 66, 0.2);
  transition: all 0.3s ease;
}

.steps__item:hover .steps__number-wrap {
  background: rgba(124, 179, 66, 0.15);
  border-color: rgba(124, 179, 66, 0.4);
  box-shadow: 0 0 30px rgba(124, 179, 66, 0.15);
  transform: translateY(-4px);
}

.steps__number {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-accent);
}

.steps__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.steps__desc {
  font-size: 0.9rem;
  color: var(--color-neutral);
  line-height: 1.65;
}

.steps__connector {
  width: 80px;
  min-width: 80px;
  margin-top: 36px;
  display: flex;
  align-items: center;
}

.how-it-works__cta {
  text-align: center;
  margin-top: 56px;
}

/* =============================
   Section 7: Lead Capture
   ============================= */
.lead-capture {
  position: relative;
  padding: var(--section-padding);
  background: var(--color-primary);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.lead-capture__glow {
  position: absolute;
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 179, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.lead-capture__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-capture__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lead-capture__fields {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.lead-capture__field {
  flex: 1;
}

.lead-capture__field input {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lead-capture__field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lead-capture__field input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.15);
}

.lead-capture__note {
  font-size: 0.85rem;
  color: var(--color-neutral);
  margin-top: 12px;
}

.lead-capture__message {
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.lead-capture__message--success {
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.2);
  color: var(--color-accent);
}

.lead-capture__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* =============================
   Footer
   ============================= */
.footer {
  background: var(--color-primary-deep);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner { text-align: center; }

.footer__logo {
  height: 260px;
  width: auto;
  margin: 0 auto 32px;
  opacity: 1;
  transition: opacity 0.3s ease;
  object-fit: contain;
  filter: brightness(1.6) contrast(1.1);
}

.footer__logo:hover { opacity: 1; }

.footer__contact {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer__contact a:hover { color: var(--color-accent); }

.footer__sep { margin: 0 8px; }

.footer__location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* =============================
   Scroll Animations
   ============================= */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

.anim-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Mobile nav open state */
.navbar--open .navbar__nav { display: flex; }

.navbar--open .navbar__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar--open .navbar__toggle-bar:nth-child(2) { opacity: 0; }
.navbar--open .navbar__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --nav-height: 68px;
  }

  .navbar__toggle { display: flex; }

  .navbar__logo-img { height: 80px; }

  .navbar__nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(6, 15, 24, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 40px 24px;
  }

  .navbar__link { font-size: 1.2rem; }
  .navbar__cta-link { font-size: 1rem; padding: 14px 28px; }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero__text-block { margin-bottom: 48px; }
  .hero__cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .hero__visual { margin-bottom: 0; }

  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero__headline br { display: none; }
  .hero__sub { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .hero__card { animation: none; }

  .hero__proof {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero__proof-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero__proof-item {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .problem-solution__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .steps__connector {
    width: 2px;
    min-width: 2px;
    height: 32px;
    margin-top: 0;
    transform: rotate(90deg);
  }

  .lead-capture__heading br { display: none; }

  .lead-capture__fields {
    flex-direction: column;
  }

  .section-heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .footer__logo { height: 160px; }
}
