/* ============================================
   VIT'HALLES — Premium Fitness Club
   Refined design: Manrope font, restrained red, big numbers
   ============================================ */

:root {
  --black: #0A0A0A;
  --ink: #111111;
  --gray-900: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  --red: #E60012;
  --red-dark: #BD000F;
  --line: #ECECEC;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebd5b;

  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Big Shoulders Display', 'Anton', 'Manrope', sans-serif;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-punch: cubic-bezier(0.34, 1.56, 0.64, 1);
  --easing-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --tr: 0.35s var(--easing);
  --tr-fast: 0.2s var(--easing);
  --tr-slow: 0.6s var(--easing);
  --tr-punch: 0.5s var(--easing-punch);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--ink); color: var(--white); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tr-fast); }
ul { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-red { color: var(--red); }
.text-white { color: var(--white); }

/* ============================================
   PROMO BAR — dark, refined
   ============================================ */
.promo-bar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 101;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.promo-bar.hidden { display: none; }

.promo-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 11px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  min-height: 42px;
}

.promo-bar__slides {
  flex: 1;
  position: relative;
  height: 22px;
  text-align: center;
  overflow: hidden;
}

.promo-bar__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s var(--easing), transform 0.5s var(--easing);
  white-space: nowrap;
}
.promo-bar__slide.active { opacity: 1; transform: translateY(0); }
.promo-bar__slide i { color: var(--red); font-size: 11px; }
.promo-bar__slide strong { font-weight: 700; color: var(--white); letter-spacing: 0.3px; }
.promo-bar__slide a {
  color: var(--white);
  font-weight: 600;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.promo-bar__slide a:hover { border-bottom-color: var(--red); color: var(--red); }

.promo-bar__arrow, .promo-bar__close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: var(--tr-fast);
}
.promo-bar__arrow:hover, .promo-bar__close:hover {
  border-color: var(--white);
}
.promo-bar__close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   HEADER — full dark
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  transition: padding var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Logo — image, no container, original colors */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: var(--tr);
  position: relative;
}
.logo:hover { transform: scale(1.03); }
.logo__img {
  height: 100px;
  width: auto;
  display: block;
  max-width: 100%;
  filter: none;
}

/* Footer logo — bigger, no filter, V stays black with its circle */
.logo--footer {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.logo--footer .logo__img {
  height: 120px;
  filter: none;
}
.logo--footer:hover { background: transparent; box-shadow: none; }

/* Nav */
.nav { justify-self: center; }
.nav__list { display: flex; gap: 34px; }
.nav__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--tr);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover, .nav__link.active {
  color: var(--white);
  opacity: 1;
  font-weight: 700;
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.header__phone i {
  color: var(--whatsapp);
  font-size: 18px;
}
.header__phone:hover { color: var(--red); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  width: 18px; height: 2px;
  background: var(--white);
  transition: var(--tr-fast);
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   BUTTONS — refined, restrained red
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 32px; font-size: 14px; }
.btn--xl { padding: 18px 36px; font-size: 15px; }
.btn--header { padding: 11px 22px; font-size: 13px; }
.btn--full { width: 100%; }

.btn i.fa-arrow-right { transition: transform var(--tr-fast); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* ============================================
   SECTION HEADS — clean, refined
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
}
.eyebrow--white { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--ink);
  text-transform: uppercase;
}
.section-title--white { color: var(--white); }

.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-500);
  margin-top: 20px;
  max-width: 600px;
}
.section-lead--white { color: rgba(255,255,255,0.7); }

.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow,
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================
   HERO — premium dark with big visible stats
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=85');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4);
  animation: heroZoom 24s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes heroZoom {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-20px, -10px); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content { max-width: 780px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,0,18,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(230,0,18,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -1px;
  margin-bottom: 28px;
  color: var(--white);
  text-transform: uppercase;
}
.hero__title-accent {
  display: inline-block;
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 8px;
  background: var(--red);
  opacity: 0.85;
  z-index: -1;
  transform: skew(-4deg);
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero__subtitle strong { color: var(--white); font-weight: 600; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* HERO STATS — HUGE & VISIBLE */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  max-width: 880px;
}
.hero__stat {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-right: none; padding-right: 0; }
.hero__stat:not(:first-child) { padding-left: 28px; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.4rem, 5.5vw, 5rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hero__stat-num .plus {
  color: var(--red);
  font-size: 0.6em;
  vertical-align: top;
  font-weight: 700;
}
.hero__stat-num .unit {
  font-size: 0.5em;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-left: 2px;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero__scroll i { font-size: 12px; color: var(--red); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(-8px); opacity: 1; }
}

/* ============================================
   MARQUEE — subtle
   ============================================ */
.marquee {
  background: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.marquee__track .sep {
  font-size: 18px;
  color: var(--red);
  font-family: var(--font);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES — clean photo cards
   ============================================ */
.services {
  padding: 110px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: var(--tr);
  isolation: isolate;
}
.service__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--easing);
  z-index: 0;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
  transition: var(--tr);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.service:hover .service__img { transform: scale(1.08); }

.service__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service__tag--red { background: var(--red); color: var(--white); }

.service__body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
}
.service__body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ============================================
   OFFERS — clean white cards
   ============================================ */
.offers {
  padding: 110px 0;
  background: var(--gray-50);
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--tr);
}
.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--ink);
}

