/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #0f0f0f;
  --bg-card-hover: #151515;
  --accent: #ff0000;
  --accent-light: #ff3333;
  --accent-glow: rgba(255, 0, 0, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #1a1a1a;
  --border-light: #222222;
  --gradient-accent: linear-gradient(135deg, #ff0000, #ff4d4d);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  --font-heading: 'Bebas Neue', 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-card: 0 4px 30px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 50px var(--accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GLOBAL WAVES BACKGROUND ===== */
.global-waves {
  position: fixed; inset: 0; z-index: -1;
  width: 100vw; height: 100vh; overflow: hidden;
  background-color: transparent; pointer-events: none;
}
.waves-cursor {
  position: absolute; top: 0; left: 0;
  width: 0.5rem; height: 0.5rem;
  background-color: rgba(255, 0, 64, 0.2); /* var(--accent) with opacity */
  border-radius: 50%;
  transform: translate3d(calc(var(--x) - 50%), calc(var(--y) - 50%), 0);
  will-change: transform; pointer-events: none;
}
.global-waves canvas { display: block; width: 100%; height: 100%; pointer-events: none; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 56px; height: 56px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(10,10,10,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.navbar.scrolled {
  height: 58px;
  background: rgba(6,6,6,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  width: 100%;
  height: 100%;
}
.navbar .nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar .nav-logo img {
  height: 48px;           /* Standard: ~67% of navbar height — clean, proportional */
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo img {
  height: 38px;           /* Scales down when scrolled */
}
.navbar .nav-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(220, 38, 38, 0.5));
  transform: scale(1.04);
}
.navbar.scrolled .nav-logo:hover img {
  transform: scale(1.04);
}
.footer-logo {
  display: block;
}
.footer-logo img {
  height: 52px !important;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(220, 38, 38, 0.45));
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px; border-radius: 4px;
  background: var(--accent);
  color: white !important; font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 2px 16px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); background: var(--accent-light); }
.nav-cta::after { display: none !important; }

.nav-highlight {
  padding: 10px 22px;
  border-radius: 4px;
  background: rgba(0, 149, 255, 0.1);
  border: 2px solid rgba(0, 149, 255, 0.55);
  color: #00f0ff !important;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 12px rgba(0, 149, 255, 0.35);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: nav-blink-urgent 1.3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-highlight::after {
  display: none !important;
}
.nav-highlight:hover {
  background: rgba(0, 149, 255, 0.18);
  border-color: #00f0ff;
  color: white !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
  transform: translateY(-1.5px);
}
.nav-highlight .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00f0ff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00f0ff;
  animation: pulse-glow-blue 0.8s infinite alternate ease-in-out;
}

@keyframes pulse-glow-blue {
  0% { transform: scale(0.8); box-shadow: 0 0 4px #0072ff; }
  100% { transform: scale(1.3); box-shadow: 0 0 14px #00f0ff; }
}

@keyframes nav-blink-urgent {
  0%, 100% {
    border-color: rgba(0, 149, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 149, 255, 0.2);
    background: rgba(0, 149, 255, 0.08);
    transform: scale(1.0);
  }
  30% {
    border-color: #00f0ff;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.85), inset 0 0 8px rgba(0, 240, 255, 0.3);
    background: rgba(0, 149, 255, 0.25);
    transform: scale(1.03);
  }
  45% {
    border-color: rgba(0, 149, 255, 0.8);
    box-shadow: 0 0 16px rgba(0, 149, 255, 0.5);
    background: rgba(0, 149, 255, 0.18);
    transform: scale(1.0);
  }
  60% {
    border-color: #00f0ff;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.85), inset 0 0 8px rgba(0, 240, 255, 0.3);
    background: rgba(0, 149, 255, 0.25);
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .nav-highlight {
    font-size: 1.05rem !important;
    padding: 12px 28px;
    margin: 10px 0;
    border-width: 2px;
  }
}


/* ===== GLOBAL BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--accent-light);
  box-shadow: var(--shadow-glow);
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: #25d366 !important; /* WhatsApp Green */
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: #20ba5a !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
.btn-secondary svg {
  transition: transform 0.3s ease;
}
.btn-secondary:hover svg {
  transform: scale(1.1);
}

/* Hidden on desktop — shown only on mobile */
.mobile-calc-btn { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  width: 24px; height: 2px; background: var(--text-primary);
  transition: var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== CINEMATIC HIGH-OCTANE HERO ===== */
/* ===== SPLIT HERO LAYOUT (ANTIGRAVITY) ===== */
.cinematic-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-main-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.massive-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -1px;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 24px;
}

.hero-cta-group {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.cinema-btn {
  display: inline-block; padding: 24px 64px;
  background: var(--accent); color: #fff;
  font-family: var(--font-heading); font-weight: 900; font-style: italic;
  font-size: 2rem; letter-spacing: 2px; text-decoration: none;
  transform: skewX(-12deg);
  border-right: 4px solid #fff;
  box-shadow: 0 0 60px rgba(255,0,64,0.6);
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.cinema-btn span {
  display: block; transform: skewX(12deg); /* Un-skew text */
  position: relative; z-index: 2; transition: color 0.3s ease;
}

.btn-hover-layer {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: #fff; z-index: 1; transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.cinema-btn:hover .btn-hover-layer { left: 0; }
.cinema-btn:hover span { color: #030303; }
.cinema-btn:hover { box-shadow: 0 0 80px rgba(255,0,64,0.9); }

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000000;
  overflow: hidden;
}

.antigravity-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top; /* Locks Coach Mayur's face (top-right of photo) always in frame */
  opacity: 0.9;
  filter: contrast(1.05) brightness(0.85);
  transition: all 0.3s ease;
}

/* Antigravity Particles (Water Droplets) */
.droplets-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.droplet {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  filter: blur(0.5px);
  animation: float-up var(--duration) ease-in infinite;
  opacity: 0;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-20vh) scale(2); opacity: 0; }
}

/* Hero gradient: left half = solid black (hides CM, gives text space)
   Right half = transparent (reveals Coach Mayur clearly)
   Think of it as a curtain — CM is behind the black curtain, Coach Mayur steps out from it */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000000        0%,    /* solid black — left edge */
    #000000       38%,    /* still solid — covers CM completely */
    rgba(0,0,0,0.7) 52%,  /* soft transition zone */
    rgba(0,0,0,0.15) 68%, /* mostly clear — Coach Mayur visible */
    transparent    82%    /* fully transparent on far right */
  );
  z-index: 5;
  pointer-events: none;
}

/* Top fade — blends navbar into hero seamlessly */
.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
  z-index: 6;
  pointer-events: none;
}

/* Bottom fade — smooth dissolve into the next section */
.hero-edge-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.85) 70%,
    #000000 100%
  );
  z-index: 10;
  pointer-events: none;
}

