/* ═══════════════════════════════════════════════
   PostNowAI — Marketing Landing (dark navy theme)
   ═══════════════════════════════════════════════ */

html, body { margin: 0; padding: 0; }

.l-page {
  --bg: #07081a;
  --bg-elev: #0f1230;
  --bg-card: #11142e;
  --bg-card-hover: #161a3a;
  --border: rgba(255,255,255,.07);
  --border-strong: rgba(255,255,255,.12);
  --text: #ffffff;
  --text-muted: #a4a8c2;
  --text-faint: #6a6f8c;
  --accent: #4d8af0;
  --accent-bright: #6ba6ff;
  --accent-2: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --accent-orange: #f97316;
  --green: #22c55e;

  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  letter-spacing: -.005em;
}
.l-page * { box-sizing: border-box; }
.l-page a { color: inherit; text-decoration: none; }
.l-page button { font-family: inherit; }

/* ── Top Nav ─────────────────────────────────── */
.l-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,8,26,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.l-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
}
.l-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.015em;
  font-size: 1.05rem;
  color: var(--text);
}
.l-brand img {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(77,138,240,.2), rgba(139,92,246,.2));
  padding: 4px;
}
.l-nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 32px;
}
.l-nav-links a {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .15s ease;
}
.l-nav-links a:hover { color: var(--text); }
.l-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.l-link {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 4px;
  transition: color .15s ease;
}
.l-link:hover { color: var(--text); }
.l-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: .87rem;
  box-shadow: 0 4px 16px rgba(77,138,240,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.l-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(77,138,240,.5); }

/* ── Hero ─────────────────────────────────────── */
.l-hero {
  position: relative;
  padding: 100px 28px 80px;
  overflow: hidden;
}
.l-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.l-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 10%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(2px 2px at 80% 15%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 10% 70%, rgba(255,255,255,.45), transparent 50%),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(2px 2px at 35% 80%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 65% 90%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 45%, rgba(255,255,255,.4), transparent 50%);
  opacity: .55;
}
.l-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .4;
}
.l-glow-1 {
  width: 520px; height: 520px;
  top: -150px; left: -120px;
  background: radial-gradient(circle, rgba(77,138,240,.7), transparent 70%);
}
.l-glow-2 {
  width: 580px; height: 580px;
  top: 40px; right: -200px;
  background: radial-gradient(circle, rgba(139,92,246,.55), transparent 70%);
}

.l-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.l-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(77,138,240,.12);
  border: 1px solid rgba(77,138,240,.3);
  font-size: .8rem;
  font-weight: 600;
  color: #c0d3ff;
  margin-bottom: 26px;
}
.l-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(107,166,255,.6);
}

.l-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 0 0 22px;
  color: var(--text);
}
.l-hero-grad {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 30px;
}
.l-hero-sub strong { color: var(--text); font-weight: 600; }

.l-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  max-width: 520px;
}
.l-hero-points li {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.65;
}
.l-hero-assistant {
  margin: 0 0 28px;
  font-size: .98rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 520px;
}

.l-hero-support {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 28px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.l-hero-support-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.35;
}
.l-hero-support-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 580px;
}
.l-hero-support-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 2px solid rgba(136,176,255,.45);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.l-hero-support-cta:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.5);
}

.l-hero-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.l-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 8px 28px rgba(77,138,240,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.l-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 14px 40px rgba(77,138,240,.55);
}
.l-cta-primary.l-cta-large { padding: 16px 32px; font-size: 1.05rem; }
.l-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 600;
  font-size: .94rem;
  transition: all .15s ease;
}
.l-cta-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}

.l-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.l-hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.l-hero-bullets li svg { color: var(--green); }

/* ── Hero mock window ────────────────────────── */
.l-hero-mock { position: relative; }
.l-mock-window {
  background: linear-gradient(135deg, #0e1230, #1a1f44);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 32px 80px -10px rgba(0,0,0,.6),
    0 0 0 1px rgba(77,138,240,.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s ease;
}
.l-mock-window:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.l-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.2);
}
.l-mock-bar > span:not(.l-mock-bar-spark) {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.l-mock-bar > span:nth-child(1) { background: #ff5f57; }
.l-mock-bar > span:nth-child(2) { background: #ffbd2e; }
.l-mock-bar > span:nth-child(3) { background: #27c93f; }
.l-mock-url {
  margin-left: 16px;
  flex: 1;
  text-align: center;
  font-size: .76rem;
  color: var(--text-faint);
  font-family: ui-monospace, monospace;
}
.l-mock-bar-spark { color: var(--accent-bright); font-size: .9rem; }

.l-mock-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.l-mock-row {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.l-mock-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.l-mock-value {
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}
.l-mock-meta {
  font-size: .76rem;
  color: var(--accent-orange);
  font-weight: 600;
}
.l-mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.l-mock-tag {
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}
.l-mock-tag.active {
  background: rgba(77,138,240,.18);
  border-color: rgba(77,138,240,.5);
  color: var(--accent-bright);
}
.l-mock-voice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
  font-weight: 600;
}
.l-mock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}
.l-mock-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77,138,240,.18), rgba(139,92,246,.18));
  border: 1px solid rgba(77,138,240,.3);
  color: var(--accent-bright);
  font-size: .85rem;
  font-weight: 600;
}

