/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:        #0F1F3D;
  --navy-2:      #16294f;
  --navy-3:      #1B3A6B;
  --navy-soft:   #e8ebf4;
  --gold:        #F0B429;
  --gold-2:      #C9901E;
  --gold-soft:   #FBF0D9;
  --bg:          #ffffff;
  --bg-2:        #f4f8f7;
  --ink:         #14201d;
  --ink-soft:    #47564f;
  --ink-mute:    #7d8c85;
  --line:        rgba(15, 31, 61, 0.13);
  --glass:       rgba(255, 255, 255, 0.66);
  --glass-2:     rgba(255, 255, 255, 0.4);
  --glass-line:  rgba(255, 255, 255, 0.7);
  --whatsapp:    #22c55e;
  --shadow-sm:   0 2px 10px rgba(15, 31, 61, 0.09);
  --shadow-md:   0 14px 40px rgba(15, 31, 61, 0.15);
  --shadow-gold: 0 14px 34px rgba(239, 106, 76, 0.35);
  --radius:      20px;
  --radius-sm:   12px;
  --sans:        "Inter", system-ui, sans-serif;
  --display:     "Manrope", var(--sans);
  --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);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  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; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; flex-shrink: 0; fill: currentColor; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--navy); color: #fff;
  border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3b. Announcement bar
   ============================================================= */
.announce-bar {
  background: var(--navy);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.announce-bar-inner {
  position: relative;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-inline: 2.5rem;
  text-align: center;
}
.announce-bar-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  pointer-events: none;
}
.announce-bar-item.is-active { opacity: 1; transform: none; pointer-events: auto; }
.announce-bar-item .icon { color: var(--gold); }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.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; }

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.7rem, 4.4vw, 2.6rem); max-width: 22ch; }
.section-lead { margin-top: .9rem; color: var(--ink-soft); max-width: 56ch; font-size: 1.05rem; }

.glass-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 42px rgba(240,180,41,.45); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy-soft); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 34px rgba(34,197,94,.35);
}
.btn-whatsapp:hover { transform: translateY(-2px) scale(1.02); }

.btn-sm { padding: .7rem 1.3rem; font-size: .88rem; }
.btn-block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn { will-change: transform; }
}

/* =============================================================
   5. Header
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
@supports (backdrop-filter: blur(16px)) {
  .site-header { background: rgba(255,255,255,0.55); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); }
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,0.88); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}

.logo { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold);
}

.main-nav { display: flex; align-items: center; gap: 1.9rem; font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.main-nav a { position: relative; padding-block: .3rem; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease-out);
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; color: var(--navy);
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 960px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* mobile dropdown nav */
@media (max-width: 959.98px) {
  .main-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease-out);
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav a { padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
}

/* =============================================================
   6. Hero — product page (ficha de producto)
   ============================================================= */
.hero { position: relative; padding-block: 2.4rem 4rem; overflow: clip; }
.hero-mesh {
  position: absolute; inset: -10% -10% -30% -10%; z-index: -1;
  background:
    radial-gradient(at 15% 20%, rgba(240,180,41,.24) 0%, transparent 55%),
    radial-gradient(at 85% 10%, rgba(15,31,61,.18) 0%, transparent 50%),
    radial-gradient(at 50% 90%, rgba(240,180,41,.14) 0%, transparent 55%),
    var(--bg-2);
  filter: blur(50px) saturate(140%);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(6deg); }
}

.hero-inner { display: grid; gap: 2.4rem; align-items: start; }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; color: var(--gold-2); margin-bottom: .7rem; }
.eyebrow--under { margin-top: .5rem; margin-bottom: 0; }
.hero-title { font-size: clamp(2.1rem, 6.4vw, 3.6rem); max-width: 18ch; }
.hero-title em { font-style: normal; color: var(--gold-2); background: linear-gradient(180deg, transparent 62%, var(--gold-soft) 62%); padding-inline: .1em; }
.hero-sub { margin-top: 1rem; font-size: 1.04rem; color: var(--ink-soft); max-width: 52ch; }

.badge-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.badge-list li { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; color: var(--navy); }
.badge-list .icon { color: var(--gold-2); flex-shrink: 0; }

.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Rating badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: var(--gold-soft); color: var(--navy);
  font-size: .82rem; font-weight: 700; margin-bottom: 1rem;
}
.rating-badge .icon { color: var(--gold-2); }
.rating-badge .divider { opacity: .5; font-weight: 400; }

/* Product info column */
.product-info { display: flex; flex-direction: column; max-width: 640px; }
.product-name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: .3rem; }

/* Trust strip */
.trust-strip {
  margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .9rem 1.4rem;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.trust-strip-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.trust-strip-item .icon { color: var(--navy-3); flex-shrink: 0; }

/* Product spec list */
.spec-list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .8rem; }
.spec-list li { display: flex; flex-direction: column; gap: .15rem; font-size: .86rem; color: var(--ink-soft); }
.spec-list li strong { color: var(--navy); font-weight: 700; }

