/* ══════════════════════════════════════════════════════════════
   ISM v2 - IMPORT SPORTS MANAGEMENT
   Cinematic Ice / Luxury Sports Editorial / Award-Winning
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Dark palette (for accent sections) */
  --black: #050709;
  --deep: #080c14;
  --surface-dark: #0d1320;
  --card-dark: #111928;
  /* Light palette (main body) */
  --bg: #ffffff;
  --bg-off: #f7f8fa;
  --surface: #ffffff;
  --card: #f7f8fa;
  --card-hover: #eef0f4;
  --border: rgba(0,0,0,0.09);
  --border-light: rgba(0,0,0,0.05);
  /* Accent colors */
  --ice: #1a8fb4;
  --ice-bright: #2ba5cc;
  --ice-pale: #9fe2f9;
  --ice-glow: rgba(26,143,180,0.08);
  --ice-glow-strong: rgba(26,143,180,0.15);
  --gold: #c99b2e;
  --gold-soft: rgba(201,155,46,0.08);
  --silver: #c0c8d4;
  /* Text colors */
  --white: #111827;
  --muted: #5b6370;
  --text: #3d4754;
  /* Fonts & easing */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Mulish', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark section overrides */
.dark-section {
  --surface: #0d1320;
  --card: #111928;
  --card-hover: #162032;
  --bg: #0a0c12;
  --bg-off: #0d1017;
  --border: rgba(255,255,255,0.04);
  --border-light: rgba(255,255,255,0.07);
  --white: #f2f4f8;
  --muted: #6b7a8d;
  --text: #8d9db0;
  --ice: #4db8d9;
  --ice-bright: #6dcfef;
  --ice-glow: rgba(77,184,217,0.1);
  --gold: #e0b44f;
  background: var(--black);
  color: var(--text);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--ice) var(--bg-off);
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  background-color: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* Remove dark atmosphere - not needed on white */

/* Flowing gradient orbs that sit between sections */
.flow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

/* Premium text selection */
::selection { background: rgba(107,188,216,0.3); color: var(--white); }

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 2px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--ice); border-radius: 10px; }
::selection { background: var(--ice); color: var(--black); }

.container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px) { .container { padding: 0 20px; } }

