/* =========================================================
   GYM CARNATION — STYLES
   Palette: Deep Purple base · White text · Yellow highlights
   ========================================================= */

:root {
  --purple-1000: #0c0019;
  --purple-950: #150029;
  --purple-900: #1d0140;
  --purple-800: #2a0560;
  --purple-700: #3b0a82;
  --purple-600: #5417b3;
  --purple-500: #7a2bdc;
  --purple-400: #9d5cf0;
  --purple-300: #c39bff;

  --yellow-500: #ffd60a;
  --yellow-400: #ffe14d;
  --yellow-300: #ffeb80;

  --white: #ffffff;
  --soft: #f4ecff;
  --muted: rgba(244, 236, 255, 0.62);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 80px rgba(255, 214, 10, 0.22);

  --font-display: "Anton", "Bebas Neue", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1240px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--soft);
  background: var(--purple-1000);
  background-image:
    radial-gradient(1200px 700px at 90% -10%, rgba(122, 43, 220, 0.42), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(255, 214, 10, 0.07), transparent 60%),
    radial-gradient(900px 600px at 50% 100%, rgba(122, 43, 220, 0.28), transparent 60%),
    linear-gradient(180deg, var(--purple-1000) 0%, #0a0014 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--yellow-500); color: var(--purple-950); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* TYPOGRAPHY */
.text-yellow {
  color: var(--yellow-500);
  text-shadow: 0 0 35px rgba(255, 214, 10, 0.32);
}

.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow-500);
  font-weight: 600;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section__eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--yellow-500);
  display: inline-block;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
  color: var(--white);
  text-transform: uppercase;
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0;
}

.section__head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 760px;
}
.section__head .section__sub { margin-inline: auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow-500);
  color: var(--purple-950);
  box-shadow: 0 14px 36px -12px rgba(255, 214, 10, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--yellow-400); box-shadow: 0 20px 50px -14px rgba(255, 214, 10, 0.75); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); border-color: var(--yellow-500); color: var(--yellow-500); }

.btn--block { width: 100%; }

.plan__cta {
  width: 100%;
  margin-top: auto;
}
.plan__cta svg {
  width: 18px; height: 18px;
}

