/* ====================================================================
   ADDICTION FITNESS FACTORY — premium dark luxury UI
   Palette: matte black · neon red/orange glow · white · glass
   ==================================================================== */

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ============ DESIGN TOKENS ============ */
:root {
  /* Dark theme (default) */
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #161616;
  --bg-4:         #1c1c1c;
  --surface:      rgba(20, 20, 20, 0.65);
  --surface-2:    rgba(28, 28, 28, 0.85);
  --surface-3:    rgba(255, 255, 255, 0.04);

  --border:       rgba(255, 255, 255, 0.08);
  --border-2:     rgba(255, 255, 255, 0.14);
  --border-3:     rgba(255, 255, 255, 0.22);

  --text:         #ffffff;
  --text-muted:   rgba(255, 255, 255, 0.68);
  --text-dim:     rgba(255, 255, 255, 0.44);

  /* Neon palette */
  --neon-red:     #ff2d2d;
  --neon-red-2:   #ff4747;
  --neon-orange:  #ff7a18;
  --neon-amber:   #ffb800;

  --grad-neon:    linear-gradient(135deg, #ff2d2d 0%, #ff7a18 100%);
  --grad-neon-2:  linear-gradient(135deg, #ff4747 0%, #ffb800 100%);
  --grad-text:    linear-gradient(135deg, #ff5454 0%, #ff9a3d 100%);

  /* Effects */
  --glow-red:     0 0 40px rgba(255, 45, 45, 0.45);
  --glow-orange:  0 0 40px rgba(255, 122, 24, 0.45);
  --glow-soft:    0 0 80px rgba(255, 45, 45, 0.18);
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md:    0 12px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg:    0 24px 60px rgba(0, 0, 0, 0.55);

  /* Layout */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  --container:    1320px;
  --section-pad:  clamp(4.5rem, 10vw, 8rem);
  --side-pad:     clamp(1.25rem, 4vw, 3rem);

  --t-fast:       0.25s;
  --t-base:       0.4s;
  --t-slow:       0.7s;
  --ease:         cubic-bezier(0.2, 0.9, 0.3, 1);
  --ease-bouncy:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light theme overrides */
:root[data-theme="light"] {
  --bg:           #f5f5f5;
  --bg-2:         #ffffff;
  --bg-3:         #ebebeb;
  --bg-4:         #e0e0e0;
  --surface:      rgba(255, 255, 255, 0.7);
  --surface-2:    rgba(255, 255, 255, 0.85);
  --surface-3:    rgba(0, 0, 0, 0.03);

  --border:       rgba(0, 0, 0, 0.08);
  --border-2:     rgba(0, 0, 0, 0.14);
  --border-3:     rgba(0, 0, 0, 0.22);

  --text:         #0a0a0a;
  --text-muted:   rgba(0, 0, 0, 0.7);
  --text-dim:     rgba(0, 0, 0, 0.5);
}

::selection { background: var(--neon-red); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--neon-red); color: #fff;
  padding: 0.75rem 1rem; font-weight: 700;
  z-index: 99999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* hide honeypot (kept for future forms if added) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text);
  text-transform: uppercase;
}
h1 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
}
h2 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.02em; }
h5 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
p  { color: var(--text-muted); }

.kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon-red-2);
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}
.kicker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 45, 0.18), transparent);
  transform: translateX(-100%);
  animation: kicker-sweep 4s ease-in-out infinite;
}
@keyframes kicker-sweep { to { transform: translateX(200%); } }

.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 0.95rem; }

.btn--primary {
  background: var(--grad-neon);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 45, 45, 0.35), 0 0 0 1px rgba(255, 122, 24, 0.4) inset;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff7a18, #ff2d2d);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  z-index: -1;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 45, 45, 0.55), 0 0 0 1px rgba(255, 122, 24, 0.6) inset;
}
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  border-color: var(--neon-red);
  color: var(--neon-red-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 45, 45, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--outline:hover {
  border-color: var(--neon-orange);
  color: var(--neon-orange);
  transform: translateY(-3px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: #1ebd5b;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

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

.btn--glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-sweep 3s ease-in-out infinite;
}
@keyframes btn-sweep { to { left: 200%; } }

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 45, 45, 0.15), transparent 70%);
  animation: loader-pulse 2s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.loader.done { opacity: 0; visibility: hidden; }