.offer--featured {
  background: var(--white);
  border: 2px solid var(--red);
  position: relative;
  box-shadow: 0 12px 35px rgba(230, 0, 18, 0.12);
}
.offer--featured:hover {
  box-shadow: 0 20px 50px rgba(230, 0, 18, 0.22);
  border-color: var(--red);
  transform: translateY(-6px);
}

.offer__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer__header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.offer--featured .offer__header { border-bottom-color: var(--line); }
.offer__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
  line-height: 1;
}
.offer--featured .offer__name { color: var(--ink); }
.offer__duration {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}
.offer--featured .offer__duration { color: var(--gray-500); }

.offer__price {
  margin-bottom: 24px;
}
.offer__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.offer--featured .offer__amount { color: var(--ink); }
.offer__amount .red { color: var(--red); }
.offer__period {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.offer--featured .offer__period { color: var(--gray-500); }

.offer__features {
  margin-bottom: 28px;
  flex-grow: 1;
}
.offer__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.offer--featured .offer__features li { color: var(--ink); font-weight: 600; }
.offer__features i {
  color: var(--red);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}
.offer--featured .offer__features i { color: var(--red); }

/* CTA — high contrast both states */
.offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  border: 1.5px solid var(--ink);
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--tr);
  text-align: center;
}
.offer__cta i { transition: transform var(--tr-fast); }
.offer__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.offer__cta:hover i { transform: translateX(4px); }

.offer--featured .offer__cta {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.offer--featured .offer__cta:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Specials */
.offers__specials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.special {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--tr);
}
.special:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.special__icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--tr);
}
.special:hover .special__icon { background: var(--red); color: var(--white); }
.special strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}
.special span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================
   ADVANTAGES — 12 raisons (Pourquoi nous choisir)
   ============================================ */
.advantages {
  padding: 110px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}

.advantage {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px 26px;
  position: relative;
  transition: var(--tr);
  overflow: hidden;
  isolation: isolate;
}
.advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--easing-snap);
  z-index: 1;
}
.advantage:hover {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.advantage:hover::before { transform: scaleX(1); }

.advantage__num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: rgba(11, 11, 11, 0.06);
  letter-spacing: -1px;
  line-height: 1;
  transition: var(--tr);
  z-index: 0;
}
.advantage:hover .advantage__num { color: var(--red); }

.advantage__icon {
  width: 52px;
  height: 52px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--tr);
  position: relative;
  z-index: 2;
}
.advantage:hover .advantage__icon {
  background: var(--red);
  transform: rotate(-8deg) scale(1.05);
}

.advantage h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.advantage p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.advantages__cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .advantages__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .advantage { padding: 24px 22px 22px; }
  .advantage h3 { font-size: 18px; }
}
@media (max-width: 480px) {
  .advantages { padding: 70px 0; }
  .advantages__grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY US
   ============================================ */
.why {
  padding: 110px 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.why__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}
.why__img {
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1200&q=85') center/cover;
  filter: grayscale(0.15);
  transition: transform 1.5s var(--easing);
}
.why__media:hover .why__img { transform: scale(1.05); }
.why__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.6));
}

.why__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  z-index: 2;
}
.why__badge-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 88px;
  line-height: 0.85;
  color: var(--white);
  letter-spacing: -2px;
  text-transform: uppercase;
}
.why__badge-num .plus { color: var(--red); font-size: 0.55em; vertical-align: top; }
.why__badge-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.why__badge-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.why__title { margin-bottom: 24px; }
.why__lead {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 32px;
}

.why__list { margin-bottom: 36px; }
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.why__list li:last-child { border-bottom: none; }
.why__list-icon {
  width: 42px; height: 42px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--tr);
}
.why__list li:hover .why__list-icon {
  background: var(--red);
  color: var(--white);
}
.why__list strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.why__list span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS — clean cards
   ============================================ */
.testimonials {
  padding: 110px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials__head { margin-bottom: 60px; }
.testimonials__head .eyebrow { color: rgba(255,255,255,0.6); }
.testimonials__head .section-title { color: var(--white); }
.testimonials__head .section-lead { color: rgba(255,255,255,0.65); }

.testimonials__slider {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--easing);
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 32px 28px;
  transition: var(--tr);
}
.testimonial:hover {
  background: var(--gray-800);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.testimonial__quote-icon {
  font-size: 24px;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.testimonial__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.testimonial__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  color: #FFB800;
  font-size: 13px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial__avatar {
  width: 46px; height: 46px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonial__author-info strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial__author-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.testimonials__arrow {
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.testimonials__arrow:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.testimonials__dots {
  display: flex;
  gap: 8px;
}
.testimonials__dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--tr-fast);
}
.testimonials__dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ============================================
   GALLERY — bento style premium grid
   ============================================ */
.gallery {
  padding: 110px 0;
  background: var(--white);
}

.gallery__head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__head .eyebrow { display: inline-flex; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery__item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
  isolation: isolate;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background var(--tr);
  z-index: 1;
}
.gallery__item:hover::after { background: rgba(10,10,10,0.3); }
.gallery__item:hover { transform: scale(0.985); }

.gallery__item-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--tr);
}
.gallery__item:hover .gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: var(--tr);
}
.gallery__item:hover .gallery__item-zoom { opacity: 1; }

/* Bento sizing */
.gallery__item--xl { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr-fast);
}
.lightbox__close:hover { background: var(--white); color: var(--ink); }

