/* ============================================================
   Variables de diseño  ·  Paleta suave (3 colores)
   - Lavanda / malva : calma, bienestar, serenidad (principal)
   - Crema cálido    : suavidad, fondo
   - Rosa empolvado  : cercanía, calidez (acento)
   ============================================================ */
:root {
  --sage: #9A8FB4;
  --sage-deep: #645681;
  --sage-soft: #C8BEDA;
  --cream: #F8F3EC;
  --cream-deep: #EFE7DA;
  --clay: #CE8BA4;
  --clay-deep: #B5708D;

  --ink: #36433D;          /* texto principal (verde-grisáceo oscuro) */
  --muted: #6E7973;        /* texto secundario */
  --white: #FFFFFF;
  --line: #E3DCCF;         /* bordes suaves */

  --shadow-sm: 0 4px 14px rgba(54, 67, 61, 0.06);
  --shadow-md: 0 14px 40px rgba(54, 67, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(54, 67, 61, 0.14);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --max: 1140px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset y base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--sage-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--clay-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* ============================================================
   Utilidades
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px; }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: 1.12rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--sage-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--sage-deep); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage-deep); color: #fff; transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: #fff; box-shadow: var(--shadow-sm); }
.btn-clay:hover { background: var(--clay-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ============================================================
   Header / Navegación
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 243, 236, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }

.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.brand-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .96rem; }
.nav-links a:hover { color: var(--sage-deep); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  width: 44px; height: 44px; border-radius: 12px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px auto; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 85% 10%, rgba(157,182,166,0.30), transparent 60%),
    radial-gradient(50% 50% at 5% 90%, rgba(203,142,110,0.16), transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: .4em; }
.hero h1 .accent { color: var(--sage-deep); font-style: italic; }
.hero-lead { font-size: 1.18rem; color: var(--muted); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; margin-top: 2rem; list-style: none; padding: 0; }
.hero-badges li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.hero-badges svg { width: 20px; height: 20px; color: var(--sage); flex: none; }

/* Tarjeta visual del hero */
.hero-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2rem; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(157,182,166,.45), transparent 70%); border-radius: 50%;
}
.hero-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--sage-soft), var(--sage-deep));
  display: grid; place-items: center; color: rgba(255,255,255,.9); text-align: center; overflow: hidden;
}
.hero-portrait .ph-ico { width: 86px; height: 86px; opacity: .9; }
.hero-portrait span { position: absolute; bottom: 14px; left: 0; right: 0; font-size: .8rem; opacity: .85; padding-inline: 1rem; }
/* Foto real (portada y "Sobre mí"): cubre el marco y se recorta con elegancia */
.portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 2;
  /* Pequeño realce de luz para que la foto se vea más luminosa (ajustable) */
  filter: brightness(1.12) contrast(1.02) saturate(1.04); }
.hero-quote { margin-top: 1.3rem; }
.hero-quote p { font-family: var(--font-head); font-style: italic; font-size: 1.12rem; color: var(--ink); margin: 0; }
.hero-quote span { display: block; margin-top: .4rem; font-size: .85rem; color: var(--muted); font-weight: 700; }

/* ============================================================
   Franja de confianza
   ============================================================ */
.trust { background: var(--sage-deep); color: #fff; padding-block: clamp(2rem, 4vw, 2.6rem); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-item .num { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); display: block; }
.trust-item .lbl { font-size: .9rem; opacity: .85; }

/* ============================================================
   Sobre mí
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--cream-deep), var(--sage-soft));
  display: grid; place-items: center; box-shadow: var(--shadow-md); overflow: hidden;
}
.about-photo .ph-ico { width: 90px; height: 90px; color: var(--sage-deep); opacity: .8; }
.about-photo .badge {
  position: absolute; bottom: 18px; right: 18px; background: #fff; border-radius: var(--radius);
  padding: .7rem 1rem; box-shadow: var(--shadow-md); text-align: center; z-index: 3;
}
.about-photo .badge strong { display: block; font-family: var(--font-head); color: var(--sage-deep); font-size: 1.4rem; }
.about-photo .badge span { font-size: .72rem; color: var(--muted); }
.about-text p { color: var(--muted); }
.about-text .sign { font-family: var(--font-head); font-style: italic; font-size: 1.25rem; color: var(--sage-deep); margin-top: 1rem; }
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.3rem 0 0; padding: 0; list-style: none; }
.creds li {
  display: inline-flex; align-items: center; gap: .45rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .45rem .95rem;
  font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-sm);
}
.creds svg { width: 16px; height: 16px; color: var(--clay); }

/* ============================================================
   Servicios (en qué te ayudo)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--cream-deep); color: var(--sage-deep); margin-bottom: 1rem;
}
.card-ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ============================================================
   Cómo trabajo (enfoque)
   ============================================================ */
.approach { background: var(--cream-deep); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.approach-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.approach-list li { display: flex; gap: 1rem; }
.approach-list .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.approach-list .ico svg { width: 22px; height: 22px; color: var(--clay); }
.approach-list h4 { margin: 0 0 .15rem; font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; }
.approach-list p { margin: 0; color: var(--muted); font-size: .95rem; }
.approach-visual {
  border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--sage-soft), var(--sage-deep));
  aspect-ratio: 5/6; display: grid; place-items: center; box-shadow: var(--shadow-md); color: rgba(255,255,255,.92); padding: 2rem; text-align: center;
}
.approach-visual blockquote { font-family: var(--font-head); font-style: italic; font-size: 1.5rem; line-height: 1.4; margin: 0; }
.approach-visual cite { display: block; margin-top: 1rem; font-style: normal; font-size: .9rem; opacity: .85; }

