/* ============================================================
   AB FITNESS — Marina-premium design system
   Marine teal + aqua, coral CTA. Dark "marina-night" mode.
   ============================================================ */

:root {
  /* Palette (keyed to brand logo) */
  --bg:        #0B1A24;
  --bg-2:      #081320;
  --surface:   #122A38;
  --surface-2: #16313F;
  --text:      #F2F7F9;
  --muted:     #9FB4BF;
  --primary:   #129AAA;
  --secondary: #1EC8D6;
  --accent:    #F0563A;
  --accent-2:  #FF7558;
  --border:    #1E3B4A;
  --focus:     #18B6C9;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-stat:    "Anton", "Sora", sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow:    0 18px 50px -20px rgba(0,0,0,.65);
  --shadow-accent: 0 14px 38px -12px rgba(240,86,58,.55);

  --grad-aqua: linear-gradient(120deg, var(--primary), var(--secondary));
  --grad-deep: linear-gradient(180deg, #0E2230, #0B1A24);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* ---------- typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.05; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { text-wrap: pretty; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--secondary); display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }
.text-accent { color: var(--accent); }
.text-aqua { color: var(--secondary); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 16px; }
.bg-surface { background: var(--surface); }
.bg-deep { background: var(--bg-2); }
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; min-height: 50px;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #06351b; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(37,211,102,.6); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--border); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-aqua { background: var(--grad-aqua); color: #04222a; }
.btn-aqua:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(30,200,214,.5); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; min-height: 42px; font-size: .9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; min-height: 58px; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--secondary); font-family: var(--font-display); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,19,32,.82); backdrop-filter: blur(14px); border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 78px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 9px 14px; border-radius: 10px; color: var(--muted); transition: color .18s ease, background .18s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after,
.nav__cta { /* spacing helper */ }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.04); align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .25s; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .25s; }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 78px 0 0 0; z-index: 99;
  background: var(--bg-2); padding: 28px var(--gutter) 40px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .28s ease;
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu a.m-link.active { color: var(--secondary); }
.mobile-menu .m-actions { margin-top: 22px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; isolation: isolate; min-height: min(92vh, 860px); display: flex; align-items: flex-end; overflow: hidden; }
.hero--page { min-height: min(58vh, 540px); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,19,32,.55) 0%, rgba(8,19,32,.2) 32%, rgba(8,19,32,.78) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,19,32,.85) 0%, rgba(8,19,32,.35) 55%, rgba(8,19,32,.1) 100%);
}
.hero__inner { width: 100%; padding-block: clamp(48px, 8vw, 90px); }
.hero__content { max-width: 760px; }
.hero h1 { margin-top: 18px; }
.hero h1 .hl { color: var(--secondary); }
.hero__sub { margin-top: 22px; max-width: 560px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: #D6E4EA; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px;
  background: rgba(8,19,32,.5); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
  font-weight: 600; font-size: .9rem;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #38e07b; box-shadow: 0 0 0 4px rgba(56,224,123,.2); animation: pulse 2.4s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(56,224,123,0); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--bg-2); border-block: 1px solid var(--border); }
.trust__row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); }
.trust__item { background: var(--bg-2); padding: 26px 18px; text-align: center; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.trust__item .n { font-family: var(--font-stat); font-size: clamp(1.6rem, 2.6vw, 2.3rem); color: var(--secondary); letter-spacing: .01em; line-height: 1; }
.trust__item .l { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .03em; }

/* marquee trust strip */
.marquee { overflow: hidden; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; padding: 22px 30px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.25rem); white-space: nowrap; color: var(--text); }
.marquee__item .dotsep { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.marquee__item.is-aqua .dotsep { background: var(--secondary); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } }

/* ============================================================
   CARDS / FACILITIES
   ============================================================ */
.facility-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.fac-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative; overflow: hidden;
}
.fac-card:hover { transform: translateY(-4px); border-color: var(--primary); background: var(--surface-2); }
.fac-card__icon {
  width: 62px; height: 62px; border-radius: 16px; background: var(--grad-aqua);
  display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 10px 24px -10px rgba(18,154,170,.7);
}
.fac-card__icon img { width: 34px; height: 34px; }
.fac-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.fac-card p { color: var(--muted); font-size: .95rem; }