.gallery__cta {
  text-align: center;
  margin-top: 50px;
}
.gallery__instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ink);
  transition: var(--tr);
}
.gallery__instagram:hover { color: var(--red); border-bottom-color: var(--red); }
.gallery__instagram i { font-size: 18px; color: var(--red); }

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 110px 0;
  background: var(--gray-50);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.location__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.location__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--tr);
}
.location__card:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}
.location__card-icon {
  width: 42px; height: 42px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.location__card strong {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location__card p, .location__card a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.location__card a:hover { color: var(--red); }

.location__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--gray-100);
}

/* ============================================
   FINAL CTA — refined
   ============================================ */
.final-cta {
  padding: 130px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(1);
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
}
.final-cta h2 .accent {
  position: relative;
  display: inline-block;
}
.final-cta h2 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 6px;
  background: var(--red);
  opacity: 0.9;
  z-index: -1;
  transform: skew(-4deg);
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: 70px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand .logo__name { color: var(--white); }
.footer__brand .logo__sub { color: rgba(255,255,255,0.5); }
.footer__brand .logo__mark { background: var(--white); }
.footer__brand .logo__mark span { color: var(--ink); }
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 24px 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer__col h4 {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__col ul li a {
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr-fast);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__col ul li i { color: var(--red); width: 16px; font-size: 12px; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--tr);
}
.footer__social a:hover {
  background: var(--white);
  color: var(--ink);
}

.footer__bottom {
  padding: 22px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
  color: var(--white);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============================================
   INSCRIPTION SPLIT LAYOUT — Desktop / Mobile
   ============================================ */
.inscr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 90px);
  position: relative;
}

/* ---- VISUAL SIDE (left) ---- */
.inscr-split__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--ink);
}
.inscr-split__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  animation: heroZoom 28s ease-in-out infinite alternate;
}
.inscr-split__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(230,0,18,0.45) 100%),
    radial-gradient(ellipse at top right, rgba(230,0,18,0.25), transparent 60%);
}
.inscr-split__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 56px;
  width: 100%;
  color: var(--white);
}

.inscr-split__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: var(--tr);
}
.inscr-split__back:hover { color: var(--white); transform: translateX(-4px); }

.inscr-split__brand { margin: 60px 0; }
.eyebrow--white { color: rgba(255,255,255,0.8); }
.eyebrow--white::before { background: var(--white); }
.inscr-split__brand .eyebrow { display: inline-flex; margin-bottom: 20px; }
.inscr-split__brand h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.inscr-split__brand h2 span { color: var(--red); }
.inscr-split__brand p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  max-width: 420px;
}

.inscr-split__points {
  margin-bottom: 40px;
}
.inscr-split__points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.inscr-split__points i {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
}

.inscr-split__signature {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.inscr-split__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.inscr-split__stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---- FORM SIDE (right) ---- */
.inscr-split__panel {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
}
.inscr-split__form-wrap {
  width: 100%;
  max-width: 480px;
}

.back-link--mobile { display: none; }

.inscr-split__form-wrap .eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
}
.inscr-split__form-wrap h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--ink);
  text-transform: uppercase;
}
.inscr-split__form-wrap h1 span { color: var(--red); }

.inscr-split__intro {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ---- CLEAN FORM (no card) ---- */
.inscr-form-clean .inscr-field { margin-bottom: 16px; }
.inscr-form-clean .inscr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inscr-form-clean label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.inscr-form-clean input,
.inscr-form-clean select,
.inscr-form-clean textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--gray-50);
  color: var(--ink);
  transition: var(--tr);
}
.inscr-form-clean input:focus,
.inscr-form-clean select:focus,
.inscr-form-clean textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.inscr-form-clean input::placeholder,
.inscr-form-clean textarea::placeholder { color: var(--gray-400); }
.inscr-form-clean select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E60012' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.inscr-form-clean textarea { resize: vertical; min-height: 60px; }
.inscr-form-clean button { margin-top: 8px; }

/* Divider */
.inscr-split__divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
.inscr-split__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.inscr-split__divider span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  background: var(--white);
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inscr-split__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inscr-split__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
}
.inscr-split__note i { color: var(--whatsapp); }

/* ============================================
   RESPONSIVE — Tablet (compact)
   ============================================ */
@media (max-width: 1100px) {
  .inscr-split__content { padding: 50px 40px; }
  .inscr-split__panel { padding: 50px 40px; }
  .inscr-split__brand { margin: 40px 0; }
  .inscr-split__brand h2 { font-size: clamp(2rem, 4vw, 3rem); }
}

/* ============================================
   RESPONSIVE — Mobile (premium stack)
   ============================================ */
