/* ================================================================
   KROWN FITNESS — style.css
   PREMIUM LUXURY THEME — Dark Black + Electric Blue Neon
   Orbitron (display) + Inter (body)
================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES — Blue Neon Palette
================================================================ */
:root {
  /* CORE BACKGROUNDS */
  --bg-main:        #050505;
  --bg-section:     #0D0D0D;
  --bg-card:        #111111;

  /* PRIMARY BLUE */
  --blue:           #2563EB;
  --blue-dim:       rgba(37, 99, 235, 0.10);
  --blue-glow:      rgba(59, 130, 246, 0.32);
  --blue-mid:       #3B82F6;

  /* DEEPER BLUE (secondary gradient stop) */
  --purple:         #1D4ED8;
  --purple-dim:     rgba(29, 78, 216, 0.10);
  --purple-glow:    rgba(59, 130, 246, 0.28);

  /* CTA GRADIENT — Blue → Deeper Blue */
  --cta-from:       #3B82F6;
  --cta-to:         #2563EB;
  --cta-grad:       linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);

  /* LEGACY accent kept for JS compatibility */
  --accent:         #2563EB;
  --accent-2:       #1D4ED8;
  --accent-dim:     rgba(37, 99, 235, 0.10);
  --accent-glow:    rgba(59, 130, 246, 0.28);

  /* CTA warm (kept for save badges) */
  --cta:            #60A5FA;
  --cta-dark:       #2563EB;

  /* BORDERS */
  --border:         rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(37, 99, 235, 0.28);
  --border-hover:   rgba(59, 130, 246, 0.5);

  /* TEXT */
  --text-primary:   #FFFFFF;
  --text-muted:     #A3A3A3;

  /* TYPOGRAPHY */
  --font-heading:   'Orbitron', 'Arial Narrow', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* SPACING */
  --section-pad:    6rem 1.5rem;
  --section-pad-sm: 3rem 1rem;
  --card-radius:    20px;
  --nav-h:          76px;

  /* TRANSITIONS */
  --trans-fast:     0.2s ease;
  --trans-med:      0.35s ease;
  --trans-slow:     0.65s cubic-bezier(0.16, 1, 0.3, 1);

  /* GLASS */
  --glass-bg:       rgba(17, 17, 17, 0.72);
  --glass-border:   rgba(255, 255, 255, 0.08);
  --glass-blur:     24px;
}

/* ================================================================
   2. RESET & BASE
================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  font-weight: 400;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: var(--cta-grad);
  border-radius: 2px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ================================================================
   3. UTILITY CLASSES
================================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Blue gradient accent text */
.accent-text {
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
}

