/* ============================================================
   EVOLUTION TENNIS ACADEMY — Global Stylesheet
   Brand Colors: Emerald Green + Gold + White
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-900: #0d2e1a;
  --green-800: #1a4a2a;
  --green-700: #1e5c31;
  --green-600: #266b3a;
  --green-500: #2e7d46;
  --green-400: #3a9958;
  --green-300: #5ab573;
  --green-100: #d4edda;
  --green-50:  #eaf7ee;

  --gold-700:  #a07a10;
  --gold-600:  #b8901a;
  --gold-500:  #d4af37;
  --gold-400:  #dfc056;
  --gold-300:  #e8d080;
  --gold-100:  #faf3d0;

  --charcoal:  #1a1a1a;
  --gray-800:  #2d2d2d;
  --gray-700:  #3d3d3d;
  --gray-600:  #555555;
  --gray-400:  #888888;
  --gray-200:  #d4d4d4;
  --gray-100:  #f2f2f2;
  --white:     #ffffff;

  --matrix-dark: #050e14;
  --matrix-blue: #0a2a3d;
  --matrix-cyan: #00d4ff;
  --matrix-glow: rgba(0,212,255,0.15);

  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--green-600);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-400); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

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

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

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-400);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-600);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 92, 49, 0.4);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}
.btn-outline-green:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-scrolled {
  background: rgba(13, 46, 26, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-top {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav-logo-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-name .evol { color: var(--gold-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .nav-cta a {
  background: var(--gold-500);
  color: var(--charcoal);
  padding: 9px 20px;
  border-radius: 8px;
}
.nav-links .nav-cta a:hover {
  background: var(--gold-400);
  color: var(--charcoal);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-900);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.mobile-menu a:hover { color: var(--gold-400); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
}

/* ---------- Hero Sections ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46, 125, 70, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--green-900) 0%, #0a1f0f 100%);
}

.hero-court-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(to bottom, transparent 0%, transparent calc(50% - 1px), rgba(255,255,255,0.8) 50%, transparent calc(50% + 1px), transparent 100%),
    linear-gradient(to right, transparent 0%, transparent calc(50% - 1px), rgba(255,255,255,0.8) 50%, transparent calc(50% + 1px), transparent 100%);
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ---------- EVOL/LOVE Treatment ---------- */
.evol-highlight .evol {
  color: var(--gold-500);
  position: relative;
}

.evol-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -4px;
}

/* ---------- Section Dividers ---------- */
.divider-gold {
  width: 64px;
  height: 4px;
  background: linear-gradient(to right, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider-green {
  width: 64px;
  height: 4px;
  background: linear-gradient(to right, var(--green-500), var(--green-300));
  border-radius: 2px;
  margin: 20px 0 32px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-green-accent {
  border-top: 4px solid var(--green-500);
}

.card-gold-accent {
  border-top: 4px solid var(--gold-500);
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon.gold-bg {
  background: var(--gold-100);
}

/* ---------- Level Cards (Curriculum) ---------- */
.level-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.level-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--green-500), var(--green-300));
}

.level-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.level-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.level-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--green-800);
}

.level-content p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.level-weapons {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.weapon-tag {
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.06em;
}

/* ---------- Pillar Cards (Doubles) ---------- */
.pillar-card {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.pillar-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.pillar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card ul li {
  font-size: 0.9rem;
  opacity: 0.85;
  padding-left: 20px;
  position: relative;
}

.pillar-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 700;
}

/* ---------- Coach Cards ---------- */
.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.coach-avatar {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.coach-avatar-initials {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-400);
  z-index: 2;
  position: relative;
}

.coach-avatar-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(46,125,70,0.6), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212,175,55,0.15), transparent 50%);
}

.coach-info {
  padding: 24px;
}

.coach-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 4px;
}

.coach-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.coach-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.coach-badge {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 99px;
  margin-top: 10px;
}

/* ---------- Pro Shop / Services ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* ---------- Pricing Table ---------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--gold-500);
  background: linear-gradient(to bottom, var(--gold-100), var(--white));
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-duration {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-800);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}

.pricing-savings {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 8px;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--green-600); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--green-600);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ---------- Racket Matrix Section ---------- */
.matrix-section {
  background: var(--matrix-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.matrix-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.matrix-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.matrix-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,70,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.matrix-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--matrix-cyan);
  text-shadow: 0 0 40px rgba(0,212,255,0.4);
  line-height: 1;
}

.matrix-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.matrix-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.matrix-feature-card:hover {
  background: rgba(0,212,255,0.06);
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
}

.matrix-feature-card h3 {
  color: var(--matrix-cyan);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.matrix-feature-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.65;
}

.matrix-cta-box {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.btn-matrix {
  background: linear-gradient(135deg, var(--matrix-cyan), #0099bb);
  color: var(--matrix-dark);
  font-weight: 800;
  border: none;
  letter-spacing: 0.05em;
}

.btn-matrix:hover {
  background: linear-gradient(135deg, #33ddff, var(--matrix-cyan));
  color: var(--matrix-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.3);
}

/* ---------- Contact Form ---------- */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-500);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group { margin-bottom: 20px; }

/* ---------- Page Hero (Interior Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.08), transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { opacity: 0.4; }

/* ---------- Tag Pills ---------- */
.tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--green-100);
}

.tag-gold {
  background: var(--gold-100);
  color: var(--gold-700);
  border-color: var(--gold-300);
}

.tag-dark {
  background: var(--green-800);
  color: var(--gold-400);
  border-color: var(--green-700);
}

/* ---------- Section Variants ---------- */
.section-dark {
  background: var(--green-900);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

.section-green {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
}

.section-light {
  background: var(--gray-100);
}

.section-gold {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--charcoal);
}

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
  font-weight: 400;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-700);
}

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-400), var(--green-200));
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-600);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .formerly {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  font-style: italic;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--charcoal);
}

/* ---------- Pathway Section ---------- */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.pathway-arrow {
  color: var(--gold-500);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  padding: 0 16px;
}

.pathway-node {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.pathway-node.active {
  border-color: var(--gold-500);
  background: linear-gradient(to bottom, var(--gold-100), var(--white));
}

.pathway-node.future {
  border-color: var(--matrix-cyan);
  background: linear-gradient(to bottom, rgba(0,212,255,0.05), var(--white));
}

.pathway-node:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pathway-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.pathway-node h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 6px;
}

.pathway-node p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.pathway-node .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 10px;
}

.pathway-node .badge-gold {
  background: var(--gold-100);
  color: var(--gold-700);
}

.pathway-node .badge-cyan {
  background: rgba(0,212,255,0.1);
  color: var(--matrix-cyan);
  border: 1px solid rgba(0,212,255,0.2);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pathway-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .container, .container-wide { padding: 0 20px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold-500) !important; }
.text-green { color: var(--green-500) !important; }
.text-muted { color: var(--gray-400) !important; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
}

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