@media (max-width: 768px) {
  body.page-inscription { background: var(--gray-50); }

  .inscr-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* === Hero banner mobile === */
  .inscr-split__visual {
    aspect-ratio: auto;
    min-height: 280px;
    height: 280px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }
  .inscr-split__img { filter: grayscale(0.2) contrast(1.1); }
  .inscr-split__overlay {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%),
      radial-gradient(ellipse at bottom right, rgba(230,0,18,0.3), transparent 60%);
  }
  .inscr-split__content {
    padding: 28px 24px 30px;
    justify-content: flex-end;
  }
  .inscr-split__back { display: none; }
  .inscr-split__brand { margin: 0; }
  .inscr-split__brand .eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }
  .inscr-split__brand h2 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    line-height: 0.9;
    margin-bottom: 10px;
  }
  .inscr-split__brand h2 br { display: none; }
  .inscr-split__brand p { display: none; }
  .inscr-split__points,
  .inscr-split__signature { display: none; }

  /* === Form panel mobile (premium card) === */
  .inscr-split__panel {
    background: transparent;
    padding: 0 16px 40px;
    margin-top: -40px;
    position: relative;
    z-index: 3;
  }
  .inscr-split__form-wrap {
    max-width: 100%;
    background: var(--white);
    border-radius: 18px;
    padding: 30px 24px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--line);
  }

  .inscr-split__form-wrap .eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
  }
  .inscr-split__form-wrap h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 0.95;
    margin-bottom: 8px;
  }
  .inscr-split__intro {
    font-size: 13px;
    margin-bottom: 22px;
    color: var(--gray-500);
  }

  /* === Trust strip below banner (disabled) === */
  .inscr-split__panel--legacy::before {
    content: '';
    display: none;
  }

  /* === Inputs mobile premium === */
  .inscr-form-clean .inscr-field { margin-bottom: 14px; }
  .inscr-form-clean .inscr-row { gap: 10px; }
  .inscr-form-clean label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 6px;
  }
  .inscr-form-clean input,
  .inscr-form-clean select,
  .inscr-form-clean textarea {
    padding: 13px 14px;
    font-size: 14px;
    border-radius: 10px;
    background: var(--gray-50);
    border: 1.5px solid transparent;
  }
  .inscr-form-clean input:focus,
  .inscr-form-clean select:focus,
  .inscr-form-clean textarea:focus {
    border-color: var(--ink);
    background: var(--white);
  }

  .inscr-checkbox {
    font-size: 12px;
    line-height: 1.45;
  }

  .inscr-form-clean button {
    padding: 16px 24px;
    font-size: 14px;
    margin-top: 6px;
    border-radius: 12px;
  }

  /* === Divider mobile === */
  .inscr-split__divider {
    margin: 20px 0 14px;
  }
  .inscr-split__divider span {
    font-size: 10px;
    letter-spacing: 1.5px;
    background: var(--white);
    padding: 0 12px;
  }

  /* === WhatsApp button mobile === */
  .inscr-split__form-wrap .btn--whatsapp {
    padding: 15px 20px;
    font-size: 13px;
    border-radius: 12px;
  }

  /* === Note mobile === */
  .inscr-split__note {
    font-size: 11px;
    margin-top: 18px;
    padding-top: 16px;
    color: var(--gray-400);
  }

  /* Hide back link mobile too (logo in header is enough) */
  .back-link--mobile { display: none; }

  /* Hide WhatsApp float on inscription mobile (WhatsApp button is in the form) */
  .page-inscription .whatsapp-float { display: none; }
}

@media (max-width: 480px) {
  .inscr-split__visual { min-height: 240px; height: 240px; }
  .inscr-split__content { padding: 24px 20px 26px; }
  .inscr-split__brand h2 { font-size: 1.85rem; }
  .inscr-split__panel { padding: 0 12px 40px; }
  .inscr-split__form-wrap { padding: 26px 20px 22px; border-radius: 16px; }
  .inscr-form-clean .inscr-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   INSCRIPTION SIMPLE PAGE (legacy fallback)
   ============================================ */
.inscr-simple {
  padding: 70px 0 110px;
  min-height: calc(100vh - 200px);
}
.inscr-simple__wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}
.inscr-simple__head {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.inscr-simple__head .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}
.inscr-simple__head h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--ink);
  text-transform: uppercase;
}
.inscr-simple__head h1 span { color: var(--red); }
.inscr-simple__head p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}

.inscr-simple__form { margin-bottom: 28px; }
.inscr-simple__form .btn { margin-top: 8px; }

.inscr-simple__divider {
  position: relative;
  text-align: center;
  margin: 28px 0;
}
.inscr-simple__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.inscr-simple__divider span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: var(--white);
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inscr-simple__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inscr-simple__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}
.inscr-simple__note i { color: var(--whatsapp); }

@media (max-width: 640px) {
  .inscr-simple { padding: 30px 0 70px; }
  .inscr-simple__wrap { padding: 32px 24px; border-radius: 14px; }
  .inscr-simple__head { padding-bottom: 24px; margin-bottom: 28px; }
  .inscr-simple__head h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* ============================================
   INSCRIPTION PAGE (old, kept for compat)
   ============================================ */
.page-inscription { background: var(--gray-50); }

.inscr-hero {
  padding: 50px 0 30px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 28px;
  transition: var(--tr);
}
.back-link:hover { color: var(--red); transform: translateX(-4px); }
.inscr-hero__content { max-width: 820px; }
.inscr-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: var(--ink);
  text-transform: uppercase;
}
.inscr-hero h1 span {
  position: relative;
  display: inline-block;
}
.inscr-hero h1 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 6px;
  background: var(--red);
  opacity: 0.85;
  z-index: -1;
  transform: skew(-4deg);
}
.inscr-hero p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.6;
}

.inscr-section { padding: 50px 0 110px; }
.inscr-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