.loader__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 2;
}
.loader__a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--grad-neon);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  border-radius: 14px;
  box-shadow: var(--glow-red);
  animation: loader-bounce 1.4s ease-in-out infinite;
}
@keyframes loader-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.loader__line {
  width: 60px;
  height: 2px;
  background: var(--grad-neon);
  border-radius: 1px;
  box-shadow: var(--glow-red);
  animation: loader-line 1.4s ease-in-out infinite;
}
@keyframes loader-line {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.4); }
}
.loader__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.18em;
  color: var(--text);
}
.loader__sub {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.loader__bar {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 1px;
  margin-top: 0.6rem;
  position: relative;
  z-index: 2;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-neon);
  border-radius: 1px;
  box-shadow: var(--glow-red);
  animation: loader-fill 1.6s var(--ease) forwards;
}
@keyframes loader-fill { to { width: 100%; } }
.loader__quote {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-dim);
  position: relative;
  z-index: 2;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, [role="radio"], select, input, textarea, summary, .g-item { cursor: none; }
}
.cursor__dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-red);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor__ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--neon-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.2s, opacity 0.2s, background 0.2s;
}
.cursor.is-hover .cursor__ring {
  width: 56px;
  height: 56px;
  background: rgba(255, 45, 45, 0.12);
}
.cursor.is-hover .cursor__dot { width: 0; height: 0; opacity: 0; }

/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  padding: 0.95rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
:root[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.7);
}
.nav.scrolled {
  padding: 0.65rem var(--side-pad);
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] .nav.scrolled { background: rgba(255, 255, 255, 0.95); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav__logo {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
}
.nav__logo-a {
  position: relative;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  line-height: 1;
}
.nav__logo-glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-neon);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav__brand-text em {
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  gap: 0.1rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 0.65rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-neon);
  transition: width var(--t-fast) var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.6);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 22px; }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { width: 22px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  position: relative;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.theme-toggle:hover { border-color: var(--neon-red); }
.theme-toggle svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}
.theme-toggle__sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
:root[data-theme="light"] .theme-toggle__sun { opacity: 1; transform: rotate(0) scale(1); }
:root[data-theme="light"] .theme-toggle__moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  background: var(--grad-neon);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(255, 45, 45, 0.35);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.nav__cta svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 45, 45, 0.55); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem var(--side-pad) 1.5rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base) var(--ease);
    margin: 0;
  }
  :root[data-theme="light"] .nav__links { background: rgba(255, 255, 255, 0.97); }
  .nav__links a { padding: 0.95rem 1rem; font-size: 0.85rem; }
  .nav.open .nav__links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 480px) {
  .nav__brand-text em { display: none; }
}

/* ============ SECTION COMMON ============ */
section { padding: var(--section-pad) var(--side-pad); position: relative; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(5rem, 10vw, 8rem) var(--side-pad) clamp(4rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1) brightness(0.55);
  animation: hero-zoom 30s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.2) 30%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0.95) 100%),
    radial-gradient(ellipse at top right, rgba(255, 45, 45, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 122, 24, 0.12), transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: hero-float 14s ease-in-out infinite;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--neon-red), transparent);
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--neon-orange), transparent);
  bottom: -120px; left: -100px;
  animation-delay: -7s;
}
@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

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

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.75rem;
  animation: fade-up 0.9s 0.2s var(--ease) backwards;
}
.hero__pill-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.25), 0 0 12px var(--neon-red);
  animation: pill-pulse 2s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.3), 0 0 12px var(--neon-red); }
  50% { box-shadow: 0 0 0 10px rgba(255, 45, 45, 0.05), 0 0 12px var(--neon-red); }
}