/* ══════════════════════════════════════════════════════════════
   CURSOR GLOW
   ══════════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,143,180,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #050709;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 1s ease, visibility 1s;
  overflow: hidden;
}
.loader::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(77,184,217,0.06), transparent 70%);
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { position: relative; z-index: 2; text-align: center; }

.loader-eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #4db8d9;
  opacity: 0;
  animation: loaderFadeUp 0.6s 0.2s var(--ease-out) forwards;
  margin-bottom: 16px;
}
.loader-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 72px);
  letter-spacing: 6px;
  color: #f2f4f8;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.8s 0.4s var(--ease-out) forwards;
  line-height: 1;
}
.loader-title .ice-text { color: #4db8d9; }
.loader-title::after {
  content: '';
  position: absolute; top: 0; left: -100%; bottom: 0; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(77,184,217,0.4), transparent);
  animation: loaderSweep 1.4s 0.8s forwards;
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(141,157,176,0.6);
  margin-top: 20px;
  opacity: 0;
  animation: loaderFadeUp 0.6s 0.7s var(--ease-out) forwards;
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderSweep {
  to { left: 200%; }
}
.loader-bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 28px auto 0;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.4s 0.6s var(--ease-out) forwards;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4db8d9, #6dcfef);
  width: 0%;
  animation: loaderFill 1.6s 0.6s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 32px;
  opacity: 0;
  animation: loaderFadeUp 0.4s 0.8s var(--ease-out) forwards;
}
.loader-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(77,184,217,0.3);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 100% { background: rgba(77,184,217,0.2); transform: scale(1); }
  50% { background: rgba(77,184,217,0.8); transform: scale(1.4); }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(5,7,9,0.6) 0%, rgba(5,7,9,0) 100%);
  transition: all 0.5s var(--ease-out);
}
.nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,184,217,0.4), rgba(107,188,216,0.6), rgba(77,184,217,0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled {
  background: rgba(8,10,14,0.88);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(77,184,217,0.06), 0 8px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; position: relative;
}
.nav-logo-mark {
  display: none;
}
.nav-logo-text {
  display: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(107,188,216,0.4)) drop-shadow(0 0 24px rgba(107,188,216,0.15));
  transition: all 0.5s var(--ease-out);
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 14px rgba(107,188,216,0.55)) drop-shadow(0 0 32px rgba(107,188,216,0.2));
  transform: scale(1.03);
}
.nav.scrolled .nav-logo-img {
  height: 38px;
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s, background 0.3s;
  position: relative;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
}
.nav-links a:hover {
  color: #f2f4f8;
  background: rgba(255,255,255,0.05);
}
.footer-col a { cursor: pointer; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #4db8d9, transparent);
  border-radius: 1px;
  transition: width 0.4s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { width: 60%; }

.nav-cta {
  background: rgba(77,184,217,0.08) !important;
  border: 1px solid rgba(77,184,217,0.3) !important;
  color: #4db8d9 !important;
  padding: 9px 26px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 1.8px !important;
  transition: all 0.4s var(--ease-out) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #4db8d9, #3a9fc0) !important;
  color: #050709 !important;
  border-color: #4db8d9 !important;
  box-shadow: 0 4px 20px rgba(77,184,217,0.3), 0 0 40px rgba(77,184,217,0.1);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background 0.3s, border-color 0.3s;
}
.mobile-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(77,184,217,0.2);
}
.mobile-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(2.5px, 2.5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(2.5px, -2.5px); }

@media(max-width:1100px) {
  .nav-links { gap: 4px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 1.5px; padding: 7px 12px; }
  .nav-cta { padding: 8px 20px !important; }
}
@media(max-width:860px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
    z-index: 100;
    background: rgba(10,12,18,0.96);
    backdrop-filter: blur(32px);
    flex-direction: column; align-items: stretch;
    padding: 8px; gap: 2px;
    border: 1px solid rgba(77,184,217,0.08);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  }
  .nav-inner { position: relative; }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 13px; letter-spacing: 1.8px;
    padding: 14px 20px; width: 100%; text-align: center;
    border-radius: 10px;
    border-bottom: none;
  }
  .nav-links a:hover {
    background: rgba(77,184,217,0.08);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin: 6px 8px 4px !important;
    padding: 14px 32px !important;
    font-size: 12px !important;
    width: auto !important;
    border-radius: 100px;
    text-align: center;
  }
  .nav-logo-img { height: 38px; }
  .nav.scrolled .nav-logo-img { height: 34px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO - Full cinematic experience
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Layered background */
.hero-bg-base {
  position: absolute; inset: 0;
  background: var(--black);
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 60% 30%, rgba(77,184,217,0.09), transparent),
    radial-gradient(ellipse 35% 35% at 10% 70%, rgba(77,184,217,0.05), transparent),
    radial-gradient(ellipse 40% 40% at 90% 85%, rgba(224,180,79,0.03), transparent),
    linear-gradient(180deg, rgba(5,7,9,0) 0%, rgba(5,7,9,0.4) 100%);
}
.hero-bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 1;
}
/* Animated rink lines */
.hero-rink-lines {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0.03;
}
.rink-line {
  position: absolute;
  background: var(--ice);
}
.rink-line.h { width: 100%; height: 1px; }
.rink-line.v { width: 1px; height: 100%; }
.rink-line-1 { top: 30%; animation: rinkPulse 6s infinite ease-in-out; }
.rink-line-2 { top: 70%; animation: rinkPulse 6s 2s infinite ease-in-out; }
.rink-line-3 { left: 25%; animation: rinkPulse 6s 1s infinite ease-in-out; }
.rink-line-4 { left: 75%; animation: rinkPulse 6s 3s infinite ease-in-out; }
.rink-circle {
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid var(--ice);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rinkPulse 6s 0.5s infinite ease-in-out;
}
@keyframes rinkPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Floating ice particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  background: var(--ice);
  border-radius: 50%;
  opacity: 0;
  animation: drift var(--dur) var(--delay) infinite ease-in-out;
}
@keyframes drift {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg) scale(0); }
  15% { opacity: var(--max-o, 0.5); }
  85% { opacity: calc(var(--max-o, 0.5) * 0.3); }
  100% { opacity: 0; transform: translateY(-10vh) rotate(180deg) scale(1.2); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: heroFadeUp 1s 0.6s var(--ease-out) forwards;
}
.hero-eyebrow-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--ice), transparent);
}
.hero-eyebrow-text {
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--ice);
}
.hero-eyebrow-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.9;
  color: var(--white);
  position: relative;
}
.hero-h1 .line {
  display: block;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) forwards;
}
.hero-h1 .line-1 { animation-delay: 0.8s; }
.hero-h1 .line-2 { animation-delay: 1s; }
.hero-h1 .line-3 { animation-delay: 1.2s; }
.hero-h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  color: transparent;
}
.hero-h1 .ice {
  color: var(--ice);
  text-shadow: 0 0 80px rgba(107,188,216,0.3);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-top: 28px;
  max-width: 520px;
  line-height: 1.5;
  opacity: 0; animation: heroFadeUp 1s 1.4s var(--ease-out) forwards;
}

.hero-actions {
  display: flex; gap: 16px; margin-top: 48px;
  opacity: 0; animation: heroFadeUp 1s 1.7s var(--ease-out) forwards;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--ice), #3a9fc0);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(77,184,217,0.15);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(77,184,217,0.3), 0 0 0 1px rgba(77,184,217,0.15);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; cursor: pointer;
  transition: all 0.4s;
}
.btn-ghost:hover {
  border-color: rgba(107,188,216,0.4);
  color: var(--ice);
  background: rgba(107,188,216,0.05);
}

/* Hero floating sidebar */
.hero-sidebar {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; animation: heroFadeUp 1s 2s var(--ease-out) forwards;
}
.hero-stat-card {
  text-align: right;
  padding: 24px 28px;
  background: linear-gradient(160deg, rgba(13,19,32,0.6), rgba(17,25,40,0.4));
  border: 1px solid rgba(77,184,217,0.06);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s var(--ease-out);
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero-stat-card:hover {
  border-color: rgba(77,184,217,0.15);
  background: linear-gradient(160deg, rgba(77,184,217,0.06), rgba(17,25,40,0.5));
  transform: translateX(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-value .ice { color: var(--ice); }
.hero-stat-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: heroFadeUp 1s 2.2s var(--ease-out) forwards;
}
.hero-scroll-cue span {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
}
.scroll-indicator {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--ice);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width:1200px) { .hero-sidebar { display: none; } }
@media(max-width:768px) {
  .hero { min-height: 100svh; }
  .hero-h1 { font-size: clamp(48px, 14vw, 80px); }
}

/* ══════════════════════════════════════════════════════════════
   HORIZONTAL MARQUEE TICKER
   ══════════════════════════════════════════════════════════════ */
.ticker {
  padding: 20px 0;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--muted);
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--ice);
  border-radius: 50%;
  opacity: 0.4;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════════ */