.inscr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 110px;
}
.inscr-sidebar__block,
.inscr-sidebar__offers,
.inscr-sidebar__contact {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--line);
}
.inscr-sidebar h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 16px;
}
.inscr-sidebar__block ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.inscr-sidebar__block ul li i {
  color: var(--red);
  font-size: 10px;
  flex-shrink: 0;
}

.inscr-offer {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
  transition: var(--tr);
}
.inscr-offer:hover { border-color: var(--ink); }
.inscr-offer strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
}
.inscr-offer span {
  font-size: 11px;
  color: var(--gray-500);
}
.inscr-offer--featured {
  background: var(--ink);
  border-color: var(--ink);
}
.inscr-offer--featured strong { color: var(--white); }
.inscr-offer--featured span { color: var(--gray-400); }
.inscr-offer__badge {
  position: absolute;
  top: -7px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 100px;
}

.inscr-sidebar__contact .btn { margin-bottom: 8px; }
.inscr-sidebar__contact .btn:last-child { margin-bottom: 0; }

.inscr-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px;
}

.inscr-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.inscr-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
}
.inscr-step span {
  width: 28px; height: 28px;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.inscr-step.active { color: var(--ink); }
.inscr-step.active span { background: var(--ink); color: var(--white); }

.inscr-block { margin-bottom: 36px; }
.inscr-block h2 {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.inscr-block-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.inscr-block p.inscr-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.inscr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.inscr-field { margin-bottom: 16px; }
.inscr-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.inscr-field input,
.inscr-field select,
.inscr-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  transition: var(--tr);
}
.inscr-field input::placeholder,
.inscr-field textarea::placeholder { color: var(--gray-400); }
.inscr-field input:focus,
.inscr-field select:focus,
.inscr-field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.inscr-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A0A0A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.inscr-field textarea { resize: vertical; min-height: 84px; }

.inscr-radio-group { display: flex; gap: 10px; }
.inscr-radio { flex: 1; cursor: pointer; }
.inscr-radio input { display: none; }
.inscr-radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--tr);
}
.inscr-radio span i { color: var(--ink); }
.inscr-radio:hover span { border-color: var(--ink); }
.inscr-radio input:checked + span {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.inscr-radio input:checked + span i { color: var(--red); }

.inscr-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.inscr-choice { cursor: pointer; }
.inscr-choice input { display: none; }
.inscr-choice span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--tr);
}
.inscr-choice span i { color: var(--ink); font-size: 13px; }
.inscr-choice:hover span { border-color: var(--ink); }
.inscr-choice input:checked + span {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.inscr-choice input:checked + span i { color: var(--red); }

.inscr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}
.inscr-checkbox input { margin-top: 3px; accent-color: var(--red); }

.inscr-form__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.inscr-form__note i { color: var(--whatsapp); }

