/* Agndalo — Landing pública (marketing) styles */

:root {
  /* Brand */
  --L-ink: #0E1411;
  --L-ink-2: #2B342E;
  --L-mute: #5B655F;
  --L-mute-2: #8A938D;
  --L-line: #E5E1D6;
  --L-line-2: #EFEBDE;
  --L-cream: #FBF8F1;
  --L-cream-2: #F5F1E5;
  --L-paper: #FFFFFF;

  --L-primary: #0F4F3C;
  --L-primary-2: #0B3D2E;
  --L-primary-soft: #E3EEE9;
  --L-primary-tint: #F1F7F4;
  --L-accent: #F4A24A;        /* warm Mexican touch */
  --L-accent-2: #E8854C;
  --L-wa: #25D366;
  --L-violet: #6E5BD4;
  --L-rose:   #D85A78;
  --L-blue:   #2A6FBF;
  --L-amber:  #E9A538;
  --L-coral:  #E87B5C;
  --L-noir:   #1A1814;
  --L-mint:   #1F8A5B;

  --L-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --L-ui:      "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --L-mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --L-r-sm: 8px;
  --L-r-md: 12px;
  --L-r-lg: 18px;
  --L-r-xl: 28px;
  --L-r-pill: 999px;

  /* Fluid sizes */
  --L-h1: clamp(36px, 6vw, 72px);
  --L-h2: clamp(28px, 4vw, 48px);
  --L-h3: clamp(20px, 2.4vw, 26px);
  --L-lead: clamp(16px, 1.6vw, 19px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--L-ui);
  font-size: 16px;
  color: var(--L-ink);
  background: var(--L-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--L-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--L-ink);
  line-height: 1.05;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.tnum { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--L-mono); }

/* ─────────── Layout ─────────── */

.L-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .L-wrap { padding: 0 18px; }
}

.L-section { padding: 80px 0; }
@media (max-width: 768px) {
  .L-section { padding: 56px 0; }
}

.L-section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--L-primary);
  padding: 5px 12px;
  background: var(--L-primary-tint);
  border-radius: var(--L-r-pill);
  margin-bottom: 18px;
}
.L-section-title {
  font-size: var(--L-h2);
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 14px;
}
.L-section-sub {
  font-size: var(--L-lead);
  color: var(--L-mute);
  max-width: 640px;
  line-height: 1.55;
}
.L-section-head { margin-bottom: 48px; }
.L-section-head.center { text-align: center; }
.L-section-head.center .L-section-title,
.L-section-head.center .L-section-sub { margin-left: auto; margin-right: auto; }

/* ─────────── Header ─────────── */

.L-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.L-header.scrolled { border-bottom-color: var(--L-line); }

.L-header-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 0;
}
.L-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--L-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--L-ink);
}
.L-logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--L-primary);
  display: grid; place-items: center;
  color: #fff;
  font-size: 17px;
}
.L-logo span { color: var(--L-primary); }

.L-nav {
  display: flex; align-items: center; gap: 28px;
  margin-left: 18px;
}
.L-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--L-ink-2);
  transition: color .15s;
}
.L-nav a:hover { color: var(--L-primary); }

.L-header-cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
}

.L-hamburger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--L-line);
  background: var(--L-paper);
  border-radius: 10px;
  align-items: center; justify-content: center;
  padding: 0;
}
.L-hamburger svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .L-nav { display: none; }
  .L-hamburger { display: inline-flex; }
  .L-header-cta .btn-text { display: none; }
}
@media (max-width: 560px) {
  .L-header-cta .L-btn:not(.L-btn-primary) { display: none; }
}

/* Mobile menu */
.L-mobile-menu {
  position: fixed; inset: 64px 0 0;
  background: var(--L-cream);
  z-index: 49;
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.L-mobile-menu.is-open { display: flex; }
.L-mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-family: var(--L-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--L-ink);
  border-bottom: 1px solid var(--L-line);
}
.L-mobile-menu .L-mobile-cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
}

/* ─────────── Buttons ─────────── */

.L-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid var(--L-line);
  background: var(--L-paper);
  color: var(--L-ink);
  border-radius: 10px;
  cursor: pointer;
  transition: transform .1s, background .15s, border-color .15s;
  white-space: nowrap;
  line-height: 1;
}
.L-btn:hover { background: var(--L-cream-2); }
.L-btn:active { transform: translateY(1px); }
.L-btn svg { width: 16px; height: 16px; }

.L-btn-primary {
  background: var(--L-primary);
  border-color: var(--L-primary);
  color: #fff;
  padding: 11px 20px;
}
.L-btn-primary:hover { background: var(--L-primary-2); border-color: var(--L-primary-2); }

.L-btn-ghost {
  background: transparent;
  border-color: transparent;
}
.L-btn-ghost:hover { background: var(--L-cream-2); }