.stats-section {
  padding: 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(107,188,216,0.04), transparent 60%);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.stat-block {
  background: rgba(13,19,32,0.8);
  backdrop-filter: blur(8px);
  padding: 52px 32px;
  text-align: center;
  transition: background 0.5s;
}
.stat-block:hover { background: rgba(77,184,217,0.04); }
.stat-block:hover .value { color: var(--ice) !important; }
.stat-block:hover .stat-label { color: var(--ice); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat-num .prefix { color: var(--ice); font-size: 0.6em; }
.stat-num .value { color: var(--white); }
.stat-num .suffix { color: var(--ice); font-size: 0.5em; }
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
@media(max-width:768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION GLOBALS
   ══════════════════════════════════════════════════════════════ */
section { padding: 80px 0; position: relative; z-index: 1; }

.s-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 18px;
}
.s-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--ice);
}
.s-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 1px;
}
.s-title .ice { color: var(--ice); }
.s-subtitle {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 18px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about { background: #ffffff; background-color: #ffffff; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/3.5;
}
.about-visual-bg {
  background-size: cover;
  background-position: center 20%;
  position: absolute; inset: 0;
  background: url('img/about-visual.webp') center 20% / cover no-repeat;
}
/* Animated ice texture overlay */
.about-visual-texture {
  display: none;
}
.about-visual-logo {
  display: none;
}
.about-visual-badge {
  display: none;
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,7,9,0.6) 0%, transparent 50%);
}

