/* ── RESET & BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #06070A;
  --ink:        #0C0E12;
  --surface:    #101318;
  --surface-hi: #14171D;
  --mid:        #5A5F6E;
  --light:      #8B929E;
  --border:     rgba(255,255,255,0.08);
  --border-hi:  rgba(255,255,255,0.14);
  --white:      #FFFFFF;
  --accent:     #1B7A56;
  --accent-mid: #16654A;
  --accent-glow:rgba(27,122,86,0.2);

  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:         1140px;
  --pad:         clamp(20px, 5vw, 72px);
  --section-pad: clamp(80px, 9vw, 128px);

  --glass-bg:    rgba(255,255,255,0.04);
  --glass-hi:    rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; background: var(--black); }

body {
  font-family: var(--font-sans);
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body :is(.nav-links a, .integ-subtitle, .hero-sub, .section-body, .pain-item span, .pillar-body, .contrast p, .plan-desc, .tcard-text, .faq-a p, .cta-inner > p, .footer-copy, .footer-links a, .cta-note, .notif-sub, .hm-label, .plan-period, .tcard-role, .hero-stat .lbl, .compare-table th, .compare-table td:first-child, .compare-table td:nth-child(2), .hc-title, .hc-ai-bubble p, .hc-alert) {
  color: rgba(255,255,255,0.66);
}

body :is(.section-heading, .contrast-heading, .hero-headline strong, .cta-inner h2, .plan-price, .hm-value, .tcard-name, .faq-q, .nav-logo, .footer-logo, .pillar-title, .pain-item strong) {
  font-family: var(--font-serif);
}

body :is(.section-heading, .contrast-heading, .hero-headline strong, .cta-inner h2, .plan-price, .hm-value, .tcard-name, .faq-q, .nav-logo, .footer-logo, .pillar-title, .pain-item strong) {
  color: rgba(255,255,255,0.96);
}

/* ── GLOBAL PARTICLE CANVAS ──────────────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

/* All content above canvas */
#nav, .hero, .integrations, .problem, .how, .contrast,
.pricing, .testimonials, .faq, .cta-section, footer {
  position: relative;
  z-index: 1;
}

.integrations,
.problem,
.how,
.contrast,
.pricing,
.testimonials,
.faq,
.cta-section,
footer {
  background: transparent !important;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── SECTION SEPARATOR UTILITY ───────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label--centered { display: flex; justify-content: center; }
.integrations .section-label { text-align: center; margin-bottom: 8px; }
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  letter-spacing: -0.4px;
}
.section-body {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 18px;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,7,10,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#nav.scrolled { background: rgba(6,7,10,0.96); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  text-decoration: none;
  position: relative;
  z-index: 101;
}
.nav-logo img { border-radius: 4px; flex-shrink: 0; }
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 7px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--accent-mid) !important; transform: translateY(-1px) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  position: relative; z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 80px;
  background: transparent;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(27,122,86,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(27,122,86,0.07) 0%, transparent 60%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  background: rgba(27,122,86,0.1);
  border: 1px solid rgba(27,122,86,0.22);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1.07;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.4);
  display: block; font-size: 0.87em; letter-spacing: -0.4px;
}
.hero-headline strong { font-weight: 700; color: var(--white); display: block; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.45);
  max-width: 480px; line-height: 1.72; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 14px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-mid); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(27,122,86,0.4);
}
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  color: rgba(255,255,255,0.45); padding: 14px 0;
  font-size: 15px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-note {
  margin-top: 56px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 44px; flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-serif); font-size: 28px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -0.5px;
}
.hero-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.07em; }