.visual-overlay-gradient { display: none; }


/* Atmospheric Layers */
.cinema-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cinema-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(200%) brightness(0.2);
}
.cinema-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #030303 0%, transparent 50%, #030303 100%);
}
.noise-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.fire-layer {
  position: absolute; bottom: -20%; left: 10%; right: 10%; height: 50%;
  background: radial-gradient(ellipse at center, rgba(255,0,64,0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: fire-flicker 0.2s infinite alternate;
}
.glitch-overlay {
  position: absolute; inset: 0;
  border: 10px solid rgba(255,0,64,0.1);
  mix-blend-mode: color-dodge;
  animation: glitch-shake 0.1s infinite;
  pointer-events: none;
}

@keyframes fire-flicker {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
@keyframes glitch-shake {
  0% { transform: translate(0); }
  20% { transform: translate(-5px, 2px); }
  40% { transform: translate(-2px, -5px); }
  60% { transform: translate(5px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* Motion Streaks */
.motion-streaks {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.streak {
  position: absolute; height: 2px; width: 300px;
  background: linear-gradient(90deg, transparent, #ff0040, #fff);
  transform: skewX(-45deg);
  animation: streak-fly 0.6s linear infinite;
  opacity: 0;
}
.streak-1 { top: 20%; right: -300px; animation-delay: 0s; }
.streak-2 { top: 50%; right: -300px; animation-delay: 0.2s; width: 400px; background: linear-gradient(90deg, transparent, #fff, #fff); }
.streak-3 { top: 80%; right: -300px; animation-delay: 0.4s; }
.streak-4 { top: 35%; right: -300px; animation-delay: 0.1s; width: 200px; }

@keyframes streak-fly {
  0% { transform: translateX(0) skewX(-45deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-150vw) skewX(-45deg); opacity: 0; }
}

/* 3-Zone Layout */
.cinema-container {
  width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 40px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; gap: 40px;
}
.cinema-zone { display: flex; flex-direction: column; justify-content: center; }

/* Left Zone */
.cinema-left { align-items: flex-start; }
.pulse-bar {
  width: 80px; height: 3px; background: #ff0040; margin-bottom: 24px;
  box-shadow: 0 0 20px #ff0040;
  animation: pulse-glow 1.5s infinite alternate;
}
.cinema-sub {
  color: #fff; font-family: var(--font-body); font-weight: 900; font-style: italic;
  font-size: 1.1rem; letter-spacing: 0.6em; margin-bottom: 16px;
  text-transform: uppercase;
}
.cinema-title {
  color: #fff; font-family: var(--font-heading); font-weight: 900; font-style: italic;
  font-size: clamp(4rem, 8vw, 8rem); line-height: 0.85;
  text-shadow: 0 0 50px rgba(255,0,64,0.6);
  margin: 0; letter-spacing: -2px;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px #ff0040; }
  100% { box-shadow: 0 0 30px #ff0040, 0 0 50px #ff0040; }
}

/* Center Zone */
.cinema-center { align-items: center; text-align: center; }
.explosive-title {
  color: #fff; font-family: var(--font-heading); font-weight: 900; font-style: italic;
  font-size: clamp(3rem, 5vw, 6rem); line-height: 0.9;
  text-shadow: 0 0 30px rgba(255,0,64,0.4);
  margin-bottom: 40px; position: relative;
  animation: text-bounce 2s ease-in-out infinite;
}
.explosive-title::after {
  content: ''; position: absolute; inset: -20px; z-index: -1;
  background: rgba(255,0,64,0.2); filter: blur(30px); border-radius: 50%;
}
.impact-icons { display: flex; gap: 32px; }
.icon-pair {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: #fff; font-family: var(--font-body); font-weight: 900; font-size: 0.85rem;
  letter-spacing: 0.2em;
}
.icon-pair svg {
  width: 48px; height: 48px; color: #ff0040;
  filter: drop-shadow(0 0 10px rgba(255,0,64,0.8));
  animation: icon-pulse 2s infinite;
}

@keyframes text-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Right Zone */
.cinema-right { align-items: flex-end; text-align: right; }
.sys-tag {
  color: #fff; font-family: monospace; font-size: 1rem;
  letter-spacing: 2px; margin-bottom: 40px;
  opacity: 0.7;
}
.cinema-btn {
  display: inline-block; padding: 24px 64px;
  background: #ff0040; color: #fff;
  font-family: var(--font-heading); font-weight: 900; font-style: italic;
  font-size: 2rem; letter-spacing: 2px; text-decoration: none;
  transform: skewX(-12deg);
  border-right: 4px solid #fff;
  box-shadow: 0 0 60px rgba(255,0,64,0.6);
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 32px;
}
.cinema-btn span {
  display: block; transform: skewX(12deg); /* Un-skew text */
  position: relative; z-index: 2; transition: color 0.3s ease;
}
.btn-hover-layer {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: #fff; z-index: 1; transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cinema-btn:hover .btn-hover-layer { left: 0; }
.cinema-btn:hover span { color: #030303; }
.cinema-btn:hover { box-shadow: 0 0 80px rgba(255,0,64,0.9); }

.cinema-social {
  color: #fff; font-family: var(--font-body); font-weight: 900;
  font-size: 0.9rem; letter-spacing: 0.4em; text-decoration: none;
  transition: color 0.3s ease; border-bottom: 1px solid transparent;
}
.cinema-social:hover { color: #ff0040; border-color: #ff0040; }

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent); margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 32px; height: 2px; background: var(--accent);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400; letter-spacing: 3px; margin-bottom: 16px;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid { max-width: 800px; margin: 0 auto; }
.about-image {
  position: relative; border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 480px; object-fit: cover;
  display: block;
  filter: brightness(1.2) contrast(1.1);
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 400; letter-spacing: 2px; margin-bottom: 20px;
  text-transform: uppercase;
}
.about-content h2 span { color: var(--accent); }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1rem; }
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.credential-tag {
  padding: 8px 18px; border-radius: 4px;
  background: rgba(212,31,46,0.1);
  border: 1px solid rgba(212,31,46,0.3);
  font-size: 0.75rem; font-weight: 700; color: var(--accent-light);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 8px 40px rgba(212,31,46,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(212,31,46,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--accent);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 400; margin-bottom: 12px;
  letter-spacing: 1px; text-transform: uppercase;
}
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ===== PHILOSOPHY ===== */
.philosophy { background: var(--bg-secondary); }
.philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.philosophy-card {
  text-align: center; padding: 48px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--bg-primary);
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.philosophy-number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900; color: var(--accent);
  line-height: 1; margin-bottom: 16px;
  opacity: 0.3;
}
.philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 400; margin-bottom: 10px;
  letter-spacing: 1px; text-transform: uppercase;
}
.philosophy-card p { color: var(--text-secondary); font-size: 0.85rem; }

/* ===== RESULTS / TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); }
.testimonial-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery { background: var(--bg-primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  opacity: 0;
  z-index: 2;
  transition: var(--transition);
}
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  transform: translateY(12px);
  transition: var(--transition);
}
.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400; letter-spacing: 3px; margin-bottom: 20px;
  text-transform: uppercase;
}
.cta-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-inline: auto; }

/* ===== INSTAGRAM REELS CAROUSEL ===== */
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}
.ig-follow-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.55);
}
.ig-follow-btn svg {
  flex-shrink: 0;
}


/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem; font-weight: 400; margin-bottom: 16px; letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-info > p { color: var(--text-secondary); margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(212,31,46,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-detail-text p { font-size: 0.9rem; color: var(--text-secondary); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 16px 36px; border-radius: 4px;
  background: var(--accent);
  color: white; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--accent-glow);
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); background: var(--accent-light); }

/* ===== MAP CONTAINER ===== */
.map-wrapper {
  margin-top: 56px;
  width: 100%;
}
.map-container {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  filter: invert(90%) hue-rotate(180deg) grayscale(100%) contrast(1.2);
  transition: var(--transition);
}
.map-container:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.map-container:hover iframe {
  filter: invert(90%) hue-rotate(180deg) grayscale(80%) contrast(1.2);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 10;
  margin-top: -80px; /* Overlap hero */
}
.trust-grid {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-primary); font-family: var(--font-heading);
  font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase;
}
.trust-item svg { width: 24px; height: 24px; color: var(--accent); }

/* ===== PROBLEM -> SOLUTION ===== */
.pain-points { padding-top: 160px; }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.pain-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.pain-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(212,31,46,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 8px;
}
.pain-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
}
.pain-card p { color: var(--text-secondary); font-size: 0.95rem; }
.solution-banner {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.solution-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.solution-banner p {
  font-size: 1.25rem; font-weight: 500; margin-bottom: 24px;
  position: relative; z-index: 2;
}
.solution-banner p span { color: var(--accent-light); font-weight: 700; }
.solution-banner .btn-primary {
  position: relative; z-index: 2;
}
.solution-line { width: 60px; height: 3px; background: var(--accent); margin: 0 auto 24px; position: relative; z-index: 2; }

/* ===== AUTHORITY ===== */
.authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.authority-card {
  text-align: center; padding: 48px 32px;
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.authority-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(212,31,46,0.1); }
.authority-photo {
  width: 100%; aspect-ratio: 4/5; margin-bottom: 24px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border-light);
}
.authority-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(1.1) contrast(1.1);
}
.authority-card:hover .authority-photo img { transform: scale(1.05); }
.authority-card h3 {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.authority-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.step-card { position: relative; padding-top: 24px; }
.step-number {
  font-family: var(--font-heading); font-size: 3.5rem; font-weight: 400;
  color: var(--accent); opacity: 0.2; line-height: 1;
  position: absolute; top: -10px; left: 0; z-index: 0;
}
.step-connector {
  position: absolute; top: 40px; right: -20px; width: 40px; height: 2px;
  background: var(--border-light); z-index: 1;
}
.step-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  position: relative; z-index: 2; padding-top: 24px;
}
.step-card p { color: var(--text-secondary); font-size: 0.95rem; position: relative; z-index: 2; }

/* ===== FLOATING ACTION BUTTONS (WhatsApp + Instagram) ===== */
.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
  cursor: pointer;
}

.fab:hover {
  transform: scale(1.12) translateY(-2px);
}

/* Tooltip label — slides in from the right on hover */
.fab-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: rgba(15,15,15,0.92);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.fab:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp — official green */
.fab-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}
.fab-whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

/* Pulse ring on WhatsApp */
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fab-pulse 2s ease-out infinite;
}

/* Instagram — official gradient */
.fab-instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285AEB 90%);
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.45);
}
.fab-instagram:hover {
  box-shadow: 0 8px 32px rgba(214, 36, 159, 0.65);
}