/* =========================================================
   NAV
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  background: rgba(15, 0, 30, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.is-scrolled { background: rgba(15, 0, 30, 0.92); border-bottom-color: var(--hairline); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 54px; height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255, 214, 10, 0.35));
}
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow-500), #ffb703);
  color: var(--purple-950);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 24px -8px rgba(255, 214, 10, 0.6), inset 0 0 0 2px rgba(0,0,0,0.05);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
  z-index: -1;
  filter: blur(10px);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 1.5px; color: var(--white); }
.brand__name em { color: var(--yellow-500); font-style: normal; margin-left: 2px; }
.brand__tag {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--yellow-500);
  transition: width 0.28s ease;
}
.nav__links a:hover { color: var(--yellow-500); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 22px; font-size: 0.82rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 12px; padding: 18px 24px 24px; border-top: 1px solid var(--hairline); background: rgba(15, 0, 30, 0.97); }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 10px 0; border-bottom: 1px solid var(--hairline); font-weight: 500; }
.nav__mobile a.btn { border: none; margin-top: 8px; }

/* =========================================================
   HERO — full-bleed image background
========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 0, 25, 0.55) 0%, rgba(12, 0, 25, 0.85) 70%, var(--purple-1000) 100%),
    radial-gradient(circle at 30% 50%, rgba(122, 43, 220, 0.45), transparent 60%),
    linear-gradient(135deg, rgba(21, 0, 41, 0.6), rgba(12, 0, 25, 0.75));
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.hero__glow--1 { width: 540px; height: 540px; background: radial-gradient(circle, var(--purple-500), transparent 70%); top: -140px; right: -120px; opacity: 0.55; }
.hero__glow--2 { width: 480px; height: 480px; background: radial-gradient(circle, var(--yellow-500), transparent 70%); bottom: -120px; left: -120px; opacity: 0.18; }

.hero__watermark {
  position: absolute;
  top: 8%; right: -4%;
  width: 460px; max-width: 50vw;
  height: auto !important;
  opacity: 0.12;
  filter: drop-shadow(0 0 60px rgba(255, 214, 10, 0.3));
  animation: watermarkFloat 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes watermarkFloat {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(-12px) rotate(3deg); }
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow-500);
  font-weight: 600;
  margin: 0 0 28px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.06);
  backdrop-filter: blur(8px);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 214, 10, 0.05); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9.5vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 1px;
  margin: 0 0 30px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}

.hero__sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(244, 236, 255, 0.78);
  margin: 0 0 38px;
  line-height: 1.7;
}

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

.hero__stats {
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-strong);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 580px;
}
.hero__stats > div { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--white);
  line-height: 1;
}
.stat__label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.hero__scroll {
  position: absolute;
  bottom: 110px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll span {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--yellow-500));
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute; top: -20px; left: 0;
  width: 100%; height: 20px;
  background: var(--yellow-500);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -20px; } 100% { top: 60px; } }
.hero__scroll p { margin: 0; }

.hero__ribbon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255, 214, 10, 0.22);
  border-bottom: 1px solid rgba(255, 214, 10, 0.22);
  padding: 18px 0;
  background: rgba(255, 214, 10, 0.06);
  backdrop-filter: blur(8px);
  overflow: hidden;
  z-index: 3;
}
.marquee {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--white);
  animation: scroll 28s linear infinite;
}
.marquee span:nth-child(odd) { color: var(--yellow-500); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================================
   BANNER (Early Bird)
========================================================= */
.banner {
  background: linear-gradient(90deg, var(--yellow-500), #ffb703);
  color: var(--purple-950);
  position: relative;
  z-index: 2;
}
.banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  text-align: center;
}
.banner__badge {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 2px;
  background: var(--purple-950);
  color: var(--yellow-500);
  padding: 8px 18px;
  border-radius: 999px;
}
.banner__inner p { margin: 0; font-weight: 500; }
.banner__inner strong { color: var(--purple-950); }
.banner__link {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--purple-950);
  padding-bottom: 2px;
}

/* =========================================================
   ABOUT
========================================================= */
.about { padding: 130px 0; position: relative; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about__lead { font-size: 1.08rem; color: var(--muted); margin-bottom: 36px; }

.about__points { list-style: none; margin: 0 0 36px; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.about__points li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.about__points span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow-500);
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: 12px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: rgba(255, 214, 10, 0.08);
}
.about__points strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 1.05rem; }
.about__points p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* About visual collage */
.about__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 220px;
  gap: 18px;
  min-height: 480px;
}
.about__img { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about__img:hover img { transform: scale(1.05); }
.about__img--main { grid-column: 1 / 3; grid-row: 1 / 2; }
.about__img--secondary { grid-column: 1 / 2; grid-row: 2 / 3; }

.about__badge {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--yellow-500), #ffb703);
  color: var(--purple-950);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-glow);
}
.about__badgeNum { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; display: block; }
.about__badgeLabel { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-top: 8px; display: block; }

/* =========================================================
   FEATURE STRIP
========================================================= */
.features {
  padding: 32px 0;
  background: linear-gradient(180deg, rgba(122, 43, 220, 0.12), transparent);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-left: 1px solid var(--hairline);
  padding-left: 24px;
}
.feature:first-child { border-left: none; padding-left: 0; }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.28);
  color: var(--yellow-500);
  margin-bottom: 4px;
}
.feature__icon svg { width: 22px; height: 22px; display: block; }
.feature strong { color: var(--white); font-size: 1rem; }
.feature p { color: var(--muted); margin: 0; font-size: 0.88rem; }

/* =========================================================
   CLASSES — image cards
========================================================= */
.classes { padding: 130px 0; }

.classes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.classCard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline-strong);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 440px;
}
.classCard:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 214, 10, 0.5);
  box-shadow: 0 30px 60px -30px rgba(122, 43, 220, 0.7);
}

.classCard__img { position: relative; height: 220px; overflow: hidden; }
.classCard__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 0, 30, 0.95));
}
.classCard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s ease;
}
.classCard:hover .classCard__img img { transform: scale(1.08); }

