/* =========================================
   MIHIR KOLTHARKAR — PREMIUM WEBSITE
   Design: Editorial Luxury + Aggressive Power
   Fonts: Clash Display (display) + Satoshi (body)
   Colors: #E8000D (power red), #0A0A0A (black), #F5F0E8 (warm white)
   ========================================= */

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

:root {
  --red: #E8000D;
  --red-dark: #B5000A;
  --red-glow: rgba(232,0,13,0.3);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-mid: #555;
  --gray-light: #999;
  --warm-white: #F5F0E8;
  --white: #FFFFFF;
  --gold: #C9A84C;

  --font-display: 'Archivo', sans-serif;
  --font-cond: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --container: 1200px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--warm-white);
  overflow-x: hidden;
  cursor: default;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* Selection */
::selection { background: var(--red); color: var(--white); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.red-dot { color: var(--red); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid var(--red);
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  transition: left 0.3s var(--ease-out);
  z-index: 0;
}
.btn-primary:hover { color: var(--red); }
.btn-primary:hover::before { left: 0; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary.large { padding: 20px 56px; font-size: 1.1rem; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(245,240,232,0.4);
  transition: all 0.25s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--warm-white);
  background: rgba(245,240,232,0.06);
}

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid var(--red);
  transition: all 0.25s var(--ease-out);
}
.btn-ghost-dark:hover { background: var(--red); color: var(--white); }

/* ===================== SECTION TYPOGRAPHY ===================== */
.section-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.section-label.light { color: var(--red); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
.section-headline.light { color: var(--warm-white); }

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-mid);
  max-width: 640px;
}
.section-sub.light { color: rgba(245,240,232,0.7); }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===================== AOS ANIMATIONS ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ===================== NAV ===================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 1px 0 rgba(232,0,13,0.3);
  border-bottom-color: rgba(232,0,13,0.2);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-m {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}
.logo-rest {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
  letter-spacing: 0.1em;
  line-height: 1;
}
.logo-divider {
  width: 1px; height: 32px;
  background: rgba(245,240,232,0.2);
}
.logo-tag {
  font-family: var(--font-cond);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--warm-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border: 2px solid var(--red);
  transition: all 0.25s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: transparent; color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--warm-white);
  transition: all 0.3s;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: var(--red);
  overflow: hidden;
  height: 42px;
  z-index: 10;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  height: 100%;
  padding: 0 40px;
}
.trust-bar-inner span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,0,13,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,13,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 48px 64px;
  gap: 56px;
  width: 100%;
}

.hero-text {
  align-self: center;
  min-width: 0;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
}

.hero-headline .line1,
.hero-headline .line3 { color: var(--warm-white); }
.hero-headline .line2 {
  color: var(--red);
  text-shadow: 0 0 50px rgba(232,0,13,0.35);
}

/* Hero credential row (replaces spinning badge) */
.hero-creds {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px; margin-bottom: 30px;
}
.hero-creds .cred {
  font-family: var(--font-body); font-size: 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 500; color: rgba(245,240,232,0.62);
}
.hero-creds .cred b { color: var(--red); font-weight: 700; }
.hero-creds .cred-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--red); opacity: 0.6; }

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.68);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-sub strong { color: var(--warm-white); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.client-pill {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.5);
  border-radius: 2px;
  transition: all 0.2s;
}
.client-pill:hover {
  border-color: var(--red);
  color: var(--warm-white);
}

/* Hero image — premium melt into black */
.hero-image-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: contrast(1.04) saturate(1.05);
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 100%);
}
/* red ambient glow behind subject */
.hero-image-frame::before {
  content: '';
  position: absolute;
  right: 2%; top: 50%; transform: translateY(-50%);
  width: 78%; height: 82%;
  background: radial-gradient(ellipse at center, rgba(232,0,13,0.20), transparent 68%);
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}
/* bottom fade into page */
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 62%, var(--black) 100%);
}