/* ── Hero Visual ─────────────────────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-card { width: 100%; max-width: 390px; animation: float 5.5s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hc-header { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.hc-dots { display: flex; gap: 5px; }
.hc-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hc-dots span:nth-child(1) { background: #FF5F57; }
.hc-dots span:nth-child(2) { background: #FFBD2E; }
.hc-dots span:nth-child(3) { background: #28C840; }
.hc-title { flex: 1; text-align: center; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.6); margin-left: -36px; }
.hc-live { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: live-pulse 1.6s ease-in-out infinite; }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(27,122,86,0.55); } 50% { box-shadow: 0 0 0 5px rgba(27,122,86,0); } }

.hc-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; }
.hc-ai-row { display: flex; gap: 10px; align-items: flex-start; }
.hc-ai-avatar {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: white; letter-spacing: 0.02em; flex-shrink: 0;
}
.hc-ai-bubble { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 0 10px 10px 10px; padding: 10px 12px; flex: 1; }
.hc-ai-bubble p { font-size: 12.5px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.bubble-time { display: block; font-size: 10px; color: rgba(255,255,255,0.22); margin-top: 6px; }

.hc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hc-metric { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; gap: 3px; }
.hm-label { font-size: 9px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em; }
.hm-value { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.88); letter-spacing: -0.3px; }
.hm-delta { font-size: 9.5px; font-weight: 600; }
.hm-delta.warn { color: #F59E0B; }
.hm-delta.ok   { color: var(--accent); }

.hc-alert { display: flex; align-items: center; gap: 8px; background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.15); border-radius: 8px; padding: 10px 12px; font-size: 12px; color: rgba(255,255,255,0.65); }
.hc-alert-icon { flex-shrink: 0; display: block; }

.hero-notif { display: flex; align-items: center; gap: 12px; padding: 12px 16px; max-width: 280px; align-self: flex-end; animation: float 5.5s ease-in-out infinite; animation-delay: 1.8s; }
.notif-icon-wrap { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-text { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.3; }
.notif-sub { font-size: 11.5px; color: rgba(255,255,255,0.3); line-height: 1.3; margin-top: 2px; }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent); animation: scroll-drop 1.6s ease-in-out infinite; }
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── INTEGRATIONS MARQUEE ────────────────────────────────────────────────── */
.integrations {
  background: rgba(10,11,15,0.96);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
  overflow: hidden;
}
.integrations-header { max-width: var(--max); margin: 0 auto 32px; padding: 0 var(--pad); text-align: center; }
.integ-subtitle { font-size: 14px; color: rgba(255,255,255,0.35); }

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 34s linear infinite; padding: 6px 0; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.integ-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 20px; min-width: 188px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.integ-card:hover { border-color: var(--border-hi); background: var(--glass-hi); transform: translateY(-2px); }
.integ-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--c, #1B7A56); color: var(--ct, #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  flex-shrink: 0; font-family: var(--font-sans);
}
.integ-info { display: flex; flex-direction: column; gap: 2px; }