.L-btn-lg {
  padding: 14px 26px;
  font-size: 15.5px;
  border-radius: 12px;
}
.L-btn-primary.L-btn-lg { padding: 15px 28px; }

/* ─────────── Hero ─────────── */

.L-hero {
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.L-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .L-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.L-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 6px;
  border-radius: var(--L-r-pill);
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  font-size: 13px;
  color: var(--L-ink-2);
  margin-bottom: 22px;
}
.L-hero-eyebrow-tag {
  background: var(--L-primary);
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--L-r-pill);
  letter-spacing: 0.02em;
}

.L-hero-title {
  font-size: var(--L-h1);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.L-hero-title em {
  font-style: normal;
  color: var(--L-primary);
  position: relative;
  white-space: nowrap;
}
.L-hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--L-accent);
  opacity: 0.35;
  border-radius: 4px;
  z-index: -1;
}

.L-hero-sub {
  font-size: var(--L-lead);
  color: var(--L-mute);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}

.L-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px;
}

.L-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  font-size: 13px; color: var(--L-mute);
}
.L-hero-trust-row { display: flex; align-items: center; gap: 6px; }
.L-hero-trust svg { width: 15px; height: 15px; color: var(--L-primary); }

/* Hero preview */
.L-hero-preview {
  position: relative;
  aspect-ratio: 5/4;
}
.L-hero-preview-card {
  position: absolute;
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  border-radius: 16px;
  box-shadow: 0 30px 60px -25px rgba(15, 79, 60, 0.18), 0 8px 20px -10px rgba(0,0,0,.08);
}
.L-hero-preview-main {
  inset: 0;
  overflow: hidden;
}
.L-hero-preview-header {
  height: 36px;
  background: var(--L-cream);
  border-bottom: 1px solid var(--L-line);
  display: flex; align-items: center; padding: 0 14px; gap: 6px;
}
.L-hero-preview-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--L-line);
}
.L-hero-preview-body {
  padding: 18px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  height: calc(100% - 36px);
}
.L-hero-preview-side {
  display: flex; flex-direction: column; gap: 8px;
}
.L-hero-preview-side-item {
  height: 28px; border-radius: 7px;
  background: var(--L-cream-2);
}
.L-hero-preview-side-item.active {
  background: var(--L-primary-tint);
  position: relative;
}
.L-hero-preview-side-item.active::before {
  content: ""; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--L-primary);
}
.L-hero-preview-content {
  display: grid; grid-template-rows: auto 1fr; gap: 12px; min-height: 0;
}
.L-hero-preview-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.L-hero-preview-kpi {
  padding: 10px;
  background: var(--L-cream);
  border-radius: 8px;
}
.L-hero-preview-kpi-num {
  font-family: var(--L-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.02em;
}
.L-hero-preview-kpi-lbl {
  font-size: 10px; color: var(--L-mute);
}
.L-hero-preview-list {
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.L-hero-preview-appt {
  display: grid; grid-template-columns: 40px 1fr auto;
  gap: 10px; align-items: center;
  padding: 8px 10px;
  background: var(--L-paper);
  border: 1px solid var(--L-line-2);
  border-radius: 8px;
}
.L-hero-preview-appt-time {
  font-family: var(--L-mono); font-weight: 600;
  font-size: 11px; color: var(--L-ink);
}
.L-hero-preview-appt-bar {
  height: 6px; border-radius: 3px; background: var(--L-cream-2);
}
.L-hero-preview-appt-bar.b1 { width: 75%; background: linear-gradient(90deg, var(--L-cream-2) 0, var(--L-cream-2) 60%, transparent 60%, transparent 100%); }
.L-hero-preview-appt-pro {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--L-primary);
  display: grid; place-items: center;
  color: #fff; font-size: 9px; font-weight: 600;
}

/* Floating cards */
.L-hero-float-card {
  position: absolute;
  background: var(--L-paper);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px -16px rgba(15, 79, 60, 0.22);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid var(--L-line);
}
.L-hero-float-card.f1 {
  top: -16px; right: 32px;
  animation: floatA 5s ease-in-out infinite;
}
.L-hero-float-card.f2 {
  bottom: -8px; left: -8px;
  animation: floatB 6s ease-in-out infinite;
}
.L-hero-float-card-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; flex: none;
}

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

/* ─────────── Counters ─────────── */

