@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0a0a0f;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --bg: #0a0a0f;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(0,180,255,0.15);
  --purple: #511090;
  --purple-light: #7b2cbf;
  --blue: #00b4ff;
  --blue-glow: rgba(0,180,255,0.15);
  --pink: #e040a0;
  --gradient-fr: linear-gradient(135deg, #e040a0, #511090);
  --gradient-cta: linear-gradient(135deg, #511090, #7b2cbf);
  --gradient-blue: linear-gradient(135deg, #00b4ff, #0088cc);
  --text: #e0e0e0;
  --text-muted: #888;
  --text-dim: #555;
  --white: #fff;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ===== BACKGROUND GLOW ===== */
.bg-glow {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(81,16,144,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 80% 90%, rgba(0,180,255,0.04) 0%, transparent 70%);
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section-sm { padding: 30px 0; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-fr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; color: var(--white); letter-spacing: 3px; line-height: 1.1; }
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 56px); letter-spacing: 4px; }
h3 { font-size: clamp(22px, 3vw, 30px); letter-spacing: 2px; }
.label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { height: 32px; }
.nav-brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}

/* Floating logo animation */
.nav-logo-float {
  animation: floatBob 4.5s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.cta-link {
  color: var(--blue);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 60%, #0a0a0f 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-content .label { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===== HERO TYPEWRITER ===== */
.hero-typewriter {
  margin-bottom: 24px;
}
.hero-typewriter #typewriter {
  font-size: clamp(36px, 6vw, 64px);
}

/* ===== TYPEWRITER SECTION ===== */
.typewriter-section {
  padding: 60px 0 40px;
}
.typewriter-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 3px;
  min-height: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.typewriter-line #typewriter {
  background: var(--gradient-fr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typewriter-cursor {
  color: var(--blue);
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
  -webkit-text-fill-color: var(--blue);
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-carousel {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-slide {
  min-width: 33.3333%;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .testimonial-slide { min-width: 50%; }
}
@media (max-width: 600px) {
  .testimonial-slide { min-width: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(81,16,144,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-blue {
  background: var(--gradient-blue);
  color: var(--white);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,180,255,0.3);
}
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-fr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slide .testimonial-block {
  max-width: none;
  margin: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.testimonial-block::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: var(--purple);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  object-fit: cover;
}
.testimonial-author .name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.testimonial-author .role {
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 1px;
}

/* ===== INSTAGRAM TEASER ===== */
.ig-teaser {
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.ig-teaser .ig-handle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.ig-teaser p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.footer-links {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--purple);
  border-color: var(--purple);
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== COACHING PAGE — HERO ===== */
.hero-coaching {
  min-height: 70vh;
}

/* ===== COACH PROFILE ===== */
.coach-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.coach-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  flex-shrink: 0;
}
.coach-profile .info h3 { margin-bottom: 8px; font-size: 26px; }
.coach-profile .info .role {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--purple);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.step h3 { margin-bottom: 12px; position: relative; z-index: 1; }
.step p { color: var(--text-muted); font-size: 15px; position: relative; z-index: 1; }

/* ===== PROGRESS BAR (spots) ===== */
.spots-bar {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.spots-bar .bar-track {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin: 16px 0;
}
.spots-bar .bar-fill {
  height: 100%;
  border-radius: 6px;
  background: var(--gradient-fr);
  transition: width 0.6s ease;
}
.spots-bar .spots-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1px;
}
.spots-bar .spots-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--purple);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-fr);
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 28px;
  vertical-align: super;
  color: var(--text-muted);
}
.pricing-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 1px;
}
.faq-q .toggle {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ===== PHOTO STRIP (marquee) ===== */
.photo-strip-section {
  padding: 80px 0 60px;
}
.photo-strip {
  width: 100%;
  overflow: hidden;
}
.photo-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.marquee-track {
  animation: marqueeScroll 60s linear infinite;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-strip-track img {
  height: 280px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .photo-strip-track img { height: 200px; }
  .photo-strip-section { padding: 60px 0 40px; }
}
@media (max-width: 600px) {
  .photo-strip-track img { height: 160px; }
  .photo-strip-track { gap: 12px; }
}

/* ===== TEAM PHOTO ===== */
.team-photo-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.team-photo {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-fr);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* ===== SCHEDULE TIMELINE ===== */
.schedule-timeline {
  max-width: 700px;
  margin: 0 auto;
}
.schedule-day {
  padding: 24px 0 24px 32px;
  border-left: 2px solid var(--border);
  position: relative;
}
.schedule-day::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-fr);
}
.schedule-day:last-child {
  border-left-color: transparent;
}
.schedule-day-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.schedule-day-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.schedule-day-details {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== HISTORY TIMELINE ===== */
.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--purple);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-item:last-child .timeline-marker {
  background: var(--gradient-fr);
  border: none;
}
.timeline-content {
  padding-top: 8px;
}
.timeline-year {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ZIG-ZAG TIMELINE ===== */
.zigzag-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.zigzag-timeline::before {
  display: none;
}
.zt-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zt-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.zt-item:nth-child(even) {
  flex-direction: row-reverse;
}
.zt-image {
  flex: 0 0 45%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(81, 16, 144, 0.2);
}
.zt-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.zt-item:hover .zt-image img {
  transform: scale(1.03);
}
.zt-text {
  flex: 1;
}
.zt-year {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.zt-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #fff;
}
.zt-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.zt-highlight .zt-text h3 {
  background: var(--gradient-fr, linear-gradient(135deg, #511090, #00b4ff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zt-highlight .zt-image {
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(81, 16, 144, 0.3);
}

@media (max-width: 768px) {
  .zigzag-timeline::before { left: 20px; }
  .zt-item, .zt-item:nth-child(even) {
    flex-direction: column;
    gap: 16px;
    padding-left: 40px;
  }
  .zt-image { flex: none; width: 100%; }
  .zt-image img { height: 180px; }
  .zt-text h3 { font-size: 22px; }
}

/* ===== SIMPLE TIMELINE ===== */
.simple-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}
.simple-timeline::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.4), rgba(0,180,255,0.4), transparent);
}
.st-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}
.st-year {
  position: absolute;
  left: -80px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--blue, #00b4ff);
  width: 60px;
  text-align: right;
}
.st-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124,58,237,0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.st-dot.active {
  background: var(--blue, #00b4ff);
  box-shadow: 0 0 12px rgba(0,180,255,0.5);
}
.st-text {
  color: var(--text-muted, #8888a0);
  font-size: 15px;
  line-height: 1.5;
}
.st-item:last-child .st-text {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 600px) {
  .simple-timeline { padding-left: 70px; }
  .simple-timeline::before { left: 58px; }
  .st-year { left: -70px; font-size: 16px; width: 50px; }
  .st-text { font-size: 13px; }
}

/* Timeline date style (Our Story) - legacy */
.timeline-date {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  min-width: 120px;
  flex-shrink: 0;
  padding-top: 2px;
}
.timeline-item .timeline-content {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  padding-top: 0;
}
.timeline-item.highlight .timeline-date {
  color: var(--purple);
}
.timeline-item.highlight .timeline-content {
  color: #fff;
  font-weight: 600;
}
.timeline-item {
  border-left: 2px solid rgba(81, 16, 144, 0.3);
  padding-left: 24px;
  margin-left: 60px;
}
.timeline-item:last-child {
  border-left-color: var(--purple);
}
@media (max-width: 600px) {
  .timeline-item { margin-left: 0; }
  .timeline-date { min-width: 90px; font-size: 11px; }
}

/* ===== BLOG READ MORE ===== */
.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.2s;
}
.card:hover .blog-read-more {
  color: var(--white);
}

/* ===== LEGAL PAGES ===== */
.legal-section h3 {
  font-size: 22px;
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonial-carousel { max-width: 600px; }
  .card-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .card-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content p { font-size: 16px; }
  .section { padding: 70px 0; }
  .testimonial-block { padding: 32px 24px; }
  .testimonial-text { font-size: 16px; }
  .coach-profile { flex-direction: column; text-align: center; padding: 32px 24px; }
  .pricing-card { padding: 36px 24px; }
  .pricing-price { font-size: 56px; }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .card-grid[style*="repeat(3"],
  .card-grid[style*="repeat(2"] { grid-template-columns: 1fr !important; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 32px; }
  .btn { padding: 12px 24px; font-size: 13px; }
  .hero-content h1 { font-size: clamp(36px, 10vw, 48px); }
  .footer-links { flex-direction: column; gap: 24px; }

  /* Touch target improvements */
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .footer-social a { width: 44px; height: 44px; }
  .view-btn { padding: 12px 24px; font-size: 16px; }

  /* Globe section */
  .country-list { max-height: 120px; overflow-y: auto; }
}