.classCard__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; position: relative; }
.classCard__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--yellow-500);
}
.classCard h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin: 0;
  color: var(--white);
  text-transform: uppercase;
}
.classCard p { color: var(--muted); margin: 0; font-size: 0.96rem; flex: 1; }
.classCard__link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-500);
  font-weight: 700;
  margin-top: 6px;
  transition: gap 0.2s ease;
  display: inline-flex;
  gap: 8px;
}
.classCard__link:hover { gap: 12px; }

.classCard--featured { border-color: rgba(255, 214, 10, 0.45); box-shadow: 0 0 0 1px rgba(255, 214, 10, 0.2), var(--shadow-glow); }
.classCard__tag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--yellow-500);
  color: var(--purple-950);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* =========================================================
   WHY US
========================================================= */
.why { padding: 130px 0; }
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.why__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.why__floating {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--yellow-500);
  color: var(--purple-950);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow-glow);
}
.why__floatingNum { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; display: block; }
.why__floatingLabel { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-top: 6px; display: block; }

.why__lead { font-size: 1.08rem; color: var(--muted); margin: 0 0 36px; }
.why__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why__stats > div { padding: 18px; border: 1px solid var(--hairline-strong); border-radius: var(--radius); background: rgba(255,255,255,0.02); }
.why__stats span { font-family: var(--font-display); font-size: 1.8rem; color: var(--yellow-500); display: block; line-height: 1; margin-bottom: 6px; }
.why__stats p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   TRAINERS
========================================================= */
.trainers { padding: 130px 0; }
.trainers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trainer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-strong);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.trainer:hover { transform: translateY(-6px); border-color: rgba(255, 214, 10, 0.4); }
.trainer__img { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.trainer__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 0, 25, 0.7));
}
.trainer__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.9); }
.trainer:hover .trainer__img img { transform: scale(1.06); }

.trainer__info { padding: 22px; }
.trainer__info h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 1px; margin: 0 0 6px; color: var(--white); text-transform: uppercase; }
.trainer__info p { color: var(--yellow-500); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 14px; font-weight: 600; }
.trainer__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.trainer__tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.74rem;
  color: var(--soft);
  letter-spacing: 0.06em;
}

/* =========================================================
   PRICING — with image background
========================================================= */
.pricing { padding: 130px 0; position: relative; overflow: hidden; }
.pricing__bg { position: absolute; inset: 0; z-index: 0; }
.pricing__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: saturate(0.5) blur(2px); }
.pricing__bgOverlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 0, 30, 0.2), var(--purple-1000) 75%);
}
.pricing__inner { position: relative; z-index: 2; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline-strong);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
}
.plan:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.25); }

.plan header h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 1px; margin: 0 0 4px; color: var(--white); text-transform: uppercase; }
.plan header p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.plan__price { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--white); display: flex; align-items: flex-start; gap: 4px; }
.plan__currency { font-size: 1.4rem; color: var(--yellow-500); margin-top: 8px; }
.plan__per { font-size: 0.82rem; color: var(--muted); align-self: flex-end; margin-bottom: 10px; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan ul li { position: relative; padding-left: 26px; color: var(--soft); font-size: 0.95rem; }
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--yellow-500);
  border-bottom: 2px solid var(--yellow-500);
  transform: rotate(-45deg);
}

