/* ============================================================
   LANDING PAGE — Maestro
   Light only (caderno palette). No dark mode.
   Storytelling redesign — narrative flow.
   ============================================================ */

/* ── Variables (caderno palette) ── */
:root {
  --l-bg:        #efe6d4;
  --l-bg-2:      #e8ddc8;
  --l-bg-alt:    #e7dcc4;
  --l-surface:   #f5efe3;
  --l-surface-2: #ece4d2;
  --l-ink:       #18110a;
  --l-ink-2:     #3a2c1c;
  --l-ink-3:     #6a5238;
  --l-ink-4:     #9a8260;
  --l-line:      #d0c09a;
  --l-line-2:    #bcac80;
  --l-green:     #2d6624;
  --l-green-2:   #3d8c35;
  --l-green-3:   #245520;
  --l-green-bg:  rgba(45,102,36,0.07);
  --l-logo:      #2d6624;
  --l-white:     #fff;
  --l-radius:    14px;
  --l-radius-l:  20px;
  --l-ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --l-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --l-shadow-sm: 0 1px 2px rgba(60,40,20,0.07), 0 1px 1px rgba(60,40,20,0.05);
  --l-shadow-md: 0 4px 16px rgba(60,40,20,0.10), 0 2px 4px rgba(60,40,20,0.06);
  --l-shadow-lg: 0 18px 40px rgba(40,25,10,0.16), 0 6px 14px rgba(40,25,10,0.09);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--l-ink);
  background: var(--l-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--l-ink-3, #8a7a6a) transparent;
}
html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar { width: 8px; height: 8px; }
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, *::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb { background: #8a7a6a; border-radius: 20px; min-height: 40px; }
html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover { background: #3c2418; }
html::-webkit-scrollbar-button, body::-webkit-scrollbar-button, *::-webkit-scrollbar-button { display: none !important; width: 0 !important; height: 0 !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ── Grain texture ── */
body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ── Vinheta ambiente — o "fundo da hero" agora na landing inteira ──
   Overlay fixo (viewport), acima do conteúdo das seções e abaixo da navbar (z 100).
   Reversível: basta remover este bloco. */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  box-shadow: inset 0 0 120px 40px rgba(24,17,10,0.12);
}

/* ── Container ── */
.l-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Animations ── */
@keyframes l-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--l-ease), transform 0.7s var(--l-ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}



/* ============================================================
   NAVBAR — seamless (no border, blends with hero)
   ============================================================ */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(239,230,212,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  /* No border-bottom — seamless with hero */
}

.l-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
}

.l-nav-logo {
  color: var(--l-logo);
  display: flex;
  align-items: center;
  transform: translateY(-2px);
  transition: opacity 0.15s var(--l-ease);
}
.l-nav-logo:hover { opacity: 0.75; }

/* Center links — Plataforma, Preços, Novidades */
.l-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}
.l-nav-center a {
  font-size: 14px;
  font-weight: 500;
  color: var(--l-ink-3);
  transition: color 0.15s var(--l-ease);
}
.l-nav-center a:hover { color: var(--l-ink); }

/* Right group — Entrar + Parceiro */
.l-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

/* "Torne-se um parceiro" — green highlight */
.l-nav-partner {
  color: var(--l-green) !important;
  font-weight: 600 !important;
}
.l-nav-partner:hover {
  color: var(--l-green-3) !important;
}

.l-nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--l-white) !important;
  background: var(--l-green);
  padding: 8px 18px;
  border-radius: 10px;
  transition: all 0.15s var(--l-ease);
}
.l-nav-cta:hover {
  background: var(--l-green-3);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.l-nav-menu {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--l-ink-2);
}
.l-nav-menu svg { width: 22px; height: 22px; }

/* Mobile dropdown */
.l-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 32px 20px;
  border-top: 1px solid var(--l-line);
}
.l-nav-mobile.open { display: flex; }
.l-nav-mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--l-ink-2);
  border-bottom: 1px solid var(--l-line);
  transition: color 0.15s var(--l-ease);
}
.l-nav-mobile a:last-child { border-bottom: none; }
.l-nav-mobile a:hover { color: var(--l-ink); }
.l-nav-mobile .l-nav-partner {
  color: var(--l-green) !important;
  font-weight: 600;
}
.l-nav-mobile .l-nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
  color: var(--l-white) !important;
}


/* ============================================================
   HERO — bigger, bolder, more impact
   ============================================================ */
.l-hero {
  position: relative;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 0;
}

/* Vinheta da hero movida para body::after (vale pra landing inteira) */

