/* === Body Life Gym — Section Styles === */

/* ============ TOPBAR (Yellow-Black Stripes) ============ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #000000;
  border-bottom: 1px solid rgba(245,227,0,0.18);
}
.topbar-stripes {
  height: 2px;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(245, 227, 0, 0.55) 0 10px,
    #000000 10px 20px
  );
  background-size: 28px 28px;
  animation: stripes-march 4.5s linear infinite;
  opacity: 0.55;
}
@keyframes stripes-march {
  from { background-position: 0 0; }
  to   { background-position: 28px 0; }
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 34px;
  gap: 24px;
}
.topbar-side {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color .2s ease;
  text-decoration: none;
}
.topbar-side:hover { color: var(--accent); }
.topbar-side i { color: var(--accent); font-size: 13px; opacity: 0.85; }
.topbar-left { justify-self: start; }
.topbar-right { justify-self: end; }
.topbar-title {
  justify-self: center;
  font-family: 'Bungee', 'Black Ops One', 'Bebas Neue', Impact, system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--accent);
  white-space: nowrap;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  transform: skewX(-6deg);
  text-shadow:
    -2px 0 0 #000,
    2px 0 0 #000,
    0 -2px 0 #000,
    0 2px 0 #000,
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    3px 3px 0 #000,
    4px 4px 0 rgba(0,0,0,0.85),
    0 0 18px rgba(0,0,0,0.95),
    0 0 28px rgba(245,227,0,0.35);
}
.topbar-title::before,
.topbar-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.topbar-title::before { right: calc(100% + 14px); }
.topbar-title::after  { left:  calc(100% + 14px); }

@media (max-width: 880px) {
  .topbar-side { display: none; }
  .topbar-inner {
    display: flex;
    justify-content: center;
    height: 32px;
    gap: 0;
  }
  .topbar-title { font-size: 16px; letter-spacing: 0.16em; }
  .topbar-title::before, .topbar-title::after { width: 16px; }
  .topbar-title::before { right: calc(100% + 8px); }
  .topbar-title::after  { left:  calc(100% + 8px); }
  .nav { top: 36px; }
}

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.55);
  backdrop-filter: blur(10px) saturate(140%);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  font-weight: 700;
}
.logo-img {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--sh-glow-sm);
  animation: logo-breathe 3.6s ease-in-out infinite;
  background: #1a1a1f;
}
.logo:hover .logo-mark { transform: rotate(0); }
.logo-mark::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 1px dashed var(--y-400);
  opacity: 0.4;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  transition: color .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.nav-links a::before {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 10px rgba(var(--y-glow), 0.7);
}
.nav-links a:hover { color: var(--accent); transform: translateY(-1px); }
.nav-links a:hover::before { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::before { transform: scaleX(1); }

.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.nav-cta .btn {
  height: 44px;
  padding-inline: 20px;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

/* Energized primary CTA in nav — animated sheen */
.nav-cta .btn-primary {
  background: linear-gradient(120deg, var(--y-500) 0%, var(--y-400) 40%, #FFF885 50%, var(--y-400) 60%, var(--y-500) 100%);
  background-size: 220% 100%;
  background-position: 100% 0;
  animation: nav-sheen 4s ease-in-out infinite;
  box-shadow: 0 4px 0 #B5A700, 0 0 20px rgba(var(--y-glow), 0.5);
}
.nav-cta .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.5);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.nav-cta .btn-primary:hover {
  animation-duration: 1.2s;
  box-shadow: 0 6px 0 #B5A700, 0 0 32px rgba(var(--y-glow), 0.85);
}
@keyframes nav-sheen {
  0%, 100% { background-position: 100% 0; }
  50%      { background-position: 0 0; }
}

