/* =====================================================================
   One-Page Pro — base layer
   Structure and behaviour only. Every colour, font and brand-specific
   asset reference lives in assets/css/brand.css (per client), loaded
   after this file. Do not add hex colours or client copy here — if a
   value needs to change per client, it belongs in brand.css instead.
   ===================================================================== */

:root {
  /* WhatsApp is always WhatsApp green, for every client — not brand data. */
  --wa:          #25D366;
  --wa-700:      #1EA952;
  --wa-ink:      #06331A;

  --wrap:        1160px;
  --radius:      14px;
  --radius-lg:   22px;
  --header-h:    72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Long display words must never push the page wider than the viewport
   on a narrow phone. */
h1, h2, h3, p, li { overflow-wrap: break-word; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }

:where(a, button, summary, input):focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 780px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* ------------------------------ Header ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; color: var(--navy); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 900; font-size: 1.35rem; color: var(--red); letter-spacing: -.03em; }
.brand-sub  { font-weight: 600; font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin-top: 3px; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: .93rem; color: var(--navy);
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--lime); transition: right .22s ease;
}
.nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav + .header-actions { margin-left: 0; }

.lang { display: inline-flex; border: 1.5px solid var(--navy); border-radius: 999px; overflow: hidden; }
.lang-btn {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .74rem; letter-spacing: .06em;
  color: var(--navy); padding: 6px 11px; transition: background .18s, color .18s;
}
.lang-btn.is-active { background: var(--navy); color: #fff; }

.hamburger {
  display: none; width: 42px; height: 38px; border: 1.5px solid var(--navy);
  border-radius: 10px; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px; padding: 0;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------ Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer;
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 6px 18px rgba(37,211,102,.32); }
.btn-wa:hover { background: var(--wa-700); color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.38); }

.btn-ghost { border-color: currentColor; color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.hero .btn-ghost, .section-dark .btn-ghost, .cta .btn-ghost { color: #fff; }
.hero .btn-ghost:hover, .section-dark .btn-ghost:hover, .cta .btn-ghost:hover { background: #fff; color: var(--navy); }

.ico-wa { width: 21px; height: 21px; flex-shrink: 0; }

/* ------------------------------- Hero ------------------------------- */
.eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime-600); margin: 0 0 14px;
}
.section-dark .eyebrow, .cta .eyebrow, .hero .eyebrow { color: var(--lime); }

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% -8%, var(--hero-glow), transparent 62%),
    linear-gradient(170deg, var(--navy) 0%, var(--navy-800) 62%, var(--navy-900) 100%);
  color: var(--ink-onDark);
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 110px);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 5px;
  background: linear-gradient(90deg, var(--lime) 0 32%, var(--red) 32% 46%, var(--navy-700) 46% 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
/* A grid track defaults to min-width:auto, so a long unbreakable display
   word in the h1 would widen the track past the viewport and clip the
   whole column on a phone. Pin the tracks to zero and let the text wrap. */
.hero-grid > *, .coach-grid > * { min-width: 0; }

.hero h1 { display: flex; flex-direction: column; margin-bottom: 22px; }
.h1-top, .h1-mid {
  font-weight: 900; text-transform: uppercase; letter-spacing: -.035em;
  font-size: clamp(2.5rem, 8.4vw, 5.4rem); line-height: .92;
}
.h1-top { color: #fff; }
.h1-mid { color: var(--lime); }
.h1-script {
  font-style: italic; font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(2.2rem, 5.6vw, 3.6rem); color: #fff; line-height: 1.15; margin-top: 2px;
}
.h1-script::after { content: var(--h1-script-suffix, ''); font-style: normal; font-size: .8em; }

.lede { font-size: clamp(1.04rem, 1.5vw, 1.17rem); color: var(--ink-onDarkM); max-width: 54ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }

.hero-phone { font-size: .95rem; color: var(--ink-onDarkM); margin: 0; }
.hero-phone a { font-weight: 800; color: #fff; text-decoration: none; font-size: 1.1rem; letter-spacing: .01em; }
.hero-phone a:hover { color: var(--lime); }
.hero-phone .dot { margin: 0 10px; opacity: .5; }

.hero-figure { position: relative; margin: 0; }
.hero-figure img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4; object-fit: cover; object-position: center 22%;
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px;
  background: var(--lime); color: var(--navy);
  padding: 13px 20px; border-radius: var(--radius);
  display: flex; flex-direction: column; line-height: 1.25;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.hero-badge strong { font-weight: 900; font-size: .92rem; letter-spacing: -.01em; }
.hero-badge span { font-size: .78rem; font-weight: 600; opacity: .8; }

/* ----------------------------- Value bar ---------------------------- */
.valuebar { background: var(--white); border-bottom: 1px solid var(--line); }
.valuebar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 44px 0;
}
.value { padding: 0 26px; border-left: 1px solid var(--line); }
.value:first-child { border-left: 0; padding-left: 0; }
.value-ico { display: block; color: var(--lime-600); font-size: 1rem; margin-bottom: 10px; }
.value h3 { margin-bottom: 6px; }
.value p { color: var(--ink-mute); font-size: .93rem; margin: 0; }

/* ----------------------------- Sections ----------------------------- */
.section { padding: clamp(64px, 8vw, 106px) 0; }
.section-tint { background: var(--paper-2); }
.section-dark { background: var(--navy); color: var(--ink-onDark); }
.section-dark h2 { color: #fff; }
.section-dark p { color: var(--ink-onDarkM); }

.section-head { max-width: 680px; margin-bottom: 46px; }
.section-lede { color: var(--ink-mute); font-size: 1.06rem; margin: 16px 0 0; }

/* ------------------------------ Cards ------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 26px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { margin-bottom: 12px; }
.card-body { color: var(--ink-mute); font-size: .95rem; }
.card-list { list-style: none; padding: 0; margin: 4px 0 22px; }
.card-list li {
  position: relative; padding-left: 21px; font-size: .9rem; color: var(--ink); margin-bottom: 8px;
}
.card-list li::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
}
.card-cta {
  margin-top: auto; font-weight: 700; font-size: .93rem; text-decoration: none;
  color: var(--navy); align-self: flex-start;
}
.card-cta:hover { color: var(--lime-600); }

.card-feature { border-color: var(--navy); box-shadow: var(--shadow); }
.card-flag {
  position: absolute; top: -11px; left: 26px;
  background: var(--navy); color: var(--lime);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.note { margin: 34px 0 0; color: var(--ink-mute); font-size: .97rem; }

/* ------------------------------ Coach ------------------------------- */
.coach-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
.coach-figure { margin: 0; }
.coach-figure img {
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.coach-copy h2 { margin-bottom: 18px; }
.pull {
  margin: 26px 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--lime);
  font-size: 1.24rem; font-weight: 700; font-style: italic; color: #fff; line-height: 1.4;
}

/* ------------------------------ Steps ------------------------------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
  counter-reset: s;
}
.step { padding-top: 22px; border-top: 3px solid var(--navy); }
.step-n {
  display: block; font-weight: 900; font-size: 2.3rem; letter-spacing: -.04em;
  color: var(--lime); line-height: 1; margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-mute); font-size: .95rem; margin: 0; }

/* ----------------------------- Gallery ------------------------------ */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px; gap: 16px;
}
.g { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--navy-800); }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; grid-row: span 2; }