/* Eyebrow badge — used on other sections (parents, etc.) */
.l-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--l-green);
  background: var(--l-green-bg);
  border: 1px solid rgba(45,102,36,0.14);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 28px;
}

.l-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: var(--l-ink);
  margin-top: 40px;
  margin-bottom: 32px;
  letter-spacing: -1.5px;
  animation: l-fadeUp 0.7s var(--l-ease) 0.15s both;
}

.l-hero-green {
  color: var(--l-green);
}

.l-hero-sub {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-style: normal;
  font-size: clamp(12.5px, 1.4vw, 14px);
  font-weight: 400;
  color: var(--l-ink-3);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
  animation: l-fadeUp 0.7s var(--l-ease) 0.3s both;
}

.l-hero-actions {
  animation: l-fadeUp 0.7s var(--l-ease) 0.45s both;
}

.l-hero-cta {
  display: inline-block;
  padding: 18px 80px;
  font-size: 16px;
  font-weight: 600;
  color: var(--l-white);
  background: var(--l-green);
  border-radius: 14px;
  transition: all 0.18s var(--l-ease);
  box-shadow: 0 4px 20px rgba(45,102,36,0.22);
}
.l-hero-cta:hover {
  background: var(--l-green-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,102,36,0.30);
}

/* Hero end separator — removed, vignette handles transition */
.l-hero-end {
  display: none;
}


/* ============================================================
   NARRATIVE SECTIONS (Problem + Solution)
   ============================================================ */
.l-narrative {
  padding: 80px 0;
  text-align: center;
}

.l-narrative--alt {
  background: var(--l-bg-alt);
}

.l-narrative-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
}

.l-narrative h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-style: italic;
  font-weight: 500;
  color: var(--l-ink);
  margin-bottom: 24px;
  line-height: 1.25;
}

.l-narrative p {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.l-narrative p:last-child {
  margin-bottom: 0;
}

.l-narrative-emphasis {
  font-weight: 500 !important;
  color: var(--l-ink) !important;
  font-style: italic;
}


/* ============================================================
   NARRATIVE — sub-headings + green link
   ============================================================ */
.l-narrative-sub-heading {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-top: 32px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.l-green-link {
  color: var(--l-green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s var(--l-ease);
}
.l-green-link:hover {
  text-decoration-color: var(--l-green);
}


/* ============================================================
   DIVIDER (book-style)
   ============================================================ */
.l-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.l-divider span {
  display: block;
  width: 5px; height: 5px;
  background: var(--l-green);
  border-radius: 50%;
  position: relative;
  opacity: 0.5;
}
.l-divider span::before,
.l-divider span::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 48px;
  background: var(--l-line-2);
  transform: translateY(-50%);
}
.l-divider span::before { right: 14px; }
.l-divider span::after  { left: 14px; }


/* ============================================================
   SECTION TITLES (shared — used by pricing too)
   ============================================================ */
.l-section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 500;
  font-style: italic;
  color: var(--l-ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.l-section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-3);
  margin-bottom: 52px;
}


/* ============================================================
   SHOWCASE — individual feature sections (alternating)
   ============================================================ */
.l-showcase {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Flip: text goes left, media goes right */
.l-showcase--flip .l-showcase-grid {
  direction: rtl;
}
.l-showcase--flip .l-showcase-grid > * {
  direction: ltr;
}

/* Media placeholder */
.l-showcase-media {
  width: 100%;
}

.l-showcase-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--l-bg-alt);
  border: 1px solid var(--l-line);
  border-radius: var(--l-radius-l);
}

/* Text side — aligns to the side closest to the media */
.l-showcase-text {
  padding: 16px 0;
  text-align: left;
}

/* When flipped (media on right), text aligns right */
.l-showcase--flip .l-showcase-text {
  text-align: right;
}
.l-showcase--flip .l-showcase-text p {
  margin-left: auto;
}

.l-showcase-text h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.l-showcase-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--l-ink-3);
  line-height: 1.8;
  max-width: 440px;
}


/* ============================================================
   IMPACT QUOTE
   ============================================================ */
.l-impact {
  padding: 88px 0;
  text-align: center;
}

.l-impact p {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(22px, 4vw, 32px);
  font-style: italic;
  font-weight: 500;
  color: var(--l-ink);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.35;
}


/* ============================================================
   NOVIDADES
   ============================================================ */