.hero-badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 110px; height: 110px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: rotate-slow 12s linear infinite;
  box-shadow: 0 0 40px rgba(232,0,13,0.5);
}
.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  color: var(--white);
  text-align: center;
  line-height: 1;
}
.badge-num { font-size: 0.65rem; letter-spacing: 0.1em; }
.badge-rank { font-size: 2.4rem; line-height: 0.85; }
.badge-world { font-size: 0.55rem; letter-spacing: 0.08em; }
.badge-cat { font-size: 0.5rem; letter-spacing: 0.1em; }

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stat-card {
  position: absolute;
  z-index: 10;
  background: rgba(12,12,14,0.66);
  border: 1px solid rgba(245,240,232,0.12);
  border-left: 2px solid var(--red);
  padding: 15px 22px;
  backdrop-filter: blur(14px);
  border-radius: 2px;
}
.card1 { bottom: 12%; left: -2%; }
.card2 { top: 12%; left: -8%; }
.sc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.sc-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 4px;
  line-height: 1.4;
}

.scroll-hint {
  position: absolute;
  bottom: 52px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.scroll-hint span {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(245,240,232,0.3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(232,0,13,0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================== IMPACT STRIP ===================== */
.impact-strip {
  background: var(--red);
  padding: 48px 40px;
  position: relative;
  z-index: 10;
}
.impact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.imp-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1;
}
.imp-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
}
.imp-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
.impact-div {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 120px 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about .section-label { color: var(--red); }
.about .section-headline { color: var(--black); font-size: clamp(2rem, 3.6vw, 3rem); }

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.about-body strong { color: var(--black); font-weight: 700; }

.about-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.award-pill {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  background: var(--black);
  color: var(--warm-white);
  border-radius: 2px;
}

.about-quote-block {
  background: var(--black);
  padding: 40px 40px 40px 48px;
  position: relative;
  margin-bottom: 40px;
}
.aq-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
}
.aq-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--warm-white);
  font-style: normal;
  margin-bottom: 20px;
}
.aq-cite {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.about-countries { }
.countries-title {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.countries-grid span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}
.countries-grid .fi {
  border-radius: 2px;
  width: 1.2em;
  line-height: 1.2em;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

/* ===================== RESULTS ===================== */
.results {
  padding: 120px 0;
  position: relative;
  background: var(--black);
}
.results-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,0,13,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-dark);
  border: 2px solid var(--gray-dark);
}
.result-card {
  background: var(--black-2);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}
.result-card:hover { background: var(--red); }
.result-card.featured {
  background: var(--black-2);
  grid-row: span 1;
}
.result-card.featured:hover { background: var(--red); }
.rc-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  transition: background 0.3s, color 0.3s;
}
.result-card:hover .rc-badge { background: rgba(255,255,255,0.22); color: var(--white); }
.rc-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.result-card:hover .rc-num { color: var(--white); }
.rc-context {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.result-card:hover .rc-context { color: rgba(255,255,255,0.9); }
.rc-story {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.result-card:hover .rc-story { color: rgba(255,255,255,0.88); }
.rc-client {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 16px;
  transition: color 0.3s, border-color 0.3s;
}
.result-card:hover .rc-client { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.22); }

/* 9th CTA card */
.result-card.cta-card { display: flex; flex-direction: column; justify-content: center; text-decoration: none; cursor: pointer; background: var(--black-2); }
.cta-card .rc-num { font-size: clamp(1.7rem, 2.5vw, 2.4rem); color: var(--red); margin-bottom: 10px; }
.cta-card .rc-cta-btn { display: inline-flex; align-self: flex-start; margin-top: 20px; font-family: var(--font-cond); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); padding: 12px 22px; transition: all 0.3s; }
.result-card.cta-card:hover .rc-cta-btn { border-color: var(--white); background: rgba(255,255,255,0.14); }

/* ===================== PROGRAMS ===================== */
.programs {
  padding: 120px 0;
  background: var(--warm-white);
}
.programs .section-headline { color: var(--black); }
.programs-list { display: flex; flex-direction: column; gap: 0; }

.prog-card {
  display: grid;
  grid-template-columns: 60px 1fr 300px;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s;
}
.prog-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); z-index: 1; }
.prog-card.reverse {
  grid-template-columns: 60px 1fr 300px;
  direction: rtl;
}
.prog-card.reverse > * { direction: ltr; }

.prog-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(0,0,0,0.06);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: #f8f8f8;
  user-select: none;
}