.hero__title {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.hero__line {
  display: block;
  animation: fade-up 1s var(--ease) backwards;
}
.hero__line--1 { animation-delay: 0.35s; }
.hero__line--2 { animation-delay: 0.55s; }
.hero__word-glow {
  position: relative;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 45, 45, 0.7),
               0 0 60px rgba(255, 122, 24, 0.4);
}
.hero__grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 2.5rem;
  animation: fade-up 1s 0.75s var(--ease) backwards;
}

.hero__cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fade-up 1s 0.95s var(--ease) backwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fade-up 1s 1.15s var(--ease) backwards;
}
.hero__stat {
  position: relative;
}
.hero__stat strong {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.005em;
}
.hero__stat span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stat p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero__scroll-dot {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  position: relative;
}
.hero__scroll-dot::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--neon-red);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-red);
  animation: scroll-down 1.6s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 920px) { .hero__scroll { display: none; } }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--grad-neon);
  color: #fff;
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 4px solid var(--bg);
  border-bottom: 4px solid var(--bg);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--neon-red), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--neon-orange), transparent); }
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.marquee__star {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.12), transparent);
  filter: blur(80px);
  pointer-events: none;
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 920px) { .about__inner { grid-template-columns: 1fr; } }

.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about__photo:hover img { transform: scale(1.05); }
.about__photo--main {
  inset: 0 14% 12% 0;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 45, 45, 0.18);
  border: 1px solid var(--border-2);
}
.about__photo--small {
  inset: auto 0 0 32%;
  width: 50%;
  aspect-ratio: 1;
  border: 6px solid var(--bg);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  top: 4%;
  right: -2%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  z-index: 3;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 45, 45, 0.25);
  animation: about-float 6s ease-in-out infinite;
}
.about__badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.about__badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
  max-width: 110px;
}
@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about__sticker {
  position: absolute;
  bottom: 8%;
  right: -4%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad-neon);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
  box-shadow: var(--glow-red);
  z-index: 3;
  animation: sticker-spin 16s linear infinite;
}
@keyframes sticker-spin {
  to { transform: rotate(360deg); }
}

.about__copy h2 { margin-bottom: 1.5rem; }
.about__lead {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 580px;
}
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.about__list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.about__list li:last-child { border-bottom: none; padding-bottom: 0; }
.about__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  line-height: 1;
  min-width: 44px;
}
.about__list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.about__list p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ WHY (12 features) ============ */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255, 122, 24, 0.15), transparent);
  filter: blur(60px);
  pointer-events: none;
}
.why__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}
.why__head h2 { margin-bottom: 1rem; }
.why__sub { font-size: 1.05rem; }

.why__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  position: relative;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s var(--ease),
              border-color 0.5s var(--ease),
              background 0.5s var(--ease);
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 45, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.feature::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--grad-neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 45, 0.4);
  background: var(--surface-2);
}
.feature:hover::before { opacity: 1; }
.feature:hover::after { transform: scaleX(1); }