.l-novidades {
  padding: 80px 0;
  text-align: center;
}
.l-novidades .l-section-title { margin-bottom: 6px; }
.l-novidades .l-section-sub {
  color: var(--l-ink-2);
  font-size: 1rem;
  margin-bottom: 40px;
}
.l-novidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  text-align: left;
}
.l-novidades-empty {
  text-align: center;
  color: var(--l-ink-2);
  font-size: 0.95rem;
  grid-column: 1 / -1;
  padding: 40px 0;
}
.l-news-card {
  background: var(--l-surface);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.l-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.l-news-card-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.l-news-card-body {
  padding: 20px;
}
.l-news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.l-news-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--l-green);
  color: #fff;
}
.l-news-card-date {
  font-size: 0.75rem;
  color: var(--l-ink-2);
}
.l-news-card-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--l-ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.l-news-card-excerpt {
  font-size: 0.88rem;
  color: var(--l-ink-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   PARENTS PAGE — dedicated /pais
   ============================================================ */
.l-parents-hero {
  text-align: center;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 48px;
  background: var(--l-bg-alt);
}

.l-parents-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.l-parents-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-3);
  max-width: 520px;
  margin: 0 auto;
}

.l-parents-content {
  padding: 48px 0 64px;
  background: var(--l-bg-alt);
}

.l-parents-content .l-parents-body {
  max-width: 640px;
  margin: 0 auto;
}

.l-parents-content .l-parents-body h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-top: 40px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.l-parents-content .l-parents-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.l-parents-pricing-link {
  color: var(--l-green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s var(--l-ease);
}
.l-parents-pricing-link:hover {
  color: var(--l-green-3);
}

.l-parents-cta {
  text-align: center;
  padding: 48px 0 80px;
}

.l-hero-cta--lg {
  padding: 22px 110px;
  font-size: 18px;
}

/* ── Studies / research stats — marquee ── */
.l-studies {
  padding: 80px 0 96px;
  background: var(--l-bg);
  text-align: center;
  overflow: hidden;
}

.l-studies-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-style: italic;
  font-weight: 500;
  color: var(--l-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.l-studies-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--l-ink-3);
  margin-bottom: 48px;
}

.l-studies-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.l-studies-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: l-marquee 50s linear infinite;
}

.l-studies-track:hover {
  animation-play-state: running;
}

@keyframes l-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.l-studies-stat {
  flex-shrink: 0;
  width: 280px;
  padding: 32px 24px;
  background: var(--l-surface);
  border: 1px solid var(--l-line);
  border-radius: var(--l-radius-l);
  text-align: center;
}

.l-studies-number {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  font-style: italic;
  color: var(--l-green);
  line-height: 1;
  margin-bottom: 14px;
}

.l-studies-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--l-ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
}

.l-studies-source {
  font-size: 11px;
  font-weight: 400;
  color: var(--l-ink-4);
  text-decoration: none;
  transition: color 0.15s var(--l-ease);
}
.l-studies-source:hover {
  color: var(--l-green);
}

@media (max-width: 640px) {
  .l-parents-hero { padding-top: 110px; padding-bottom: 36px; }
  .l-parents-content { padding: 32px 0 48px; }
  .l-parents-cta { padding: 36px 0 64px; }
  .l-parents-cta .l-hero-cta { width: 100%; max-width: 340px; text-align: center; padding: 18px 48px; }
  .l-studies { padding: 56px 0 48px; }
  .l-studies-stat { width: 240px; padding: 24px 20px; }
  .l-studies-number { font-size: 36px; }
}


/* ============================================================
   LEGAL PAGE — termos + privacidade
   ============================================================ */
.l-legal-hero {
  text-align: center;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 48px;
}

.l-legal-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.l-legal-updated {
  font-size: 13px;
  font-weight: 400;
  color: var(--l-ink-4);
  margin-bottom: 28px;
}

.l-legal-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.l-legal-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--l-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s var(--l-ease);
}
.l-legal-nav a:hover {
  text-decoration-color: var(--l-green);
}

.l-legal-content {
  padding: 32px 0 80px;
}

.l-legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.l-legal-body h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-top: 64px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--l-line);
  line-height: 1.3;
}

.l-legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.l-legal-body h3 {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--l-ink);
  margin-top: 36px;
  margin-bottom: 12px;
}

.l-legal-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--l-ink-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.l-legal-body ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}

.l-legal-body li {
  font-size: 14px;
  font-weight: 400;
  color: var(--l-ink-2);
  line-height: 1.8;
  margin-bottom: 4px;
}

.l-legal-body strong {
  font-weight: 600;
  color: var(--l-ink);
}

.l-legal-end {
  margin-top: 48px;
  padding: 24px;
  background: var(--l-green-bg);
  border: 1px solid rgba(45,102,36,0.14);
  border-radius: var(--l-radius);
  text-align: center;
}

.l-legal-end p {
  font-weight: 500;
  color: var(--l-ink);
}