/* Energized WhatsApp CTA in nav — pulsing ring */
.nav-cta .btn-wa {
  background: linear-gradient(180deg, #22C55E, #16A34A);
  box-shadow: 0 4px 0 #0d6e36, 0 0 0 0 rgba(34,197,94, 0.6);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.nav-cta .btn-wa i {
  font-size: 16px;
  animation: wa-bounce 2.4s ease-in-out infinite;
}
.nav-cta .btn-wa:hover {
  animation-play-state: paused;
  box-shadow: 0 6px 0 #0d6e36, 0 0 24px rgba(34,197,94,0.7);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 0 #0d6e36, 0 0 0 0 rgba(34,197,94, 0.55); }
  50%      { box-shadow: 0 4px 0 #0d6e36, 0 0 0 10px rgba(34,197,94, 0); }
}
@keyframes wa-bounce {
  0%, 100% { transform: rotate(0) scale(1); }
  10%      { transform: rotate(-12deg) scale(1.15); }
  20%      { transform: rotate(8deg)   scale(1.05); }
  30%      { transform: rotate(0)      scale(1); }
}

/* Logo mark — subtle breathing glow */
.logo-mark {
  animation: logo-breathe 3.6s ease-in-out infinite;
}
@keyframes logo-breathe {
  0%, 100% { box-shadow: var(--sh-glow-sm); }
  50%      { box-shadow: 0 0 28px rgba(var(--y-glow), 0.75); }
}
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--accent);
  align-items: center; justify-content: center;
  font-size: 22px;
}
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
  }
  .nav-links.open a {
    font-size: 22px;
    padding: 12px 24px;
  }
  .nav-burger { display: flex; z-index: 201; }
}
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav { height: 56px; }
  .logo-img { width: 40px; height: 40px; border-radius: 8px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(var(--y-glow), 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--y-glow), 0.08), transparent 60%),
    #060606;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,227,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,227,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(0.6) contrast(1.1);
  mix-blend-mode: screen;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(245,227,0,0.08);
  border: 1px solid rgba(245,227,0,0.3);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero h1 .stroke, .hero h1 .glow { display: inline; }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  display: inline-block;
}
.hero h1 .glow {
  color: var(--accent);
  text-shadow:
    0 0 24px rgba(var(--y-glow), 0.55),
    0 0 56px rgba(var(--y-glow), 0.3);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(var(--y-glow), 0.4);
}
.hero-stat .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === HERO 3D STAGE === */
.hero-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  perspective: 1200px;
  perspective-origin: center 30%;
}
.hero-stage .ring {
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(var(--y-glow), 0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-stage .ring.r2 {
  inset: 18%;
  border-style: solid;
  border-color: rgba(var(--y-glow), 0.12);
  animation-duration: 60s;
  animation-direction: reverse;
}
.hero-stage .ring.r3 {
  inset: 30%;
  border-color: rgba(var(--y-glow), 0.4);
  border-style: dotted;
}
.hero-stage .core {
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--y-400), #C7B900 60%, #060606);
  box-shadow:
    0 0 60px rgba(var(--y-glow), 0.6),
    inset 0 -20px 40px rgba(0,0,0,0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-stage .photo-tile {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,0.06);
  background: #111;
}
.hero-stage .photo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.hero-stage .photo-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}
.hero-stage .photo-tile .tag {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
}
.hero-stage .t1 {
  width: 50%; height: 60%;
  top: 0; left: 0;
  transform: rotate(-6deg) translateZ(60px);
  animation: float-slow 6s ease-in-out infinite;
}
.hero-stage .t2 {
  width: 42%; height: 48%;
  top: 8%; right: 0;
  transform: rotate(8deg) translateZ(80px);
  animation: float-fast 5s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-stage .t3 {
  width: 46%; height: 38%;
  bottom: 4%; left: 14%;
  transform: rotate(4deg) translateZ(40px);
  animation: float-slow 7s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-stage .badge-num {
  position: absolute;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  text-align: center;
  line-height: 1;
  top: 38%; right: -8px;
  box-shadow: var(--sh-glow);
  animation: spin 18s linear infinite reverse;
  z-index: 5;
}
.hero-stage .badge-num span {
  display: block;
  transform: rotate(0);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  z-index: 5;
}
.scroll-cue .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--accent);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  background: var(--ink-1000);
  border-block: 1px solid var(--hairline);
  padding-block: 24px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--text);
  white-space: nowrap;
}
.marquee-item.alt { color: transparent; -webkit-text-stroke: 1px var(--accent); }
.marquee-item .star {
  color: var(--accent);
  font-size: 24px;
}