.feature__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.feature:hover .feature__icon {
  transform: rotate(-8deg) scale(1.05);
  background: var(--grad-neon);
  border-color: transparent;
}
.feature__icon svg {
  width: 30px; height: 30px;
  fill: var(--neon-red-2);
  transition: fill 0.5s var(--ease);
}
.feature:hover .feature__icon svg { fill: #fff; }

.feature h3 {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 1.2rem;
}
.feature p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ TRAINERS ============ */
.trainers {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trainers__head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.trainers__head h2 { margin-bottom: 1rem; }
.trainers__sub { font-size: 1.05rem; }

.trainers__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.trainer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  isolation: isolate;
}
.trainer:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 45, 0.5);
}
.trainer__photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-4);
  position: relative;
}
.trainer__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.trainer:hover .trainer__photo img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05);
}
.trainer__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.95) 100%);
  pointer-events: none;
}
.trainer__meta {
  padding: 1.5rem 1.6rem 1.7rem;
  position: relative;
  z-index: 2;
}
.trainer__meta h3 {
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.trainer__role {
  font-size: 0.78rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.trainer__quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  font-style: italic;
  position: relative;
  padding-left: 0.85rem;
  border-left: 2px solid var(--neon-red);
}
.trainer__tags {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.trainer__tags li {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.trainer__glow {
  position: absolute;
  inset: -2px;
  background: var(--grad-neon);
  filter: blur(40px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.trainer:hover .trainer__glow { opacity: 0.4; }

/* ============ PLANS ============ */
.plans {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.plans::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.1), transparent);
  filter: blur(80px);
  pointer-events: none;
}
.plans__head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
}
.plans__head h2 { margin-bottom: 1rem; }
.plans__sub { font-size: 1.05rem; }

.plans__grid {
  max-width: var(--container);
  margin: 3rem auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  position: relative;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 45, 45, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}
.plan:hover::before { opacity: 1; }

.plan--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-3), var(--bg-3)) padding-box,
    var(--grad-neon) border-box;
  box-shadow: 0 30px 80px rgba(255, 45, 45, 0.18), 0 0 0 1px rgba(255, 122, 24, 0.2) inset;
  transform: translateY(-12px);
}
@media (max-width: 720px) { .plan--featured { transform: translateY(0); } }

.plan--pt {
  border-color: rgba(255, 122, 24, 0.4);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-neon);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--glow-red);
  white-space: nowrap;
  z-index: 2;
}

.plan__head { margin-bottom: 1.5rem; }
.plan__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-red-2);
  background: rgba(255, 45, 45, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
}
.plan__head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.plan__head p { font-size: 0.9rem; color: var(--text-muted); }

.plan__price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-2);
  color: var(--text);
}
.plan__price-original {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--text-dim);
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}
.plan__currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.plan__price strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.005em;
}
.plan__cycle {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan__list li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.45;
}
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--neon-red-2);
  border-bottom: 2px solid var(--neon-red-2);
  transform: rotate(-45deg);
}
.plan__list li.muted { color: var(--text-dim); text-decoration: line-through; }
.plan__list li.muted::before {
  width: 10px;
  height: 0;
  border: none;
  background: var(--text-dim);
  height: 1.5px;
  top: 11px;
  transform: none;
}
.plan__list li strong { color: var(--neon-red-2); font-weight: 700; }

.plans__note {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plans__note svg {
  width: 18px; height: 18px;
  fill: var(--neon-red-2);
  flex-shrink: 0;
}

/* ============ TRANSFORMATIONS ============ */
.transform {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.transform__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.transform__head h2 { margin-bottom: 1rem; }
.transform__sub { font-size: 1.05rem; }

.transform__main {
  max-width: 1000px;
  margin: 0 auto 3.5rem;
}
.ba {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 45, 45, 0.18);
  user-select: none;
  cursor: ew-resize;
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.ba__before, .ba__after {
  position: absolute;
  inset: 0;
}
.ba__before img, .ba__after img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba__after {
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--neon-red);
  box-shadow: -2px 0 20px rgba(255, 45, 45, 0.4);
}
.ba__after img { width: 200%; max-width: none; }

.ba__label {
  position: absolute;
  top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ba__label--before {
  left: 1rem;
  background: rgba(10, 10, 10, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ba__label--after {
  right: 1rem;
  background: var(--grad-neon);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.4);
}
.ba__after .ba__label--after { left: auto; right: 1rem; }

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
  z-index: 5;
}
.ba__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--neon-red);
  box-shadow: 0 0 12px var(--neon-red);
}
.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  background: var(--grad-neon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-red);
  pointer-events: auto;
  border: 3px solid #fff;
}
.ba__knob svg { width: 22px; height: 22px; fill: #fff; }

.transform__cards {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.t-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
}
.t-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 45, 0.4);
}
.t-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.t-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.95));
}
.t-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s var(--ease);
}
.t-card:hover .t-card__photo img { transform: scale(1.08); }
.t-card__meta {
  padding: 1.25rem 1.4rem 1.4rem;
}
.t-card__name {
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.t-card__goal {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.t-card__numbers {
  display: flex;
  gap: 0.5rem;
}
.t-card__numbers span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.35rem 0.7rem;
  background-color: rgba(255, 45, 45, 0.08);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 122, 24, 0.08), transparent);
  filter: blur(80px);
  pointer-events: none;
}
.reviews__head {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  text-align: center;
  position: relative;
}
.reviews__head h2 { margin-bottom: 1.5rem; }
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.reviews__stars {
  color: var(--neon-amber);
  font-size: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}