.inscr-info {
  background: var(--gray-100);
  border-left: 3px solid var(--ink);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.inscr-info i {
  color: var(--ink);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.inscr-info strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 14px;
}
.inscr-info p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}
.inscr-info strong + p strong {
  color: var(--ink);
  display: inline;
  font-size: 13px;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.active {
    display: block;
    position: fixed;
    top: 78px;
    left: 0; right: 0; bottom: 0;
    background: var(--ink);
    padding: 40px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav__list { flex-direction: column; gap: 24px; }
  .nav__link { font-size: 22px; font-weight: 700; color: var(--white); opacity: 1; }
  .burger { display: flex; }
  .header__phone span { display: none; }
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .offers__grid { grid-template-columns: repeat(2, 1fr); }
  .offers__specials { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 50px; }
  .why__media { max-width: 540px; }
  .testimonial { flex: 0 0 calc(50% - 12px); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .location__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .inscr-grid { grid-template-columns: 1fr; }
  .inscr-sidebar { position: static; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero__stat:nth-child(2) { border-right: none; padding-right: 0; }
  .hero__stat:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 28px; }
  .hero__stat:nth-child(even) { padding-left: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Logo mobile */
  .logo { padding: 0; border-radius: 0; }
  .logo__img { height: 72px; }
  .logo--footer { padding: 0; }
  .logo--footer .logo__img { height: 100px; }

  .promo-bar__inner { padding: 10px 40px; min-height: 38px; }
  .promo-bar__slide { font-size: 11px; gap: 8px; }
  .promo-bar__slide a, .promo-bar__arrow { display: none; }
  .promo-bar__close { right: 12px; width: 24px; height: 24px; }

  .hero { min-height: auto; padding: 50px 0 70px; }
  .hero__title { font-size: clamp(2.3rem, 9vw, 3rem); }
  .hero__subtitle { font-size: 16px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px 0; padding-top: 24px; }
  .hero__stat { padding: 0 14px !important; border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .hero__stat:nth-child(even) { border-right: none !important; }
  .hero__stat-num { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero__scroll { display: none; }

  .marquee__track span { font-size: 16px; }

  .services, .offers, .why, .testimonials, .gallery, .location, .final-cta { padding: 70px 0; }

  .services__grid { grid-template-columns: 1fr; }
  .service { aspect-ratio: 16 / 12; }

  .offer { padding: 28px 22px; }
  .offer__amount { font-size: 30px; }
  .offers__specials { grid-template-columns: 1fr; }

  .testimonial { flex: 0 0 100%; padding: 26px 22px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
  .gallery__item--xl, .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .why__badge-num { font-size: 48px; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .inscr-form-wrap { padding: 26px 20px; }
  .inscr-row { grid-template-columns: 1fr; gap: 0; }
  .inscr-steps { flex-direction: column; gap: 10px; padding-bottom: 16px; }
  .inscr-choices { grid-template-columns: 1fr; }
  .inscr-radio-group { flex-direction: column; }

  .whatsapp-float { width: 54px; height: 54px; font-size: 22px; bottom: 16px; right: 16px; }

  /* Hero jersey number smaller on mobile */
  .hero__jersey { font-size: 11rem; right: -30px; bottom: -30px; opacity: 0.6; }
  .hero__slash { display: none; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__badge { font-size: 11px; padding: 6px 14px; }

  /* Advantages mobile */
  .advantages { padding: 60px 0; }
  .advantages__grid { gap: 12px; }
  .advantage { padding: 22px 20px 20px; }
  .advantage__num { font-size: 28px; top: 12px; right: 14px; }
  .advantage__icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
  .advantage h3 { font-size: 17px; }
  .advantage p { font-size: 13px; }

  /* FAQ mobile refinement */
  .faq { padding: 60px 0; }
  .faq__grid { gap: 30px; }
  .faq__left .btn { font-size: 12px; padding: 14px 22px; }
  .faq__item summary { padding: 16px 0; gap: 12px; }
  .faq__item summary span { font-size: 15px; }
  .faq__item summary i { width: 28px; height: 28px; font-size: 10px; }

  /* Testimonials mobile */
  .testimonials { padding: 60px 0; }
  .testimonial__text { font-size: 14px; line-height: 1.6; }
  .testimonials__controls { gap: 12px; margin-top: 28px; }
  .testimonials__arrow { width: 42px; height: 42px; font-size: 12px; }

  /* Gallery mobile better */
  .gallery { padding: 60px 0; }
  .gallery__head { margin-bottom: 40px; }
  .gallery__grid { grid-auto-rows: 140px; }

  /* Services bento mobile */
  .services { padding: 60px 0; }
  .services__grid { gap: 12px; }
  .service__body { left: 18px; right: 18px; bottom: 18px; }
  .service__body h3 { font-size: 22px; }
  .service__body p { font-size: 13px; }
  .service__tag { top: 14px; left: 14px; padding: 4px 10px; font-size: 10px; }
  .service--hero .service__body h3 { font-size: 26px; }
  .service--hero .service__body p { font-size: 14px; }

  /* Offers mobile */
  .offers { padding: 60px 0; }
  .offers__grid { gap: 16px; }
  .offer__name { font-size: 26px; }
  .offer__amount { font-size: 38px; }

  /* Why mobile */
  .why { padding: 60px 0; }
  .why__badge-num { font-size: 60px; }

  /* Final CTA mobile */
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: clamp(2.4rem, 9vw, 3rem); }
  .final-cta p { font-size: 15px; }
  .final-cta__buttons { width: 100%; flex-direction: column; gap: 10px; }
  .final-cta__buttons .btn { width: 100%; }

  /* Location mobile */
  .location { padding: 60px 0; }
  .location__map iframe { min-height: 360px !important; }

  /* Footer mobile */
  .footer { padding-top: 50px; }
  .footer__col h4 { font-size: 12px; margin-bottom: 16px; }
  .footer__brand p { font-size: 13px; }

  /* Marquee mobile */
  .marquee { padding: 18px 0; }
  .marquee__track { gap: 32px; }
  .marquee__track span { font-size: 22px; }

  /* Buttons mobile snug */
  .btn--xl { padding: 16px 24px; font-size: 14px; }
  .btn--lg { padding: 15px 24px; font-size: 13px; }

  /* Disable magnetic on mobile (already handled in JS but ensure no transforms) */
  .btn--magnetic { transform: none !important; }

  /* Scroll progress bar thinner on mobile */
  .scroll-progress { height: 2px; }
}

/* Even smaller phones */
@media (max-width: 380px) {
  .hero__title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .hero__stat-num { font-size: 2.4rem; }
  .offer__amount { font-size: 32px; }
}

body.no-scroll { overflow: hidden; }

/* ============================================
   LIVELY ELEMENTS — feel natural & alive
   ============================================ */

/* Floating sport icons in background (subtle) */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  color: rgba(255,255,255,0.04);
  font-size: 24px;
  animation: floatUp 12s linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* Live badge — "X membres en ligne" */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46, 204, 64, 0.1);
  border: 1px solid rgba(46, 204, 64, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #2ECC40;
  font-family: var(--font);
}
.live-badge__dot {
  width: 7px; height: 7px;
  background: #2ECC40;
  border-radius: 50%;
  animation: livePulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(46, 204, 64, 0.5);
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 64, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(46, 204, 64, 0); }
}

/* ============================================
   MENTIONS / SOCIAL PROOF SECTION
   ============================================ */
.mentions {
  padding: 80px 0 60px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.mentions::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 0, 18, 0.18), transparent 70%);
  pointer-events: none;
}

.mentions__head {
  text-align: center;
  margin-bottom: 50px;
}
.mentions__head .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  margin-bottom: 14px;
}
.mentions__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.mentions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.mention {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
}
.mention::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(230, 0, 18, 0.06) 100%);
  opacity: 0;
  transition: var(--tr);
}
.mention:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(230, 0, 18, 0.15);
}
.mention:hover::before { opacity: 1; }