/* Premium Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--card-radius);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.3) 0%,
    transparent 40%,
    rgba(37, 99, 235, 0.25) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.glass-card > * { position: relative; z-index: 1; }

.hidden-mobile { display: block; }

/* ================================================================
   4. BUTTONS — Premium gradient CTAs, bold uppercase
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
  will-change: transform;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cta-grad);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4),
              0 2px 8px rgba(59, 130, 246, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(37, 99, 235, 0.6),
              0 4px 16px rgba(59, 130, 246, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-mid);
  box-shadow: 0 0 24px var(--blue-glow), 0 0 8px var(--purple-glow);
}

.btn-call {
  background: var(--cta-grad);
  color: #fff;
  font-weight: 800;
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.3);
}
.btn-call:hover { box-shadow: 0 0 32px rgba(37, 99, 235, 0.55); }

.btn-plan {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--blue-mid);
  border: 1.5px solid var(--border-strong);
  margin-top: 1.5rem;
}
.btn-plan:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.btn-plan-featured {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  background: var(--cta-grad);
  color: #fff;
}
.btn-plan-featured:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55);
}

.btn-call-sm {
  background: var(--blue-dim);
  color: var(--blue-mid);
  border: 1px solid var(--border-strong);
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  display: inline-flex;
}
.btn-call-sm:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-full { width: 100%; justify-content: center; }

.btn-cta-glow {
  font-size: 1rem;
  padding: 1.1rem 3rem;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.5), 0 0 80px rgba(59, 130, 246, 0.25);
}
.btn-cta-glow:hover {
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.7), 0 0 120px rgba(59, 130, 246, 0.35);
}

/* ================================================================
   PRELOADER
================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}

.preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse,
    rgba(37, 99, 235, 0.10) 0%,
    rgba(59, 130, 246, 0.07) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: preloader-pulse-bg 2s ease-in-out infinite;
}

@keyframes preloader-pulse-bg {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.preloader.hide {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.preloader.done { display: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.preloader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-bolt {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  filter: drop-shadow(0 0 20px var(--blue)) drop-shadow(0 0 40px var(--purple));
  animation: preloader-bolt-pulse 1.2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes preloader-bolt-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 16px var(--blue)) drop-shadow(0 0 32px var(--purple));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 28px var(--blue)) drop-shadow(0 0 56px var(--purple));
  }
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--blue);
  border-right-color: rgba(37, 99, 235, 0.2);
  animation: preloader-spin 1s linear infinite;
}

.preloader-ring-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: var(--purple);
  border-left-color: rgba(29, 78, 216, 0.2);
  animation: preloader-spin 0.7s linear infinite reverse;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.preloader-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.preloader-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.35em;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--cta-grad);
  border-radius: 1px;
  animation: preloader-progress 2s ease forwards;
  box-shadow: 0 0 12px var(--blue), 0 0 24px var(--purple);
}

@keyframes preloader-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

.preloader-percent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
}

.preloader-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-in 1s ease 0.5s both;
}

/* ================================================================
   5. NAVBAR
================================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--trans-med), box-shadow var(--trans-med), backdrop-filter var(--trans-med);
  will-change: background;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(37, 99, 235, 0.12),
    0 4px 40px rgba(0,0,0,0.9);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  color: var(--blue-mid);
  filter: drop-shadow(0 0 10px var(--blue));
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 8px var(--blue)); }
  50%       { filter: drop-shadow(0 0 18px var(--purple)); }
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo-accent {
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--cta-grad);
  border-radius: 1px;
  transition: transform var(--trans-fast);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--trans-med), opacity var(--trans-med);
  transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   6. HERO SECTION
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}

.hero-img-zoom {
  animation: hero-zoom 16s ease-out forwards;
  transform-origin: center center;
}

@keyframes hero-zoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.84) 40%,
    rgba(13, 13, 13, 0.68) 80%,
    rgba(10, 20, 45, 0.6) 100%
  );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.14) 0%, transparent 65%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(29, 78, 216, 0.12) 0%, transparent 65%);
}

/* Mouse-reactive ambient glow (GSAP-driven CSS vars, degrades gracefully) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
    rgba(59, 130, 246, 0.10) 0%, transparent 40%);
  pointer-events: none;
  transition: background 0.3s ease;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  opacity: 0.4;
  animation: hero-scanline 6s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes hero-scanline {
  from { top: 0%; }
  to   { top: 100%; }
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(37, 99, 235, 0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(29, 78, 216, 0.08) 0%, transparent 50%);
  animation: hero-bg-move 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes hero-bg-move {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-mid);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blue);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--blue); }
  50%       { opacity: 0.4; transform: scale(0.7); box-shadow: 0 0 2px var(--blue); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  overflow: visible;
}

.title-line { display: block; }

.hero-line-reveal {
  clip-path: inset(0 0 100% 0);
  animation: line-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-reveal.delay-1 { animation-delay: 0.18s; }

@keyframes line-reveal {
  to { clip-path: inset(0 0 0% 0); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.6rem;
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-stats {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  min-width: 110px;
  transition: border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
}

.stat-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.stat-icon { font-size: 1.5rem; }

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-primary);
  border-bottom: 1.5px solid var(--text-primary);
  transform: rotate(45deg) translateY(-2px);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   7. WHY CHOOSE US
================================================================ */
.why-section {
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.75rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.025);
  transition: border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
}

.why-item:hover {
  border-color: var(--border-strong);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.why-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans-fast), box-shadow var(--trans-fast);
}

.why-item:hover .why-icon-wrap {
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.25);
}

.why-item-title { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.why-item-desc  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

.why-cta-card {
  padding: 2.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.why-cta-icon { font-size: 3rem; }
.why-cta-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.55rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-primary); }
.why-cta-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ================================================================
   8. ABOUT SECTION