/* ============ SECTION === */
.section {
  position: relative;
  padding-block: 120px;
}
.section-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 768px) { .section-header { grid-template-columns: 1fr; gap: 24px; } }
.section-header h2 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
}
.section-header .lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 768px) { .section-header .lead { justify-self: start; } }

.section-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.section-num::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}

/* ============ COMPLEX (Section 1) ============ */
.complex-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) { .complex-grid { grid-template-columns: 1fr; } }
.complex-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #111;
  min-height: 480px;
  border: 1px solid var(--hairline);
}
.complex-hero-card .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
.complex-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85)), 
              linear-gradient(135deg, rgba(245,227,0,0.18), transparent 60%);
  z-index: 1;
}
.complex-hero-card .body {
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 2;
}
.complex-hero-card h3 {
  font-size: 56px;
  line-height: 0.95;
  margin-bottom: 12px;
}
.complex-hero-card p { color: var(--ink-100); max-width: 520px; }
.complex-hero-card .corner {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  display: flex; gap: 8px; align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.complex-hero-card .corner .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.complex-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
}
.complex-stat {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.complex-stat:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.complex-stat::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(var(--y-glow),0.18), transparent 70%);
}
.complex-stat .num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(var(--y-glow), 0.4);
}
.complex-stat .lbl {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.complex-stat .desc {
  margin-top: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ BRANSLAR (Section 2) ============ */
.bransh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .bransh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bransh-grid { grid-template-columns: 1fr; } }

.bransh-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
  isolation: isolate;
}
.bransh-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--accent);
  box-shadow: var(--sh-lg), var(--sh-glow-sm);
}
.bransh-card .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.7) contrast(1.1) brightness(0.7);
  transition: filter .4s ease, transform .6s ease;
}
.bransh-card:hover .ph {
  filter: grayscale(0.2) contrast(1.15) brightness(0.85);
  transform: scale(1.06);
}
.bransh-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.95));
  z-index: 1;
}
.bransh-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,227,0,0) 60%, rgba(245,227,0,0.15));
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.bransh-card:hover::after { opacity: 1; }

.bransh-card .num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.2em;
  z-index: 2;
}
.bransh-card .icon {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(245,227,0,0.15);
  border: 1px solid rgba(245,227,0,0.3);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 22px;
  z-index: 2;
  transition: transform .3s ease, background .3s ease;
}
.bransh-card:hover .icon {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(-12deg) scale(1.1);
}
.bransh-card .body {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
}
.bransh-card h3 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.bransh-card p {
  font-size: 13px;
  color: var(--ink-200);
  margin: 0;
  line-height: 1.5;
}
.bransh-card .arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  font-size: 18px;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
}
.bransh-card:hover .arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* === EQUIPMENT (Section 3) === */
.equip-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.equip-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.equip-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px) scale(1.02);
}
.equip-card .visual {
  flex: 1;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--ink-950);
}
.equip-card .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.1);
  transition: transform .5s ease, filter .3s ease;
}
.equip-card:hover .visual img {
  transform: scale(1.08);
  filter: grayscale(0.1) contrast(1.15);
}
.equip-card .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.equip-card .corner-dot {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
}
.equip-card .corner-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.equip-card h4 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.equip-card .meta {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === PROGRAM (Section 4) === */
.program {
  background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
  border-block: 1px solid var(--hairline);
}
.program-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.program-rail::-webkit-scrollbar { height: 6px; }
.day-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.day-card:hover, .day-card.active {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.day-card.active {
  background:
    radial-gradient(ellipse at top right, rgba(var(--y-glow),0.18), transparent 60%),
    var(--surface);
  box-shadow: var(--sh-glow-sm);
}
.day-card .day {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 8px;
}
.day-card .date {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text);
}
.day-card .session {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin-top: 16px;
}
.day-card .session:first-of-type { margin-top: 0; }
.day-card .session-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.day-card .session-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  margin: 4px 0;
}
.day-card .session-coach {
  font-size: 12px;
  color: var(--text-muted);
}