.L-counters {
  background: var(--L-paper);
  border-top: 1px solid var(--L-line);
  border-bottom: 1px solid var(--L-line);
  padding: 56px 0;
}
.L-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .L-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.L-counter {
  text-align: center;
  padding: 8px;
}
.L-counter-num {
  font-family: var(--L-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
  color: var(--L-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.L-counter-lbl {
  font-size: 14px;
  color: var(--L-mute);
}

/* ─────────── Verticals ─────────── */

.L-verticals { background: var(--L-cream); }
.L-verticals-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .L-verticals-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .L-verticals-grid { grid-template-columns: repeat(2, 1fr); } }

.L-vert {
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  border-radius: var(--L-r-lg);
  padding: 22px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.L-vert:hover {
  transform: translateY(-3px);
  border-color: var(--L-primary);
  box-shadow: 0 18px 40px -22px rgba(15, 79, 60, 0.25);
}
.L-vert-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
}
.L-vert-icon svg { width: 24px; height: 24px; }
.L-vert-name {
  font-family: var(--L-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.L-vert-meta {
  font-size: 12px;
  color: var(--L-mute);
}
.L-vert-flags {
  display: flex; gap: 4px; margin-top: 4px;
}
.L-vert-flag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--L-cream-2);
  color: var(--L-mute);
  letter-spacing: 0.02em;
}
.L-vert-flag.is-on {
  background: var(--L-primary-soft);
  color: var(--L-primary);
}

/* ─────────── Features ─────────── */

.L-features { background: var(--L-paper); }

.L-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--L-line);
}
.L-feature:last-child { border-bottom: none; }
.L-feature.reverse .L-feature-text { order: 2; }

@media (max-width: 900px) {
  .L-feature, .L-feature.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .L-feature.reverse .L-feature-text { order: 1; }
}

.L-feature-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--L-primary);
  margin-bottom: 14px;
}
.L-feature-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}
.L-feature-desc {
  font-size: 16px;
  color: var(--L-mute);
  line-height: 1.6;
  margin-bottom: 22px;
}
.L-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.L-feature-list li {
  display: flex; gap: 10px; font-size: 14.5px;
  color: var(--L-ink-2);
}
.L-feature-list svg { width: 18px; height: 18px; color: var(--L-primary); flex: none; margin-top: 2px; }

/* Feature visual stylings */
.L-feature-vis {
  position: relative;
  border-radius: var(--L-r-lg);
  background: var(--L-cream);
  overflow: hidden;
  border: 1px solid var(--L-line);
  aspect-ratio: 4/3;
  padding: 22px;
}

/* ─────────── Video section ─────────── */

.L-video {
  background: var(--L-noir);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.L-video::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(15, 79, 60, 0.4), transparent 70%);
}
.L-video .L-wrap { position: relative; z-index: 1; text-align: center; }
.L-video .L-section-label {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.L-video .L-section-title { color: #fff; }
.L-video .L-section-sub { color: rgba(255,255,255,.65); }

.L-video-player {
  margin: 48px auto 0;
  max-width: 920px;
  aspect-ratio: 16/9;
  border-radius: var(--L-r-xl);
  background:
    linear-gradient(135deg, rgba(15, 79, 60, 0.7) 0%, rgba(11, 61, 46, 0.9) 100%),
    radial-gradient(circle at 30% 40%, rgba(244, 162, 74, 0.4) 0%, transparent 50%);
  background-color: #1A1814;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.5);
}
.L-video-player::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.L-video-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 0 rgba(255,255,255,.4);
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s ease-out infinite;
}
.L-video-play:hover { transform: scale(1.08); }
.L-video-play svg { width: 32px; height: 32px; margin-left: 4px; color: var(--L-noir); }
@keyframes pulse {
  0% { box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 0 rgba(255,255,255,.35); }
  60% { box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 24px rgba(255,255,255,0); }
  100% { box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 0 rgba(255,255,255,0); }
}

.L-video-caption {
  position: absolute;
  bottom: 22px; left: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  z-index: 2;
  font-family: var(--L-mono);
}

/* ─────────── Testimonials ─────────── */

.L-testimonials { background: var(--L-cream); }
.L-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .L-testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .L-testimonials-grid { grid-template-columns: 1fr; } }

.L-test {
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  border-radius: var(--L-r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.L-test-stars {
  display: flex; gap: 2px; color: var(--L-amber);
}
.L-test-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.L-test-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--L-ink-2);
  flex: 1;
}
.L-test-quote::before { content: "“"; }
.L-test-quote::after  { content: "”"; }
.L-test-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--L-line-2);
}
.L-test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.L-test-name {
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.2;
}
.L-test-role {
  font-size: 12.5px;
  color: var(--L-mute);
  line-height: 1.2;
  margin-top: 3px;
}

/* ─────────── Pricing ─────────── */

