/* =============================================================
   JONA — Entrenamiento personal y parkour en Bogotá
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0f0d09;   /* warm-tinted near-black, never pure #000 */
  --bg-2:      #17140e;
  --bg-3:      #201a12;   /* card surface */
  --bg-4:      #2a2318;   /* card surface hover */
  --cream:     #f5f1e8;   /* text on dark — never pure white */
  --cream-2:   #ddd3bd;
  --cream-3:   #9a9080;   /* metadata / muted */
  --gold:      #ffd84d;   /* brand accent, softened from pure #FFD700 for AA contrast */
  --gold-2:    #e0a91c;
  --gold-dim:  #8a7326;
  --line:      rgba(245, 241, 232, 0.12);
  --line-2:    rgba(245, 241, 232, 0.06);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 76px;
  color-scheme: dark;
}

@property --mesh-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--cream);
}
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--gold); color: var(--bg);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.muted { color: var(--cream-3); }
.eyebrow.muted::before { background: var(--cream-3); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: 12px; }
.section-head p { margin-top: 16px; color: var(--cream-3); font-size: 1.02rem; }
.section-head.center { margin-inline: auto; text-align: center; }
section { position: relative; padding-block: clamp(64px, 9vw, 112px); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive, see gotcha A.4.5 */

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  letter-spacing: .2px; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1508;
  box-shadow: 0 8px 24px -8px rgba(255, 216, 77, .45);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(255, 216, 77, .6); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: .88rem; }
.btn svg { flex-shrink: 0; }

/* badges */
.badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 12.5px;
  font-weight: 600; background: rgba(255, 216, 77, .12); color: var(--gold);
  border: 1px solid rgba(255, 216, 77, .25);
}

/* =============================================================
   4. Header / Nav
   ============================================================= */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 13, 9, .96);
  border-bottom: 1px solid var(--line-2);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
header.is-scrolled { background: rgba(15, 13, 9, .92); border-color: var(--line); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; color: var(--cream); }
.brand-text span { font-size: 10.5px; letter-spacing: 1px; color: var(--cream-3); text-transform: uppercase; }

nav#mainNav ul { display: flex; align-items: center; gap: 32px; }
nav#mainNav a:not(.btn) {
  font-size: .92rem; font-weight: 500; color: var(--cream-2); position: relative; padding: 6px 0;
}
nav#mainNav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold);
  transition: width .35s var(--ease-out);
}
nav#mainNav a:not(.btn):hover, nav#mainNav a.is-active { color: var(--cream); }
nav#mainNav a:not(.btn):hover::after, nav#mainNav a.is-active::after { width: 100%; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.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); }

.nav-cta { display: none; }
.desktop-only { display: none; }

@media (max-width: 959px) {
  nav#mainNav {
    position: fixed; inset: var(--nav-h) 0 0 0; background: var(--bg-2);
    padding: 32px 24px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    overflow-y: auto;
  }
  nav#mainNav.open { opacity: 1; transform: none; pointer-events: auto; }
  nav#mainNav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  nav#mainNav a:not(.btn) { display: block; width: 100%; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line-2); }
  nav#mainNav .nav-mobile-cta { margin-top: 24px; width: 100%; }
  nav#mainNav .nav-mobile-cta .btn { width: 100%; }
}
@media (min-width: 960px) {
  nav#mainNav { display: block; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
  .desktop-only { display: inline-flex; }
  .nav-mobile-cta { display: none; }
}