.about-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}
.about-content h3 em {
  color: var(--ice);
  font-style: italic;
  font-weight: 400;
}
.about-content p {
  font-size: 16px; font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Player Testimonial */
.player-testimonial { margin-top: 48px; }
.pt-inner {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.pt-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,184,217,0.2), transparent);
}
.pt-quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--ice);
  opacity: 0.1;
  line-height: 0.5;
  margin-bottom: 6px;
  user-select: none;
}
.pt-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
}
.pt-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pt-attr-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 1px;
}
.pt-attr-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
@media(max-width:640px) {
  .pt-inner { padding: 24px 20px; flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
  .pt-quote { font-size: 14px; }
  .pt-quote-mark { font-size: 48px; margin-bottom: 0; }
  .pt-attr { margin-top: 14px; }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pillar {
  padding: 26px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.5s var(--ease-out);
  cursor: default;
}
.pillar:hover {
  border-color: rgba(77,184,217,0.14);
  background: linear-gradient(160deg, rgba(77,184,217,0.04), var(--card));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.pillar-icon { font-size: 22px; margin-bottom: 10px; }
.pillar-title {
  font-size: 14px; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
}
.pillar-desc {
  font-size: 13px; color: var(--muted);
  margin-top: 6px; line-height: 1.5;
}

@media(max-width:900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-height: 320px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:520px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ICE DIVIDER
   ══════════════════════════════════════════════════════════════ */
/* Section flow - seamless */

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services {
  background: #ffffff; background-color: #ffffff;
  position: relative; overflow: hidden;
}
.services::before {
  content: ''; position: absolute;
  top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,188,216,0.05), transparent 60%);
}
.services::after {
  content: ''; position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.03), transparent 60%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative; z-index: 1;
}
.service-card {
  padding: 44px 32px;
  background: #ffffff; background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  transition: all 0.6s var(--ease-out);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.service-card::after {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(26,143,180,0.03), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26,143,180,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0 0 1px rgba(26,143,180,0.06);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.svc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(26,143,180,0.1), rgba(26,143,180,0.03));
  border: 1px solid rgba(26,143,180,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 22px;
}
.svc-tag {
  padding: 5px 12px;
  background: rgba(107,188,216,0.05);
  border: 1px solid rgba(107,188,216,0.08);
  border-radius: 20px;
  font-size: 10px; font-weight: 600;
  color: var(--ice);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media(max-width:1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   QUOTE SECTION
   ══════════════════════════════════════════════════════════════ */
.quote-section {
  background: transparent;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107,188,216,0.03), transparent);
}
.quote-inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 180px;
  color: var(--ice);
  opacity: 0.06;
  line-height: 0.5;
  margin-bottom: 20px;
  user-select: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
}
.quote-attr {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 12px;
}
.quote-attr-line {
  width: 32px; height: 1px;
  background: var(--ice);
}
.quote-attr-text {
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   LEAGUES
   ══════════════════════════════════════════════════════════════ */
.leagues { background: transparent; }
.leagues-center { text-align: center; }
.leagues-center .s-subtitle { margin: 18px auto 0; }

.leagues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.league-chip {
  padding: 22px 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--muted);
  letter-spacing: 5px;
  transition: all 0.5s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.league-chip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(77,184,217,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.5s;
}
.league-chip:hover {
  color: var(--ice);
  border-color: rgba(77,184,217,0.18);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 44px rgba(0,0,0,0.35), 0 0 0 1px rgba(77,184,217,0.06);
}
.league-chip:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════════════ */
.team { background: #ffffff; background-color: #ffffff; overflow: hidden; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.6s var(--ease-out);
  position: relative;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,184,217,0.12);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(77,184,217,0.05);
}
.tc-visual {
  height: 260px;
  background: linear-gradient(145deg, var(--card) 0%, var(--surface) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.tc-visual::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.tc-visual[style*="background-image"] {
  background-color: #0d1320;
}
.tc-initials {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(77,184,217,0.12);
  letter-spacing: 10px;
  user-select: none;
}
.tc-accent {
  position: absolute; top: 16px; right: 16px;
  width: 8px; height: 8px;
  background: var(--ice);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ice);
  opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover .tc-accent { opacity: 1; }

.tc-info { padding: 28px; }
.tc-role {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ice);
  letter-spacing: 2px;
  font-weight: 700;
}
.tc-location {
  font-size: 13px; color: var(--muted);
  margin-top: 6px;
}
.tc-bio {
  font-size: 13px; font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
}
.tc-email, .tc-phone {
  display: block; margin-top: 12px; margin-right: 0; width: 100%; text-align: center; box-sizing: border-box;
  font-size: 14px; font-weight: 600;
  color: var(--ice);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  padding: 6px 14px; border-radius: 6px;
  border: 1px solid rgba(77,184,217,0.2); background: rgba(77,184,217,0.06);
}
.tc-email:hover, .tc-phone:hover {
  color: var(--ice-bright);
  border-color: rgba(77,184,217,0.4); background: rgba(77,184,217,0.12);
}

@media(max-width:1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) {
  .team-grid { grid-template-columns: 1fr; }
  .tc-email, .tc-phone {
    display: block;
    margin-right: 0;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ══════════════════════════════════════════════════════════════
   PATHWAYS
   ══════════════════════════════════════════════════════════════ */
.pathways { background: #ffffff; background-color: #ffffff; }
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pathway-card {
  padding: 48px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.6s var(--ease-out);
}
.pathway-card:hover {
  border-color: rgba(77,184,217,0.12);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(77,184,217,0.05);
}
.pathway-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--ice), rgba(77,184,217,0.1));
  transition: height 0.6s var(--ease-out);
}
.pathway-card:hover::before { height: 100%; }

.pw-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(107,188,216,0.05);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.5s;
}
.pathway-card:hover .pw-number { color: rgba(107,188,216,0.1); }
.pathway-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pathway-card p {
  font-size: 15px; font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
@media(max-width:768px) { .pathways-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  background: #050709;
  position: relative; overflow: hidden;
  padding: 60px 0 80px;
}
.contact .s-eyebrow-line { background: #4db8d9; }
.contact .s-eyebrow, .contact .s-title { color: #f2f4f8; }
.contact .s-title .ice { color: #4db8d9; }
.contact::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 600px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(77,184,217,0.06), transparent);
}
.contact::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 400px;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(77,184,217,0.03), transparent);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  position: relative; z-index: 1;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #f2f4f8;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.contact-info h3 em { color: #4db8d9; font-style: normal; font-weight: 400; }
.contact-info > p {
  font-size: 15px; font-weight: 300;
  color: #8d9db0; line-height: 1.75;
  margin-bottom: 32px;
}
.contact-info .callback-note {
  font-size: 13px; color: #8d9db0; line-height: 1.65;
  padding: 16px 20px;
  background: rgba(77,184,217,0.04);
  border: 1px solid rgba(77,184,217,0.08);
  border-radius: 14px;
  margin-bottom: 32px;
}
.contact-info .callback-note strong { color: #4db8d9; font-weight: 600; }

.c-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.c-card {
  padding: 20px;
  background: rgba(13,19,32,0.6);
  border: 1px solid rgba(77,184,217,0.06);
  border-radius: 14px;
  transition: all 0.4s;
}
.c-card:hover {
  border-color: rgba(77,184,217,0.15);
  background: rgba(13,19,32,0.8);
  transform: translateY(-2px);
}
.c-card-icon {
  font-size: 20px;
  margin-bottom: 10px;
}
.c-card-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #6b7a8d;
  margin-bottom: 6px;
}
.c-card-value {
  font-size: 14px; color: #f2f4f8;
  line-height: 1.5;
}
.c-card-value a {
  color: #f2f4f8; text-decoration: none;
  transition: color 0.3s;
}
.c-card-value a:hover { color: #4db8d9; }
.c-card.full-width { grid-column: 1 / -1; }

.contact-socials {
  display: flex; gap: 12px; margin-top: 20px;
}
.contact-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(13,19,32,0.6);
  border: 1px solid rgba(77,184,217,0.06);
  border-radius: 10px;
  color: #6b7a8d;
  text-decoration: none;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.contact-socials a:hover {
  border-color: rgba(77,184,217,0.2);
  color: #4db8d9;
  background: rgba(77,184,217,0.06);
}

/* Contact form */
.contact-form-wrap {
  background: rgba(13,19,32,0.5);
  border: 1px solid rgba(77,184,217,0.06);
  border-radius: 24px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.contact-form-wrap::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,184,217,0.3), transparent);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: #f2f4f8;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.f-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.f-group { margin-bottom: 16px; }
.f-group label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #6b7a8d;
  margin-bottom: 8px;
}
.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(5,7,9,0.6);
  border: 1px solid rgba(77,184,217,0.06);
  border-radius: 10px;
  color: #f2f4f8;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.4s;
  outline: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder {
  color: rgba(255,255,255,0.18);
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: rgba(77,184,217,0.35);
  box-shadow: 0 0 0 3px rgba(77,184,217,0.06), 0 4px 16px rgba(0,0,0,0.3);
  background: rgba(5,7,9,0.8);
}
.f-group textarea { min-height: 100px; resize: vertical; }
.f-group select { cursor: pointer; }
.f-group select option { background: #0d1320; }

.f-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1a8fb4, #3a9fc0);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(77,184,217,0.15);
}
.f-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.f-submit:hover {
  box-shadow: 0 12px 40px rgba(107,188,216,0.25);
  transform: translateY(-2px);
  transform: translateY(-2px);
}
.f-submit:hover::before { opacity: 1; }

@media(max-width:900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media(max-width:500px) {
  .c-details-grid { grid-template-columns: 1fr; }
  .c-card.full-width { grid-column: auto; }
  .f-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  padding: 72px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(5,7,9,0.6));
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted);
  max-width: 300px;
  line-height: 1.65;
  margin-top: 16px;
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 24px;
}
.f-social {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s;
}
.f-social:hover {
  background: var(--ice-glow);
  border-color: rgba(107,188,216,0.2);
  color: var(--ice);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.footer-col a:hover { color: var(--ice); transform: translateX(4px); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 11px; color: var(--muted);
  letter-spacing: 1px;
}
.footer-bottom a {
  font-size: 11px; color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--ice); }