/* Pulse ring on Instagram */
.fab-instagram::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #d6249f;
  animation: fab-pulse 2s ease-out infinite;
  animation-delay: 1s;
}

/* YouTube — official red */
.fab-youtube {
  background: #FF0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.45);
}
.fab-youtube:hover {
  box-shadow: 0 8px 32px rgba(255, 0, 0, 0.65);
}

/* Pulse ring on YouTube */
.fab-youtube::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #FF0000;
  animation: fab-pulse 2s ease-out infinite;
  animation-delay: 0.5s;
}

@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.5);  opacity: 0;   }
  100% { transform: scale(1.5);  opacity: 0;   }
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px; color: var(--text-primary);
}
.footer-col a {
  display: block; color: var(--text-secondary);
  font-size: 0.9rem; margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text-secondary);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); background: rgba(212,31,46,0.1); }
.social-links a svg { width: 18px; height: 18px; }

/* ===== SPORTS MARQUEE ===== */
.sports-marquee {
  width: 100%; overflow: hidden;
  background: rgba(212, 31, 46, 0.06);
  border-top: 1px solid rgba(212, 31, 46, 0.15);
  border-bottom: 1px solid rgba(212, 31, 46, 0.15);
  padding: 16px 0; margin: 32px 0;
  display: flex; white-space: nowrap;
}
.marquee-content {
  display: inline-flex; align-items: center; gap: 24px;
  animation: scroll-left 30s linear infinite;
  padding-left: 24px;
}
.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px;
}
.marquee-content span:nth-child(even) { opacity: 0.4; font-size: 0.8rem; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== REELS ===== */
.reels-scroller {
  display: flex; gap: 24px; overflow-x: auto;
  padding-bottom: 24px; margin-top: 40px;
  scrollbar-width: thin; scrollbar-color: var(--accent) var(--bg-card);
  scroll-snap-type: x mandatory;
}
.reels-scroller::-webkit-scrollbar { height: 8px; }
.reels-scroller::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 10px; }
.reels-scroller::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
.reel-container {
  flex: 0 0 auto; width: 320px;
  background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden;
  scroll-snap-align: start; box-shadow: var(--shadow-card);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cinema-container { grid-template-columns: 1fr; text-align: center; gap: 64px; }
  .cinema-left, .cinema-right { align-items: center; text-align: center; }
  .cinema-title { font-size: 5rem; }
  .streak { display: none; } /* Hide streaks on smaller screens to reduce clutter */
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .authority-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {

  /* ── MOBILE CALCULATOR SHORTCUT (beside hamburger) ── */
  .mobile-calc-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1.5px solid rgba(0, 149, 255, 0.55);
    border-radius: 16px;
    background: rgba(0, 149, 255, 0.1);
    color: #00d4ff;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    z-index: 10001;
    transition: all 0.2s ease;
    animation: calc-btn-glow 2s ease-in-out infinite alternate;
  }
  .mobile-calc-btn svg {
    display: none;   /* Hide icon — text is self-explanatory now */
  }
  .mobile-calc-btn:active {
    background: rgba(0, 149, 255, 0.25);
    transform: scale(0.95);
  }
  @keyframes calc-btn-glow {
    0%   { box-shadow: 0 0 6px rgba(0, 149, 255, 0.2); }
    100% { box-shadow: 0 0 14px rgba(0, 149, 255, 0.5); }
  }

  /* ── MOBILE NAV MENU (Apple/Nike-style) ─────────── */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: #000000 !important;
    background-color: #000000 !important;
    opacity: 1 !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    z-index: 10000;
    padding: 80px 0 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active {
    display: flex !important;
  }

  /* Each link = full-width row with solid background for readability */
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff !important;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none !important;
    transition: background 0.15s ease;
    width: 100%;
    box-sizing: border-box;
    background: #111111 !important;
    border-radius: 0;
    max-width: none;
    text-align: left;
  }
  .nav-links a:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links a:active {
    background: #222222 !important;
  }
  /* Chevron arrow on right side of each row */
  .nav-links a::after {
    content: '›' !important;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    display: block !important;
  }

  /* Athlete Calculators — blue accent row */
  .nav-links .nav-highlight {
    color: #00d4ff !important;
    background: rgba(0, 149, 255, 0.06) !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 149, 255, 0.15) !important;
    border-radius: 0 !important;
    padding: 16px 28px !important;
    font-weight: 600;
    box-shadow: none !important;
    animation: none !important;
    width: 100% !important;
    max-width: none !important;
  }
  .nav-links .nav-highlight .pulse-dot {
    width: 6px;
    height: 6px;
    margin-right: 4px;
  }
  .nav-links .nav-highlight::after {
    content: '›' !important;
    font-size: 1.4rem;
    color: rgba(0, 200, 255, 0.4);
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
  }

  /* Get Started — accent CTA separated at bottom */
  .nav-links .nav-cta {
    margin: 24px 28px 0 !important;
    width: auto !important;
    border-radius: 8px !important;
    padding: 14px 0 !important;
    text-align: center;
    justify-content: center;
    font-size: 0.82rem !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: none !important;
  }
  .nav-links .nav-cta::after {
    display: none !important;
  }

  /* ── HAMBURGER ──────────────────────────────────── */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
  }

  /* ── NAVBAR on mobile — above menu overlay ──────── */
  .navbar {
    z-index: 10001 !important;
    background: #000000 !important;
    backdrop-filter: none !important;
  }

  /* ── LOGO ───────────────────────────────────────── */
  .nav-logo { width: auto; }
  .nav-logo img {
    height: 34px !important;
    transform: none !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.95 !important;
  }

  /* ── MOBILE HERO ────────────────────────────────── */
  .cinematic-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;     /* Push content toward bottom */
    align-items: stretch;
    padding-bottom: 48px !important;
  }

  /* Background image: full-bleed, fills entire hero */
  .hero-video-bg {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    width: 100% !important;
    z-index: 1;
  }
  .hero-video-bg img,
  .antigravity-asset {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 75% top !important;  /* Show Coach Mayur (right side) with face at top */
    position: absolute !important;
    inset: 0 !important;
  }

  /* Vignette: combined horizontal left-fade + vertical bottom-fade */
  .hero-vignette {
    background:
      /* Left-to-right: hides CM on the left */
      linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 35%,
        rgba(0,0,0,0.2) 60%,
        transparent 80%
      ),
      /* Top-to-bottom: fades the bottom for text legibility */
      linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(0,0,0,0.5) 65%,
        rgba(0,0,0,0.9) 85%,
        #000000 100%
      ) !important;
  }

  .hero-top-fade {
    height: 100px !important;
  }
  .hero-edge-fade {
    height: 25vh !important;
  }

  /* Disable heavy/flickering hero effects on mobile */
  .glitch-overlay {
    display: none !important;
  }
  .fire-layer {
    display: none !important;
  }
  .noise-overlay {
    display: none !important;
  }
  .motion-streaks {
    display: none !important;
  }

  /* Hero text content — sits at the bottom of the hero over the fade */
  .hero-main-content {
    align-items: center !important;
    text-align: center !important;
    padding: 0 20px !important;
    margin-top: auto !important;   /* Push to bottom via flexbox */
    padding-bottom: 10px !important;
    z-index: 20;
  }

  /* Scale down hero text for mobile */
  .massive-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem) !important;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 90vw;
  }

  /* CTA buttons — scale down, no overflow */
  .hero-cta-group {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100%;
  }
  .cinema-btn {
    font-size: 1.1rem !important;
    padding: 14px 36px !important;
    width: auto;
    max-width: 80vw;
  }
  .cinema-social {
    font-size: 0.85rem !important;
  }

  /* ── MOBILE LAYOUT OVERRIDES ────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .trust-grid { flex-direction: column; align-items: center; text-align: center; }
  .pain-grid, .authority-grid, .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .reel-embed { width: 280px; height: 497px; }
  .ig-follow-btn { font-size: 0.9rem; padding: 12px 24px; }

  /* ── MOBILE FAB BUTTONS ─────────────────────────── */
  .fab-stack {
    bottom: 20px !important;
    right: 16px !important;
    gap: 12px !important;
  }
  .fab {
    width: 48px !important;
    height: 48px !important;
  }
  .fab svg {
    width: 22px !important;
    height: 22px !important;
  }
  .fab-label {
    display: none !important;   /* No tooltips on touch — they don't work */
  }
}