@media (min-width: 560px) {
  .spec-list li { flex-direction: row; gap: .5rem; }
  .spec-list li strong { min-width: 8.5rem; flex-shrink: 0; }
}

@media (min-width: 960px) {
  .hero { padding-block: 3.6rem 6rem; }
}

/* =============================================================
   7. Product photos
   ============================================================= */
.product-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--gold-soft) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-photo img { width: 100%; height: 100%; object-fit: contain; }
.product-photo--hero { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.product-photo--hero img { object-fit: contain; }
.product-photo--sm { aspect-ratio: 1 / 1; width: 64px; height: 64px; border-radius: var(--radius-sm); flex-shrink: 0; box-shadow: none; }
.gallery-grid .product-photo img { object-fit: cover; }
.gallery-grid .product-photo:hover img { transform: scale(1.05); }
.gallery-grid .product-photo img { transition: transform .5s var(--ease-out); }

.verified-badge {
  position: absolute;
  left: .6rem;
  bottom: .6rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(15, 31, 61, 0.2);
  white-space: nowrap;
}
@supports (backdrop-filter: blur(8px)) {
  .verified-badge { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(8px) saturate(160%); -webkit-backdrop-filter: blur(8px) saturate(160%); }
}
.verified-badge .icon { color: var(--gold-2); }

/* =============================================================
   8. Steps section
   ============================================================= */
.steps-section { padding-block: 4.5rem; background: var(--bg-2); }
.steps-grid { margin-top: 2.4rem; display: grid; gap: 1.25rem; }
.step-card { padding: 1.6rem 1.6rem 2rem; position: relative; overflow: hidden; }
.step-photo { aspect-ratio: 16/11; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.2rem; background: var(--navy-soft); }
.step-photo img { width: 100%; height: 100%; object-fit: cover; }
.step-number { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--gold-soft); -webkit-text-stroke: 1.5px var(--gold-2); display: block; margin-bottom: .6rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step-card p { color: var(--ink-soft); font-size: .96rem; }

@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  margin-top: 1.6rem;
  position: relative;
  aspect-ratio: 21/8;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .7rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
}
.video-card-play {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.video-card-label { font-weight: 700; font-size: .92rem; color: rgba(255,255,255,.85); }

/* =============================================================
   9. Business section
   ============================================================= */
.business-section { padding-block: 4.5rem; }
.business-grid { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.business-item {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: 1.6rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--navy); font-weight: 600; font-size: .9rem; text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.business-item .icon { color: var(--gold-2); }
.business-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); background: #fff; }

@media (min-width: 540px) { .business-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .business-grid { grid-template-columns: repeat(6, 1fr); } }

/* =============================================================
   10. Model &amp; pack selector (inside hero)
   ============================================================= */
.pick-step { margin-top: 1.8rem; }
.pick-step-title {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: .9rem;
}
.pick-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: #fff; font-size: .72rem; font-weight: 800;
}

.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.model-card {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  width: 100%; cursor: pointer;
}
.model-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.model-card-photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg);
  border: 2px solid var(--line);
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.model-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.model-card-name { font-size: .68rem; font-weight: 600; color: var(--ink-soft); text-align: center; line-height: 1.2; }
.model-card input:checked + .model-card-photo { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-soft); }
.model-card input:checked ~ .model-card-name { color: var(--navy); font-weight: 700; }
.model-card input:focus-visible + .model-card-photo { outline: 2px solid var(--gold); outline-offset: 2px; }