================================================================ */
.about-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap { position: relative; animation: about-float 6s ease-in-out infinite; }

@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.about-img-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse,
    rgba(37, 99, 235, 0.09) 0%,
    rgba(29, 78, 216, 0.06) 40%,
    transparent 70%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  animation: about-glow-pulse 4s ease-in-out infinite;
}

@keyframes about-glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--card-radius);
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.8),
    0 0 40px rgba(37, 99, 235, 0.1),
    0 0 60px rgba(29, 78, 216, 0.07);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.float-badge-icon { font-size: 2rem; }

.about-badge-float strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-badge-float span { font-size: 0.72rem; color: var(--text-muted); }

.about-text { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.about-text strong { color: var(--text-primary); font-weight: 700; }

.timings-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
}

.timing-item { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.timing-icon { font-size: 1.4rem; }
.timing-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.timing-item span { font-size: 0.78rem; color: var(--blue-mid); font-weight: 500; }
.timing-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ================================================================
   COUNTERS
================================================================ */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.counter-item {
  text-align: center;
  padding: 1.3rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.03);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  animation: counter-float 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.counter-item:nth-child(1) { animation-delay: 0s; }
.counter-item:nth-child(2) { animation-delay: 0.5s; }
.counter-item:nth-child(3) { animation-delay: 1s; }
.counter-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes counter-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.counter-item:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.18),
              0 0 20px rgba(59, 130, 246, 0.1);
}

.counter-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.7rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.5))
          drop-shadow(0 0 24px rgba(59, 130, 246, 0.3));
  transition: filter var(--trans-med);
}

.counter-item:hover .counter-num {
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.7))
          drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
}

.counter-plus {
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: super;
  font-size: 1.2rem;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  display: block;
  margin-top: 0.4rem;
}

/* ================================================================
   9. SERVICES / PROGRAMS SECTION
================================================================ */
.services-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  padding: 2rem;
  transition: transform var(--trans-med), border-color var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
}

.service-card.glass-card::before { display: none; }

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cta-grad);
  transform: scaleX(0);
  transition: transform var(--trans-med);
  z-index: 1;
}

.service-card:hover { transform: translateY(-10px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(37, 99, 235, 0.35); box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12); }

.service-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--blue-dim);
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background var(--trans-fast), box-shadow var(--trans-fast), transform var(--trans-fast);
}

.service-card:hover .service-icon-wrap {
  background: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.service-icon { font-size: 1.5rem; }
.service-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 0.7rem; }
.service-desc  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.service-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-color: var(--blue-dim);
  border-radius: 100px;
  padding: 0.28rem 0.8rem;
  display: inline-block;
  border: 1px solid var(--border);
}

/* ================================================================
   10. MEMBERSHIP SECTION
================================================================ */
.membership-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.membership-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(29, 78, 216, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.membership-slider-wrap {
  position: relative;
  overflow: hidden;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.plan-card {
  padding: 2rem;
  position: relative;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.plan-featured {
  border-color: var(--blue) !important;
  background: linear-gradient(160deg,
    rgba(37, 99, 235, 0.09) 0%,
    rgba(29, 78, 216, 0.09) 50%,
    rgba(17, 17, 17, 0.92) 100%
  );
  box-shadow:
    0 0 50px rgba(37, 99, 235, 0.15),
    0 0 80px rgba(59, 130, 246, 0.1),
    0 0 0 1px rgba(37, 99, 235, 0.3);
  transform: scale(1.04);
}

.plan-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.3);
}

.featured-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-grad);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.32rem 1.2rem;
  border-radius: 0 0 10px 10px;
}

.save-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(96, 165, 250, 0.12);
  color: var(--cta);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
}

.save-badge-gold { background: rgba(96, 165, 250, 0.18); color: var(--cta); border-color: var(--cta); }