/* ── Trust strip ─────────────────────────────── */
.l-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  background: rgba(255,255,255,.02);
}
.l-strip-row {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 32px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-muted);
}
.l-strip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.l-strip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px rgba(107,166,255,.5);
}

/* ── Sections common ─────────────────────────── */
.l-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 28px;
}
.l-section-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.l-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(77,138,240,.1);
  border: 1px solid rgba(77,138,240,.28);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.l-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--text);
  margin: 0;
  max-width: 820px;
}
.l-section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.l-section-sub strong { color: var(--text); font-weight: 600; }

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

/* ── Generic dark card ───────────────────────── */
.l-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.l-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77,138,240,.35);
  background: var(--bg-card-hover);
}
.l-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77,138,240,.18), rgba(139,92,246,.16));
  border: 1px solid rgba(77,138,240,.25);
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.l-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--text);
}
.l-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.l-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--accent-bright);
  transition: gap .15s ease;
}
.l-card-link:hover { gap: 10px; }

.l-step-card { padding-top: 28px; }
.l-step-card .l-step-follow {
  margin-top: 12px;
}
.l-step-card .l-step-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.l-step-card .l-step-points li {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
  margin-top: 6px;
}
.l-step-card .l-step-points li:first-child { margin-top: 0; }
.l-step-card .l-step-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
  opacity: 0.75;
}
.l-step-card .l-card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: .08em;
}

.l-tool-card { min-height: 220px; }

/* ── Product narrative (one workspace) ──────── */
.l-section-product .l-section-head {
  margin-bottom: 12px;
}
.l-product-body {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.l-product-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.l-product-strong {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.l-product-stack {
  list-style: none;
  padding: 0;
  margin: 0 auto 26px;
  text-align: left;
  max-width: 400px;
}
.l-product-stack li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  margin-bottom: 10px;
  line-height: 1.35;
}
.l-product-tagline {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 28px;
}
.l-product-cta {
  display: flex;
  justify-content: center;
}

/* ── Features (2-up grid) ───────────────────── */
.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.l-grid-features .l-tool-card {
  min-height: 0;
}
.l-section-features .l-feature-follow {
  margin-top: 14px;
}

/* ── Mode cards ──────────────────────────────── */
.l-mode-card {
  --hue: var(--accent);
  position: relative;
  display: flex;
  flex-direction: column;
}
.l-mode-card.l-mode-pink   { --hue: var(--accent-pink); }
.l-mode-card.l-mode-orange { --hue: var(--accent-orange); }
.l-mode-card.l-mode-cyan   { --hue: var(--accent-cyan); }
.l-mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hue), color-mix(in srgb, var(--hue) 50%, var(--accent-2)));
}
.l-mode-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--hue) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--hue) 32%, transparent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.l-mode-eta {
  position: absolute;
  top: 32px; right: 28px;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.l-mode-card .l-card-link { color: var(--hue); }

/* ── Step-by-step list ───────────────────────── */
.l-stepper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.l-stepper::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(77,138,240,.35), transparent);
}
.l-stepper-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  position: relative;
  z-index: 1;
  transition: border-color .25s ease, transform .25s ease;
}
.l-stepper-row:hover {
  border-color: rgba(77,138,240,.4);
  transform: translateX(4px);
}
.l-stepper-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77,138,240,.2), rgba(139,92,246,.2));
  border: 1px solid rgba(77,138,240,.35);
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.l-stepper-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.l-stepper-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.l-stepper-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Two-column sections ─────────────────────── */
.l-two-col {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-two-col .l-eyebrow { margin-bottom: 14px; }
.l-two-col .l-section-title { text-align: left; max-width: 480px; }
.l-two-col .l-section-sub { text-align: left; max-width: 520px; }

.l-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-bullets li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: .96rem;
  color: var(--text);
}
.l-bullets li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,.18);
  color: var(--green);
}

