/* ============================================
   SDR GROW v3 — Light Theme Design System
   Brand: #20A7C7 Teal Accent, #102F5E Navy Primary
   Fonts: Bricolage Grotesque (display), DM Sans (heading), Inter (body), Open Sans (paragraph)
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --accent: #20A7C7;
  --accent-hover: #1b8eab;
  --accent-light: rgba(32, 167, 199, 0.08);
  --accent-lighter: rgba(32, 167, 199, 0.04);
  --accent-border: rgba(32, 167, 199, 0.2);
  --primary: #102F5E;
  --primary-light: rgba(16, 47, 94, 0.08);
  --primary-border: rgba(16, 47, 94, 0.2);

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FC;
  --bg-alt: #F1F2F6;
  --bg-card: #FFFFFF;
  --bg-dark: #0B0E1A;

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #52556D;
  --text-muted: #8E91A4;
  --text-on-accent: #FFFFFF;

  /* Borders & Shadows */
  --border: #E4E5EB;
  --border-hover: #D0D1D9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-accent: 0 4px 20px rgba(32, 167, 199, 0.25);

  /* Functional Colors */
  --red: #EF4444;
  --orange: #F59E0B;
  --green: #00B67A;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-paragraph: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-subtitle {
  font-family: var(--font-paragraph);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.accent-text {
  color: var(--accent);
}

.green-text {
  color: var(--primary);
}

/* ---------- Dot Grid Background ---------- */
.dot-grid {
  position: relative;
}

.dot-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.dot-grid>.container {
  position: relative;
  z-index: 1;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children > *:nth-child(1)  { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2)  { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3)  { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4)  { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5)  { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6)  { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7)  { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8)  { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9)  { transition-delay: 0.45s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children > *:nth-child(12) { transition-delay: 0.6s; }


/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--accent);
  color: var(--text-on-accent);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: var(--text-on-accent);
  text-decoration: underline;
  font-weight: 600;
}

.announcement-bar .close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-on-accent);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px;
  line-height: 1;
}

.announcement-bar .close-btn:hover {
  opacity: 1;
}

.announcement-bar.hidden {
  display: none;
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--accent);
}

.nav-links a.nav-active {
  font-weight: 600;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--accent) !important;
  color: var(--text-on-accent) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

/* Subtle gradient orbs — light version */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--primary);
  bottom: -100px;
  left: -80px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  top: 50%;
  left: 40%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(15px, -15px) scale(1.03);
  }

  66% {
    transform: translate(-10px, 10px) scale(0.97);
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  animation: fadeInUp 0.7s ease 0.15s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-paragraph);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--bg-white);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Hero Visual — Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 500px;
  animation: floatMockup 8s ease-in-out infinite;
}