.plan-header { margin-bottom: 1.3rem; padding-top: 0.75rem; }
.plan-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.plan-featured .plan-name { background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.plan-price { display: flex; align-items: baseline; gap: 0.1rem; margin-bottom: 0.25rem; }
.currency { font-size: 1.2rem; color: var(--text-primary); font-weight: 700; }
.amount { font-family: var(--font-heading); font-weight: 700; font-size: 2.4rem; color: var(--text-primary); line-height: 1; }
.plan-featured .amount { background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-period { font-size: 0.72rem; color: var(--text-muted); }

.plan-features { flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: var(--text-muted); }
.plan-features li span { color: var(--blue-mid); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

.membership-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.membership-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
  padding: 0;
}

.membership-dot.active {
  background: var(--blue-mid);
  box-shadow: 0 0 8px var(--blue);
  transform: scale(1.3);
}

/* ================================================================
   11. TRANSFORMATION STATISTICS SECTION
================================================================ */
.stats-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(29, 78, 216, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-big-card {
  text-align: center;
  padding: 2.1rem 1.5rem;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.stat-big-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cta-grad);
  transform: scaleX(0);
  transition: transform var(--trans-med);
}

.stat-big-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18); }
.stat-big-card:hover::after { transform: scaleX(1); }

.stat-big-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.4));
  display: block;
  margin-bottom: 0.3rem;
}

.stat-big-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-big-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* ================================================================
   12. GALLERY SECTION — masonry-feel single-slide viewer
================================================================ */
.gallery-section {
  background: var(--bg-main);
  position: relative;
}

.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.gallery-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0;
}

.gslide {
  flex: 0 0 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-section);
  cursor: pointer;
  border: 1px solid var(--border-strong);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.12),
    0 0 40px rgba(37, 99, 235, 0.09),
    0 0 80px rgba(29, 78, 216, 0.06);
}

.gslide:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.3),
    0 0 60px rgba(37, 99, 235, 0.18),
    0 0 100px rgba(59, 130, 246, 0.12);
}

.gslide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.gslide-img {
  width: 100%;
  height: clamp(480px, 65vh, 720px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  will-change: transform;
}

.gslide:hover .gslide-img {
  transform: scale(1.04);
  filter: brightness(0.6);
}

.gslide-zoom-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(37, 99, 235, 0.1);
  border: none;
  cursor: pointer;
  color: white;
  opacity: 0;
  transition: opacity var(--trans-med), transform var(--trans-med);
  transform: scale(0.8);
  z-index: 3;
}

.gslide:hover .gslide-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.gslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(5,5,5,0.85);
  border: 1px solid var(--border-strong);
  color: var(--blue-mid);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  backdrop-filter: blur(10px);
}

.gslider-prev { left: 0.5rem; }
.gslider-next { right: 0.5rem; }

.gslider-btn:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

.gslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast), width var(--trans-fast);
  padding: 0;
}

.gslider-dot.active {
  background: var(--blue-mid);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--blue);
}

@media (min-width: 1025px) {
  .gallery-slider-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid var(--border-strong);
    box-shadow:
      0 0 0 1px rgba(37, 99, 235, 0.12),
      0 0 60px rgba(37, 99, 235, 0.16),
      0 0 100px rgba(59, 130, 246, 0.1);
  }

  .gslide {
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .gslide::after { border-radius: 0; }

  .gslide-img { height: 700px; }

  .gslider-btn { width: 58px; height: 58px; }

  .gslider-prev { left: 20px; }
  .gslider-next { right: 20px; }

  .gslider-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 20;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fade-in 0.2s ease;
}

.lightbox[hidden] { display: none; }
.lightbox-content { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.22);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--cta-grad);
  border-color: transparent;
  color: #fff;
}

/* ================================================================
   13. TESTIMONIALS SECTION — replaces Trainers entirely
================================================================ */
.testimonials-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-wrapper { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast), transform var(--trans-fast);
  overflow: visible;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-align: center;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text::before {
  content: open-quote;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.4));
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  justify-content: center;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cta-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}

.author-profession {
  font-size: 0.78rem;
  color: var(--blue-mid);
  font-weight: 500;
}

.author-since {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  color: var(--blue-mid);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast);
  line-height: 1;
}

.t-btn:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

.t-dots { display: flex; gap: 0.5rem; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast), width var(--trans-fast);
  padding: 0;
}

.t-dot.active {
  background: var(--blue-mid);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 6px var(--blue);
}

/* ================================================================
   14. MEMBERSHIP BENEFITS SECTION
================================================================ */
.benefits-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
  will-change: transform;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
}

.benefit-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), box-shadow var(--trans-fast);
}