/* === WHY (Section 5) === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .25s ease;
  cursor: default;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.why-cell:nth-child(4n) { border-right: 0; }
.why-cell:nth-last-child(-n+4) { border-bottom: 0; }
@media (max-width: 1024px) {
  .why-cell:nth-child(2n) { border-right: 0; }
  .why-cell:nth-child(4n) { border-right: 0; }
  .why-cell { border-right: 1px solid var(--hairline); }
  .why-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .why-cell { border-right: 0 !important; }
}
.why-cell:hover {
  background: linear-gradient(135deg, rgba(245,227,0,0.06), transparent 60%);
}
.why-cell .num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.why-cell .icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 30px;
  border-radius: var(--r-md);
  background: rgba(245,227,0,0.1);
  border: 1px solid rgba(245,227,0,0.2);
  transition: transform .3s ease, background .3s ease;
}
.why-cell:hover .icon {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(-8deg) scale(1.05);
}
.why-cell h4 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--text);
}
.why-cell p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* === MEMBERSHIP (Section 6) === */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1024px) { .plans { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.plan-card.featured {
  background:
    radial-gradient(ellipse at top, rgba(var(--y-glow), 0.15), transparent 50%),
    var(--ink-1000);
  border: 1.5px solid var(--accent);
  box-shadow: var(--sh-glow);
  transform: scale(1.02);
}
@media (max-width: 1024px) { .plan-card.featured { transform: none; } }
.plan-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,227,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,227,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top, black, transparent 70%);
  pointer-events: none;
}
.plan-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 2;
}
.plan-card .name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.plan-card .tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.plan-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--hairline);
  position: relative;
  z-index: 1;
}
.plan-card .price .amount {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
}
.plan-card .price .currency {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}
.plan-card .price .per {
  font-size: 13px;
  color: var(--text-muted);
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.plan-card ul li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: rgba(245,227,0,0.15);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F5E300'%3E%3Cpath d='M13.854 3.146a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 9.793l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.plan-card ul li.muted { color: var(--text-dim); }
.plan-card ul li.muted::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235A5A66'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-color: rgba(255,255,255,0.04);
}

/* === GALLERY (Section 7) === */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}
.gallery .g {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  isolation: isolate;
}
.gallery .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: transform .5s ease, filter .3s ease;
}
.gallery .g::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  z-index: 1;
  opacity: 0.8;
  transition: opacity .3s ease;
}
.gallery .g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,227,0,0.25);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.gallery .g:hover img { transform: scale(1.08); filter: grayscale(0.05) contrast(1.1); }
.gallery .g:hover::after { opacity: 1; }
.gallery .label {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 2;
}
.gallery .cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.gallery .ttl {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: white;
  margin-top: 4px;
}
/* gallery item sizes */
.gallery .g1 { grid-column: span 5; grid-row: span 3; }
.gallery .g2 { grid-column: span 4; grid-row: span 2; }
.gallery .g3 { grid-column: span 3; grid-row: span 2; }
.gallery .g4 { grid-column: span 4; grid-row: span 3; }
.gallery .g5 { grid-column: span 3; grid-row: span 2; }
.gallery .g6 { grid-column: span 5; grid-row: span 2; }
.gallery .g7 { grid-column: span 4; grid-row: span 2; }
.gallery .g8 { grid-column: span 3; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery { grid-auto-rows: 90px; }
  .gallery .g { grid-column: span 6 !important; grid-row: span 2 !important; }
}

/* === TRAINERS (Section 8) === */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .trainer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trainer-grid { grid-template-columns: 1fr; } }