/* =============================================================
   5. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  padding-block: 56px;
  overflow: clip;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,13,9,.97) 0%, rgba(15,13,9,.9) 30%, rgba(15,13,9,.55) 58%, rgba(15,13,9,.22) 100%),
    linear-gradient(0deg, rgba(15,13,9,.9) 0%, transparent 22%);
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 45% at 18% 24%, rgba(255,216,77,.16), transparent 70%),
    radial-gradient(30% 38% at 8% 78%, rgba(224,169,28,.14), transparent 70%);
  filter: blur(60px);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(2%, -3%) scale(1.08); }
}
.hero-inner { max-width: 660px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); max-width: 14ch; }
.hero-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-sub { margin-top: 22px; font-size: 1.12rem; color: var(--cream-2); max-width: 46ch; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-3);
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cueMove 2.2s ease-in-out infinite; }
@keyframes cueMove { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 0; } }
@media (max-width: 719px) { .hero-scroll-cue { display: none; } }

/* Stats strip */
.stats {
  padding-block: 40px;
  border-block: 1px solid var(--line-2);
  background: var(--bg-2);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--gold); line-height: 1;
}
.stat-label { margin-top: 8px; font-size: .82rem; color: var(--cream-3); letter-spacing: .3px; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   6. Filosofía
   ============================================================= */
.filosofia { background: var(--bg); }
.manifiesto-text {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45; color: var(--cream); max-width: 780px; margin: 0 auto; text-align: center;
}
.manifiesto-text .accent { color: var(--gold); font-style: italic; }
.pillars {
  margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 840px; margin-inline: auto;
}
.pillar {
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 16px;
  padding: 26px 14px; text-align: center; transition: background .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.pillar:hover { background: var(--bg-4); border-color: var(--line); transform: translateY(-4px); }
.pillar svg { margin: 0 auto 12px; color: var(--gold); }
.pillar span { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: .3px; color: var(--cream-2); }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .pillars { grid-template-columns: repeat(6, 1fr); } }

/* =============================================================
   7. Método
   ============================================================= */
.metodologia { background: var(--bg-2); }
.phases {
  margin-top: 40px; display: grid; gap: 1px; background: var(--line);
  border-radius: 18px; overflow: hidden;
}
.phase { background: var(--bg-2); padding: 30px 24px; position: relative; }
.phase .num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-dim); line-height: 1; margin-bottom: 10px;
}
.phase h3 { font-size: 1.1rem; margin-bottom: 8px; }
.phase p { font-size: .92rem; color: var(--cream-3); }
@media (min-width: 960px) { .phases { grid-template-columns: repeat(5, 1fr); } }

/* =============================================================
   8. Servicios
   ============================================================= */
.servicios { background: var(--bg); }
.services-grid {
  margin-top: 8px;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}

.service-card {
  cursor: pointer;
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2);
  min-height: 340px; display: flex; align-items: flex-end; padding: 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  transform-style: preserve-3d;
}
.service-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,13,9,.1) 0%, rgba(15,13,9,.55) 45%, rgba(15,13,9,.94) 100%);
  z-index: 0;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(255,216,77,.22), transparent 60%);
  transition: opacity .3s var(--ease-out);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { box-shadow: 0 24px 48px -16px rgba(0,0,0,.55); }
.service-card > *:not(.service-card-img) { position: relative; z-index: 1; }
.service-card.featured { min-height: 420px; }
.service-card .cat { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.service-card h3 { font-size: 1.5rem; margin-top: 8px; }
.service-card .desc { margin-top: 8px; font-size: .95rem; color: var(--cream-2); max-width: 40ch; }
.price-list { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: .92rem; padding-block: 5px; border-bottom: 1px dashed var(--line);
}
.price-row span:first-child { color: var(--cream-2); }
.price-row .amount { font-family: var(--font-display); font-weight: 600; color: var(--cream); white-space: nowrap; }
.service-card .badge { margin-top: 14px; }
.service-card .service-cta { margin-top: 18px; }
.price-teaser { margin-top: 14px; font-size: .95rem; color: var(--cream-2); }
.price-teaser .amount { font-family: var(--font-display); font-weight: 600; color: var(--gold); }
.card-link {
  display: inline-block; margin-top: 12px; font-size: .88rem; font-weight: 600; color: var(--cream);
  border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.service-card:hover .card-link { color: var(--gold); border-color: var(--gold); }

@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: 1 / -1; flex-direction: row; align-items: flex-end; }
}

/* =============================================================
   9. Sobre mí
   ============================================================= */
.sobre-mi { background: var(--bg-2); }
.sobre-mi-grid { display: grid; gap: 36px; align-items: center; }
.sobre-mi-photo {
  border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; position: relative;
  border: 1px solid var(--line);
}
.sobre-mi-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-mi-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 10px; }
.sobre-mi-text p { margin-top: 16px; color: var(--cream-3); font-size: 1rem; }
.sobre-mi-text p + p { margin-top: 14px; }
.credentials { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.credentials li {
  font-size: .92rem; padding: 10px 0; border-top: 1px solid var(--line-2); display: flex; gap: 10px; color: var(--cream-2);
}
.credentials li:first-child { border-top: none; }
.credentials li::before { content: "—"; color: var(--gold); flex-shrink: 0; }
@media (min-width: 720px) { .sobre-mi-grid { grid-template-columns: 0.85fr 1.15fr; } }

/* =============================================================
   10. Testimonios
   ============================================================= */
.testimonios { background: var(--bg); }
.testimonios-grid { display: grid; gap: 18px; }
.testi-card {
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 18px; padding: 26px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--line); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-card blockquote { margin-top: 14px; font-size: .95rem; color: var(--cream-2); flex-grow: 1; }
.testi-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 600; font-size: .88rem; color: var(--cream); }
.testi-card .source { font-weight: 400; color: var(--cream-3); }
@media (min-width: 720px) { .testimonios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonios-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   11. Contenido / redes
   ============================================================= */
.contenido { background: var(--bg-2); }
.reels-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; justify-items: center;
  margin-bottom: 32px;
}
.reels-grid blockquote.instagram-media {
  width: 100% !important; max-width: 400px !important; min-width: 260px !important;
  margin: 0 !important; border-radius: 16px !important; overflow: hidden;
  background: var(--bg-3) !important; border: 1px solid var(--line-2) !important;
}
/* Fallback link, visible until Instagram's embed.js replaces the blockquote with the real player */
.reels-grid blockquote.instagram-media > a {
  display: flex; align-items: center; justify-content: center; min-height: 220px;
  padding: 24px; text-align: center; color: var(--cream-2); font-size: .95rem;
}
@media (min-width: 720px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
.contenido-row { display: flex; justify-content: center; }
.ig-link {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); position: relative; padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
}
.ig-link:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================================
   12b. Páginas de servicio (breadcrumb, hero de página, planes, relacionados)
   ============================================================= */