@media (max-width: 640px) {
  .l-legal-hero { padding-top: 110px; padding-bottom: 36px; }
  .l-legal-content { padding: 24px 0 64px; }
  .l-legal-nav { flex-direction: column; gap: 12px; }
}


/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.l-partners-hero {
  text-align: center;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 56px;
  background: var(--l-bg);
}

.l-partners-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.l-partners-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Steps grid ── */
.l-partners-steps { padding: 64px 0 80px; }

.l-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.l-step {
  background: var(--l-surface);
  border: 1px solid var(--l-line);
  border-radius: var(--l-radius-l);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.22s var(--l-ease);
}
.l-step:hover {
  background: var(--l-surface-2);
  transform: translateY(-3px);
  box-shadow: var(--l-shadow-md);
}

.l-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--l-green);
  color: var(--l-white);
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
}

.l-step h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-bottom: 10px;
}

.l-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--l-ink-3);
  line-height: 1.7;
}
.l-step p strong {
  font-weight: 600;
  color: var(--l-ink-2);
}

/* ── Calculator ── */
.l-partners-calc { padding: 40px 0 80px; }

.l-calc-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--l-surface);
  border: 1px solid var(--l-line);
  border-radius: var(--l-radius-l);
  padding: 40px 36px;
  box-shadow: var(--l-shadow-sm);
}

.l-calc-slider-area { margin-bottom: 36px; }

.l-calc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--l-ink-4);
  margin-bottom: 16px;
}

.l-calc-slider-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-calc-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--l-green) var(--fill, 9%), var(--l-line) var(--fill, 9%));
  outline: none;
  cursor: pointer;
}
.l-calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--l-green);
  border: 3px solid var(--l-white);
  box-shadow: 0 2px 8px rgba(45,102,36,0.3);
  cursor: grab;
  transition: transform 0.15s var(--l-ease);
}
.l-calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.l-calc-range::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}
.l-calc-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--l-green);
  border: 3px solid var(--l-white);
  box-shadow: 0 2px 8px rgba(45,102,36,0.3);
  cursor: grab;
}

.l-calc-count {
  font-family: 'Lora', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: var(--l-green);
  min-width: 56px;
  text-align: right;
}

.l-calc-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-calc-plan {
  padding: 20px 0;
}
.l-calc-plan:first-child { padding-top: 0; }
.l-calc-plan:last-child { padding-bottom: 0; }

.l-calc-plan-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--l-ink);
  margin-bottom: 12px;
}
.l-calc-plan-price {
  font-weight: 400;
  color: var(--l-ink-4);
  font-size: 13px;
}

.l-calc-values {
  display: flex;
  gap: 32px;
}

.l-calc-value-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--l-ink-4);
  margin-bottom: 4px;
}

.l-calc-value-amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--l-ink);
}

.l-calc-value-total {
  color: var(--l-green);
}

.l-calc-divider {
  height: 1px;
  background: var(--l-line);
}

.l-calc-note {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 400;
  color: var(--l-ink-4);
  text-align: center;
}

/* ── FAQ on partners page ── */
.l-partners-faq { padding: 64px 0; }

@media (max-width: 640px) {
  .l-partners-hero { padding-top: 110px; padding-bottom: 40px; }
  .l-steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .l-step { padding: 28px 24px; }
  .l-calc-card { padding: 28px 20px; }
  .l-calc-values { flex-direction: column; gap: 16px; }
  .l-calc-value-amount { font-size: 24px; }
  .l-calc-count { font-size: 26px; min-width: 44px; }
  .l-partners-faq { padding: 48px 0; }
}


/* ============================================================
   PARENTS BRIDGE — animated green link
   ============================================================ */
.l-parents-bridge {
  padding: 48px 0;
  text-align: center;
  background: var(--l-bg-alt);
}

.l-parents-bridge-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--l-ink-3);
  line-height: 1.7;
}

.l-parents-link {
  color: var(--l-ink-3);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.5s var(--l-ease), text-decoration-color 0.5s var(--l-ease);
}

/* Animate to green when section becomes visible */
.l-parents-bridge.visible .l-parents-link {
  color: var(--l-green);
  text-decoration-color: var(--l-green);
}


/* ============================================================
   PARENTS SECTION
   ============================================================ */
.l-parents {
  padding: 96px 0;
  background: var(--l-bg);
}

.l-parents .l-eyebrow {
  animation: none;
  margin-bottom: 20px;
}

.l-parents-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-style: italic;
  font-weight: 500;
  color: var(--l-ink);
  margin-bottom: 32px;
  line-height: 1.25;
  text-align: center;
}

.l-parents-body {
  text-align: center;
}