/* ── WhatsApp phone ──────────────────────────── */
.l-section-whatsapp { padding-top: 40px; padding-bottom: 100px; }
.l-wa-phone {
  max-width: 380px;
  margin: 0 auto;
  background: #efeae2;
  border-radius: 28px;
  padding: 26px 20px 32px;
  border: 8px solid #1a1a1a;
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,.5),
    0 0 0 1px rgba(77,138,240,.08);
}
.l-wa-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.l-wa-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800;
}
.l-wa-header strong { display: block; font-size: .92rem; color: #18181b; }
.l-wa-header small { display: block; font-size: .72rem; color: #6b7280; }
.l-wa-bubble {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .9rem;
  line-height: 1.55;
  color: #18181b;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.l-wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
}

/* ── Voice cards (good vs bad) ───────────────── */
.l-section-voice .l-two-col-visual { display: flex; flex-direction: column; gap: 16px; }
.l-voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.l-voice-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.l-voice-bad { opacity: .65; }
.l-voice-bad .l-voice-tag { background: rgba(239,68,68,.18); color: #fca5a5; }
.l-voice-good {
  border-color: rgba(34,197,94,.4);
  box-shadow: 0 12px 30px -12px rgba(34,197,94,.25);
}
.l-voice-good .l-voice-tag { background: rgba(34,197,94,.18); color: #86efac; }
.l-voice-card p { margin: 0; font-size: .98rem; line-height: 1.55; color: var(--text); }

/* ── Pricing ─────────────────────────────────── */
.l-grid-pricing { gap: 22px; max-width: 1180px; margin: 0 auto; }
.l-price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
}
.l-price-card.is-highlight {
  border-color: rgba(77,138,240,.45);
  background: linear-gradient(180deg, rgba(77,138,240,.08), var(--bg-card));
  box-shadow:
    0 0 0 1px rgba(77,138,240,.18),
    0 20px 60px -10px rgba(77,138,240,.3);
  transform: translateY(-4px);
}
.l-price-card.is-highlight:hover { transform: translateY(-8px); }
.l-price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(77,138,240,.4);
}
.l-price-name {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.l-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.l-price-amt {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
}
.l-price-per {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.l-price-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 22px;
}
.l-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 22px;
  transition: all .15s ease;
}
.l-price-cta:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.l-price-cta.is-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 6px 20px rgba(77,138,240,.4);
}
.l-price-cta.is-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(77,138,240,.55);
}
.l-price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-price-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
}
.l-price-features li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  color: var(--green);
}
.l-price-card.is-highlight .l-price-features li { color: var(--text); }

/* ── FAQ (uses native <details>/<summary>) ───── */
.l-section-faq { max-width: 820px; }
.l-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color .15s ease, background .15s ease;
}
.l-faq-item:hover { border-color: rgba(77,138,240,.4); background: var(--bg-card-hover); }
.l-faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.l-faq-item summary::-webkit-details-marker { display: none; }
.l-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.l-faq-chevron {
  color: var(--text-muted);
  transition: transform .2s ease;
  display: inline-flex;
}
.l-faq-item[open] .l-faq-chevron { transform: rotate(180deg); color: var(--accent-bright); }
.l-faq-a {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}

/* ── Final CTA ───────────────────────────────── */
.l-final {
  padding: 60px 28px 100px;
}
.l-final-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(77,138,240,.18), rgba(139,92,246,.22));
  border: 1px solid rgba(77,138,240,.4);
  border-radius: 28px;
  padding: 64px 40px;
  overflow: hidden;
}
.l-final-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(77,138,240,.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139,92,246,.4), transparent 50%);
  pointer-events: none;
  opacity: .6;
}
.l-final-card h2 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  color: var(--text);
}
.l-final-card p {
  position: relative;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 30px;
}
.l-final-card .l-cta-primary { position: relative; }

/* ── Footer ──────────────────────────────────── */
.l-footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  padding: 48px 28px 32px;
}
.l-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.l-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.l-footer-brand img {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(77,138,240,.2), rgba(139,92,246,.2));
  padding: 5px;
}
.l-footer-brand strong {
  display: block;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--text);
}
.l-footer-brand small {
  display: block;
  font-size: .8rem;
  color: var(--text-faint);
}
.l-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.l-footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .15s ease;
}
.l-footer-links a:hover { color: var(--text); }
.l-footer-meta {
  text-align: right;
  font-size: .8rem;
  color: var(--text-faint);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1080px) {
  .l-hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .l-mock-window { transform: none; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 880px) {
  .l-grid-3 { grid-template-columns: 1fr; }
  .l-two-col { grid-template-columns: 1fr; gap: 40px; }
  .l-two-col .l-section-title,
  .l-two-col .l-section-sub { text-align: center; max-width: 100%; }
  .l-section { padding: 70px 22px; }
  .l-hero { padding: 70px 22px 56px; }
  .l-hero-support { padding: 40px 18px 8px; }
  .l-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .l-footer-meta { text-align: center; }
  .l-footer-brand { justify-content: center; }
  .l-strip-row { justify-content: center; gap: 12px 22px; }
  .l-price-card.is-highlight { transform: none; }
  .l-price-card.is-highlight:hover { transform: translateY(-4px); }
  .l-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .l-nav-links { display: none; }
  .l-nav-inner { grid-template-columns: 1fr auto; padding: 12px 18px; }
  .l-link { display: none; }
  .l-hero-title { font-size: 2.2rem; }
  .l-section-title { font-size: 1.8rem; }
  .l-final-card { padding: 48px 24px; }
}