/* image feature cards */
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.feat-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; isolation: isolate; border: 1px solid var(--border); }
.feat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.feat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,19,32,0) 30%, rgba(8,19,32,.55) 60%, rgba(8,19,32,.95) 100%); }
.feat-card:hover img { transform: scale(1.05); }
.feat-card__body { padding: 28px; }
.feat-card__body h3 { margin-bottom: 6px; }
.feat-card__body p { color: #C6D6DD; font-size: .95rem; }
.feat-card.tall { min-height: 460px; }
.chip { display: inline-block; padding: 6px 13px; border-radius: 999px; background: rgba(30,200,214,.14); color: var(--secondary); font-weight: 700; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; border: 1px solid rgba(30,200,214,.3); }

/* honest photo placeholder (where no real photo exists) */
.ph-media {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background:
    repeating-linear-gradient(135deg, rgba(30,200,214,.05) 0 14px, transparent 14px 28px),
    var(--grad-deep);
  display: grid; place-items: center; min-height: 100%;
}
.ph-media__tag { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .8rem; letter-spacing: .04em; color: var(--muted); text-align: center; padding: 14px 18px; border: 1px dashed var(--border); border-radius: 10px; background: rgba(8,19,32,.4); }
.split__media.is-ph { box-shadow: none; aspect-ratio: 4/3; }
.split__media.is-ph .ph-media { aspect-ratio: 4/3; }

/* split media block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__body .eyebrow { margin-bottom: 18px; }
.split__body h2 { margin-bottom: 18px; }
.split__body p + p { margin-top: 14px; }
.split__body .btn, .split__body .link-arrow { margin-top: 26px; }
.check-list { display: grid; gap: 12px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #D6E4EA; }
.check-list svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--secondary); margin-top: 2px; }

/* stat ribbon */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-band__cell { background: var(--surface); padding: 32px 24px; }
.stat-band__cell .n { font-family: var(--font-stat); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: .9; background: var(--grad-aqua); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-band__cell .l { margin-top: 10px; color: var(--muted); font-weight: 600; font-size: .9rem; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow); }
.price-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.price-card__sub { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.price-card__amt { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.price-card__amt .cur { font-weight: 700; color: var(--muted); font-size: 1rem; }
.price-card__amt .num { font-family: var(--font-stat); font-size: 3.2rem; line-height: .85; color: var(--text); }
.price-card__amt .per { color: var(--muted); font-size: .95rem; }
.price-card__total { margin-top: 8px; color: var(--muted); font-size: .9rem; }
.price-card ul.feats { margin: 24px 0; display: grid; gap: 11px; }
.price-card ul.feats li { display: flex; gap: 10px; font-size: .94rem; color: #D6E4EA; }
.price-card ul.feats svg { flex: 0 0 19px; width: 19px; height: 19px; color: var(--secondary); margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 22px; font-size: .85rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.price-note svg { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 2px; color: var(--muted); }

/* ============================================================
   TIMETABLE
   ============================================================ */
.tt-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tt-tab { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--muted); background: var(--surface); transition: .18s; }
.tt-tab[aria-selected="true"] { background: var(--grad-aqua); color: #04222a; border-color: transparent; }
.tt-grid { display: grid; gap: 12px; }
.tt-row {
  display: grid; grid-template-columns: 92px 1fr auto auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 22px;
  transition: border-color .18s ease;
}
.tt-row:hover { border-color: var(--primary); }
.tt-row .time { font-family: var(--font-stat); font-size: 1.25rem; color: var(--secondary); }
.tt-row .cls { font-family: var(--font-display); font-weight: 700; }
.tt-row .meta { color: var(--muted); font-size: .85rem; }
.tt-row .tag-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 5px 11px; border-radius: 999px; }
.cat-cardio { background: rgba(240,86,58,.16); color: var(--accent-2); }
.cat-strength { background: rgba(30,200,214,.14); color: var(--secondary); }
.cat-mobility { background: rgba(159,180,191,.16); color: #C6D6DD; }
.cat-combat { background: rgba(255,180,80,.14); color: #ffc870; }

/* ============================================================
   TESTIMONIALS (consent-gated social proof — never a rating)
   ============================================================ */
.testi-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card { scroll-snap-align: start; flex: 0 0 min(420px, 86vw); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.testi-card__quote { font-size: 1.08rem; color: #E4EFF3; line-height: 1.5; }
.testi-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-card__who .nm { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.testi-card__who .src { color: var(--muted); font-size: .8rem; }
.testi-quotemark { font-family: var(--font-stat); font-size: 3rem; color: var(--primary); line-height: .6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(11,26,36,.94), rgba(18,42,56,.78) 60%, rgba(18,154,170,.45)); }
.cta-band h2 { max-width: 16ch; }
.cta-band p { color: #D6E4EA; margin-top: 16px; max-width: 48ch; }
.cta-band__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: #D6E4EA; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--bg-2);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #6b8593; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--focus); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--secondary); margin: 0 auto 16px; }

/* contact rows */
.contact-list { display: grid; gap: 6px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-row__ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: rgba(30,200,214,.12); display: grid; place-items: center; color: var(--secondary); }
.contact-row__ic svg { width: 22px; height: 22px; }
.contact-row .k { font-size: .8rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.contact-row .v { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.contact-row a.v:hover { color: var(--secondary); }

/* map */
.map-box { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); position: relative; min-height: 360px; background: var(--surface); }
.map-box iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: clamp(48px, 6vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__brand img { height: 54px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: #C6D6DD; font-size: .95rem; }
.footer__col a:hover { color: var(--secondary); }
.footer__socials { display: flex; gap: 10px; margin-top: 8px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text); transition: .18s; }
.footer__socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__bottom { margin-top: clamp(40px, 5vw, 64px); padding: 24px 0 40px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }

/* ============================================================
   FLOATING / MOBILE BARS
   ============================================================ */
.wa-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; color: #fff; }

.mobile-bar { display: none; }

@media (max-width: 760px) {
  .wa-fab { display: none; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 1px;
    background: var(--border); border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-bar a { background: var(--bg-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 11px 6px; font-size: .72rem; font-weight: 700; font-family: var(--font-display); color: var(--text); }
  .mobile-bar a svg { width: 21px; height: 21px; }
  .mobile-bar a.is-wa { color: #34e07b; }
  .mobile-bar a.is-cta { background: var(--accent); color: #fff; }
  body { padding-bottom: 64px; }
}

/* ============================================================
   UTIL / ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto; } }

.divider-glow { height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust__row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .tt-row { grid-template-columns: 70px 1fr; row-gap: 8px; }
  .tt-row .tag-cat { grid-column: 2; justify-self: start; }
  .field-row { grid-template-columns: 1fr; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1 1 100%; }
}