.mention__head {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.mention__head i {
  font-size: 22px;
  color: var(--red);
  width: 26px;
}
.mention__head .fa-google { color: #4285F4; }
.mention__head .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mention__head .fa-facebook { color: #1877F2; }
.mention__name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.3px;
}

.mention__rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.mention__score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
}
.mention__stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
  font-size: 11px;
}
.mention__count {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Pulse animation on score */
@keyframes mentionPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.mention:hover .mention__score {
  animation: mentionPulse 0.6s var(--easing-punch);
}

/* Responsive mentions */
@media (max-width: 1024px) {
  .mentions__grid { grid-template-columns: repeat(3, 1fr); }
  .mention:nth-child(n+4) { grid-column: span 1; }
  .mention:nth-child(4) { grid-column: 1 / 3; }
  .mention:nth-child(5) { grid-column: 1 / 4; flex-direction: row; align-items: center; justify-content: space-between; }
  .mention:nth-child(5) .mention__rating { flex-direction: row; align-items: baseline; gap: 12px; }
}
@media (max-width: 640px) {
  .mentions { padding: 60px 0 40px; }
  .mentions__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mention:nth-child(5) {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }
  .mention:nth-child(5) .mention__rating { flex-direction: column; gap: 4px; }
  .mention__score { font-size: 26px; }
  .mention { padding: 18px 16px; }
}

/* Trust indicators row */
.trust {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  text-align: center;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
.trust__item i {
  color: var(--red);
  font-size: 18px;
}
.trust__item strong {
  color: var(--ink);
  font-weight: 700;
}
.trust__divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}
@media (max-width: 768px) {
  .trust { padding: 28px 0; }
  .trust__inner { gap: 16px; }
  .trust__divider { display: none; }
  .trust__item { font-size: 12px; }
}

/* Floating trust badge that appears bottom-left after scroll */
.floating-trust {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 89;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s var(--easing), transform 0.4s var(--easing);
}
.floating-trust.visible {
  opacity: 1;
  transform: translateX(0);
}
.floating-trust .live-badge__dot { background: var(--red); box-shadow: 0 0 0 0 rgba(230,0,18,0.5); animation: livePulseRed 2s infinite; }
@keyframes livePulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,0,18,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(230,0,18,0); }
}
@media (max-width: 640px) {
  .floating-trust {
    bottom: 80px;
    left: 12px;
    font-size: 11px;
    padding: 8px 14px 8px 12px;
  }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 1px 8px rgba(230, 0, 18, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 110px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.faq__left { position: sticky; top: 120px; }
.faq__left .eyebrow { display: inline-flex; margin-bottom: 18px; }
.faq__left .section-title { margin-bottom: 18px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.3px;
  transition: var(--tr-fast);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red); }
.faq__item summary i {
  width: 36px; height: 36px;
  background: var(--gray-100);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--tr);
}
.faq__item[open] summary i {
  background: var(--red);
  color: var(--white);
  transform: rotate(135deg);
}
.faq__item[open] summary { color: var(--ink); }
.faq__answer {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-500);
  animation: faqSlide 0.4s var(--easing);
}
.faq__answer p { margin-bottom: 12px; }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer ul {
  margin: 12px 0;
  padding-left: 0;
}
.faq__answer ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
}
.faq__answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.faq__answer strong { color: var(--ink); font-weight: 700; }
.faq__answer a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--red);
}
.faq__answer a:hover { color: var(--red); }

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ responsive */
@media (max-width: 1024px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__left { position: static; }
}
@media (max-width: 640px) {
  .faq { padding: 70px 0; }
  .faq__item summary { font-size: 15px; padding: 18px 0; gap: 14px; }
  .faq__item summary i { width: 30px; height: 30px; font-size: 11px; }
  .faq__answer { font-size: 14px; padding: 0 0 22px; }
}

/* ============================================
   MAGNETIC BUTTONS — premium motion
   ============================================ */
.btn--magnetic {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background var(--tr), border-color var(--tr), color var(--tr);
}

/* Smooth marquee pause on hover */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* Premium gallery hover */
.gallery__item {
  transition: transform var(--tr-slow), filter var(--tr);
}
.gallery__item:hover {
  filter: brightness(1.1);
}

/* Smoother service hover */
.service {
  transition: transform var(--tr), box-shadow var(--tr), filter var(--tr);
}
.service:hover {
  filter: brightness(1.05);
}

/* HERO service card (Espace 100% H / F) — spans 2 columns */
.service--hero {
  grid-column: span 2;
  aspect-ratio: 16 / 11;
}
.service--hero .service__body {
  max-width: 520px;
  left: 36px;
  right: 36px;
  bottom: 36px;
}
.service--hero .service__body h3 {
  font-size: 48px;
  line-height: 0.9;
  margin-bottom: 14px;
}
.service--hero .service__body p {
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 20px;
}
.service--hero .service__tag {
  top: 28px;
  left: 28px;
  padding: 10px 18px;
  font-size: 12px;
}

/* Duo grid — 2 big cards side by side */
.services__grid--duo {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services__grid--duo .service--hero {
  grid-column: span 1;
  aspect-ratio: 4 / 5;
}
@media (max-width: 768px) {
  .services__grid--duo { grid-template-columns: 1fr; }
  .services__grid--duo .service--hero { aspect-ratio: 4/4; }
}

/* Gender icon badge top-right */
.service__badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--tr-punch);
}
.service:hover .service__badge {
  transform: rotate(-12deg) scale(1.1);
  background: var(--red);
  color: var(--white);
}