/* ------------------------------- FAQ -------------------------------- */
.qa {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.qa summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.05rem; padding: 18px 40px 18px 0; position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--lime-600); line-height: 1;
  transition: transform .2s ease;
}
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa p { color: var(--ink-mute); font-size: .98rem; padding-bottom: 18px; margin: 0; max-width: 62ch; }

/* ------------------------------- CTA -------------------------------- */
.cta {
  background:
    linear-gradient(var(--cta-overlay-1), var(--cta-overlay-2)),
    var(--cta-bg-image) center/cover no-repeat fixed;
  color: #fff; text-align: center;
  padding: clamp(72px, 9vw, 118px) 0;
}
.cta-inner { max-width: 720px; margin-inline: auto; }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta-lede { color: var(--ink-onDarkM); font-size: 1.08rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background: var(--footer-bg); color: var(--ink-onDarkM); padding: 54px 0 26px; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap;
  padding-bottom: 30px; border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-name { font-size: 1.5rem; display: block; }
.footer-brand .brand-sub { display: block; margin-top: 4px; color: var(--ink-onDarkM); }
.footer-tag { margin: 14px 0 0; font-size: .92rem; max-width: 34ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: flex-start; }
.footer-nav a { text-decoration: none; font-weight: 600; font-size: .93rem; color: var(--ink-onDark); }
.footer-nav a:hover { color: var(--lime); }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; font-size: .82rem; color: var(--footer-legal);
}

/* --------------------------- WhatsApp FAB --------------------------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

/* --------------------------- Responsive ----------------------------- */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 480px; }
  .hero-badge { left: auto; right: 18px; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-figure { max-width: 440px; }
  .valuebar-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .value:nth-child(3) { border-left: 0; padding-left: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 2; grid-row: span 1; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
    transform: translateY(-140%); transition: transform .28s ease;
    box-shadow: var(--nav-shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .header-actions { margin-left: auto; }
  .wa-float { display: flex; }
  .cta { background-attachment: scroll; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .valuebar-grid { grid-template-columns: 1fr; }
  .value { border-left: 0; padding-left: 0; }
  .hero-cta .btn, .cta-buttons .btn { width: 100%; white-space: normal; text-align: center; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .g-wide { grid-column: span 1; }
  .hero-badge { position: static; margin-top: 14px; border-radius: var(--radius); }
}