.benefit-card:hover .benefit-icon {
  background: var(--purple-dim);
  box-shadow: 0 0 16px var(--purple-glow);
}

.benefit-title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.benefit-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ================================================================
   15. FAQ SECTION
================================================================ */
.faq-section {
  background: var(--bg-main);
  position: relative;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open { border-color: var(--border-strong); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 1.3rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--trans-fast);
}

.faq-question:hover { color: var(--blue-mid); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--blue-mid);
  transition: transform var(--trans-med), background var(--trans-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--cta-grad);
  border-color: transparent;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--trans-med);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem;
}

/* ================================================================
   16. MAP SECTION
================================================================ */
.map-section {
  background: var(--bg-main);
  padding: 3.5rem 0 0;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header .section-subtitle {
  margin-bottom: 1.5rem;
}

.map-open-btn {
  display: inline-flex;
  margin-top: 1rem;
}

.map-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-top: none;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.16),
    0 0 60px rgba(37, 99, 235, 0.09),
    0 0 100px rgba(59, 130, 246, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.map-container iframe {
  display: block;
  filter: grayscale(30%) brightness(0.75) saturate(0.9);
}

/* ================================================================
   17. CTA BANNER — luxury glowing banner
================================================================ */
.cta-banner {
  position: relative;
  background: var(--bg-section);
  padding: 5.5rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.1rem;
}

.cta-banner-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ================================================================
   18. CONTACT SECTION
================================================================ */
.contact-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }

.contact-card { padding: 1.85rem; display: flex; flex-direction: column; gap: 1.3rem; }

.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-mid);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item address { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.call-buttons { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.25rem; }

.contact-form { padding: 1.85rem; }

.form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 1.3rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-label span { color: var(--blue-mid); }

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 0.8rem 1.05rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(163, 163, 163, 0.45); }

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.09), 0 0 12px rgba(59, 130, 246, 0.06);
  background: rgba(37, 99, 235, 0.03);
}

select.form-input option { background: #111111; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-message {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.8rem;
  border-radius: 10px;
  display: none;
}

.form-message.success { display: block; background: rgba(37, 99, 235, 0.1); color: var(--blue-mid); border: 1px solid rgba(37, 99, 235, 0.3); }
.form-message.error   { display: block; background: rgba(255, 80, 80, 0.08); color: #ff6b6b; border: 1px solid rgba(255, 80, 80, 0.25); }

/* ================================================================
   19. FOOTER
================================================================ */
.footer {
  background: #020202;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo { margin-bottom: 0.6rem; }
.footer-tagline { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.6rem; }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-heading { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.82rem; color: var(--text-muted); transition: color var(--trans-fast); }
.footer-link:hover { color: var(--blue-mid); }

.social-links { display: flex; gap: 0.6rem; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--trans-fast), border-color var(--trans-fast), background var(--trans-fast);
}

.social-link:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue-dim);
  box-shadow: 0 0 16px var(--blue-glow);
}