.reviews__rating strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
}
.reviews__rating span { font-size: 0.85rem; color: var(--text-muted); }

.slider {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s var(--ease);
}

.r-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  isolation: isolate;
}
.r-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 1.5rem;
  font-family: 'Oswald', serif;
  font-size: 5rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.4;
  line-height: 1;
}
.r-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 45, 0.3);
}
.r-card__stars {
  color: var(--neon-amber);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.45);
}
.r-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.r-card__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.r-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--bg-3);
}
.r-card__person strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.r-card__person span { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 980px) { .r-card { flex: 0 0 calc((100% - 1.5rem) / 2); } }
@media (max-width: 620px) { .r-card { flex: 0 0 100%; } }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}
.slider__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all var(--t-fast) var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.slider__btn svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.slider__btn:hover {
  background: var(--grad-neon);
  border-color: transparent;
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--glow-red);
}
.slider__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-3);
  transition: all var(--t-fast) var(--ease);
}
.slider__dots button.active {
  width: 28px;
  border-radius: 4px;
  background: var(--grad-neon);
  box-shadow: 0 0 8px var(--neon-red);
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.gallery__head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.gallery__head h2 { margin-bottom: 1rem; }
.gallery__sub { font-size: 1.05rem; }

.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-3);
  border: 1px solid var(--border);
  isolation: isolate;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: grayscale(15%);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85));
  opacity: 0.7;
  transition: opacity var(--t-fast) var(--ease);
  pointer-events: none;
}
.g-item:hover img { transform: scale(1.1); filter: grayscale(0); }
.g-item:hover::after { opacity: 1; }
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.g-item__tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: var(--grad-neon);
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.4);
}
@media (max-width: 920px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item--wide { grid-column: span 2; }
  .g-item--tall { grid-row: span 1; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 45, 45, 0.3);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--grad-neon);
  border-color: transparent;
  box-shadow: var(--glow-red);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ JOIN ============ */
.join {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.join__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.join__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}
.join__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--neon-red), transparent);
  top: -150px; left: -100px;
}
.join__blob--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, var(--neon-orange), transparent);
  bottom: -120px; right: -100px;
}
.join__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
}
.join__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) { .join__inner { grid-template-columns: 1fr; } }

.join__copy h2 { margin-bottom: 1.5rem; }
.join__lead {
  color: var(--text);
  max-width: 480px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.join__lead strong { color: var(--neon-red-2); font-weight: 700; }

.join__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.join__perks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text);
}
.join__perks li span {
  width: 28px;
  height: 28px;
  background: var(--grad-neon);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.4);
}

.join__contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.join__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.join__contact-item:hover { color: var(--neon-red-2); }
.join__contact-item svg {
  width: 18px; height: 18px;
  fill: var(--neon-red-2);
}

/* WhatsApp CTA panel (replaces the trial form) */
.join__panel {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem 2.25rem;
  text-align: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.join__panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 18%; right: 18%;
  height: 2px;
  background: var(--grad-neon);
  filter: blur(2px);
}
.join__panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 211, 102, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.join__panel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ade80;
  padding: 0.4rem 0.95rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}
.join__panel-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22), 0 0 10px #22c55e;
  animation: panel-dot-pulse 2s ease-in-out infinite;
}
@keyframes panel-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25), 0 0 10px #22c55e; }
  50%      { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0.05), 0 0 10px #22c55e; }
}