.l-parents-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--l-ink-2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.l-parents-body p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   TRUST
   ============================================================ */
.l-trust {
  padding: 48px 0 56px;
}

.l-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.l-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--l-ink-3);
  font-size: 14px;
  font-weight: 500;
}
.l-trust-item svg {
  width: 20px; height: 20px;
  opacity: 0.65;
}


/* ============================================================
   CTA FINAL
   ============================================================ */
.l-cta-final {
  padding: 80px 0 100px;
  text-align: center;
}

.l-cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 500;
  font-style: italic;
  color: var(--l-ink);
  line-height: 1.2;
  margin-bottom: 32px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.l-footer {
  background: var(--l-bg-2);
  padding: 40px 0 0;
}

.l-footer-trust {
  padding-bottom: 36px;
  margin-bottom: 36px;
}

.l-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.l-footer-brand {
  color: var(--l-logo);
}
.l-footer-brand p {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 300;
  color: var(--l-ink-4);
  max-width: 260px;
}

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

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

.l-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--l-ink-4);
  margin-bottom: 4px;
}

.l-footer-col a {
  font-size: 14px;
  font-weight: 400;
  color: var(--l-ink-3);
  transition: color 0.15s var(--l-ease);
}
.l-footer-col a:hover { color: var(--l-ink); }

.l-footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  text-align: center;
}
.l-footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: var(--l-ink-4);
}


/* ============================================================
   FAQ (reused by pricing page)
   ============================================================ */
.l-faq-item {
  border-bottom: 1px solid var(--l-line);
}

.l-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--l-ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s var(--l-ease);
}
.l-faq-item summary::-webkit-details-marker { display: none; }

.l-faq-item summary::after {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a5238' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s var(--l-ease);
}

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

.l-faq-item summary:hover { color: var(--l-green); }

.l-faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--l-ink-3);
  line-height: 1.7;
}


/* ============================================================
   FEATURES — LEGACY GRID (kept for pricing or future use)
   ============================================================ */
.l-features {
  padding: 96px 0 104px;
  text-align: center;
}

.l-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.l-feature-card {
  background: var(--l-surface);
  border: 1px solid var(--l-line);
  border-radius: var(--l-radius-l);
  padding: 28px 24px;
  transition: all 0.22s var(--l-ease);
}
.l-feature-card:hover {
  background: var(--l-surface-2);
  transform: translateY(-3px);
  box-shadow: var(--l-shadow-md);
}

.l-feature-card h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--l-ink);
  margin-bottom: 8px;
}

.l-feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--l-ink-3);
  line-height: 1.7;
}

/* Legacy grid stagger */
.l-features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.l-features-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.l-features-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.l-features-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.l-features-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.l-features-grid .reveal:nth-child(6) { transition-delay: 0.35s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .l-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .l-showcase-grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .l-container { padding: 0 20px; }

  /* Nav */
  .l-nav-center { display: none; }
  .l-nav-right { display: none; }
  .l-nav-menu { display: flex; }
  .l-nav-inner { padding: 0 20px; }
  .l-nav-mobile { padding: 8px 20px 20px; }

  /* Hero */
  .l-hero { padding-top: 110px; padding-bottom: 56px; }
  .l-hero-sub { margin-bottom: 40px; }
  .l-hero-cta {
    padding: 14px 48px;
    font-size: 15px;
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  /* Narrative */
  .l-narrative { padding: 56px 0; }
  .l-narrative-inner { padding: 0 20px; }
  .l-narrative h2 { font-size: clamp(22px, 5vw, 28px); }

  /* Showcase → 1 column, stacked */
  .l-showcase { padding: 48px 0; }
  .l-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .l-showcase--flip .l-showcase-grid { direction: ltr; }
  .l-showcase-text p { max-width: none; }

  /* Impact */
  .l-impact { padding: 56px 0; }

  /* Parents */
  .l-parents { padding: 64px 0; }
  .l-parents-bridge { padding: 36px 0; }

  /* Legacy features */
  .l-features { padding: 72px 0 80px; }
  .l-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .l-feature-card { padding: 22px 20px; }

  /* Trust */
  .l-trust-row { gap: 24px; }

  /* CTA */
  .l-cta-final { padding: 64px 0 80px; }
  .l-cta-final .l-hero-cta { width: 100%; max-width: 340px; text-align: center; }

  /* Footer */
  .l-footer-links { flex-direction: column; gap: 32px; }
  .l-footer-bottom { margin-top: 32px; }
}

@media (max-width: 360px) {
  .l-hero-title { font-size: 34px; }
  .l-hero-cta { padding: 14px 32px; }
}