.plan--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 214, 10, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255, 214, 10, 0.08), rgba(255, 214, 10, 0.02));
  border-color: rgba(255, 214, 10, 0.45);
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow-500);
  color: var(--purple-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing__note {
  text-align: center;
  margin-top: 56px;
  padding: 20px 24px;
  border: 1px dashed rgba(255, 214, 10, 0.45);
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 0.96rem;
  background: rgba(255, 214, 10, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pricing__note a { color: var(--yellow-500); font-weight: 700; }
.pricing__noteIcon {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 214, 10, 0.14);
  color: var(--yellow-500);
  border: 1px solid rgba(255, 214, 10, 0.3);
}
.pricing__noteIcon svg { width: 18px; height: 18px; }

/* =========================================================
   SCHEDULE
========================================================= */
.schedule { padding: 130px 0; }

.schedule__table {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.schedule__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.schedule__row:not(.schedule__row--head):hover { background: rgba(255, 214, 10, 0.04); }
.schedule__row:last-child { border-bottom: none; }
.schedule__row--head {
  background: rgba(255, 214, 10, 0.08);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--yellow-500);
  text-transform: uppercase;
}
.schedule__row strong { color: var(--white); }

/* =========================================================
   GALLERY — 4-image cinematic grid
========================================================= */
.gallery { padding: 130px 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 320px;
  gap: 16px;
}
.gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-soft);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.92);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 0, 25, 0.85));
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute;
  bottom: 22px; left: 22px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 14px;
  background: rgba(255, 214, 10, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 10, 0.35);
}
.gallery__item--tall { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery__item--wide { grid-column: 2 / 4; grid-row: 2 / 3; }

/* =========================================================
   REVIEWS — Google-styled cards
========================================================= */
.reviews { padding: 130px 0; }

.reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.reviews__heading .section__eyebrow { margin-bottom: 12px; }
.reviews__heading .section__title { margin: 0; }

.reviews__score {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.1), rgba(255, 214, 10, 0.02));
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
}
.reviews__scoreNum {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
}
.reviews__scoreStars { display: flex; gap: 2px; color: var(--yellow-500); }
.reviews__scoreStars svg { width: 18px; height: 18px; }
.reviews__scoreLabel {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.review:hover { transform: translateY(-4px); border-color: rgba(255, 214, 10, 0.3); }

.review__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.review__head strong { color: var(--white); display: block; font-size: 0.95rem; }
.review__meta { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.04em; }
.review__google {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.review__google svg { width: 16px; height: 16px; }

.review__stars {
  color: var(--yellow-500);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--soft);
}

.review__date {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
  margin-top: auto;
}

.reviews__cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================================================
   CTA STRIP
========================================================= */
.cta { position: relative; padding: 120px 0; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6); }
.cta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 0, 30, 0.92), rgba(58, 10, 130, 0.85)),
    radial-gradient(circle at 20% 50%, rgba(255, 214, 10, 0.18), transparent 50%);
}
.cta__inner { position: relative; z-index: 2; text-align: center; }
.cta__inner p { color: rgba(244, 236, 255, 0.8); font-size: 1.1rem; margin: 0 auto 32px; max-width: 540px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CONTACT
========================================================= */
.contact { padding: 130px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__lead { color: var(--muted); margin: 0 0 32px; }
.contact__list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: var(--yellow-500);
}
.contact__icon svg { width: 22px; height: 22px; display: block; }
.contact__list strong { color: var(--white); display: block; margin-bottom: 4px; }
.contact__list p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.contact__list a:hover { color: var(--yellow-500); }
.contact__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__form {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
}
.contact__form h3 { font-family: var(--font-display); font-size: 1.9rem; margin: 0; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.contact__formSub { color: var(--muted); margin: 0 0 12px; font-size: 0.9rem; }

.contact__form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--soft); font-weight: 500; }
.contact__form label em { color: var(--muted); font-style: normal; font-size: 0.78rem; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--yellow-500);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.12);
}
.contact__form textarea { resize: vertical; min-height: 90px; }
.contact__form select option { background: var(--purple-900); color: var(--white); }

.contact__formNote {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: var(--yellow-500);
  font-size: 0.9rem;
  text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */
.footer { border-top: 1px solid var(--hairline); padding: 70px 0 32px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--muted); margin: 18px 0 0; max-width: 280px; font-size: 0.95rem; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-500);
  margin: 0 0 8px;
}
.footer__col a, .footer__col span { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--yellow-500); }

.footer__base {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================================================
   ANIMATIONS / REVEAL
========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
}

