/* ============================================================
   COMBATIX — Selbstverteidigung
   Design system: Anthrazit base · Petrol = Marke · Rot = Aktion
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #121417;
  --bg-1:      #171a1e;
  --bg-2:      #1d2126;
  --bg-3:      #252a30;
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.16);

  /* Text */
  --text:      #eef1f2;
  --muted:     #9aa4a8;
  --faint:     #6b757a;

  /* Brand accent — themeable (Schwarz & Rot bleiben fix) */
  --petrol:    #ece4d6;
  --petrol-2:  #d4c8b2;
  --petrol-dim: rgba(236, 228, 214, 0.14);

  /* Action accent — Rot (sparsam) */
  --red:       oklch(0.62 0.20 27);
  --red-2:     oklch(0.55 0.19 27);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--petrol); color: #06201f; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--petrol);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.h-xl {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.h-lg {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  text-transform: uppercase;
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--muted);
  max-width: 60ch;
}
.accent { color: var(--petrol); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .lead { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--petrol);
  --btn-fg: #06201f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--red {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  box-shadow: 0 10px 30px -12px var(--red);
}
.btn--red:hover { --btn-bg: var(--red-2); box-shadow: 0 16px 40px -14px var(--red); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--petrol); color: var(--petrol); }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 20, 23, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 12px;
  border-bottom-color: var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.nav__brand img { height: 40px; width: auto; transition: height .3s ease; }
.nav.scrolled .nav__brand img { height: 34px; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.nav__wordmark .ix { color: inherit; }
.nav__wordmark .mk { letter-spacing: 0.08em; }

/* image-slot integration */
.hero__media image-slot { display: block; width: 100%; height: 100%; }
.trainer__photo .frame image-slot { display: block; width: 100%; height: 100%; }
.footer__brand .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}
.footer__brand .wordmark .ix { color: inherit; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--petrol);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}
.nav__burger span {
  width: 26px; height: 2px; background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(15, 17, 19, 0.97);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav__links a { font-size: 1.4rem; }
  .nav.open .nav__links { opacity: 1; pointer-events: auto; }
  .nav__cta .btn--desktop { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 120px 64px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) contrast(1.05); }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,20,23,0.55) 0%, rgba(18,20,23,0.2) 35%, rgba(18,20,23,0.85) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(18,20,23,0.8) 0%, rgba(18,20,23,0.1) 60%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero__inner { max-width: 880px; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .ln { display: block; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 1.5px var(--petrol); }
.hero__sub { margin: 26px 0 34px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--muted); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color .2s ease;
}
.hero__scroll:hover { color: var(--text); }
.hero__scroll i {
  color: var(--petrol); font-size: 18px; line-height: 1;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(5px); opacity: 1; }
}
@media (max-width: 620px) { .hero__scroll { display: none; } }

/* ---------- Stat strip ---------- */
.stats {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 36px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.05; color: var(--petrol); }
.stat__lbl { margin-top: 10px; font-size: 0.92rem; color: var(--muted); }
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philo__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.philo__statement { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -0.01em; }
.philo__statement em { font-style: normal; color: var(--petrol); }
.philo__body p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.philo__body p:last-child { margin-bottom: 0; }
.philo__quote { margin-top: 30px; padding-left: 22px; border-left: 3px solid var(--red); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--text); }
@media (max-width: 820px) { .philo__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   TRAINER
   ============================================================ */
.trainer { background: var(--bg-1); border-block: 1px solid var(--line); }
.trainer__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.trainer__photo { position: relative; }
.trainer__photo .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-2);
}
.trainer__photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; transform: scale(1.85); transform-origin: 50% 6%; filter: grayscale(0.15) contrast(1.04); }
.trainer__photo .tag {
  position: absolute;
  left: -14px; bottom: 26px;
  background: var(--petrol);
  color: #06201f;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  font-weight: 700;
}
.trainer__name { margin: 18px 0 6px; }
.trainer__role { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--petrol); }
.trainer__body p { color: var(--muted); margin: 18px 0; font-size: 1.06rem; }
.trainer__creds { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.trainer__creds li { display: flex; gap: 14px; align-items: flex-start; }
.trainer__creds svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--petrol); margin-top: 2px; }
.trainer__creds i { flex: 0 0 auto; width: 22px; text-align: center; font-size: 17px; color: var(--petrol); margin-top: 3px; }
.trainer__creds b { color: var(--text); font-weight: 700; }
@media (max-width: 820px) { .trainer__grid { grid-template-columns: 1fr; } .trainer__photo { max-width: 420px; } }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.benefit { background: var(--bg-1); padding: clamp(26px, 3vw, 38px) clamp(22px, 2.5vw, 30px); transition: background .25s ease; }
.benefit:hover { background: var(--bg-2); }
.benefit__ic { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--petrol); border-radius: 50%; color: var(--petrol); margin-bottom: 20px; }
.benefit__ic svg { width: 22px; height: 22px; }
.benefit__ic i { font-size: 19px; line-height: 1; }
.benefit h3 { font-size: 1.15rem; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 0.96rem; line-height: 1.5; }
@media (max-width: 980px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits__grid { grid-template-columns: 1fr; } }