/* ============================================================
   Cómo funciona (pasos)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -22px; left: 1.6rem;
  width: 46px; height: 46px; border-radius: 50%; background: var(--clay); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.3rem; box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ============================================================
   Tarifas
   ============================================================ */
.pricing { background: var(--cream-deep); }
.pricing-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--sage), var(--clay)); }
.price-tag { display: flex; align-items: baseline; gap: .4rem; margin: .5rem 0 1rem; }
.price-tag .amount { font-family: var(--font-head); font-size: 3.6rem; color: var(--sage-deep); line-height: 1; }
.price-tag .per { color: var(--muted); font-weight: 700; }
.price-includes { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: .7rem; }
.price-includes li { display: flex; gap: .7rem; align-items: flex-start; }
.price-includes svg { width: 20px; height: 20px; color: var(--sage); flex: none; margin-top: 2px; }
.price-actions { display: grid; gap: .7rem; margin-top: 1.4rem; }
.price-note { font-size: .82rem; color: var(--muted); text-align: center; margin: .6rem 0 0; }
.pricing-mission .eyebrow { color: var(--clay-deep); }
.pricing-mission p { color: var(--muted); }

/* ============================================================
   Reserva (calendario + pago)
   ============================================================ */
.booking { background: var(--sage-deep); color: #fff; }
.booking h2, .booking h3 { color: #fff; }
.booking .eyebrow { color: #f0d9c9; }
.booking .lead { color: rgba(255,255,255,.85); }
.booking-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
.calendar-box { background: #fff; border-radius: var(--radius-lg); padding: .8rem; box-shadow: var(--shadow-lg); min-height: 640px; overflow: hidden; }
.calendar-fallback { padding: 2.5rem; text-align: center; color: var(--muted); }
.calendly-inline-widget { min-width: 280px; height: 660px; }
.booking-side { display: grid; gap: 1rem; }
.booking-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 1.4rem; }
.booking-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.booking-card p { color: rgba(255,255,255,.85); font-size: .95rem; margin: 0 0 1rem; }
.booking-card .btn { width: 100%; }
.booking-card.pay { background: #fff; color: var(--ink); }
.booking-card.pay h3 { color: var(--ink); }
.booking-card.pay p { color: var(--muted); }

/* ============================================================
   Testimonios
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.stars { display: flex; gap: 3px; color: var(--clay); margin-bottom: .8rem; }
.stars svg { width: 18px; height: 18px; }
.testimonial p { font-style: italic; color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(160deg, var(--sage-soft), var(--sage-deep)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testimonial .who strong { display: block; font-size: .95rem; }
.testimonial .who span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--font-body); font-weight: 700; font-size: 1.04rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--sage-deep); transition: transform .3s var(--ease); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--muted); }

/* ============================================================
   Contacto
   ============================================================ */
.contact { background: var(--cream-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.contact-methods { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-methods li { display: flex; gap: 1rem; align-items: center; }
.contact-methods .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.contact-methods .ico svg { width: 24px; height: 24px; color: var(--sage-deep); }
.contact-methods strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-methods a, .contact-methods span { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.contact-cta { background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-md); align-self: start; }
.contact-cta h3 { margin-bottom: .5rem; }
.contact-cta p { color: var(--muted); }
.contact-cta .btn { width: 100%; margin-top: .5rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.78); padding-block: 3rem 1.6rem; }
.footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer .brand-name, .footer h4 { color: #fff; }
.footer h4 { font-family: var(--font-body); font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer .brand img { filter: brightness(0) invert(1); opacity: .9; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: rgba(255,255,255,.78); font-size: .94rem; }
.footer a:hover { color: #fff; }
.footer-about { font-size: .92rem; max-width: 34ch; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ============================================================
   Botón flotante de WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(.9); opacity: .8; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   Banner de cookies
   ============================================================ */
.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 70; max-width: 560px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-lg); display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: .9rem; color: var(--muted); flex: 1 1 240px; }
.cookie .btn { padding: .55rem 1.1rem; font-size: .9rem; }

/* ============================================================
   Animación de aparición
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float::after { animation: none; }
}

/* ============================================================
   Páginas legales
   ============================================================ */
.legal { max-width: 820px; margin-inline: auto; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--muted); }
.legal a.back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-weight: 700; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .approach-grid, .pricing-wrap, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; margin-inline: auto; }
  .about-photo { max-width: 420px; margin-inline: auto; }
  .cards, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: .5rem 1.2rem 1.2rem;
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .35s var(--ease); z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: .9rem .2rem; }
  .nav-toggle { display: block; }
  .nav .nav-cta .btn-text-hide { display: none; }
  .trust .container { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .cards, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .step { padding-top: 2.4rem; }
  .footer .container { grid-template-columns: 1fr; }
  section { padding-block: 3rem; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}