.pack-grid { margin-top: .3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.pack-card {
  position: relative; cursor: pointer;
  padding: 1.1rem .6rem .9rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  border-radius: var(--radius-sm); border: 2px solid var(--line);
  background: #fff;
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.pack-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pack-card.is-selected,
.pack-card:has(input:checked) {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-soft);
  transform: translateY(-2px);
}
.pack-card input:focus-visible { outline: none; }
.pack-card input:focus-visible ~ * { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.pack-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .03em;
  text-transform: uppercase; padding: .28rem .6rem; border-radius: 999px;
  box-shadow: var(--shadow-gold); white-space: nowrap;
}
.pack-units { font-size: .82rem; color: var(--ink-soft); font-weight: 700; }
.pack-amount { font-size: 1.5rem; font-family: var(--display); font-weight: 800; color: var(--navy); margin: .15rem 0 .05rem; }
.pack-detail { color: var(--ink-mute); font-size: .72rem; }

.cta-main { margin-top: 1.6rem; width: 100%; }
.price-fine { margin-top: .7rem; font-size: .74rem; color: var(--ink-mute); text-align: center; }

/* =============================================================
   10b. Stats band (prueba social)
   ============================================================= */
.stats-band {
  position: relative; padding-block: 4.5rem; overflow: clip;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
}
.stats-band .section-eyebrow { color: var(--gold); }
.stats-band .section-title { color: #fff; margin-inline: auto; text-align: center; }
.stats-band-head { text-align: center; }
.stats-band-lead { margin-top: .9rem; color: rgba(255,255,255,.78); max-width: 52ch; margin-inline: auto; font-size: 1.05rem; text-align: center; }

.growth-chart {
  margin-top: 2.6rem;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.growth-chart-figure { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.growth-chart-caption { color: var(--ink-soft); margin-top: .3rem; max-width: 40ch; }
.growth-svg { width: 100%; height: auto; }
.growth-line { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 1.6s var(--ease-out); }
.growth-chart.is-visible .growth-line { stroke-dashoffset: 0; }
.growth-label { font-size: 11px; fill: var(--ink-mute); font-family: var(--sans); }
.growth-value { font-size: 13px; fill: var(--navy); font-weight: 700; font-family: var(--display); }

@media (min-width: 960px) { .growth-chart { flex-direction: row; align-items: center; padding: 2.6rem; } .growth-chart-text { flex: 0 0 260px; } }

/* =============================================================
   10c. Why reviews matter
   ============================================================= */
.why-section { padding-block: 4.5rem; background: var(--bg-2); }
.why-inner { display: grid; gap: 2rem; align-items: center; }
.why-stat { text-align: center; }
.why-stat-figure {
  font-family: var(--display); font-weight: 800; color: var(--gold-2);
  font-size: clamp(3rem, 10vw, 4.2rem); line-height: 1;
}
.why-stat-label { margin-top: .6rem; color: var(--ink-soft); font-weight: 600; max-width: 26ch; margin-inline: auto; }
.why-text p { color: var(--ink-soft); font-size: 1.02rem; }
.why-text p + p { margin-top: 1rem; }

@media (min-width: 860px) {
  .why-inner { grid-template-columns: 280px 1fr; gap: 3rem; }
  .why-stat { text-align: left; }
  .why-stat-label { margin-inline: 0; }
}

/* =============================================================
   11. Testimonials
   ============================================================= */
.testimonials-section { padding-block: 4.5rem; }

.testimonial-carousel { margin-top: 2.6rem; }
.testimonial-track {
  display: flex; gap: 1.2rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-block: .4rem 1.4rem;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 82%;
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-stars { display: flex; gap: .2rem; color: var(--gold); }
.testimonial-text { color: var(--ink-soft); font-size: .96rem; }
.testimonial-author { display: flex; align-items: center; gap: .7rem; font-weight: 700; color: var(--navy); font-size: .9rem; }
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold-soft); font-weight: 800; font-size: .85rem;
}

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: .6rem; }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--navy);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.carousel-btn:hover { background: var(--navy-soft); transform: scale(1.06); }
.carousel-dots { display: flex; gap: .45rem; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
.carousel-dots button.is-active { background: var(--gold); transform: scale(1.3); }

@media (min-width: 720px) { .testimonial-card { flex: 0 0 46%; } }
@media (min-width: 1280px) { .testimonial-card { flex: 0 0 31%; } }

/* =============================================================
   12. Gallery
   ============================================================= */
.gallery-section { padding-block: 4.5rem; background: var(--bg-2); }
.gallery-grid { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12b. FAQ accordion
   ============================================================= */
.faq-section { padding-block: 4.5rem; }
.faq-section + .faq-section { padding-top: 0; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem .2rem; text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--navy);
}
.faq-question .icon { color: var(--gold-2); flex-shrink: 0; transition: transform .3s var(--ease-out); }
.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 .2rem 1.3rem; color: var(--ink-soft); font-size: .96rem; max-width: 62ch; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* =============================================================
   13. Final CTA
   ============================================================= */
.final-cta-section { padding-block: 5rem; position: relative; overflow: clip; }
.final-cta-section::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -1;
  background: radial-gradient(ellipse at 50% 20%, rgba(240,180,41,.18) 0%, transparent 60%), var(--bg);
}
.final-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.final-cta-inner .section-title { margin-inline: auto; }
.final-cta-inner .section-lead { margin-inline: auto; }
.final-cta-inner .hero-actions { justify-content: center; }

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer { background: var(--navy); color: #eef3f1; padding-block: 3rem 2rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.6rem; align-items: center; text-align: center; }
.logo--footer { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; justify-content: center; font-size: .9rem; color: rgba(238,243,241,.75); }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center; font-size: .8rem; color: rgba(238,243,241,.55); }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: .78rem; color: rgba(238,243,241,.5); }

@media (min-width: 960px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }

/* =============================================================
   15. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh { animation: none; }
}