.breadcrumb {
  padding-block: 18px; font-size: .82rem; color: var(--cream-3);
}
.breadcrumb a { color: var(--cream-3); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 6px; opacity: .5; }
.breadcrumb .current { color: var(--cream-2); }

.page-hero { background: var(--bg-2); padding-block: clamp(40px, 6vw, 64px); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 18ch; }
.page-hero .hero-sub { margin-top: 18px; font-size: 1.06rem; color: var(--cream-2); max-width: 56ch; }
.page-hero .hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

.plans { background: var(--bg); }
.plan-grid { display: flex; flex-direction: column; gap: 28px; }
.plan-card {
  display: grid; gap: 24px; background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 22px; overflow: hidden; padding: 0;
}
.plan-card-photo { aspect-ratio: 16/10; overflow: hidden; }
.plan-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.plan-card-body { padding: 26px 26px 30px; }
.plan-card-body h2 { font-size: 1.4rem; }
.plan-card-body .desc { margin-top: 10px; color: var(--cream-2); font-size: .96rem; }
.plan-card-body .price-list { margin-top: 20px; }
.plan-card-body .badge { margin-top: 16px; }
.plan-card-body .service-cta { margin-top: 20px; }
@media (min-width: 720px) {
  .plan-card { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .plan-card-photo { aspect-ratio: auto; }
}

.related { background: var(--bg-2); }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.related-card {
  display: flex; flex-direction: column; background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 18px; overflow: hidden; transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.related-card:hover { transform: translateY(-4px); border-color: var(--line); }
.related-card-photo { aspect-ratio: 16/10; overflow: hidden; }
.related-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.related-card:hover .related-card-photo img { transform: scale(1.06); }
.related-card-body { padding: 20px 20px 22px; flex-grow: 1; display: flex; flex-direction: column; }
.related-card-body .cat { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.related-card-body h3 { font-size: 1.15rem; margin-top: 6px; }
.related-card-body .desc { margin-top: 8px; font-size: .9rem; color: var(--cream-3); flex-grow: 1; }
.related-card-body .card-link { margin-top: 14px; }
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12. FAQ
   ============================================================= */
.faq { background: var(--bg); }
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 1px; background: var(--line); border-radius: 16px; overflow: hidden; }
.faq-item { background: var(--bg-3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; text-align: left; font-family: var(--font-display); font-size: 1.02rem; color: var(--cream);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[data-open="true"] .plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a {
  overflow: hidden; max-height: 0; transition: max-height .35s var(--ease-out);
  padding: 0 24px; color: var(--cream-3); font-size: .95rem;
}
.faq-item[data-open="true"] .faq-a { max-height: 240px; padding-bottom: 22px; }

/* =============================================================
   13. CTA final + Footer
   ============================================================= */
.cta-final { background: var(--bg-2); }
.contact-box { text-align: center; max-width: 640px; margin: 0 auto; }
.contact-box h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-top: 14px; }
.contact-box p { margin-top: 16px; color: var(--cream-3); }
.contact-box .btn { margin-top: 30px; }

footer { background: var(--bg); border-top: 1px solid var(--line-2); padding-block: 40px; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { height: 32px; width: 32px; object-fit: contain; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-nav a { font-size: .88rem; color: var(--cream-3); }
.foot-nav a:hover { color: var(--gold); }
.foot-meta {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .82rem; color: var(--cream-3);
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #0b1a10;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,.5);
  transition: transform .3s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* =============================================================
   14. Responsive base breakpoints reminder
   540 / 720 / 960 / 1280 / 1600
   ============================================================= */
@media (min-width: 1280px) {
  .hero-inner { max-width: 720px; }
}

/* =============================================================
   15. Reduced motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-scroll-cue .line { animation: none; }
}