.L-pricing { background: var(--L-paper); }
.L-pricing-toggle {
  display: inline-flex; padding: 4px;
  background: var(--L-cream-2);
  border-radius: var(--L-r-pill);
  margin: 0 auto 40px;
  gap: 2px;
}
.L-pricing-toggle-wrap { display: flex; justify-content: center; }
.L-pricing-toggle button {
  padding: 8px 18px;
  border: none;
  background: transparent;
  border-radius: var(--L-r-pill);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  color: var(--L-mute);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.L-pricing-toggle button.is-active {
  background: var(--L-paper);
  color: var(--L-ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.L-pricing-toggle .L-badge-save {
  background: var(--L-primary-tint);
  color: var(--L-primary);
  font-size: 10.5px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.L-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .L-pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

.L-price {
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  border-radius: var(--L-r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.L-price.is-featured {
  background: var(--L-noir);
  color: #fff;
  border-color: var(--L-noir);
  box-shadow: 0 30px 60px -20px rgba(15, 79, 60, 0.3);
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .L-price.is-featured { transform: none; }
}
.L-price-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--L-accent);
  color: var(--L-noir);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--L-r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.L-price-name {
  font-family: var(--L-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.L-price-desc {
  font-size: 13.5px;
  color: var(--L-mute);
  margin-top: 4px;
}
.L-price.is-featured .L-price-desc { color: rgba(255,255,255,.65); }

.L-price-amount {
  font-family: var(--L-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.L-price-amount-currency {
  font-size: 22px;
  font-weight: 500;
  color: var(--L-mute);
}
.L-price.is-featured .L-price-amount-currency { color: rgba(255,255,255,.6); }
.L-price-amount-period {
  font-family: var(--L-ui);
  font-size: 14px;
  color: var(--L-mute);
  font-weight: 400;
  letter-spacing: 0;
}
.L-price.is-featured .L-price-amount-period { color: rgba(255,255,255,.6); }

.L-price-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.L-price-features li {
  display: flex; gap: 10px;
  font-size: 14px;
  color: var(--L-ink-2);
}
.L-price.is-featured .L-price-features li { color: rgba(255,255,255,.85); }
.L-price-features svg {
  width: 18px; height: 18px;
  color: var(--L-primary);
  flex: none; margin-top: 1px;
}
.L-price.is-featured .L-price-features svg { color: var(--L-accent); }
.L-price-cta {
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid var(--L-line);
  background: var(--L-paper);
  color: var(--L-ink);
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  text-align: center;
  display: block;
}
.L-price.is-featured .L-price-cta {
  background: var(--L-accent);
  border-color: var(--L-accent);
  color: var(--L-noir);
}

.L-pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--L-mute);
}

/* ─────────── FAQ ─────────── */

.L-faq { background: var(--L-cream); }
.L-faq-list { max-width: 760px; margin: 0 auto; }
.L-faq-item {
  background: var(--L-paper);
  border: 1px solid var(--L-line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.L-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 500;
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.L-faq-item summary::-webkit-details-marker { display: none; }
.L-faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 1.8px solid var(--L-mute);
  border-bottom: 1.8px solid var(--L-mute);
  transform: rotate(45deg);
  transition: transform .2s;
  flex: none;
  margin-top: -4px;
}
.L-faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.L-faq-item-body {
  padding: 0 22px 20px;
  color: var(--L-mute);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ─────────── Final CTA ─────────── */

.L-cta-final {
  background: var(--L-primary);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.L-cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(244, 162, 74, 0.18), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255,255,255,.06), transparent 60%);
}
.L-cta-final .L-wrap {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.L-cta-final h2 { color: #fff; font-size: var(--L-h2); margin-bottom: 16px; }
.L-cta-final p { font-size: var(--L-lead); color: rgba(255,255,255,.8); margin-bottom: 32px; }
.L-cta-final-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.L-cta-final .L-btn {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(4px);
}
.L-cta-final .L-btn:hover { background: rgba(255,255,255,.18); }
.L-cta-final .L-btn-primary {
  background: var(--L-accent);
  border-color: var(--L-accent);
  color: var(--L-noir);
}
.L-cta-final .L-btn-primary:hover { background: #F2B66E; border-color: #F2B66E; }

/* ─────────── Footer ─────────── */

.L-footer {
  background: var(--L-noir);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.L-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .L-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .L-footer-brand { grid-column: 1 / -1; }
}

.L-footer-brand .L-logo { color: #fff; }
.L-footer-brand .L-logo span { color: var(--L-accent); }
.L-footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
  color: rgba(255,255,255,.55);
}
.L-footer-mx {
  margin-top: 16px;
  font-size: 12.5px;
  display: inline-flex; gap: 6px; align-items: center;
  padding: 5px 10px;
  background: rgba(255,255,255,.05);
  border-radius: var(--L-r-pill);
}

.L-footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 14px;
}
.L-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.L-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.L-footer-col a:hover { color: #fff; }

.L-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.L-footer-bottom-links { display: flex; gap: 18px; }
.L-footer-bottom-links a { color: inherit; }
.L-footer-bottom-links a:hover { color: #fff; }