/* ===== DYNAMIC RESULTS CALCULATOR ===== */
.sport-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sport-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.18rem; /* Dramatically enlarged tab font size */
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.sport-tab:hover, .sport-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.sport-sub-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.sport-sub-tabs .sport-tab {
  font-size: 0.95rem; /* Hierarchy: slightly smaller for sub-tabs */
  padding: 10px 22px;
}
.sport-sub-tabs .sport-tab:hover, .sport-sub-tabs .sport-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 10px var(--accent-glow);
}
.calc-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.calc-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-left h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-left p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.slider-wrapper {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
}
.slider-val-display {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 20px;
}
.slider-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== GRAPHIC PREMIUM SLIDERS ===== */
.slider-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-val-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.slider-val-wrapper label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.slider-display-val {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: bold;
  color: var(--accent-light);
  background: rgba(212, 31, 46, 0.12);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(212, 31, 46, 0.35);
  box-shadow: 0 0 10px rgba(212, 31, 46, 0.2);
  text-shadow: 0 0 4px rgba(212, 31, 46, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-group:hover .slider-display-val {
  background: rgba(212, 31, 46, 0.2);
  border-color: rgba(212, 31, 46, 0.6);
  box-shadow: 0 0 14px rgba(212, 31, 46, 0.35);
}

/* Custom premium styling for all range inputs */
.slider-group input[type="range"],
.slider-wrapper input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-group input[type="range"]:hover,
.slider-wrapper input[type="range"]:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Webkit (Chrome, Safari, Edge, Opera) Thumb & Track styling */
.slider-group input[type="range"]::-webkit-slider-runnable-track,
.slider-wrapper input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
}
.slider-group input[type="range"]::-webkit-slider-thumb,
.slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px rgba(212, 31, 46, 0.9), 0 0 24px rgba(212, 31, 46, 0.5);
  cursor: pointer;
  margin-top: -7px; /* Offset to center thumb vertically */
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}
.slider-group input[type="range"]::-webkit-slider-thumb:hover,
.slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.22);
  background: #ffffff;
  box-shadow: 0 0 16px rgba(212, 31, 46, 1.0), 0 0 32px rgba(212, 31, 46, 0.7);
}
.slider-group input[type="range"]::-webkit-slider-thumb:active,
.slider-wrapper input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.3);
  background: #ffffff;
  box-shadow: 0 0 22px rgba(212, 31, 46, 1.0), 0 0 44px rgba(212, 31, 46, 0.9);
}