@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.stagger-children.vis > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.vis > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.vis > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.vis > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.vis > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.vis > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children.vis > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children.vis > *:nth-child(8) { transition-delay: 0.56s; }
.stagger-children.vis > * {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax on scroll */
[data-speed] { will-change: transform; }
/* ══════════════════════════════════════════════════════════════
   NEWS SECTION
   ══════════════════════════════════════════════════════════════ */
.news { background: transparent; }

/* ── News Featured Card ── */
.news-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  margin-bottom: 20px;
  padding: 32px 36px;
}
.news-featured:hover {
  border-color: rgba(77,184,217,0.15);
  background: rgba(255,255,255,0.03);
}
.nf-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.nf-category {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ice);
}
.nf-badge {
  padding: 3px 10px;
  background: var(--ice);
  color: #050709;
  font-size: 9px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 4px;
}

/* ── News Cards Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.news-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  padding: 24px 26px;
}
.news-card:hover {
  border-color: rgba(77,184,217,0.15);
  background: rgba(255,255,255,0.03);
}
.nc-cat-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(77,184,217,0.08);
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
}
.nc-date {
  font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 500;
}
.nc-title {
  font-family: var(--font-display);
  font-size: 18px; color: var(--white);
  letter-spacing: 0.5px; line-height: 1.2;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.news-card:hover .nc-title { color: var(--ice); }
.nc-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--ice); text-decoration: none;
  transition: gap 0.3s;
}
.news-card:hover .nc-more { gap: 12px; }

/* ── News Thumbnails ── */
.nc-thumb {
  width: calc(100% + 52px);
  height: 120px;
  overflow: hidden;
  margin: -24px -26px 16px -26px;
  border-radius: 13px 13px 0 0;
}
.nc-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nf-thumb {
  width: calc(100% + 72px);
  height: 160px;
  overflow: hidden;
  margin: -32px -36px 20px -36px;
  border-radius: 15px 15px 0 0;
}
.nf-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── News Filter Buttons ── */
.news-filter-btn {
  padding: 6px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.news-filter-btn:hover {
  border-color: var(--ice);
  color: var(--ice);
}
.news-filter-btn.active {
  background: rgba(77,184,217,0.1);
  border-color: var(--ice);
  color: var(--ice);
}

/* ── Client Wins Chips ── */
.news-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: flex; align-items: center; gap: 6px;
}
.news-chip:hover {
  background: rgba(77,184,217,0.06);
  border-color: rgba(77,184,217,0.15);
  color: var(--ice);
}
.news-ticker-row { scrollbar-width: none; }
.news-ticker-row::-webkit-scrollbar { display: none; }

/* ── News Responsive ── */
@media(max-width:1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:900px) {
  .news-featured { padding: 24px 20px; }
  .news-featured h3 { font-size: 22px !important; }
}
@media(max-width:640px) {
  .news-grid { grid-template-columns: 1fr; gap: 10px; }
  .news-card { padding: 20px 18px; }
  .nc-title { font-size: 16px; }
  .nc-excerpt { font-size: 13px; -webkit-line-clamp: 2; }
  .news-chip { padding: 7px 12px; font-size: 11px; }
  .nc-thumb { height: 90px; margin: -20px -18px 12px -18px; width: calc(100% + 36px); }
  .nf-thumb { height: 120px; margin: -24px -20px 16px -20px; width: calc(100% + 40px); }
}

/* Article Modal */
.article-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 60px 20px; overflow-y: auto;
}
.article-modal.open { display: flex; }
.am-bg {
  position: fixed; inset: 0;
  background: rgba(6,8,16,0.92);
  backdrop-filter: blur(12px);
  z-index: 0;
  animation: amFade 0.3s var(--ease-out);
}
.am-content {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  max-width: 760px; width: 100%;
  margin: 40px auto;
  overflow: hidden;
  animation: amSlide 0.5s var(--ease-out);
}
@keyframes amFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes amSlide { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.am-hero {
  height: 220px;
  background: linear-gradient(145deg, var(--card), #0d1825, var(--surface));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.am-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 70%, rgba(107,188,216,0.06), transparent);
}
.am-hero-icon { font-size: 56px; opacity: 0.06; user-select: none; }
.am-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  width: 44px; height: 44px;
  background: rgba(6,8,16,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  cursor: pointer; transition: all 0.3s;
}
.am-close:hover { background: rgba(107,188,216,0.15); border-color: rgba(107,188,216,0.3); }
.am-body { padding: 44px 48px 52px; }
.am-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.am-cat {
  padding: 4px 14px;
  background: rgba(107,188,216,0.1);
  border: 1px solid rgba(107,188,216,0.15);
  border-radius: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ice);
}
.am-date { font-size: 13px; color: var(--muted); }
.am-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white); line-height: 1.05;
  letter-spacing: 1px; margin-bottom: 24px;
}
.am-text { font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.85; }
.am-text p { margin-bottom: 18px; }
.am-text p:last-child { margin-bottom: 0; }
.am-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 14px 32px;
  background: var(--ice); color: var(--black);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 10px;
  border: none; cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.am-cta:hover { box-shadow: 0 8px 32px rgba(107,188,216,0.3); transform: translateY(-2px); }
@media(max-width:640px) { .am-body { padding: 28px 24px 36px; } }

