/* ═══════════════════════════════════════════════════════════════════════════
   CONISTRA MARKETING SITE — style.css
   Landing page + Pricing page shared styles
   Brand: Space Grotesk · Teal primary · Orange accent · Soft gradients
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Design tokens ────────────────────────────────────────────────────── */
:root {
  --teal-500:  #14b8a6;
  --teal-600:  #0f766e;
  --teal-700:  #0b5b55;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --purple-400: #a78bfa;
  --purple-500: #8b5cf6;
  --pink-400:   #f472b6;

  --text-primary:   #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted:     #9ca3af;
  --surface:        #ffffff;
  --bg:             #fafaf8;
  --border:         #e8e5df;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);

  /* Gradients */
  --grad-teal:   linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  --grad-orange: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  --grad-purple: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  --grad-hero:   linear-gradient(150deg, #f0fdfa 0%, #fafaf8 40%, #fff7ed 100%);
  --grad-brand:  linear-gradient(135deg, #14b8a6 0%, #8b5cf6 50%, #f97316 100%);
  --grad-text:   linear-gradient(135deg, #0f766e 0%, #8b5cf6 60%, #f97316 100%);
}

/* ── Lucide icon sizing ───────────────────────────────────────────────── */
/* Lucide createIcons() replaces <i data-lucide="…"> with <svg>. Any
   classes on the <i> are preserved on the resulting <svg>. */

.icon-logo     { width: 18px; height: 18px; color: var(--teal-600); vertical-align: middle; flex-shrink: 0; }
.icon-step     { width: 40px; height: 40px; color: var(--teal-600); }
.icon-audience { width: 36px; height: 36px; color: var(--teal-600); }
.icon-card-header { width: 20px; height: 20px; flex-shrink: 0; }
.icon-tag      { width: 13px; height: 13px; vertical-align: middle; flex-shrink: 0; }
.icon-sm       { width: 15px; height: 15px; vertical-align: middle; flex-shrink: 0; }
.icon-xs       { width: 12px; height: 12px; vertical-align: middle; flex-shrink: 0; }
.icon-star     { width: 15px; height: 15px; fill: #fbbf24; color: #fbbf24; vertical-align: middle; }
.icon-check    { width: 14px; height: 14px; color: var(--teal-600); flex-shrink: 0; }
.icon-minus    { width: 14px; height: 14px; color: var(--text-muted); flex-shrink: 0; }
.icon-badge    { width: 11px; height: 11px; vertical-align: middle; }

/* ── Typography helpers ───────────────────────────────────────────────── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--teal-600);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background .18s ease, transform .1s ease, box-shadow .18s ease;
  box-shadow: 0 2px 8px rgba(15,118,110,.25);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,118,110,.35);
}
.btn-primary:active { transform: none; }

.btn-sm  { font-size: 13px; padding: 8px 16px; }
.btn-lg  { font-size: 16px; padding: 14px 28px; }
.btn-xl  { font-size: 17px; padding: 16px 32px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--teal-600);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--teal-600);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.btn-outline:hover { background: var(--teal-600); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(0,0,0,.05); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .15s ease;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.25); }

/* ── Section labels & titles ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,.7); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
}

.section {
  padding: 96px 0;
}
.section-alt {
  background: linear-gradient(180deg, #f4f8f7 0%, #fafaf8 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform .3s ease, background .25s ease, box-shadow .25s ease;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.nav-logo .icon-logo {
  width: 20px; height: 20px;
  color: var(--teal-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover, .nav-links .nav-active {
  color: var(--text-primary);
  background: rgba(0,0,0,.05);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav.nav-scrolled {
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .2s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}
.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }

.nav.nav-open .nav-mobile-menu { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: rgba(20, 184, 166, .1);
  border: 1px solid rgba(20, 184, 166, .2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-reassurance {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero background glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  bottom: 0; left: 20%;
}

/* ── Mock dashboard ─────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
}

.mock-dashboard {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.05);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #f9f8f5;
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }

.mock-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 8px;
  flex: 1;
  text-align: center;
}

.mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.mock-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mock-card-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 8px 10px 0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mock-card-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 10px;
  border-radius: var(--radius-sm);
}

.mock-img-text {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.teal-gradient   { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.orange-gradient { background: linear-gradient(135deg, #fb923c, #f97316); }
.purple-gradient { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.mock-card-cap {
  font-size: 10px;
  color: var(--text-secondary);
  padding: 4px 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mock-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
}

.mock-status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: .05em;
}
.mock-status.scheduled  { background: #d1fae5; color: #065f46; }
.mock-status.generating { background: #dbeafe; color: #1e40af; }

.mock-time {
  font-size: 9px;
  color: var(--text-muted);
}

/* Mini calendar */
.mock-calendar {
  background: #f9f8f5;
  border-radius: var(--radius-md);
  padding: 12px;
}

.mock-cal-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mock-cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  height: 32px;
  border-radius: var(--radius-sm);
  gap: 2px;
}

.cal-day.filled {
  background: rgba(20,184,166,.1);
  color: var(--teal-700);
}

.cal-dot {
  width: 5px; height: 5px;
  background: var(--teal-500);
  border-radius: 50%;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.float-tl { top: -18px; left: -20px; animation: floatUp 3s ease-in-out infinite; }
.float-br { bottom: -18px; right: -20px; animation: floatUp 3s ease-in-out 1.5s infinite; }

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

/* ═══════════════════════════════════════════════════════════════════════════
   PROOF STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.proof-strip {
  background: var(--teal-600);
  padding: 20px 24px;
}

.proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.proof-stars {
  font-size: 16px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.proof-copy {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,.9);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.step-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,184,166,.1);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-muted);
  padding: 0 8px;
  align-self: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXAMPLE OUTPUT
   ═══════════════════════════════════════════════════════════════════════════ */
.output-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}

.output-strategy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.output-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.output-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.output-card-icon { width: 22px; height: 22px; flex-shrink: 0; }

.strategy-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.strategy-item:last-child { border-bottom: none; }

.strategy-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strategy-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.pillars-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4f8f7;
  border: 1px solid rgba(20,184,166,.2);
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.output-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Instagram post card */
.insta-post {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.insta-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.orange-av { background: var(--grad-orange); }

.insta-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.insta-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.insta-image {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}

.insta-image-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.carousel-indicator { align-items: center; justify-content: center; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.carousel-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.carousel-dots .dot.active { background: #fff; }

.insta-caption {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

.insta-hashtags {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--teal-600);
  font-weight: 500;
}

.insta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.insta-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHO IT'S FOR
   ═══════════════════════════════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.audience-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.audience-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.audience-emoji {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,184,166,.08);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING TEASER (landing)
   ═══════════════════════════════════════════════════════════════════════════ */
.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card-featured {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(20,184,166,.2), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.plan-tagline {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-cta-note {
  text-align: center;
  margin-top: 32px;
}

.link-arrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-600);
}
.link-arrow:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 4px 22px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, #0f766e 0%, #0b5b55 40%, #1e1b4b 100%);
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand .icon-logo {
  color: var(--teal-500);
  width: 20px; height: 20px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

.footer-links {
  display: flex;
  gap: 48px;
}

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

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING PAGE SPECIFIC
   ═══════════════════════════════════════════════════════════════════════════ */
.pricing-hero {
  padding: 120px 0 64px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pricing-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}

.billing-opt {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-opt-active {
  background: var(--teal-600);
  color: #fff;
}

.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(249,115,22,.15);
  color: var(--orange-600);
  padding: 2px 8px;
  border-radius: 100px;
}

.billing-opt-active .save-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* Full pricing cards */
.pricing-section {
  padding: 64px 0 96px;
}

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

.pricing-card-full {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card-full-featured {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(20,184,166,.2), var(--shadow-xl);
  transform: translateY(-8px);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(15,118,110,.35);
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-name-lg {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-price-lg {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.03em;
  line-height: 1;
  transition: opacity .2s;
}

.price-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
}

.plan-for {
  font-size: 12px;
  color: var(--teal-600);
  font-weight: 600;
  background: rgba(20,184,166,.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.plan-features-full {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.feature-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0 6px;
}

.feature-row {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-row:last-child { border-bottom: none; }

.feature-row.yes {
  color: var(--text-primary);
}
.feature-row.yes::before {
  content: '✓';
  color: var(--teal-600);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.feature-row.no {
  color: var(--text-muted);
}
.feature-row.no::before {
  content: '—';
  color: var(--border);
  flex-shrink: 0;
}

/* ── Compare table ──────────────────────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 52px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.compare-table thead tr {
  background: #f9f8f5;
}

.compare-table th {
  padding: 20px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.compare-table th.compare-feature-col {
  text-align: left;
  width: 35%;
}

.compare-price {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 2px;
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.compare-table .compare-featured {
  background: rgba(20,184,166,.04);
  font-weight: 600;
  color: var(--teal-700);
}

.compare-table thead .compare-featured {
  background: rgba(20,184,166,.12);
  border-left: 2px solid rgba(20,184,166,.3);
  border-right: 2px solid rgba(20,184,166,.3);
}

.compare-group-row td {
  background: #f9f8f5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  text-align: left !important;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    max-width: 680px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }

  .output-layout {
    grid-template-columns: 1fr;
  }
  .output-strategy {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .output-strategy > * { flex: 1 1 280px; }
}

@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector { transform: rotate(90deg); align-self: center; }

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

  .pricing-teaser-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-cards-grid  { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card-full-featured { transform: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 36px; }
  .mock-grid { grid-template-columns: 1fr 1fr; }
  .mock-grid .mock-card:last-child { display: none; }
  .float-tl, .float-br { display: none; }

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

  .cta-card { padding: 48px 24px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 13px; }
}