/* ============================================================
   OFFERINGS
   ============================================================ */
.offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.offer::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--petrol);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.offer:hover { border-color: var(--line-2); transform: translateY(-4px); }
.offer:hover::before { transform: scaleX(1); }
.offer__no { font-family: var(--font-mono); font-size: 0.8rem; color: var(--faint); letter-spacing: 0.1em; }
.offer h3 { font-size: 1.5rem; text-transform: uppercase; margin: 14px 0 8px; }
.offer__meta { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--petrol); text-transform: uppercase; }
.offer p { color: var(--muted); margin: 18px 0 24px; font-size: 1rem; flex: 1; }
.offer__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag-chip { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; padding: 5px 11px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); text-transform: uppercase; }
.offer .btn { align-self: flex-start; }
@media (max-width: 900px) { .offers__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   CTA BAND  (the one big red moment)
   ============================================================ */
.ctaband { position: relative; overflow: hidden; background: var(--bg-2); border-block: 1px solid var(--line); }
.ctaband .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.ctaband__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 120% at 85% 50%, oklch(0.62 0.20 27 / 0.22), transparent 70%); }
.ctaband h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); text-transform: uppercase; }
.ctaband p { color: var(--muted); margin-top: 18px; font-size: 1.1rem; max-width: 48ch; }
.ctaband__action { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ctaband__note { font-family: var(--font-mono); font-size: 0.78rem; color: var(--faint); letter-spacing: 0.04em; }
@media (max-width: 820px) { .ctaband .wrap { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.contact__info h2 { margin-bottom: 22px; }
.contact__intro { color: var(--muted); font-size: 1.06rem; margin-bottom: 36px; max-width: 46ch; }
.cinfo { display: flex; flex-direction: column; gap: 26px; }
.cinfo__item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo__item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--petrol); margin-top: 3px; }
.cinfo__item i { flex: 0 0 auto; width: 22px; text-align: center; font-size: 17px; color: var(--petrol); margin-top: 4px; }
.cinfo__item .lbl { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.cinfo__item .val { font-size: 1.05rem; color: var(--text); }
.cinfo__item a.val:hover { color: var(--petrol); }
.contact__socials { display: flex; gap: 12px; margin-top: 34px; }
.contact__socials a {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--text);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.contact__socials a:hover { border-color: var(--petrol); color: var(--petrol); }
.contact__socials a i { font-size: 19px; line-height: 1; }
.contact__socials a.wa:hover { border-color: #25d366; color: #25d366; }
.contact__socials a.ig:hover { border-color: #e1306c; color: #e1306c; }

/* form */
.form { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); }
.form__row { margin-bottom: 20px; }
.form__row label { display: block; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.form__row label .req { color: var(--red); }
.form input, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus { outline: 0; border-color: var(--petrol); box-shadow: 0 0 0 3px var(--petrol-dim); }
.form textarea { resize: vertical; min-height: 120px; }
.form input.err, .form textarea.err { border-color: var(--red); }
.form__msg { font-size: 0.82rem; margin-top: 6px; min-height: 1em; color: var(--red); }
.form__consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.form__consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--petrol); }
.form__consent label { font-family: var(--font-body); font-size: 0.86rem; color: var(--muted); letter-spacing: 0; text-transform: none; margin: 0; line-height: 1.5; }
.form__consent a { color: var(--petrol); text-decoration: underline; }
.form__captcha { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.form__captcha .q { font-family: var(--font-mono); font-size: 1rem; color: var(--text); white-space: nowrap; }
.form__captcha input { max-width: 90px; }
.form__success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form__success.show { display: block; }
.form__success .ok { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--petrol-dim); display: grid; place-items: center; color: var(--petrol); }
.form__success h3 { text-transform: none; font-size: 1.4rem; margin-bottom: 8px; }
.form__success p { color: var(--muted); }
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-1); border-top: 1px solid var(--line); padding-block: 56px 30px; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer__brand { max-width: 320px; }
.footer__brand img { height: 44px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; }
.footer__cols { display: flex; gap: clamp(40px, 8vw, 90px); flex-wrap: wrap; }
.footer__col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 400; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col span { color: var(--muted); font-size: 0.95rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--petrol); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; }
.footer__bottom p, .footer__bottom a { font-family: var(--font-mono); font-size: 0.76rem; color: var(--faint); letter-spacing: 0.04em; }
.footer__bottom a:hover { color: var(--petrol); }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    var(--bg-2);
  display: grid;
  place-items: center;
}
.ph span { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; color: var(--faint); text-transform: uppercase; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll i { animation: none; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding-top: 140px; padding-bottom: 100px; min-height: 70vh; }
.legal .wrap { max-width: 860px; }
.legal__back { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--petrol); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; }
.legal__back:hover { gap: 12px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); text-transform: uppercase; margin-bottom: 36px; }
.legal h2 { font-size: 1.5rem; text-transform: none; margin: 44px 0 14px; color: var(--text); }
.legal h3 { font-size: 1.15rem; text-transform: none; margin: 28px 0 10px; color: var(--petrol); font-weight: 700; }
.legal h4 { font-size: 1rem; margin: 20px 0 8px; color: var(--text); font-weight: 700; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; margin-bottom: 14px; line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--petrol); text-decoration: underline; word-break: break-word; }
.legal strong { color: var(--text); }
.legal .addr { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 20px; color: var(--text); line-height: 1.8; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.legal .upper { text-transform: uppercase; font-size: 0.92rem; }

/* ============================================================
   SCHEDULE & PRICES
   ============================================================ */
.schedule {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.schedule__card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
}
.trainer .schedule__card { background: var(--bg-2); }
.schedule__card h3 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.schedule__card h3 i { color: var(--petrol); font-size: 18px; width: 22px; text-align: center; }
.schedule__list { list-style: none; display: flex; flex-direction: column; }
.schedule__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 0; border-top: 1px solid var(--line);
}
.schedule__list li:first-child { border-top: 0; }
.schedule__list .k { color: var(--text); font-weight: 500; }
.schedule__list .v { color: var(--muted); font-family: var(--font-mono); font-size: 0.86rem; text-align: right; }
.schedule__list .v b { color: var(--petrol); font-family: var(--font-display); font-size: 1.05rem; }
.schedule__note { margin-top: 16px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--faint); }
@media (max-width: 760px) { .schedule { grid-template-columns: 1fr; } }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-fab i { font-size: 28px; }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.wa-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-fab__pulse { animation: none; } }

/* ============================================================
   MOBILE MENU EXTRAS  (CTA + quick contact inside overlay)
   ============================================================ */
.nav__menu-extra { display: none; }
@media (max-width: 900px) {
  .nav__menu-extra {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    margin-top: 14px; width: min(320px, 80vw);
  }
  .nav__menu-extra .btn { width: 100%; justify-content: center; font-size: 1rem; }
  .nav__menu-quick { display: flex; gap: 14px; }
  .nav__menu-quick a {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em;
    color: var(--muted); padding: 10px 16px; border: 1px solid var(--line-2); border-radius: 100px;
  }
  .nav__menu-quick a i { font-size: 15px; color: var(--petrol); }
}