/* ══════════════════════════════════════════════════════════════
   CLIENT GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-grid > div {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 2;
}
.gallery-caption .gc-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.gallery-caption .gc-team {
  font-size: 11px;
  color: var(--ice);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
@media(max-width:768px) {
  .gallery-grid { gap: 3px; }
  .gallery-grid > div { border-radius: 6px; }
}
@media(max-width:480px) {
  .gallery-grid { gap: 6px; grid-template-columns: 1fr; }
  .gallery-grid > div { border-radius: 8px; aspect-ratio: 16/10; }
}

/* ══════════════════════════════════════════════════════════════
   CREDENTIALS / PARTNERS
   ══════════════════════════════════════════════════════════════ */
.credentials-section { background: #f7f8fa; background-color: #f7f8fa; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cred-card {
  background: #ffffff; background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 32px 16px 28px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cred-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,143,180,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.cred-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.cred-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.cred-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.cred-gold .cred-name { color: var(--gold); }
.cred-gold { border-color: rgba(201,155,46,0.15); }
.cred-gold:hover { border-color: rgba(201,155,46,0.3); }

@media(max-width:1024px) { .cred-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:640px) { .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cred-card { padding: 24px 12px 20px; } .cred-name { font-size: 18px; } .cred-icon { font-size: 24px; margin-bottom: 10px; } }

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OVERRIDES
   ══════════════════════════════════════════════════════════════ */
@media(max-width:768px) {
  /* --- Global --- */
  section { padding: 56px 0; }
  .s-title { font-size: clamp(32px, 9vw, 52px); letter-spacing: 0; }
  .s-subtitle { font-size: 16px; margin-top: 12px; }
  .s-eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 14px; }

  /* --- Hero --- */
  .hero { min-height: 100svh; padding-top: 80px; }
  .hero-h1 { font-size: clamp(40px, 12vw, 70px); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; padding: 16px 24px; font-size: 11px; }
  .hero-scroll-cue { display: none; }

  /* --- Stats --- */
  .stats-section { padding: 40px 0; }
  .stat-value { font-size: clamp(32px, 8vw, 48px); }
  .stat-label { font-size: 10px; letter-spacing: 2px; }

  /* --- About --- */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { max-height: 280px; border-radius: 16px; }
  .about-content h3 { font-size: 24px; }
  .about-content p { font-size: 14px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 12px; }
  .pillar-card { padding: 18px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .srv-card { padding: 24px; }
  .srv-title { font-size: 16px; }
  .srv-desc { font-size: 13px; }

  /* --- Why ISM / Built Different --- */
  .pathways-grid { grid-template-columns: 1fr !important; }

  /* --- Promise --- */

  /* --- Credentials / Partners --- */

  /* --- Team Teaser --- */
  .team-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 12px; }

  /* --- FAQ --- */
  .faq-q { font-size: 15px; }
  .faq-a-inner { font-size: 14px; }

  /* --- Contact --- */
  .contact { padding: 64px 0 56px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-form-title { font-size: 16px; }
  .c-details-grid { grid-template-columns: 1fr; gap: 10px; }
  .c-card { padding: 16px; }
  .c-card.full-width { grid-column: auto; }
  .c-card-value { font-size: 13px; }
  .callback-note { font-size: 12px; padding: 14px 16px; }
  .f-row { grid-template-columns: 1fr; }
  .f-group input, .f-group textarea, .f-group select { padding: 12px 14px; font-size: 14px; }

  /* --- Closing CTA --- */
  .closing-section .s-title { font-size: clamp(28px, 8vw, 44px); }

  /* --- Footer --- */
  footer { padding: 36px 0 20px !important; }

  /* --- Gallery --- */

  /* --- Ticker --- */
  .ticker-text { font-size: 12px; letter-spacing: 4px; }

  /* --- Trust badges in hero --- */
  .hero-content > div:last-child { gap: 8px !important; }
  .hero-content > div:last-child > div { padding: 6px 12px !important; }
  .hero-content > div:last-child span { font-size: 9px !important; letter-spacing: 1px !important; }
}

@media(max-width:480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }
  .s-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-sub { font-size: 15px; }
  .stat-value { font-size: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-socials a { width: 38px; height: 38px; font-size: 11px; }
  .nav-logo-img { height: 32px !important; }
}

/* ══════════════════════════════════════════════════════════════
   PROMISE SECTION - Proper Classes
   ══════════════════════════════════════════════════════════════ */
.promise-card {
  background: linear-gradient(135deg, var(--surface), var(--card));
  border: 1px solid rgba(107,188,216,0.08);
  border-radius: 24px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.promise-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 20% 80%, rgba(107,188,216,0.06), transparent);
  pointer-events: none;
}
.promise-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: 0.3;
}
.promise-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.promise-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}
.promise-body {
  font-size: 16px; color: var(--text);
  line-height: 1.85; margin-bottom: 16px;
}
.promise-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.promise-stat-box {
  background: rgba(107,188,216,0.04);
  border: 1px solid rgba(107,188,216,0.08);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.promise-stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
}
.promise-stat-label {
  font-size: 11px; color: var(--muted);
  margin-top: 6px; letter-spacing: 1px; text-transform: uppercase;
}
.promise-standard {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 16px;
  padding: 24px;
}
.promise-standard-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.promise-standard-body {
  font-size: 14px; color: var(--text); line-height: 1.65;
}