.prog-body {
  padding: 48px 48px 48px 40px;
}
.prog-tag {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.prog-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.prog-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}
.prog-details {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.prog-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}
.prog-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.prog-outcomes span {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(232,0,13,0.08);
  color: var(--red);
  border-radius: 2px;
}
.prog-cta {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  transition: background 0.2s, gap 0.2s;
}
.prog-cta:hover { gap: 14px; background: var(--red); }

.prog-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.v1, .v2, .v3, .v4 { background: var(--white); }
.pv-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.05;
  color: rgba(245,240,232,0.08);
  transition: color 0.4s, transform 0.4s;
  padding: 40px 32px;
}
.prog-card:hover .pv-text {
  color: rgba(232,0,13,0.25);
  transform: scale(1.05);
}
.v1 .pv-text::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,0,13,0.08), transparent); }

/* Program logo tiles (real brand assets) */
.prog-visual { position: relative; }
.prog-logo {
  position: relative; z-index: 2;
  width: 80%; max-width: 240px; aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  transition: transform 0.45s ease;
}
.prog-card:hover .prog-logo { transform: scale(1.045) translateY(-4px); }
/* logo tiles sit clean on the light card — no glow */

/* ===================== KEYNOTE ===================== */
.keynote {
  padding: 120px 0;
  position: relative;
  background: var(--black-2);
  overflow: hidden;
}
.keynote-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 100%, rgba(232,0,13,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(232,0,13,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.keynote-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-dark);
  border: 2px solid var(--gray-dark);
  margin-bottom: 64px;
}
.kt-card {
  background: var(--black);
  padding: 36px 32px;
  transition: background 0.3s;
}
.kt-card:hover { background: rgba(232,0,13,0.06); }
.kt-icon { font-size: 2rem; margin-bottom: 16px; }
.kt-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.kt-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
}
.keynote-cta-wrap { text-align: center; }
.keynote-note {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-top: 20px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 120px 0;
  background: var(--warm-white);
}
.testimonials .section-headline { color: var(--black); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 60px;
}
.testi-card {
  background: var(--white);
  border: 1px solid #eee;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.testi-card.featured-testi {
  grid-column: span 3;
  background: var(--warm-white);
  border-color: transparent;
  border-left: 4px solid var(--red);
  padding: 48px;
}
.testi-card.featured-testi:hover {
  border-color: var(--red);
  box-shadow: 0 12px 48px rgba(232,0,13,0.12);
}
.testi-stars {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.testi-card blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}
.testi-card.featured-testi blockquote {
  font-size: 1.15rem;
  color: #222;
}
.testi-card blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232,0,13,0.15);
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
  pointer-events: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.testi-card.featured-testi .testi-author {
  border-top-color: #ddd;
}
.testi-info strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.testi-card.featured-testi .testi-info strong { color: var(--black); }
.testi-info span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.testi-card.featured-testi .testi-info span { color: var(--gray-mid); }

.voice-strip { }
.vs-title {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.voice {
  background: #f5f5f0;
  padding: 16px 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
  border-left: 3px solid var(--red);
  font-style: italic;
  transition: font-size 0.3s var(--ease-out), color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.voice:hover {
  font-size: 1.02rem;
  color: #111;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ===================== BOOKS ===================== */
.books {
  padding: 120px 0;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.books-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(232,0,13,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,0,13,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  padding: 40px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.book-card:hover {
  background: rgba(245,240,232,0.07);
  border-color: rgba(232,0,13,0.3);
}
.book-cover {
  width: 180px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: perspective(600px) rotateY(-4deg);
  transition: transform 0.4s var(--ease-out);
  margin-bottom: 32px;
  flex-shrink: 0;
}
.book-card:hover .book-cover { transform: perspective(600px) rotateY(0deg) scale(1.03); }
.book-cover img { width: 100%; border-radius: 2px; }
.book-cover.coming { position: relative; }
.coming-soon-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}
.book-info {
  flex: 1;
  width: 100%;
}
.book-tag {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.book-tag.soon { color: var(--gold); }
.book-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.book-info p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
  margin-bottom: 20px;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 100px 0;
  background: var(--warm-white);
}
.faq .section-headline { color: var(--black); }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  padding-bottom: 24px;
}
.faq-a strong { color: var(--black); }

/* ===================== CONTACT ===================== */
.contact {
  padding: 120px 0;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(232,0,13,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  max-width: 420px;
  margin-bottom: 40px;
}
.contact-details { margin-bottom: 40px; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  font-size: 1rem;
  color: rgba(245,240,232,0.8);
  transition: color 0.2s;
}
.cd-item:hover { color: var(--warm-white); }
.cd-icon { font-size: 1.1rem; flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 44px; height: 44px;
  border: 1px solid rgba(245,240,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(245,240,232,0.5);
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--red); color: var(--red); }

/* Contact Form */
.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: 8px; }
.form-group label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-2); color: var(--warm-white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(232,0,13,0.04);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.25);
  text-align: center;
  margin-top: 4px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #040404;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(232,0,13,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--warm-white);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.4);
  max-width: 300px;
}
.footer-company {
  font-size: 0.78rem !important;
  color: rgba(245,240,232,0.25) !important;
  margin-top: 8px;
}
.footer-links h4 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-links a,
.footer-links span {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.4);
  padding: 6px 0;
  transition: color 0.2s;
  display: block;
}
.footer-links a:hover { color: var(--warm-white); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--warm-white); }