.trainer {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease;
}
.trainer:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.trainer .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.7) contrast(1.05);
  transition: filter .4s ease, transform .5s ease;
}
.trainer:hover .ph {
  filter: grayscale(0.1) contrast(1.1);
  transform: scale(1.04);
}
.trainer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.95));
  z-index: 1;
}
.trainer .num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.trainer .role {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,227,0,0.3);
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.trainer .body {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
}
.trainer h4 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: white;
}
.trainer .spec {
  font-size: 12px;
  color: var(--ink-200);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.trainer .socials {
  display: flex; gap: 8px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.trainer:hover .socials {
  opacity: 1;
  transform: translateY(0);
}
.trainer .socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: white;
  transition: background .2s ease, color .2s ease;
}
.trainer .socials a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

/* === TESTIMONIALS (Section 9) === */
.testimonials {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--y-glow),0.08), transparent 50%),
    var(--ink-950);
  border-block: 1px solid var(--hairline);
}
.testi-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .testi-rail { grid-template-columns: 1fr; } }
.testi-card {
  background: rgba(20,20,24,0.7);
  backdrop-filter: blur(18px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.testi-card .quote {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  top: 12px; right: 24px;
}
.testi-card .stars {
  display: flex; gap: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 14px;
}
.testi-card blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 28px;
}
.testi-card .person {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}
.testi-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
}
.testi-card .name {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}
.testi-card .branch {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* === CTA STRIP === */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 0L80 0L80 80L0 80Z' fill='none' stroke='%23000' stroke-opacity='0.06'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) { .cta-strip-inner { grid-template-columns: 1fr; } }
.cta-strip h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  color: var(--accent-ink);
  margin-bottom: 24px;
}
.cta-strip p {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
}
.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-strip .btn-primary {
  background: #000;
  color: var(--accent);
  box-shadow: 0 6px 0 #2A2A33;
}
.cta-strip .btn-primary:hover { box-shadow: 0 8px 0 #2A2A33; }
.cta-strip .btn-ghost {
  background: rgba(0,0,0,0.06);
  color: #000;
  border-color: rgba(0,0,0,0.2);
}
.cta-strip .btn-ghost:hover { color: var(--accent); background: #000; border-color: #000; }
.cta-strip .info-card {
  background: #000;
  color: white;
  padding: 32px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-strip .info-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--accent);
}
.cta-strip .info-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cta-strip .info-row:last-child { border-bottom: 0; }
.cta-strip .info-row .ic {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(245,227,0,0.15);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cta-strip .info-row .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-strip .info-row .val {
  font-size: 15px;
  font-weight: 500;
  color: white;
  margin-top: 2px;
}

/* === FOOTER === */
.footer {
  background: var(--ink-1000);
  padding: 80px 0 32px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all .2s ease;
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s ease;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 8px;
}
.footer-col p strong { color: var(--text); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  transition: border-color .2s ease, background .2s ease;
}
.footer-credit:hover { border-color: var(--accent); background: rgba(255,255,255,0.03); }
.footer-credit span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.footer-credit img { height: 28px; width: auto; opacity: 0.95; }
.footer-credit:hover img { opacity: 1; }

/* === STICKY CTAS === */
.sticky-wa {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #22C55E, #16A34A);
  color: white;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(34,197,94,0.4);
  transition: transform .2s ease;
}
.sticky-wa:hover { transform: translateY(-2px); }
.sticky-wa::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  animation: pulse-glow 1.6s infinite;
}

.sticky-phone {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  font-feature-settings: "tnum";
  box-shadow: var(--sh-glow);
  transition: transform .2s ease;
}
.sticky-phone:hover { transform: translateY(-2px); }

@media (max-width: 600px) {
  .sticky-wa, .sticky-phone {
    padding: 10px 16px;
    font-size: 12px;
    bottom: 12px;
  }
  .sticky-wa { left: 12px; }
  .sticky-phone { right: 12px; }
}

/* === BG MODES (tweakable) === */
body[data-bg="solid"] { background: #000; }
body[data-bg="solid"] .hero-bg::after { display: none; }

body[data-bg="grid"] .hero-bg::after {
  animation: grid-pan 30s linear infinite;
}
@keyframes grid-pan {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

body[data-bg="glow"] .hero-bg {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(var(--y-glow), 0.28), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--y-glow), 0.15), transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(var(--y-glow), 0.08), transparent 50%),
    #060606;
}
body[data-bg="glow"] .hero-bg::after { display: none; }