@keyframes floatMockup {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

.hero-dashboard {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.9s ease 0.5s forwards;
  opacity: 0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-dot:nth-child(1) {
  background: var(--red);
}

.dashboard-dot:nth-child(2) {
  background: var(--orange);
}

.dashboard-dot:nth-child(3) {
  background: var(--green);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.stat-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-card .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.dashboard-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  width: 36px;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

/* Hero Stats Strip */
.hero-stat-strip {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  animation: fadeInUp 0.7s ease 0.55s forwards;
  opacity: 0;
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat .stat-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ============================================
   SOCIAL PROOF MARQUEE
   ============================================ */
.marquee-section {
  padding: 30px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scrollMarquee 25s linear infinite;
  padding-left: 30px;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}


/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.problem-header {
  text-align: center;
  margin-bottom: 56px;
}

.problem-header .section-subtitle {
  margin: 0 auto;
}

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

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(239, 68, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}

.problem-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.problem-card p {
  font-family: var(--font-paragraph);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================
   HOW IT WORKS — 3 Steps
   ============================================ */
.how-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-header .section-subtitle {
  margin: 0 auto;
}

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

/* Connecting line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-accent);
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.how-step p {
  font-family: var(--font-paragraph);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


/* ============================================
   SOLUTION SECTION (10X Performance)
   ============================================ */
.solution-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.solution-header {
  text-align: center;
  margin-bottom: 56px;
}

.solution-header .section-subtitle {
  margin: 0 auto;
}

.solution-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.comparison-column {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.comparison-column.structured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}

.comparison-column.structured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.comparison-column h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.comparison-column .comparison-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-paragraph);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.icon-x {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-check {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-divider {
  width: 1px;
  background: var(--border);
  margin: 36px 24px;
}

.comparison-stat {
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.comparison-stat .stat-big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.comparison-column.manual .comparison-stat .stat-big {
  color: var(--red);
}

.comparison-column.structured .comparison-stat .stat-big {
  color: var(--primary);
}

.comparison-stat .stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ============================================
   CORE PROCESS — 16-Touch Flow
   ============================================ */
.process-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.channel-column {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.channel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.channel-icon.email {
  background: var(--accent-light);
  color: var(--accent);
}

.channel-icon.email svg {
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.channel-icon.linkedin {
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.channel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.channel-header .touch-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.touch-list {
  display: flex;
  flex-direction: column;
}

.touch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-light);
}

.touch-item:last-child {
  border-bottom: none;
}

.touch-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.channel-column:first-child .touch-number {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.channel-column:last-child .touch-number {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.touch-item span:last-child {
  font-family: var(--font-paragraph);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.process-note {
  text-align: center;
  padding: 20px 28px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  font-family: var(--font-paragraph);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.process-note strong {
  color: var(--accent);
}


/* ============================================
   FEATURE MODULES
   ============================================ */
.modules-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.modules-header {
  text-align: center;
  margin-bottom: 56px;
}

.modules-header .section-subtitle {
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.module-card.bento-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.module-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Mouse-tracking Glow */
.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(32, 167, 199, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.module-card>* {
  position: relative;
  z-index: 1;
}

.module-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.module-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-card:hover::before,
.module-card:hover::after {
  opacity: 1;
}

.module-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.module-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.module-card p {
  font-family: var(--font-paragraph);
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================
   VALUE & COST COMPARISON
   ============================================ */
.value-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.value-header {
  text-align: center;
  margin-bottom: 56px;
}

.value-header .section-subtitle {
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table thead {
  background: var(--bg-light);
}

.comparison-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.comparison-table th:last-child {
  background: var(--accent-light);
  color: var(--accent);
}

.comparison-table td {
  padding: 14px 20px;
  font-family: var(--font-paragraph);
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-light);
}

.comparison-table td:first-child {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table td:last-child {
  background: var(--accent-lighter);
  color: var(--accent);
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* VA Callout */
.va-callout {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
}

.va-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.va-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.va-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.va-content p {
  font-family: var(--font-paragraph);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================
   WHO IT'S FOR
   ============================================ */
.audience-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.audience-header {
  text-align: center;
  margin-bottom: 56px;
}

.audience-header .section-subtitle {
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.audience-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.audience-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.audience-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
}

.audience-card p {
  font-family: var(--font-paragraph);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-paragraph);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(32, 167, 199, 0.2), transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-section .section-label {
  background: rgba(91, 64, 251, 0.15);
  border-color: rgba(91, 64, 251, 0.3);
}

.final-cta-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: #FFFFFF;
}

.final-cta-section .accent-text {
  color: #A78BFA;
}

.final-cta-section .section-subtitle {
  margin: 0 auto 40px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.65);
}

.final-cta-section .btn-primary {
  background: var(--accent);
}

.final-cta-section .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 30px rgba(32, 167, 199, 0.4);
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-paragraph);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-info span {
  font-family: var(--font-paragraph);
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand-col .footer-brand span {
  color: var(--accent);
}

.footer-brand-col .footer-desc {
  font-family: var(--font-paragraph);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: var(--font-paragraph);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(32, 167, 199, 0.2);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
}


/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-stat-strip {
    justify-content: center;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-card.bento-wide {
    grid-column: span 2;
  }

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

  .comparison-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .process-channels {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
  }
}


/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* ── Mobile Nav Drawer ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1002;
    /* Hidden by default — animate in/out */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.nav-active {
    color: var(--accent);
    background: var(--accent-light);
  }

  .nav-links a.nav-cta {
    margin-top: 16px;
    background: var(--accent) !important;
    color: #fff !important;
    width: auto;
    padding: 14px 40px !important;
    font-size: 1rem !important;
  }

  .nav-links a.nav-cta:hover {
    background: var(--accent-hover) !important;
  }

  /* Hamburger sits above drawer */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1003;
  }

  /* When menu open, hamburger lines become X on dark bg */
  .nav-toggle.active span {
    background: var(--text-primary);
  }

  /* ── Hero ── */
  .hero {
    padding: 60px 0 70px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas a {
    width: 100%;
    max-width: 340px;
    text-align: center;
    justify-content: center;
  }

  .hero-stat-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .hero-stat {
    min-width: 80px;
  }

  /* ── Sections ── */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-steps::before {
    display: none;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-card.bento-wide {
    grid-column: span 1;
  }

  /* ── Comparison table: scroll horizontally ── */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
  }

  .comparison-table {
    min-width: 560px;
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }

  /* ── Audience ── */
  .audience-grid {
    grid-template-columns: 1fr;
  }

  /* ── Value callout ── */
  .va-callout {
    flex-direction: column;
    text-align: center;
  }

  /* ── Process touch items ── */
  .touch-item {
    font-size: 0.85rem;
  }

  /* ── Testimonials ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* ── Final CTA ── */
  .final-cta-content .btn-primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}


/* ============================================
   RESPONSIVE — Small phones (≤480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 52px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 24px;
    font-size: 0.88rem;
  }

  .problem-card,
  .module-card,
  .audience-card {
    padding: 20px 18px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 14px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .footer-brand {
    font-size: 1.25rem;
  }

  .section-label {
    font-size: 0.68rem;
  }
}