@media(max-width:900px) {
  .promise-card { padding: 48px 32px; }
  .promise-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media(max-width:768px) {
  .promise-card { padding: 36px 24px; border-radius: 20px; }
  .promise-grid { grid-template-columns: 1fr; gap: 28px; }
  .promise-headline { font-size: clamp(28px, 8vw, 40px); margin-bottom: 20px; }
  .promise-body { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
  .promise-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .promise-stat-box { padding: 20px 14px; border-radius: 12px; }
  .promise-stat-val { font-size: 34px; }
  .promise-stat-label { font-size: 10px; }
  .promise-standard { padding: 20px 18px; border-radius: 12px; }
  .promise-standard-body { font-size: 13px; line-height: 1.6; }
}
@media(max-width:480px) {
  .promise-card { padding: 28px 18px; border-radius: 16px; }
  .promise-grid { gap: 24px; }
  .promise-headline { font-size: clamp(24px, 7vw, 32px); margin-bottom: 16px; line-height: 1; }
  .promise-body { font-size: 14px; line-height: 1.75; margin-bottom: 12px; }
  .promise-stats-grid { gap: 8px; }
  .promise-stat-box { padding: 16px 10px; border-radius: 10px; }
  .promise-stat-val { font-size: 28px; }
  .promise-stat-label { font-size: 9px; letter-spacing: 0.5px; }
  .promise-standard { padding: 16px 14px; border-radius: 10px; }
  .promise-standard-title { font-size: 11px; letter-spacing: 1.5px; }
  .promise-standard-body { font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   OVERLAY PAGES - Mobile Responsive
   ══════════════════════════════════════════════════════════════ */
#familyPage > div:last-child,
#teamPage > div:last-child,
#proPage > div:last-child,
#womensPage > div:last-child { padding: 40px 0 60px; }

@media(max-width:900px) {
  /* Overlay sticky navs */
  #familyPage > div:first-child .container,
  #teamPage > div:first-child .container,
  #proPage > div:first-child .container,
  #womensPage > div:first-child .container {
    flex-direction: row; flex-wrap: wrap; gap: 12px;
  }
  #familyPage > div:first-child .container a,
  #teamPage > div:first-child .container a,
  #proPage > div:first-child .container a,
  #womensPage > div:first-child .container a {
    font-size: 10px !important; padding: 8px 14px !important; letter-spacing: 1.5px !important;
  }

  /* Family page hero grid */
  #familyPage [style*="grid-template-columns:1.4fr 1fr"] {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }

  /* Women's page hero grid */
  #womensPage [style*="grid-template-columns:1.3fr 1fr"] {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }

  /* Stage cards - collapse to single column layout */
  #familyPage [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important; gap: 16px !important; padding: 28px 20px !important;
  }

  /* Info sub-grids inside stage cards */
  #familyPage [style*="grid-template-columns:1fr 1fr"][style*="gap:12px"] {
    grid-template-columns: 1fr !important;
  }

  /* Mistakes grid + Women's "What ISM Does Differently" grid */
  #familyPage [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"],
  #womensPage [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Women's page stat pair grid */
  #womensPage [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* Stage number styling */
  #familyPage [style*="font-size:72px"] {
    font-size: 48px !important;
  }

  /* CTA sections on overlay pages */
  #familyPage [style*="padding:56px"],
  #womensPage [style*="padding:56px"] {
    padding: 32px 20px !important;
  }

  /* Women's page agent card - stack vertically */
  #womensPage .team-card[style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  #womensPage .team-card .tc-visual[style*="width:200px"] {
    width: 100% !important; min-height: 200px !important;
  }
  /* Women's page agent grid - stack on mobile */
  #womensPage [style*="grid-template-columns:1fr 1fr"][style*="max-width:800px"] {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
  }

  /* Women's page stats - 4 col to 2 col */
  #womensPage [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Women's page pathways - 3 col to 1 col */
  #womensPage [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Team grid on overlays */
  .team-grid { grid-template-columns: 1fr !important; }
  .team-card { grid-template-columns: 1fr !important; }
  .tc-visual { min-height: 200px !important; }

}

@media(max-width:480px) {
  #familyPage > div:last-child,
  #teamPage > div:last-child,
  #proPage > div:last-child,
  #womensPage > div:last-child { padding: 24px 0 40px; }

  #familyPage .s-title,
  #teamPage .s-title,
  #proPage .s-title,
  #womensPage .s-title {
    font-size: clamp(28px, 8vw, 40px) !important;
  }

  /* Stat boxes in family hero */
  #familyPage [style*="font-size:52px"] { font-size: 36px !important; }
  #familyPage [style*="font-size:32px"] { font-size: 24px !important; }

  /* Women's page stat headings */
  #womensPage [style*="font-size:28px"] { font-size: 22px !important; }
  #womensPage [style*="font-size:22px"] { font-size: 18px !important; }

  /* Women's page stats - 2 col to 1 col at small screens */
  #womensPage [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Stage card headings */
  #familyPage h3[style*="font-size:28px"] { font-size: 22px !important; }

  /* Info boxes */
  #familyPage [style*="padding:14px 16px"] { padding: 12px !important; }

  /* Women's page card padding */
  #womensPage [style*="padding:32px"] { padding: 20px 16px !important; }
}