/* ============ SEO BLOCKS ============ */
.seo-tagline {
  margin: -16px 0 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.seo-tagline strong { color: var(--accent); font-weight: 600; }

.seo-block {
  border-top: 1px solid var(--hairline);
  padding: 36px 0 28px;
  margin-top: 24px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.7;
}
.seo-block h2 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 600;
}
.seo-block p { margin: 0 0 12px; max-width: 100ch; }
.seo-block strong { color: rgba(255,255,255,0.78); font-weight: 600; }
.seo-tags {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seo-tags li {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.5);
}

/* ============ MOBILE OPTIMIZATIONS ============ */
@media (max-width: 768px) {
  :root {
    --container-pad: 18px;
  }
  .container { padding-inline: 18px; }

  /* Hero — daha sıkı tipografi, daha az padding */
  .hero {
    padding-top: 96px;
    padding-bottom: 56px;
    min-height: auto;
  }
  .hero-inner { gap: 36px; }
  .hero-eyebrow { margin-bottom: 18px; padding: 6px 12px; }
  .hero-eyebrow span { font-size: 10px; letter-spacing: 0.14em; }
  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 0.92;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .hero-cta { gap: 10px; margin-bottom: 36px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 28px; }
  .hero-stat .num { font-size: 36px; }
  .hero-stat .lbl { font-size: 10px; letter-spacing: 0.14em; }

  /* Section başlıkları — küçült */
  .section-header {
    margin-bottom: 36px;
    gap: 16px;
  }
  .section-header h2 { font-size: clamp(34px, 9vw, 52px); line-height: 0.95; }
  .section-header .lead { font-size: 14px; line-height: 1.55; }
  .section-num { font-size: 12px; letter-spacing: 0.14em; }

  /* Section padding — daha az dikey alan */
  section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  #home { padding-top: 0 !important; }

  /* Branş kartları */
  .bransh-card { padding: 20px; min-height: auto; }
  .bransh-card h3 { font-size: 22px; }
  .bransh-card p { font-size: 13px; }

  /* Tesis hero card */
  .complex-hero-card { aspect-ratio: 4/3; }
  .complex-grid { gap: 16px; }

  /* Why grid */
  .why-cell { padding: 22px 18px; }
  .why-cell h4 { font-size: 16px; }
  .why-cell p { font-size: 13px; line-height: 1.5; }

  /* Üyelik kartları */
  .plan-card { padding: 28px 22px; }
  .plan-card .price { font-size: 44px; }
  .plan-card h3 { font-size: 20px; }
  .plan-card .feat { font-size: 13px; }

  /* Galeri */
  .gallery { gap: 8px; }

  /* Eğitmenler */
  .trainer { padding: 18px; }
  .trainer h4 { font-size: 18px; }

  /* Yorumlar */
  .testi-card { padding: 24px 20px; }
  .testi-card .quote { font-size: 15px; line-height: 1.55; }

  /* CTA strip */
  .cta-strip-inner { gap: 24px; text-align: center; }
  .cta-strip h2 { font-size: clamp(34px, 9vw, 52px); line-height: 0.95; }
  .cta-strip p { font-size: 14px; }
  .cta-strip .btn { width: 100%; }

  /* Footer */
  .footer { padding-top: 56px; padding-bottom: 24px; }
  .footer-grid { gap: 28px; margin-bottom: 36px; }
  .footer-brand h3 { font-size: 22px; }

  /* Marquee — daha küçük */
  .marquee-track { font-size: 36px; }

  /* Logo navbar — küçült */
  .logo-img { width: 40px; height: 40px; }

  /* Buton boyutları */
  .btn { font-size: 13px; padding: 12px 20px; }

  /* Day card (program) */
  .day-card { padding: 18px; }
  .day-card h4 { font-size: 16px; }
  .day-card .session { font-size: 13px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(36px, 12vw, 46px); }
  .section-header h2 { font-size: clamp(28px, 10vw, 40px); }
  .marquee-track { font-size: 28px; }
  .topbar-title { font-size: 14px; letter-spacing: 0.24em; }
  .topbar-title::before, .topbar-title::after { width: 10px; }
  .topbar-title::before { right: calc(100% + 6px); }
  .topbar-title::after  { left:  calc(100% + 6px); }
}
