/* ============================================================
   SeoCute — Marketing Site CSS
   Design direction: Editorial dark-accent / clean white
   Font: Syne (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

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

:root {
  --ink:       #09090b;
  --ink-2:     #3f3f46;
  --ink-3:     #71717a;
  --ink-4:     #a1a1aa;
  --surface:   #ffffff;
  --surface-2: #fafafa;
  --surface-3: #f4f4f5;
  --border:    #e4e4e7;
  --border-2:  #d4d4d8;
  --primary:   #4f46e5;
  --primary-h: #4338ca;
  --primary-l: #eef2ff;
  --accent:    #06b6d4;
  --accent-l:  #ecfeff;
  --success:   #10b981;
  --warn:      #f59e0b;
  --danger:    #ef4444;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.09), 0 8px 16px rgba(0,0,0,.05);
  --shadow-xl: 0 40px 80px rgba(0,0,0,.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.display-1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.03em; }
.display-2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; letter-spacing: -.025em; }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.02em; }

.lead { font-size: 1.125rem; font-weight: 400; color: var(--ink-2); line-height: 1.7; }
.lead-lg { font-size: 1.25rem; }

.label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

section { padding: 100px 0; }

/* ── Nav ──────────────────────────────────────────────────── */
/* ── Navbar ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: stretch; gap: 0;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--ink); text-decoration: none; letter-spacing: -.03em;
  display: flex; align-items: center; gap: 9px; flex-shrink: 0;
  margin-right: 32px;
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: white; }

/* Nav links */
.nav-links {
  display: flex; align-items: stretch;
  gap: 0; margin: 0; padding: 0; list-style: none; flex: 1;
}
.nav-link-item {
  display: flex; align-items: center; gap: 4px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  text-decoration: none; padding: 0 14px; height: 100%;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-link-item:hover { color: var(--primary); }
.nav-chevron { transition: transform .2s; opacity: .5; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-dropdown.active .nav-link-item { color: var(--primary); border-bottom-color: var(--primary); }
.nav-dropdown.active .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Mega menu */
.nav-mega {
  position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(8px);
  min-width: 580px; z-index: 200;
}
.nav-mega-sm { min-width: 460px; }
.nav-dropdown.active .nav-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-inner { display: flex; gap: 0; padding: 20px; }
.nav-mega-col { flex: 1; padding: 0 12px; }
.nav-mega-col:first-child { padding-left: 0; }
.nav-mega-col + .nav-mega-col { border-left: 1px solid var(--border); }
.nav-mega-cta { flex: 0 0 180px; }
.nav-mega-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #94a3b8; margin-bottom: 8px; padding: 0 8px;
}
.nav-mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 8px; text-decoration: none;
  transition: background .15s; cursor: pointer;
}
.nav-mega-item:hover { background: #f8fafc; }
.nav-mega-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.nav-mega-title { font-size: 13px; font-weight: 600; color: #0f172a; margin-bottom: 1px; }
.nav-mega-desc { font-size: 11px; color: #64748b; }

/* Actions */
.nav-actions {
  display: flex; align-items: center; gap: 8px; margin-left: auto; padding-left: 16px;
}
.btn-ghost {
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.btn-ghost:hover { color: var(--primary); background: rgba(99,102,241,.06); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; padding: 6px; color: var(--ink-2);
  align-items: center; justify-content: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .925rem; font-weight: 600;
  padding: 11px 22px; border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .15s var(--ease-out-expo), box-shadow .15s, background .2s, opacity .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 1px 2px rgba(79,70,229,.2), 0 4px 12px rgba(79,70,229,.2);
}
.btn-primary:hover { background: var(--primary-h); box-shadow: 0 2px 4px rgba(79,70,229,.2), 0 8px 20px rgba(79,70,229,.3); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { background: var(--surface-3); border-color: var(--ink-4); }

.btn-white {
  background: white; color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-lg { font-size: 1rem; padding: 14px 28px; border-radius: var(--radius); }
.btn-sm { font-size: .825rem; padding: 8px 16px; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  padding: 5px 12px; border-radius: 100px;
}
.badge-purple { background: var(--primary-l); color: var(--primary); }
.badge-cyan   { background: var(--accent-l);  color: #0891b2; }
.badge-green  { background: #ecfdf5; color: #059669; }
.badge-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,70,229,.07) 0%, transparent 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f46e5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-headline { margin-bottom: 24px; }
.hero-headline em { font-style: normal; color: var(--primary); }
.hero-sub { margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-social-proof { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid white; margin-left: -8px;
  object-fit: cover; background: var(--surface-3);
}
.avatar-stack img:first-child { margin-left: 0; }
.social-proof-text { font-size: .875rem; color: var(--ink-3); }
.social-proof-text strong { color: var(--ink); font-weight: 600; }

/* ── Dashboard mockup ─────────────────────────────────────── */
.hero-visual { position: relative; overflow: visible; }
.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transform-origin: left center;
  transition: transform .6s var(--ease-out-expo);
}
.hero-visual:hover .dashboard-mockup { transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.mockup-bar {
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-2);
}
.mockup-dots span:nth-child(1) { background: #fc5c57; }
.mockup-dots span:nth-child(2) { background: #fdbc2c; }
.mockup-dots span:nth-child(3) { background: #33c648; }
.mockup-url {
  background: var(--surface-3); border-radius: var(--radius-sm);
  padding: 4px 12px; font-size: .75rem; color: var(--ink-3);
  flex: 1; text-align: center;
}
.mockup-body { padding: 20px; }
.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mockup-stat {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
}
.mockup-stat-label { font-size: .65rem; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.mockup-stat-val { font-size: 1.25rem; font-weight: 800; font-family: var(--font-display); color: var(--ink); }
.mockup-stat-change { font-size: .65rem; color: var(--success); font-weight: 600; }
.mockup-chart { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.mockup-chart-title { font-size: .7rem; font-weight: 700; color: var(--ink-2); margin-bottom: 12px; font-family: var(--font-display); }
.chart-svg { width: 100%; height: 80px; }
.mockup-keywords { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.kw-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 10px;
}
.kw-name { font-size: .7rem; font-weight: 600; color: var(--ink-2); flex: 1; }
.kw-pos { font-size: .7rem; font-weight: 800; font-family: var(--font-display); }
.kw-pos.up { color: var(--success); }
.kw-pos.down { color: var(--danger); }
.kw-bar-wrap { width: 48px; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.kw-bar { height: 100%; border-radius: 2px; background: var(--primary); transition: width 1s var(--ease-out-expo); }

/* ── Floating cards on hero ───────────────────────────────── */
.float-card {
  z-index: 10;
  position: absolute;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  box-shadow: var(--shadow-lg); font-size: .8rem;
  animation: floatY 4s ease-in-out infinite;
}
.float-card-1 { top: 8%; right: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 12%; left: -20px; animation-delay: 1.5s; }
.float-card-icon { font-size: 1.2rem; margin-bottom: 4px; }
.float-card-val { font-weight: 800; font-family: var(--font-display); color: var(--ink); }
.float-card-lbl { color: var(--ink-3); font-size: .7rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Trust logos ──────────────────────────────────────────── */
.trust-section { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-label { font-size: .8rem; font-weight: 600; color: var(--ink-4); letter-spacing: .06em; text-transform: uppercase; text-align: center; margin-bottom: 28px; }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--border-2); letter-spacing: -.02em;
  transition: color .3s;
}
.logo-item:hover { color: var(--ink-3); }

/* ── Feature section ──────────────────────────────────────── */
.features-section { background: var(--surface-2); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .lead { max-width: 560px; margin: 16px auto 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s var(--ease-out-expo), box-shadow .2s, border-color .2s;
  cursor: default;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--ink-2); line-height: 1.65; }
.feature-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.feature-link:hover { gap: 8px; }

/* ── How it works ─────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--primary-l);
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: .875rem; color: var(--ink-2); }

/* ── Product preview ──────────────────────────────────────── */
.preview-wrap {
  background: var(--ink);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  padding: 32px 32px 0;
}
.preview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.preview-header h3 { color: white; font-size: 1rem; }
.preview-tabs { display: flex; gap: 8px; }
.preview-tab {
  font-size: .8rem; font-weight: 600; padding: 6px 14px;
  border-radius: var(--radius-sm); cursor: pointer;
  color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); transition: all .2s;
}
.preview-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.preview-screen {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-height: 360px; padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
.preview-widget {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 16px;
}
.preview-widget-title { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.preview-widget-val { font-size: 1.75rem; font-weight: 800; font-family: var(--font-display); color: white; }
.preview-widget-sub { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.preview-bar { height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.preview-bar-fill { height: 100%; border-radius: 2px; background: var(--primary); }
.preview-widget.span2 { grid-column: span 2; }
.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 48px; margin-top: 8px; }
.mini-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(79,70,229,.4); transition: height .5s var(--ease-out-expo); }
.mini-bar.active { background: var(--primary); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--surface-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s var(--ease-out-expo), box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 16px; }
.testimonial-text { font-size: .95rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-l); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--primary); font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .875rem; }
.testimonial-role { font-size: .775rem; color: var(--ink-3); }

/* ── Pricing preview ──────────────────────────────────────── */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.toggle-label { font-size: .875rem; font-weight: 600; color: var(--ink-3); }
.toggle-switch {
  position: relative; width: 44px; height: 24px;
  background: var(--border-2); border-radius: 100px; cursor: pointer;
  transition: background .2s;
}
.toggle-switch.active { background: var(--primary); }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: white;
  transition: left .2s; box-shadow: var(--shadow-sm);
}
.toggle-switch.active::after { left: 23px; }
.toggle-save { background: #ecfdf5; color: #059669; font-size: .75rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; transition: transform .2s var(--ease-out-expo), box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79,70,229,.08);
}
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 16px; border-radius: 100px;
}
.plan-name { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price .amount { font-size: 3rem; font-weight: 800; font-family: var(--font-display); letter-spacing: -.04em; }
.plan-price .period { font-size: .875rem; color: var(--ink-3); }
.plan-desc { font-size: .875rem; color: var(--ink-3); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--ink-2); }
.plan-features li::before { content: '✓'; font-weight: 800; color: var(--success); flex-shrink: 0; }
.plan-features li.muted { color: var(--ink-4); }
.plan-features li.muted::before { content: '–'; color: var(--ink-4); }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  color: white; text-align: center;
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(79,70,229,.35), transparent 70%);
  pointer-events: none;
}
.cta-section .display-2 { color: white; position: relative; }
.cta-section .lead { color: rgba(255,255,255,.65); position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; position: relative; }
.cta-note { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 16px; position: relative; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.55);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  color: white; text-decoration: none; letter-spacing: -.03em;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.footer-brand p { font-size: .875rem; line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar { padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item-val { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
.stat-item-label { font-size: .875rem; color: var(--ink-3); margin-top: 6px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 12px 0; gap: 0; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown { flex-direction: column; }
  .nav-link-item { height: 44px; padding: 0 20px; border-bottom: none; }
  .nav-mega {
    position: static; transform: none; min-width: unset; width: 100%;
    border-radius: 0; border: none; box-shadow: none;
    border-top: 1px solid var(--border); background: #f8fafc;
  }
  .nav-dropdown.active .nav-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-mega-inner { flex-direction: column; padding: 8px 16px; }
  .nav-mega-col { border-left: none !important; padding: 4px 0; }
  .nav-mega-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle { display: block; }
  .preview-screen { grid-template-columns: 1fr; }
  .preview-widget.span2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Nunito Typography Override ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

body, p, span, div, input, button, textarea, select, li, a, td, th {
  font-family: 'Nunito', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 700;
}
.navbar, .nav-link, .menu-item, .nav-links a {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 600;
}
.nav-logo, .navbar-brand, .logo, .brand {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.btn {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 600;
}