/* Feature chips under description */
.service__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service__features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.service__features i {
  color: var(--red);
  font-size: 10px;
}

/* Enhanced hero card hover animation */
.services__grid--duo .service--hero {
  overflow: hidden;
}
.services__grid--duo .service--hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 18, 0.15), transparent);
  transition: left 0.8s var(--easing-snap);
  z-index: 2;
  pointer-events: none;
}
.services__grid--duo .service--hero:hover::after {
  left: 100%;
}
.services__grid--duo .service--hero:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(230, 0, 18, 0.25);
}
.services__grid--duo .service--hero:hover .service__img {
  transform: scale(1.12);
}

/* Bento responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service--hero { grid-column: span 2; aspect-ratio: 16/10; }
  .service--hero .service__body h3 { font-size: 36px; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; gap: 14px; }
  .service--hero { grid-column: span 1; aspect-ratio: 4/3; }
  .service--hero .service__body { left: 22px; right: 22px; bottom: 22px; }
  .service--hero .service__body h3 { font-size: 28px; }
}

/* ============================================
   GYM-SPECIFIC DECORATIONS
   ============================================ */

/* Jersey-style giant background number in hero */
.hero__jersey {
  position: absolute;
  right: -40px;
  bottom: -40px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14rem, 26vw, 26rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.08);
  letter-spacing: -8px;
  text-transform: uppercase;
  user-select: none;
}

/* Diagonal red stripes accent (athletic decoration) */
.gym-stripes {
  position: relative;
  display: inline-block;
}
.gym-stripes::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -16px;
  width: 8px;
  height: calc(100% + 16px);
  background: repeating-linear-gradient(
    -15deg,
    var(--red) 0,
    var(--red) 3px,
    transparent 3px,
    transparent 6px
  );
  pointer-events: none;
}

/* Section corner athletic accent */
.section-tag {
  position: relative;
  display: inline-block;
  padding: 6px 16px 6px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* Gym divider — angled line with lightning */
.gym-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}
.gym-divider__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.gym-divider__icon {
  color: var(--red);
  font-size: 14px;
}

/* Hero red diagonal slash accent */
.hero__slash {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 60%;
  background: var(--red);
  transform: translateY(-50%) skew(-12deg);
  z-index: 2;
  box-shadow: 0 0 30px rgba(230, 0, 18, 0.5);
}

/* Lightning bolt animations */
.lightning {
  display: inline-block;
  color: var(--red);
  animation: lightningFlash 2.5s infinite;
}
@keyframes lightningFlash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

/* ============================================
   SNAPPY SPORT ANIMATIONS
   ============================================ */

/* Punch-in animation for hero reveals */
.reveal {
  transition: opacity 0.6s var(--easing-snap), transform 0.6s var(--easing-snap);
}

@keyframes punchIn {
  0% { opacity: 0; transform: scale(0.85) translateY(20px); }
  60% { transform: scale(1.03) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.reveal.in.punch {
  animation: punchIn 0.6s var(--easing-punch);
}

/* Snap-slide for service cards */
@keyframes snapSlide {
  0% { opacity: 0; transform: translateX(-30px) skewX(2deg); }
  60% { transform: translateX(5px) skewX(-1deg); }
  100% { opacity: 1; transform: translateX(0) skewX(0); }
}

/* Service card sport touch */
.service__body h3 {
  position: relative;
  display: inline-block;
}
.service__tag {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 12px;
}

/* Offer card sport accents */
.offer__badge {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 11px;
}

/* Eyebrow upgrade to athletic */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
}

/* Hero badge athletic */
.hero__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
}

/* Stat labels athletic */
.hero__stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}

/* CTA buttons athletic */
.btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
}
.btn--xl { font-size: 16px; padding: 19px 36px; }
.btn--lg { font-size: 15px; padding: 17px 32px; }
.btn--header { font-size: 13px; padding: 11px 22px; }

/* Logo athletic */
.logo__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Promo bar athletic */
.promo-bar__slide strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* Footer headings athletic */
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2.5px;
  font-size: 13px;
}

/* Special card titles */
.special strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Why list strong athletic */
.why__list strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Location card strong */
.location__card strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
}

/* FAQ summary athletic */
.faq__item summary span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Testimonial author strong */
.testimonial__author-info strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Gallery item label */
.gallery__item-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Hero overlay athletic touch — diagonal red light streak */
.hero__overlay::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 100px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 18, 0.12), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
}

/* Snappy hover on services */
.service:hover {
  transform: translateY(-8px) scale(1.01);
  transition: transform 0.4s var(--easing-punch);
}

/* Snappy hover on offer cards */
.offer:hover {
  transform: translateY(-8px);
  transition: transform 0.4s var(--easing-punch);
}

/* Punch animation on CTAs */
.btn--red:active, .btn--ink:active {
  transform: scale(0.96);
}

/* Marquee lightning between words */
.marquee__bolt {
  color: var(--red);
  font-size: 20px;
  animation: lightningFlash 1.8s infinite;
}

/* Mobile athletic adjustments */
@media (max-width: 640px) {
  .hero__jersey { font-size: 12rem; right: -20px; bottom: -20px; }
  .marquee__track span { font-size: 24px; }
  .section-title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}