.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-phone { color: var(--blue-mid); font-weight: 600; transition: color var(--trans-fast); }
.footer-phone:hover { color: var(--purple); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-seo-text { font-size: 0.72rem; color: rgba(163, 163, 163, 0.4); }

/* ================================================================
   20. SCROLL TO TOP
================================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--cta-grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.45);
  transition: transform var(--trans-fast), opacity var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  font-weight: 700;
}

.scroll-top-btn:not([hidden]) { display: flex; }
.scroll-top-btn[hidden]       { display: none; }
.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.65);
}

/* ================================================================
   21. SCROLL REVEAL
================================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed { opacity: 1; transform: translate(0); }

.animate-fade-in  { opacity: 0; animation: fade-in 0.9s ease forwards; }
.animate-slide-up { opacity: 0; transform: translateY(28px); animation: slide-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.50s; }

@keyframes fade-in  { to { opacity: 1; } }
@keyframes slide-up { to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   22. RESPONSIVE
================================================================ */

@media (max-width: 1024px) {
  .membership-grid    { grid-template-columns: repeat(2, 1fr); }
  .plan-featured      { transform: none; }
  .plan-featured:hover{ transform: translateY(-8px); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }

  .gslide { flex: 0 0 100%; }
  .gslide-img { height: 380px; }

  .testimonial-card { min-width: 100%; padding: 2.25rem; }
  .testimonial-text { font-size: 0.98rem; }
}

@media (max-width: 900px) {
  :root { --section-pad: 4rem 1.25rem; }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img  { height: 320px; }
  .about-badge-float { bottom: -1rem; right: -0.5rem; }
  .counters-row { grid-template-columns: repeat(2, 1fr); }
  .why-visual { order: -1; }

  .why-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .why-list-grid .why-item {
    padding: 0.9rem 1.05rem;
  }

  .gslider-prev { left: 0.25rem; }
  .gslider-next { right: 0.25rem; }

  .gallery-slider-track { padding: 0; }
  .gslide { flex: 0 0 100%; }

  .testimonial-card { padding: 2rem; }
}

@media (max-width: 640px) {
  :root { --section-pad: var(--section-pad-sm); }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--trans-med), opacity var(--trans-med);
    z-index: 999;
    pointer-events: none;
  }

  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav-link { padding: 0.8rem 1rem; border-radius: 8px; display: block; text-align: left; font-size: 0.95rem; }
  .nav-link:hover { background: var(--blue-dim); }

  .btn-call { display: block; text-align: center; margin-top: 0.5rem; border-radius: 10px; }

  .hero-title  { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-stats  { gap: 0.5rem; }
  .stat-card   { min-width: calc(50% - 0.4rem); padding: 0.7rem; }
  .hero-cta    { gap: 0.75rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card  { padding: 1.2rem; }
  .service-title { font-size: 1rem; }
  .service-desc  { font-size: 0.78rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-big-num { font-size: 2.5rem; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 0.9rem;
    gap: 0.6rem;
  }
  .benefit-title { font-size: 0.82rem; }
  .benefit-desc  { font-size: 0.72rem; }

  .membership-slider-wrap { overflow: visible; }
  .membership-grid {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    padding: 0 0 0.5rem;
  }
  .plan-card    { flex: 0 0 85vw; min-width: 0; }
  .plan-featured { transform: none; }
  .membership-dots { display: flex; }

  .gallery-slider-track { padding: 0; }
  .gslide { flex: 0 0 100%; }
  .gslide-img { height: 260px; }

  .gslider-prev { left: 0; }
  .gslider-next { right: 0; }
  .gslider-btn { width: 40px; height: 40px; font-size: 1.4rem; }

  .testimonial-card   { padding: 1.6rem 1.3rem; }
  .testimonial-text   { font-size: 0.9rem; }
  .testimonial-author { flex-direction: column; text-align: center; gap: 0.75rem; }
  .author-info        { text-align: center; }

  .why-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .why-list-grid .why-item {
    padding: 0.8rem 0.8rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .why-list-grid .why-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .why-item-title { font-size: 0.8rem; }
  .why-item-desc  { font-size: 0.74rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .about-badge-float { display: none; }
  .timings-card { flex-direction: column; gap: 0.9rem; }
  .timing-divider { width: 100%; height: 1px; }
  .counters-row   { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .counter-num    { font-size: 2.2rem; }

  .why-visual { order: -1; }
  .why-cta-card { padding: 1.6rem; }

  .contact-form { padding: 1.3rem; }

  .faq-question { padding: 1rem 1.25rem; font-size: 0.875rem; }
  .faq-answer { padding: 0 1.25rem; }
  .faq-item.open .faq-answer { padding: 0 1.25rem 1rem; }

  .map-container { border-radius: 14px; margin: 0 1rem; }
  .map-container iframe { height: 300px; }

  .cta-banner { padding: 3.5rem 1.25rem; }
  .cta-banner-title { font-size: clamp(1.5rem, 8vw, 2.2rem); }

  .scroll-top-btn { bottom: 1.25rem; right: 1.25rem; }

  .hidden-mobile { display: none; }

  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }

  .section-header { margin-bottom: 1.75rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.3rem, 12vw, 3.7rem); }
  .services-grid { grid-template-columns: 1fr; }
  .stat-card { min-width: calc(50% - 0.4rem); }
  .why-list-grid { grid-template-columns: 1fr; }
  .gslide { flex: 0 0 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .counter-item { animation: none; }
  .about-img-wrap { animation: none; }
}