.join__panel-icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  background: #25D366;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4),
              0 0 0 6px rgba(37, 211, 102, 0.12);
  animation: panel-icon-bounce 4s ease-in-out infinite;
}
@keyframes panel-icon-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.join__panel-icon svg {
  width: 44px; height: 44px;
  fill: #fff;
  position: relative;
  z-index: 2;
}
.join__panel-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.55), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: panel-icon-glow 3s ease-in-out infinite alternate;
}
@keyframes panel-icon-glow {
  from { opacity: 0.4; }
  to   { opacity: 0.85; }
}

.join__panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.join__panel-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 1.75rem;
}

.join__panel .btn {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.join__panel .btn + .btn { margin-top: 0.85rem; }

.join__or {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.1rem 0 0.85rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.join__or::before, .join__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-2);
}
.join__or span { padding: 0 0.4rem; }

.join__panel-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  width: 100%;
  justify-content: center;
}
.join__panel-foot svg {
  width: 14px;
  height: 14px;
  fill: #4ade80;
  flex-shrink: 0;
}

/* (legacy form classes removed) */

.field { margin-bottom: 1.1rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-row .field { margin-bottom: 0; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; gap: 1.1rem; } }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field label span {
  font-weight: 400;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
:root[data-theme="light"] .field input,
:root[data-theme="light"] .field select,
:root[data-theme="light"] .field textarea {
  background: var(--bg-2);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--neon-red);
  box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.18);
}
.field textarea { resize: vertical; min-height: 70px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff4747'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 22px;
  padding-right: 2.6rem;
}

/* (cleaned up — see legacy note above) */

/* ============ TOOLS (BMI / CALORIES / GOAL) ============ */
.tools {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
}
.tools__head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.tools__head h2 { margin-bottom: 1rem; }
.tools__sub { font-size: 1.05rem; }

.tools__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tool {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.tool:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 45, 0.3);
}
.tool__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tool__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tool__icon svg { width: 24px; height: 24px; fill: var(--neon-red-2); }
.tool__head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
}
.tool__body { display: flex; flex-direction: column; gap: 1rem; }

.tool__result {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 0.5rem;
  text-align: center;
  animation: tool-result-in 0.4s var(--ease);
}
@keyframes tool-result-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tool__result-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.tool__result-num strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.tool__result-num span {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tool__result-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: var(--neon-red-2);
  border-radius: var(--radius-pill);
  margin: 0.25rem auto 0.85rem;
}
.tool__result-tag.is-good {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}
.tool__result-tag.is-warn {
  background: rgba(255, 184, 0, 0.1);
  border-color: rgba(255, 184, 0, 0.4);
  color: var(--neon-amber);
}
.tool__result-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.tool__result-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.tool__result-row > div {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.tool__result-row strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.tool__result-row span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}

.goal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.g-chip {
  padding: 0.55rem 1rem;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-fast) var(--ease);
}
.g-chip:hover { border-color: var(--border-3); color: var(--text); }
.g-chip[aria-checked="true"] {
  background: var(--grad-neon);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.4);
}

.tool__progress { margin-bottom: 1rem; }
.tool__progress-bar {
  height: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.tool__progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad-neon);
  border-radius: var(--radius-pill);
  transition: width 0.8s var(--ease);
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.5);
}
.tool__progress p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============ LOCATION ============ */
.location {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.location__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 920px) { .location__inner { grid-template-columns: 1fr; } }

.location__copy h2 { margin-bottom: 1.5rem; }
.location__lead { margin-bottom: 2rem; font-size: 1.05rem; max-width: 460px; }

.location__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.location__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.location__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.3);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
}
.location__icon svg { width: 22px; height: 22px; fill: var(--neon-red-2); }
.location__list strong {
  display: block;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.location__list p { color: var(--text); font-size: 0.95rem; line-height: 1.55; }
.location__list a { color: var(--text); }
.location__list a:hover { color: var(--neon-red-2); }

.location__cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.location__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 45, 45, 0.18);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(88%) hue-rotate(180deg) contrast(0.95) saturate(0.7);
}
:root[data-theme="light"] .location__map iframe { filter: none; }