/* Integration brand colors — set CSS custom properties used by .integ-icon */
.integ-icon--gmail  { --c: #EA4335; }
.integ-icon--mpesa  { --c: #00A550; }
.integ-icon--mtn    { --c: #FFCB05; --ct: #1a1a1a; }
.integ-icon--slack  { --c: #4A154B; }
.integ-icon--notion { --c: #37352F; }
.integ-icon--orange { --c: #FF6900; }
.integ-icon--bank   { --c: #1B7A56; }
.integ-name { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.2; }
.integ-cat  { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PROBLEM ─────────────────────────────────────────────────────────────── */
.problem {
  background: rgba(8,9,12,0.92);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pain-list { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.pain-item {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.pain-item:hover { border-color: rgba(27,122,86,0.3); background: var(--glass-hi); transform: translateX(4px); }
.pain-num { font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: var(--accent); opacity: 0.5; flex-shrink: 0; min-width: 20px; padding-top: 1px; }
.pain-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pain-item span { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.how {
  background: rgba(11,13,17,0.94);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: var(--max); margin: 0 auto; }
.how-header { max-width: 580px; margin-bottom: 60px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.pillar:hover { border-color: rgba(27,122,86,0.35); background: var(--glass-hi); transform: translateY(-4px); }
.pillar:hover::after { opacity: 1; }
.pillar.featured { background: rgba(27,122,86,0.07); border-color: rgba(27,122,86,0.25); }
.pillar.featured::after { opacity: 1; }
.pillar-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; opacity: 0.6; margin-bottom: 14px; }
.pillar-title { font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.pillar-body { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.62; }

/* ── CONTRAST ────────────────────────────────────────────────────────────── */
.contrast {
  background: rgba(8,9,12,0.92);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.contrast-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contrast-heading { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 16px; }
.contrast p { font-size: 16px; color: rgba(255,255,255,0.42); line-height: 1.75; }

.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); color: rgba(255,255,255,0.28); }
.compare-table th:last-child { color: var(--accent); }
.compare-table td { font-size: 13px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: rgba(255,255,255,0.38); font-weight: 500; }
.compare-table td:nth-child(2) { color: rgba(255,255,255,0.22); }
.compare-table td:last-child { color: rgba(255,255,255,0.85); }
.check { color: var(--accent); font-weight: 600; }
.cross { color: rgba(255,255,255,0.16); }

/* ── PRICING ─────────────────────────────────────────────────────────────── */
.pricing {
  background: rgba(11,13,17,0.94);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: var(--max); margin: 0 auto; }
.pricing-header { text-align: center; max-width: 520px; margin: 0 auto 60px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.plan {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s, background 0.22s;
}
.plan:hover { background: var(--glass-hi); border-color: var(--border-hi); box-shadow: 0 16px 48px rgba(0,0,0,0.4); transform: translateY(-5px); }
.plan.featured { border: 1px solid rgba(27,122,86,0.4); background: rgba(27,122,86,0.06); }
.plan.featured:hover { border-color: rgba(27,122,86,0.6); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.plan-price { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; letter-spacing: -1.5px; }
.plan-price sup { font-size: 22px; vertical-align: super; letter-spacing: 0; }
.plan-period { font-size: 12.5px; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.plan-desc { font-size: 13.5px; color: rgba(255,255,255,0.42); margin-bottom: 24px; line-height: 1.6; flex: 1; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 13.5px; color: rgba(255,255,255,0.72); display: flex; align-items: flex-start; gap: 9px; }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; padding: 12px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid var(--border-hi); color: rgba(255,255,255,0.7); transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s; margin-top: auto; }
.plan-cta:hover { background: rgba(255,255,255,0.07); border-color: rgba(27,122,86,0.4); color: var(--white); transform: translateY(-1px); }
.plan-cta-featured { background: var(--accent); border-color: var(--accent); color: var(--white) !important; }
.plan-cta-featured:hover { background: var(--accent-mid) !important; border-color: var(--accent-mid) !important; box-shadow: 0 6px 24px rgba(27,122,86,0.4); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials {
  background: rgba(8,9,12,0.92);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: var(--max); margin: 0 auto; }
.testimonials-header { max-width: 560px; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tcard {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.tcard:hover { border-color: rgba(27,122,86,0.3); background: var(--glass-hi); transform: translateY(-4px); }
.tcard-qmark { flex-shrink: 0; opacity: 0.7; }
.tcard-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.72; flex: 1; font-style: italic; letter-spacing: 0.01em; }
.tcard-author { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--border); }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--av, #1B7A56);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em; flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
.tcard-role { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; letter-spacing: 0.02em; }

/* Testimonial avatar color variants */
.tcard-avatar--red    { --av: #C0392B; }
.tcard-avatar--blue   { --av: #2980B9; }
.tcard-avatar--purple { --av: #8E44AD; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  background: rgba(11,13,17,0.94);
  padding: var(--section-pad) var(--pad);
  border-bottom: 1px solid var(--border);
}
.faq-inner { max-width: var(--max); margin: 0 auto; }
.faq-header { max-width: 560px; margin-bottom: 52px; }

.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; cursor: pointer;
  list-style: none; color: rgba(255,255,255,0.85);
  font-size: 15.5px; font-weight: 500; line-height: 1.4;
  transition: color 0.2s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q:hover { color: var(--white); }
.faq-q:hover .faq-icon { border-color: var(--accent); color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300; line-height: 1;
  transition: transform 0.3s, border-color 0.2s, color 0.2s;
}
.faq-icon::before { content: '+'; display: block; }
details[open] .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }

.faq-a { padding: 0 0 22px 0; }
.faq-a p { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.75; max-width: 640px; }

/* ── CTA / SUBSCRIBE ─────────────────────────────────────────────────────── */
.cta-section {
  background: rgba(8,9,12,0.92);
  padding: var(--section-pad) var(--pad);
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(27,122,86,0.12) 0%, transparent 70%);
}
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 50px); font-weight: 700; color: var(--white); line-height: 1.14; letter-spacing: -0.5px; margin: 14px 0 18px; }
.cta-inner > p { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

.waitlist-form { display: flex; gap: 10px; max-width: 450px; margin: 0 auto 14px; }
.waitlist-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border-hi); border-radius: 8px; padding: 14px 16px; font-size: 15px; color: var(--white); outline: none; font-family: var(--font-sans); transition: border-color 0.2s, background 0.2s; }
.waitlist-form input::placeholder { color: rgba(255,255,255,0.24); }
.waitlist-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.waitlist-form button { background: var(--accent); color: var(--white); border: none; padding: 14px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-sans); white-space: nowrap; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.waitlist-form button:hover { background: var(--accent-mid); transform: translateY(-1px); box-shadow: 0 7px 24px rgba(27,122,86,0.44); }
.waitlist-form button.btn--success { background: #16654A; cursor: default; box-shadow: none; transform: none; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: rgba(4,5,7,0.98);
  border-top: 1px solid var(--border);
  padding: 36px var(--pad);
}
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 7px; font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.2px; }
.footer-logo img { border-radius: 3px; flex-shrink: 0; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.2); }
.footer-right { display: flex; align-items: center; gap: 28px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.26); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }

.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.social-link:hover { border-color: rgba(0,119,181,0.5); background: rgba(0,119,181,0.12); color: #0077B5; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-sub { max-width: 540px; }
  .hero-visual { align-items: center; flex-direction: row; gap: 20px; justify-content: center; }
  .hero-card { max-width: 340px; flex-shrink: 0; }
  .hero-notif { max-width: 220px; align-self: flex-start; margin-top: 40px; }
}

@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .contrast-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }

  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(6,7,10,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px var(--pad) 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links a { font-size: 16px; color: rgba(255,255,255,0.7); padding: 4px 0; }
  .nav-cta { display: inline-block !important; padding: 12px 24px !important; font-size: 15px !important; width: fit-content; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .hero-note { gap: 28px; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-right { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