/* ── Mobile Polish (375px) ── */
@media(max-width:480px) {
  /* Stats row - 2col to 1col */
  .stats-row { grid-template-columns: 1fr !important; }

  /* Team grid - 2col to 1col */
  .team-grid { grid-template-columns: 1fr !important; }

  /* Touch targets - minimum 44px */
  .faq-icon { width: 40px; height: 40px; font-size: 20px; }
  .contact-socials a { width: 44px; height: 44px; font-size: 13px; }
  .mobile-toggle { width: 44px; height: 44px; }
  .f-social { width: 44px; height: 44px; }

  /* CHL vs NCAA comparison - clean mobile layout */
  .pg-col { padding: 20px 16px !important; }
  .pg-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 12px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .pg-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ice);
    min-width: unset;
  }
  .pg-val {
    max-width: none;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
  }
  .pg-col-title { font-size: 24px; margin-bottom: 4px; }
  .pg-col-sub { font-size: 11px; margin-bottom: 16px; }
  .pg-tabs { gap: 6px; }
  .pg-tab { padding: 10px 18px; font-size: 11px; letter-spacing: 1.5px; }

  /* Pathway timeline - tighter on mobile */
  .pg-timeline { grid-template-columns: 1fr !important; }
  .pg-stage { padding: 20px; }
  .pg-stage h4 { font-size: 18px; margin-bottom: 10px; }
  .pg-stage li { font-size: 13px; line-height: 1.6; padding: 4px 0 4px 18px; }
  .pg-age { font-size: 11px; }

  /* Verdict box */
  .pg-verdict { padding: 20px !important; }
  .pg-verdict p { font-size: 13px !important; line-height: 1.6 !important; }

  /* Sticky CTA flex-wrap safety */
  .sticky-cta { flex-wrap: wrap; }
  .sticky-cta a { max-width: none; }

  /* Sub-page sticky header tighter padding */
  #teamPage > div:first-child,
  #proPage > div:first-child,
  #familyPage > div:first-child,
  #womensPage > div:first-child,
  #blogPage > div:first-child { padding: 12px 0 !important; }

  /* Font size minimums */
  .svc-tag { font-size: 11px; }
  .c-card-label { font-size: 10px; }

  /* About ISM SEO section */
  section > .container > [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Form padding */
  .contact-form-wrap { padding: 28px 16px !important; }
}

/* ── Sticky Mobile CTA Bar ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: rgba(5,7,9,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(77,184,217,0.15);
  padding: 12px 16px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.sticky-cta a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  flex: 1;
  max-width: 180px;
  transition: all 0.3s;
}
.sticky-cta .sticky-call {
  background: transparent;
  border: 1px solid rgba(77,184,217,0.4);
  color: #4db8d9;
}
.sticky-cta .sticky-msg {
  background: linear-gradient(135deg, #1a8fb4, #4db8d9);
  border: none;
  color: #fff;
}
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}

/* ── Blog / Resource Hub ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  border-color: rgba(77,184,217,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(77,184,217,0.08);
}
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, rgba(77,184,217,0.06), rgba(77,184,217,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-card-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice);
}
.blog-card-date {
  font-size: 12px;
  color: var(--muted);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ice);
  transition: opacity 0.2s;
}
.blog-card:hover .blog-card-link {
  opacity: 0.8;
}

/* Blog responsive */
@media (max-width: 860px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-img { height: 120px; }
  .blog-card-body { padding: 18px; }
  .blog-card-title { font-size: 16px; }
}

.pathway-guide { background: #ffffff; padding: 80px 0; }
.pg-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.pg-tab { padding: 12px 28px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.pg-tab.active { background: var(--ice); color: var(--black); border-color: var(--ice); }
.pg-tab:hover:not(.active) { border-color: rgba(77,184,217,0.3); color: var(--white); }
.pg-panel { display: none; }
.pg-panel.active { display: block; }
.pg-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); }
.pg-col { padding: 40px; background: var(--bg); }
.pg-col:first-child { border-right: 1px solid var(--border); }
.pg-col-title { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 6px; }
.pg-col-sub { font-size: 13px; color: var(--ice); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.pg-row { display: grid; grid-template-columns: 100px 1fr; gap: 0 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pg-row:last-child { border-bottom: none; }
.pg-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ice); }
.pg-val { font-size: 14px; color: var(--muted); line-height: 1.65; text-align: left; max-width: none; padding-left: 20px; position: relative; }
.pg-val::before { content: '→'; position: absolute; left: 0; color: var(--ice); font-size: 12px; }
.pg-verdict { margin-top: 40px; background: linear-gradient(160deg, var(--surface), var(--card)); border: 1px solid rgba(77,184,217,0.12); border-radius: 18px; padding: 32px; }
.pg-verdict-title { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 10px; }
.pg-verdict p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }
.pg-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pg-stage { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 32px; position: relative; overflow: hidden; transition: all 0.4s; }
.pg-stage:hover { border-color: rgba(77,184,217,0.2); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.pg-stage::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--ice), rgba(77,184,217,0.2)); }
.pg-age { font-family: var(--font-display); font-size: 14px; color: var(--ice); letter-spacing: 2px; margin-bottom: 8px; }
.pg-stage h4 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 12px; }
.pg-stage ul { list-style: none; padding: 0; margin: 0; }
.pg-stage li { font-size: 14px; color: var(--muted); line-height: 1.7; padding: 6px 0; padding-left: 20px; position: relative; }
.pg-stage li::before { content: '→'; position: absolute; left: 0; color: var(--ice); font-size: 12px; }
@media(max-width:768px) {
  .pg-compare { grid-template-columns: 1fr; }
  .pg-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .pg-timeline { grid-template-columns: 1fr; }
  .pg-col { padding: 28px 20px; }
  /* About ISM SEO section - stack on mobile */
  section > .container > [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-toggle { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; background: none; border: none; text-align: left; font: inherit; }
.faq-q { font-size: 17px; font-weight: 600; color: var(--white); line-height: 1.4; }
.faq-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ice); transition: all 0.4s var(--ease-out); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; color: var(--text); line-height: 1.85; }
.faq-item.open .faq-icon { background: var(--ice); color: var(--black); border-color: var(--ice); transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-toggle:hover .faq-icon { border-color: rgba(77,184,217,0.4); }