/* Firefox Thumb & Track styling */
.slider-group input[type="range"]::-moz-range-track,
.slider-wrapper input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.slider-group input[type="range"]::-moz-range-thumb,
.slider-wrapper input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px rgba(212, 31, 46, 0.9), 0 0 24px rgba(212, 31, 46, 0.5);
  cursor: pointer;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background-color 0.2s ease;
}
.slider-group input[type="range"]::-moz-range-thumb:hover,
.slider-wrapper input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.22);
  background: #ffffff;
  box-shadow: 0 0 16px rgba(212, 31, 46, 1.0), 0 0 32px rgba(212, 31, 46, 0.7);
}
.slider-group input[type="range"]::-moz-range-thumb:active,
.slider-wrapper input[type="range"]::-moz-range-thumb:active {
  transform: scale(1.3);
  background: #ffffff;
  box-shadow: 0 0 22px rgba(212, 31, 46, 1.0), 0 0 44px rgba(212, 31, 46, 0.9);
}
.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.result-card {
  background: var(--bg-primary);
  border: 1px solid rgba(212, 31, 46, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 16px var(--accent-glow);
  opacity: 0.3;
  pointer-events: none;
}
.result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.result-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.result-gains-percent {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-divider {
  border: 0;
  height: 1px;
  background: var(--border-light);
  margin: 28px 0;
}
.athletic-bonus {
  text-align: left;
  margin-bottom: 32px;
}
.athletic-bonus h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.athletic-bonus ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.calc-cta {
  width: 100%;
}

/* ===== INTERACTIVE BLUEPRINT ===== */
.phase-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.phase-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase-tab .phase-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-muted);
  opacity: 0.3;
  line-height: 1;
}
.phase-tab .phase-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.phase-tab .phase-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.phase-tab:hover, .phase-tab.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(212, 31, 46, 0.15);
}
.phase-tab.active {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 31, 46, 0.08) 100%);
}
.phase-tab.active .phase-num {
  color: var(--accent);
  opacity: 1;
}
.phase-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.phase-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.phase-header-row h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phase-tag {
  background: rgba(212, 31, 46, 0.12);
  color: var(--accent-light);
  border: 1px solid rgba(212, 31, 46, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phase-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 850px;
}
.phase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--bg-primary);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.metric-bullet {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.metric-bullet strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* ===== FAQ ACCORDIONS ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.faq-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(212, 31, 46, 0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin: 0;
  transition: var(--transition);
}
.faq-card:hover .faq-question h3 {
  color: var(--accent-light);
}
.faq-toggle-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-card.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-light);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
}
.faq-card.active .faq-answer {
  max-height: 250px;
  padding-bottom: 28px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== INTERACTIVE SECTIONS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .calc-box { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .phase-tabs { grid-template-columns: repeat(2, 1fr); }
  .phase-metrics { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
}
@media (max-width: 768px) {

  /* ── CALCULATOR TABS ─────────────────────────────── */
  .sport-tabs {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
  }
  .sport-tab {
    font-size: 0.78rem !important;
    padding: 12px 16px !important;
    text-align: center;
    width: 100% !important;
    box-sizing: border-box;
  }
  .sport-sub-tabs {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  .sport-sub-tabs .sport-tab {
    font-size: 0.7rem !important;
    padding: 8px 12px !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  /* ── CALCULATOR BOX ──────────────────────────────── */
  .calc-box {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 16px !important;
    border-radius: 12px !important;
  }
  .calculator-section .calc-box {
    padding: 16px !important;
  }

  /* ── CALCULATOR LEFT (inputs area) ───────────────── */
  .calc-left {
    width: 100% !important;
  }
  .calc-left h3 {
    font-size: 1.15rem !important;
    margin-bottom: 4px;
  }
  .calc-left p {
    font-size: 0.82rem !important;
    margin-bottom: 12px;
  }

  /* ── FORM ROWS: force single column (overrides inline styles) ── */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* ── SLIDERS ─────────────────────────────────────── */
  .slider-group {
    padding: 10px !important;
  }
  .slider-val-wrapper {
    flex-wrap: nowrap;
  }
  .slider-val-wrapper label {
    font-size: 0.78rem !important;
  }
  .slider-display-val {
    font-size: 0.85rem !important;
    padding: 3px 10px !important;
  }
  .slider-bounds {
    font-size: 0.65rem !important;
  }
  .slider-bounds span {
    font-size: 0.65rem !important;
  }

  /* ── SELECT & INPUT ──────────────────────────────── */
  .calc-box select,
  .calc-box input[type="text"],
  .calc-box input[type="number"] {
    font-size: 0.85rem !important;
    padding: 10px !important;
  }
  .form-group label {
    font-size: 0.78rem !important;
  }

  /* ── RESULT CARD ─────────────────────────────────── */
  .calc-right {
    width: 100% !important;
  }
  .result-card {
    padding: 20px !important;
  }
  .result-label {
    font-size: 0.7rem !important;
  }
  .result-value {
    font-size: 2.2rem !important;
  }
  .result-gains-percent {
    font-size: 0.85rem !important;
  }
  .athletic-bonus {
    padding-top: 12px !important;
  }
  .athletic-bonus h4 {
    font-size: 0.75rem !important;
  }
  .athletic-bonus ul {
    font-size: 0.78rem !important;
  }
  .athletic-bonus h2 {
    font-size: 1.5rem !important;
  }

  /* ── CALCULATOR CTA BUTTON ──────────────────────── */
  .calculator-section .btn-primary.calc-cta {
    font-size: 0.75rem !important;
    padding: 12px 24px !important;
  }

  /* ── SECTION HEADER ─────────────────────────────── */
  .calculator-section .section-title {
    font-size: 1.4rem !important;
  }
  .calculator-section .section-subtitle {
    font-size: 0.85rem !important;
  }

  /* ── PHASE TABS & FAQ ───────────────────────────── */
  .phase-tabs { grid-template-columns: 1fr; }
  .phase-content-box { padding: 28px; }
  .phase-header-row h3 { font-size: 1.6rem; }
  .faq-question { padding: 20px 24px; }
  .faq-answer { padding: 0 24px; }
  .faq-card.active .faq-answer { padding-bottom: 20px; }
  .faq-question h3 { font-size: 1.1rem; }
}

/* ===== NAVIGATION BLINKING BREATHING EFFECT ===== */
@keyframes nav-blink {
  0%, 100% {
    border-color: rgba(212, 31, 46, 0.4);
    box-shadow: 0 0 8px rgba(212, 31, 46, 0.15);
    background: rgba(212, 31, 46, 0.06);
  }
  50% {
    border-color: rgba(212, 31, 46, 1.0);
    box-shadow: 0 0 16px rgba(212, 31, 46, 0.5), inset 0 0 6px rgba(212, 31, 46, 0.15);
    background: rgba(212, 31, 46, 0.16);
  }
}

/* ===== ABOUT SECTION ENHANCEMENTS ===== */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  width: 100%;
}
.about-pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 31, 46, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}
.about-pillar-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 32px rgba(212, 31, 46, 0.15);
  transform: translateY(-2px);
  background: rgba(212, 31, 46, 0.02);
}
.about-pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(212, 31, 46, 0.2);
  padding-bottom: 12px;
}
.about-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-pillar-card li {
  font-size: 0.96rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.about-pillar-card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}