/* ===================== FLOATING BUTTONS ===================== */
.float-btn {
  position: fixed;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: all 0.3s var(--ease-bounce);
  overflow: hidden;
}
.float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s var(--ease-out);
  opacity: 0;
}
.float-btn:hover .float-label {
  max-width: 80px;
  opacity: 1;
}
.whatsapp-btn {
  bottom: 100px;
  background: #25D366;
  color: var(--white);
}
.whatsapp-btn:hover { background: #1ebe5a; transform: scale(1.05); }
.email-btn {
  bottom: 36px;
  background: var(--red);
  color: var(--white);
}
.email-btn:hover { background: var(--red-dark); transform: scale(1.05); }

/* Back to top */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 36px;
  width: 44px; height: 44px;
  background: var(--black-3);
  border: 1px solid rgba(245,240,232,0.15);
  color: var(--warm-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { background: var(--red); border-color: var(--red); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content { gap: 32px; grid-template-columns: 1.12fr 0.82fr; padding: 36px 32px 48px; }
  .hero-image-wrap { min-height: 460px; }
  .hero-image-frame { min-height: 460px; }
  .about-grid { gap: 48px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card.featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 32px 40px 40px;
    gap: 20px;
    border-top: 1px solid rgba(232,0,13,0.2);
    backdrop-filter: blur(12px);
  }
  .nav-links.open a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 64px;
  }
  .hero-text { text-align: center; order: 2; max-width: 100%; }
  .hero-creds { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-logos { justify-content: center; }
  .hero-image-wrap { order: 1; width: 100%; max-width: 420px; margin: 0 auto; min-height: 380px; }
  .hero-image-frame { min-height: 380px; }
  .hero-photo { -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); object-position: center 14%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .card1, .card2 { display: none; }

  .impact-inner { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .impact-div { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .prog-card { grid-template-columns: 1fr; }
  .prog-card.reverse { direction: ltr; grid-template-columns: 1fr; }
  .prog-visual { min-height: 160px; }
  .prog-num {
    writing-mode: horizontal-tb;
    font-size: 1.6rem;
    padding: 24px 32px 0;
    background: transparent;
    color: var(--red);
    opacity: 0.45;
    justify-content: flex-start;
    text-align: left;
  }

  .keynote-topics { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .result-card.featured { grid-column: span 1; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured-testi { grid-column: span 1; }

  .voices-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .books-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 40px 20px 80px; }
  .section-header { margin-bottom: 40px; }
  .about, .results, .programs, .keynote, .testimonials, .books, .faq, .contact { padding: 80px 0; }
  .keynote-topics { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-bar { display: none; }
  .hero { min-height: auto; }
}

/* =========================================
   PREMIUM TYPE REFINEMENT — Direction A
   Clash Display + Satoshi tuning layer
   ========================================= */
:root{ --tracking-display: -0.01em; }

/* Display headlines — uppercase, confident, tightened */
.hero-headline,
.section-headline,
.prog-title,
.pv-text,
.footer-logo {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--tracking-display);
}
.hero-headline { line-height: 0.94; }
.section-headline { line-height: 1.0; }

/* Logo — clean wordmark */
.nav-logo { gap: 1px; align-items: baseline; }
.logo-m { font-size: 1.6rem; font-weight: 700; color: var(--red); letter-spacing: 0.03em; }
.logo-rest { font-size: 1.1rem; font-weight: 700; color: var(--red); letter-spacing: 0.08em; }

/* Big numbers stay natural-case, heavier for impact */
.imp-num, .imp-suffix, .rc-num, .prog-num { font-weight: 700; letter-spacing: -0.02em; }

/* Card / sub headers */
.kt-card h4, .book-info h3 { text-transform: uppercase; font-weight: 600; letter-spacing: 0.01em; }

/* Editorial quote — keep mixed case, medium weight */
.aq-text { font-weight: 500; letter-spacing: -0.01em; text-transform: none; }

/* Body refinement — Satoshi reads best slightly relaxed */
body { letter-spacing: 0.002em; font-weight: 400; }
.about-body, .section-sub, .prog-desc, .rc-story { font-weight: 400; }

/* Buttons — Satoshi-driven, confident */
.btn-primary, .btn-ghost, .prog-cta, .nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* =========================================
   NEW COMPONENTS — Direction A
   ========================================= */

/* As Featured In media strip */
.featured-in { background: #ffffff; border-top: 3px solid var(--red); border-bottom: 1px solid rgba(0,0,0,0.06); padding: 6px 0; }
.fi-media { display: block; width: 100%; max-width: 1000px; height: auto; margin: 0 auto; }

/* Video section */
.videos { padding: 100px 0; background: var(--black-2); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.video-card { background: var(--black); border: 1px solid rgba(245,240,232,0.08); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.video-card:hover { border-color: var(--red); transform: translateY(-4px); }
.video-frame { position: relative; aspect-ratio: 16/9; width: 100%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { padding: 16px 20px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--warm-white); letter-spacing: 0.01em; }

/* Testimonial avatars */
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); flex-shrink: 0; }
.testi-author { display: flex; align-items: center; gap: 14px; }

/* Trained For — client wall */
.clientwall { padding: 100px 0; background: var(--black); }
.cw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1px; background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.08); margin-top: 48px; }
.cw-item { background: var(--black); padding: 22px 18px; text-align: center; transition: background 0.25s; }
.cw-item:hover { background: var(--black-3); }
.cw-name { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--warm-white); letter-spacing: 0.02em; line-height: 1.1; }
.cw-country { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-light); margin-top: 6px; }
.cw-more { text-align: center; margin-top: 34px; font-family: var(--font-body); color: var(--gray-light); font-size: 0.95rem; letter-spacing: 0.05em; }

/* Specialised tracks strip */
.spec-tracks { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(245,240,232,0.1); }
.spec-tracks-label { font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); text-align: center; margin-bottom: 22px; }
.spec-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.spec-track { display: flex; gap: 16px; width: max-content; animation: spec-scroll 52s linear infinite; }
.spec-marquee:hover .spec-track { animation-play-state: paused; }
@keyframes spec-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.spec-card { flex: 0 0 300px; width: 300px; background: var(--red); border: none; border-radius: var(--radius); padding: 26px 26px; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.spec-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(232,0,13,0.38); }
.spec-card h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.spec-card p { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.92); line-height: 1.5; }
.spec-card .spec-arrow { color: #fff; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 14px; display: inline-block; }
@media (prefers-reduced-motion: reduce) { .spec-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Contact form — enquiry type toggle */
.enq-toggle { display: flex; gap: 10px; }
.enq-opt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; border: 1px solid rgba(245,240,232,0.18); border-radius: var(--radius); cursor: pointer; font-family: var(--font-cond); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(245,240,232,0.7); transition: border-color 0.25s, background 0.25s, color 0.25s; }
.enq-opt input { accent-color: var(--red); width: 15px; height: 15px; }
.enq-opt:hover { border-color: rgba(232,0,13,0.5); }
.enq-opt:has(input:checked) { border-color: var(--red); background: rgba(232,0,13,0.12); color: var(--warm-white); }