/* Touch devices: disable lift hover transforms (sticky hover bug) */
@media (hover: none) {
  .classCard:hover, .trainer:hover, .plan:hover, .testi:hover,
  .btn--primary:hover, .btn--ghost:hover, .about__img:hover img,
  .classCard:hover .classCard__img img, .trainer:hover .trainer__img img,
  .gallery__item:hover img { transform: none; }
  .classCard:hover, .trainer:hover, .plan:hover { box-shadow: none; }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  :root { --container: 100%; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3) { border-left: none; padding-left: 0; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

/* TABLET */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 12px 20px; }
  .brand__logo { width: 46px; height: 46px; }
  .brand__name { font-size: 1.15rem; }
  .brand__tag { font-size: 0.6rem; letter-spacing: 0.28em; }

  .hero { min-height: auto; padding: 60px 0 90px; }
  .hero__scroll { display: none; }
  .hero__watermark { width: 320px; opacity: 0.08; top: 4%; right: -8%; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; padding-top: 26px; }
  .hero__sub { font-size: 1rem; margin-bottom: 28px; }
  .hero__eyebrow { font-size: 0.7rem; padding: 8px 14px; margin-bottom: 22px; letter-spacing: 0.24em; }

  .about, .classes, .why, .pricing, .gallery, .reviews, .cta, .contact { padding: 80px 0; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 100%; min-height: auto; }

  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .why__media { aspect-ratio: 16 / 11; }

  .classes__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .classCard { min-height: auto; }

  .reviews__head { grid-template-columns: 1fr; gap: 24px; }
  .reviews__score { align-self: flex-start; align-items: flex-start; text-align: left; }
  .reviews__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .gallery__item--tall { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery__item--wide { grid-column: 1 / 3; grid-row: 3 / 4; }
}

/* PHONE */
@media (max-width: 720px) {
  .container { padding: 0 18px; }

  .nav__inner { padding: 10px 18px; gap: 12px; }
  .brand__logo { width: 42px; height: 42px; }
  .brand__name { font-size: 1.05rem; letter-spacing: 1px; }
  .brand__tag { display: none; }

  .nav__mobile { padding: 14px 18px 18px; }
  .nav__mobile a { font-size: 1.05rem; padding: 12px 0; }

  .hero { padding: 50px 0 80px; }
  .hero__inner { padding: 0 18px; }
  .hero__title { font-size: clamp(2.6rem, 14vw, 4.6rem); margin-bottom: 22px; line-height: 0.92; }
  .hero__sub { font-size: 0.96rem; line-height: 1.6; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__actions .btn { width: 100%; padding: 16px 22px; font-size: 0.85rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 18px 14px; max-width: 100%; }
  .hero__stats > div:nth-child(3) { grid-column: 1 / -1; }
  .stat__num { font-size: 1.6rem; }
  .stat__label { font-size: 0.7rem; letter-spacing: 0.14em; }
  .hero__watermark { width: 240px; max-width: 60vw; opacity: 0.06; top: 2%; right: -16%; }

  .marquee { font-size: 1.05rem; gap: 24px; }
  .hero__ribbon { padding: 14px 0; }

  .banner__inner { padding: 14px 18px; gap: 10px; font-size: 0.88rem; }
  .banner__badge { font-size: 0.78rem; letter-spacing: 1.5px; padding: 6px 14px; }
  .banner__inner p { font-size: 0.92rem; }
  .banner__link { font-size: 0.78rem; }

  .about, .classes, .why, .pricing, .gallery, .reviews, .cta, .contact { padding: 60px 0; }
  .section__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .section__sub { font-size: 0.96rem; }
  .section__head { margin-bottom: 40px; }
  .section__eyebrow { font-size: 0.7rem; letter-spacing: 0.26em; }

  .about__lead, .why__lead { font-size: 1rem; }
  .about__points { gap: 16px; }
  .about__points li { grid-template-columns: 48px 1fr; gap: 14px; }
  .about__points span { width: 48px; height: 48px; font-size: 1.2rem; }
  .about__points strong { font-size: 1rem; }

  .about__visual {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px auto;
    gap: 14px;
    min-height: auto;
  }
  .about__img--main { grid-column: 1; grid-row: 1; }
  .about__img--secondary { grid-column: 1; grid-row: 2; }
  .about__badge { grid-column: 1; grid-row: 3; padding: 22px; }
  .about__badgeNum { font-size: 2.6rem; }

  .features { padding: 24px 0; }
  .features__grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .feature { border-left: none; padding-left: 0; padding: 4px 0; gap: 4px; }
  .feature:first-child, .feature:nth-child(3) { border-left: none; padding-left: 0; }
  .feature strong { font-size: 0.95rem; }
  .feature p { font-size: 0.82rem; }

  .classes__grid { grid-template-columns: 1fr; gap: 16px; }
  .classCard__img { height: 200px; }
  .classCard__body { padding: 22px; }
  .classCard h3 { font-size: 1.5rem; }
  .classCard p { font-size: 0.92rem; }

  .why__media { aspect-ratio: 4 / 5; }
  .why__floating { bottom: 16px; right: 16px; padding: 14px 18px; }
  .why__floatingNum { font-size: 1.7rem; }
  .why__floatingLabel { font-size: 0.7rem; letter-spacing: 0.12em; }
  .why__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why__stats > div { padding: 14px; }
  .why__stats span { font-size: 1.5rem; }

  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .plan { padding: 28px 22px; }
  .plan__price { font-size: 2.5rem; }
  .plan--featured { transform: none; margin-top: 12px; }

  .pricing__note { margin-top: 36px; padding: 16px 18px; font-size: 0.88rem; }

  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews__scoreNum { font-size: 2.4rem; }
  .review { padding: 22px 20px; }
  .review blockquote { font-size: 0.92rem; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 200px 200px 200px;
    gap: 12px;
  }
  .gallery__item--tall { grid-column: 1; grid-row: 1; }
  .gallery__item--wide { grid-column: 1; grid-row: 4; }
  .gallery__item figcaption { font-size: 1rem; padding: 5px 12px; bottom: 14px; left: 14px; }

  .cta { padding: 70px 0; }
  .cta__inner p { font-size: 0.98rem; margin-bottom: 24px; }
  .cta__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta__actions .btn { width: 100%; }

  .contact__list { margin-bottom: 24px; }
  .contact__list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .contact__icon { width: 42px; height: 42px; }
  .contact__icon svg { width: 20px; height: 20px; }
  .contact__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .contact__cta .btn { width: 100%; }

  .contact__form { padding: 22px; border-radius: 18px; }
  .contact__form h3 { font-size: 1.5rem; }
  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .footer { padding: 50px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__col { gap: 8px; }
  .footer__base {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
    padding-top: 20px;
    font-size: 0.78rem;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* SMALL PHONE */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(2.2rem, 13vw, 3.4rem); }
  .brand__text { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; gap: 14px; }
  .hero__stats > div { padding-left: 14px; border-left: 2px solid var(--yellow-500); }
  .hero__stats > div:nth-child(3) { grid-column: 1; }
}


/* =========================================================
   FLOATING CALL BUTTON (FAB)
========================================================= */
.callFab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow-500), #ffb703);
  color: var(--purple-950);
  box-shadow:
    0 14px 36px -10px rgba(255, 214, 10, 0.65),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.18);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.callFab:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--yellow-400), #ffc803);
  box-shadow:
    0 20px 50px -12px rgba(255, 214, 10, 0.75),
    0 6px 18px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.callFab:active { transform: translateY(0) scale(0.97); }

.callFab__icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.callFab__icon svg {
  width: 26px; height: 26px;
  animation: callShake 2.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes callShake {
  0%, 60%, 100% { transform: rotate(0); }
  65%, 75%, 85% { transform: rotate(-12deg); }
  70%, 80% { transform: rotate(12deg); }
}

.callFab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  padding: 0;
}
.callFab.is-expanded .callFab__label,
.callFab:hover .callFab__label {
  max-width: 140px;
  opacity: 1;
  padding-right: 22px;
}

.callFab__ring {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid var(--yellow-500);
  opacity: 0;
  pointer-events: none;
  animation: callRing 2.4s ease-out infinite;
}
@keyframes callRing {
  0% { transform: scale(0.92); opacity: 0.55; }
  80%, 100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 720px) {
  .callFab { right: 16px; bottom: 16px; height: 56px; }
  .callFab__icon { width: 56px; height: 56px; }
  .callFab__icon svg { width: 24px; height: 24px; }
  .callFab__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .callFab__icon svg, .callFab__ring { animation: none; }
}