.about-pillar-card li.highlight-item {
  color: var(--text-primary);
  font-weight: 600;
}
.about-pillar-card li.highlight-item::before {
  content: '🔥';
}
.lead-text {
  font-size: 1.25rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-motto {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  width: 100%;
}
.about-motto span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
}
.about-motto span:nth-child(2) {
  color: var(--accent-light);
  text-shadow: 0 0 12px rgba(212, 31, 46, 0.5);
}
.about-motto span:nth-child(3) {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(212, 31, 46, 0.8);
}
@media (max-width: 1024px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-motto {
    gap: 20px;
    margin-top: 36px;
  }
  .about-motto span {
    font-size: 1.3rem;
  }
}

/* ===== FUTURISTIC ATHLETIC CYBER-BLUE TELEMETRY HUB ===== */
.calculator-section {
  background: linear-gradient(135deg, #05070f 0%, #060b1b 50%, #05070f 100%) !important;
  position: relative;
  border-top: 2px solid rgba(0, 149, 255, 0.4);
  border-bottom: 2px solid rgba(0, 149, 255, 0.4);
  box-shadow: inset 0 0 100px rgba(0, 149, 255, 0.08);
  overflow: hidden;
  padding: 100px 0;
}

/* Cybernetic Blue Grid Overlay */
.calculator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 149, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 149, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

/* Make sure container sits above grid overlay */
.calculator-section .container {
  position: relative;
  z-index: 2;
}

/* Category selector tabs in Blue Theme */
.calculator-section .main-calc-tabs .sport-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}
.calculator-section .main-calc-tabs .sport-tab:hover {
  background: rgba(0, 149, 255, 0.1);
  border-color: rgba(0, 149, 255, 0.4);
  color: var(--text-primary);
}
.calculator-section .main-calc-tabs .sport-tab.active {
  background: #0072ff;
  border-color: #0072ff;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.45);
}