.location__map-cta {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  background: var(--grad-neon);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--glow-red);
  transition: transform var(--t-fast) var(--ease);
}
.location__map-cta:hover { transform: translateY(-2px); }
.location__map-cta svg { width: 14px; height: 14px; fill: currentColor; }

/* ============ FAQ ============ */
.faq {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq__inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.faq__item:hover { border-color: var(--border-2); }
.faq__item[open] {
  border-color: rgba(255, 45, 45, 0.4);
  background: var(--surface-2);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  width: 32px;
  height: 32px;
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid rgba(255, 45, 45, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.faq__chev svg {
  width: 16px; height: 16px;
  fill: none; stroke: var(--neon-red-2);
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.faq__item[open] .faq__chev {
  transform: rotate(180deg);
  background: var(--grad-neon);
  border-color: transparent;
}
.faq__item[open] .faq__chev svg { stroke: #fff; }
.faq__item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: faq-open 0.4s var(--ease);
}
.faq__item p a {
  color: var(--neon-red-2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 45, 45, 0.3);
  text-underline-offset: 4px;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem var(--side-pad) 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 1px;
  background: var(--grad-neon);
  filter: blur(1px);
  opacity: 0.7;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}
@media (max-width: 1080px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1.25rem 0;
  max-width: 340px;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 0.65rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover {
  background: var(--grad-neon);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--glow-red);
}
.footer__social svg {
  width: 16px; height: 16px;
  fill: var(--text-muted);
  transition: fill var(--t-fast) var(--ease);
}
.footer__social a:hover svg { fill: #fff; }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col h5 {
  margin-bottom: 0.5rem;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
}
.footer__col a, .footer__col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--neon-red-2); }
.footer__hours {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer__newsletter {
  display: flex;
  margin-top: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--t-fast) var(--ease);
}
.footer__newsletter:focus-within { border-color: var(--neon-red); }
.footer__newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 0.88rem;
}
.footer__newsletter input:focus { outline: none; }
.footer__newsletter input::placeholder { color: var(--text-dim); }
.footer__newsletter button {
  background: var(--grad-neon);
  color: #fff;
  padding: 0 1.1rem;
  display: grid;
  place-items: center;
  transition: filter var(--t-fast) var(--ease);
}
.footer__newsletter button:hover { filter: brightness(1.15); }
.footer__newsletter button svg { width: 16px; height: 16px; fill: #fff; }

.footer__bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer__heart {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1rem;
}

/* ============ FLOATING ACTIONS ============ */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-fast) var(--ease);
  isolation: isolate;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: float-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes float-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float-call {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--grad-neon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 89;
  box-shadow: var(--glow-red);
  transition: transform var(--t-fast) var(--ease);
}
.float-call:hover { transform: scale(1.1); }
.float-call svg { width: 22px; height: 22px; fill: #fff; }

.back-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-fast) var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover {
  background: var(--grad-neon);
  border-color: transparent;
  box-shadow: var(--glow-red);
}
.back-top svg {
  width: 18px; height: 18px;
  fill: var(--text);
  transition: fill var(--t-fast) var(--ease);
}
.back-top:hover svg { fill: #fff; }

@media (max-width: 720px) {
  .float-wa, .float-call, .back-top { display: none; }
}

/* ============ MOBILE BAR ============ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
:root[data-theme="light"] .mobile-bar { background: rgba(255, 255, 255, 0.95); }
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.mobile-bar__btn:active { transform: scale(0.96); }
.mobile-bar__btn svg { width: 18px; height: 18px; fill: currentColor; }
.mobile-bar__btn--wa {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}
.mobile-bar__btn--cta {
  background: var(--grad-neon);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 45, 45, 0.35);
}
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}
@media (max-width: 380px) {
  .mobile-bar__btn span { font-size: 0.74rem; }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--neon-red);
  outline-offset: 3px;
}