/* Sub-tabs in Blue Theme */
.calculator-section .sport-sub-tabs .sport-tab:hover, 
.calculator-section .sport-sub-tabs .sport-tab.active {
  background: #0072ff;
  border-color: #0072ff;
  box-shadow: 0 2px 10px rgba(0, 114, 255, 0.3);
}

/* Blue console bezel calculator cards */
.calculator-section .calc-box {
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 149, 255, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.65), 
    0 0 40px rgba(0, 149, 255, 0.06),
    inset 0 0 20px rgba(0, 149, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.calculator-section .calc-box:hover {
  border-color: rgba(0, 149, 255, 0.6);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.75), 
    0 0 50px rgba(0, 149, 255, 0.22),
    inset 0 0 30px rgba(0, 149, 255, 0.06);
}

/* Blue Console Scanline */
.calculator-section .calc-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  animation: console-scan 4.5s infinite linear;
  opacity: 0.65;
  pointer-events: none;
}

/* Slider values display in Blue */
.calculator-section .slider-display-val {
  color: #00f0ff;
  background: rgba(0, 149, 255, 0.08);
  border: 1px solid rgba(0, 149, 255, 0.35);
  box-shadow: 0 0 10px rgba(0, 149, 255, 0.15);
  text-shadow: 0 0 4px rgba(0, 240, 255, 0.3);
}
.calculator-section .slider-group:hover .slider-display-val {
  background: rgba(0, 149, 255, 0.15);
  border-color: rgba(0, 149, 255, 0.55);
  box-shadow: 0 0 14px rgba(0, 149, 255, 0.25);
}

/* Slider track and thumbs in blue */
.calculator-section input[type="range"]::-webkit-slider-thumb {
  background: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 149, 255, 0.9), 0 0 24px rgba(0, 149, 255, 0.5);
}
.calculator-section input[type="range"]::-webkit-slider-thumb:hover {
  background: #ffffff;
  box-shadow: 0 0 16px rgba(0, 149, 255, 1.0), 0 0 32px rgba(0, 149, 255, 0.7);
}
.calculator-section input[type="range"]::-webkit-slider-thumb:active {
  background: #ffffff;
  box-shadow: 0 0 22px rgba(0, 149, 255, 1.0), 0 0 44px rgba(0, 149, 255, 0.9);
}

.calculator-section input[type="range"]::-moz-range-thumb {
  background: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 149, 255, 0.9), 0 0 24px rgba(0, 149, 255, 0.5);
}
.calculator-section input[type="range"]::-moz-range-thumb:hover {
  background: #ffffff;
  box-shadow: 0 0 16px rgba(0, 149, 255, 1.0), 0 0 32px rgba(0, 149, 255, 0.7);
}
.calculator-section input[type="range"]::-moz-range-thumb:active {
  background: #ffffff;
  box-shadow: 0 0 22px rgba(0, 149, 255, 1.0), 0 0 44px rgba(0, 149, 255, 0.9);
}

/* Color thematic highlights inside cards */
.calculator-section .result-card {
  border: 1px solid rgba(0, 149, 255, 0.25);
}
.calculator-section .result-card::before {
  box-shadow: inset 0 0 16px rgba(0, 149, 255, 0.3);
}
.calculator-section .result-value {
  color: #00f0ff !important;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}
.calculator-section .result-gains-percent {
  color: #00a2ff !important;
}
.calculator-section .athletic-bonus {
  border-top-color: rgba(0, 149, 255, 0.2);
}
.calculator-section .athletic-bonus h2 {
  color: #00f0ff !important;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.calculator-section .btn-primary.calc-cta {
  background: #0072ff;
  border-color: #0072ff;
  box-shadow: 0 4px 16px rgba(0, 114, 255, 0.3);
}
.calculator-section .btn-primary.calc-cta:hover {
  background: #0084ff;
  border-color: #0084ff;
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.5);
}

@keyframes console-scan {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}


