/* ============================================================
   RISE2WEALTH — GLOBAL STYLESHEET
   Covers: index, about, services, courses, internship,
           playbook, contact
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --green: #2a9061;
  --green-light: #34b87a;
  --green-glow: rgba(42, 144, 97, 0.25);
  --green-dim: rgba(42, 144, 97, 0.12);
  --green-mid: rgba(42, 144, 97, 0.18);
}

[data-theme="dark"] {
  --bg: #070d0a;
  --bg2: #0d1810;
  --bg3: #111f16;
  --card: #0f1e14;
  --card-border: rgba(42, 144, 97, 0.18);
  --text: #e8f0eb;
  --nav-link: #3d6e52;
  --text-mute: #3d6e52;
  --text-muted: #7fa98e;
  --text-dim: #4a6e57;
  --nav-bg: rgba(238, 243, 241, 0.92);
  --shadow: rgba(0, 0, 0, 0.7);
  --glass: rgba(15, 30, 20, 0.6);
  --input-bg: rgba(15, 30, 20, 0.8);
}

[data-theme="light"] {
  --bg: #f0f7f3;
  --bg2: #e4f0e9;
  --bg3: #d8ece1;
  --card: #ffffff;
  --card-border: rgba(42, 144, 97, 0.22);
  --nav-link: #1a3d28;
  --text-mute: #3d6e52;
  --text: #0f2a1a;
  --text-muted: #3d6e52;
  --text-dim: #8ab49a;
  --nav-bg: rgba(240, 247, 243, 0.95);
  --shadow: rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.7);
  --input-bg: rgba(255, 255, 255, 0.9);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden;}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  top: 38px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 5%;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, box-shadow 0.3s;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.414rem; font-weight: 900;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}
.logo-img {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: #0f2a1a; text-decoration: none;
  font-size: 0.8888rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.mob-nav-btn.active .icon i,
.mob-nav-btn.active .icon {
  color: var(--green) !important;
}

.mob-nav-btn.active {
  color: var(--green);
  position: relative;
}

/* Glowing dot indicator under the active icon */
.mob-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* Dim all inactive icons */
.mob-nav-btn:not(.active) .icon i {
  color: var(--text-muted) !important;
  opacity: 0.55;
}

/* ===== BOTTOM NAV ACTIVE — FINAL OVERRIDE ===== */
.mobile-nav .mob-nav-btn:not(.active) i[class*="bi-"],
.mobile-nav .mob-nav-btn:not(.active) [class*="bi-"] {
  color: #7a9e8a !important;
  opacity: 1 !important;
}

.mobile-nav .mob-nav-btn.active i[class*="bi-"],
.mobile-nav .mob-nav-btn.active [class*="bi-"] {
  color: #2a9061 !important;
  opacity: 1 !important;
}

.mobile-nav .mob-nav-btn {
  position: relative;
}

.mobile-nav .mob-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a9061;
  box-shadow: 0 0 6px #2a9061;
}

/* Theme toggle */
.theme-toggle {
  background: var(--text); border: 1px solid var(--card-border);
  width: 44px; height: 26px; border-radius: 13px; cursor: pointer;
  position: relative; transition: background 0.3s; flex-shrink: 0;
}
.theme-toggle::after {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); transition: transform 0.3s;
}
[data-theme="light"] .theme-toggle::after { transform: translateX(18px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--nav-link); border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1001; background: var(--bg);
  transform: translateX(100%); transition: transform 0.3s ease;
  padding: 80px 2rem 2rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { list-style: none; }
.mobile-menu-links a {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 1.111rem; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--green); }
.close-menu {
  position: absolute; top: 20px; right: 20px;
  background: var(--card); border: 1px solid var(--card-border);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 1.212rem; display: flex; align-items: center; justify-content: center;
  color: var(--text);
}

/* Mobile Bottom Nav */
.mobile-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  border-top: 1px solid var(--card-border);
  padding: 0.6rem 0 calc(0.6rem + env(safe-area-inset-bottom));
}
.mobile-nav-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.mob-nav-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0.4rem; text-decoration: none; cursor: pointer;
  border: none; background: none; color: var(--text-muted); transition: color 0.2s;
}


/* ── Nav links always dark — nav bg is always light ── */
.nav-links a {
  color: #0f2a1a !important;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--green) !important;
}

.nav-links a.nav-active {
  position: relative;
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ===== MOBILE BOTTOM NAV — 7 ITEMS FIX ===== */
.mobile-nav-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.mob-nav-btn .label {
  font-size: 0.3838rem; /* smaller text to fit 7 items */
  font-weight: 500;
  letter-spacing: 0.2px;
}

.mob-nav-btn .icon {
  font-size: 0.808rem; /* slightly smaller icons too */
}

.mob-nav-btn {
  padding: 0.4rem 0.2rem; /* tighter horizontal padding */
}
.mob-nav-btn:hover,
.mob-nav-btn.active { color: var(--green); }
.mob-nav-btn .icon { font-size: 1.313rem; }
.mob-nav-btn .label { font-size: 0.5858rem; font-weight: 600; letter-spacing: 0.3px; }

.announce-bar {
  width: 100%;
  top: 0;
  background: #0d1810;
  border-bottom: 1px solid rgba(42,144,97,0.3);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
[data-theme="light"] .announce-bar {
  background: #d8ece1;
  border-bottom: 1px solid rgba(42,144,97,0.25);
}
.announce-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announce-bar:hover .announce-track {
  animation-play-state: paused;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.625px;
  color: #7fa98e;
  padding: 0 24px;
}
[data-theme="light"] .announce-item { color: #3d6e52; }
.announce-item strong { color: #34b87a; font-weight: 600; }
[data-theme="light"] .announce-item strong { color: #2a9061; }
.announce-tag {
  background: rgba(42,144,97,0.15);
  border: 1px solid rgba(42,144,97,0.25);
  color: #34b87a;
  font-size: 10.1px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 99px;
  text-transform: uppercase;
}
[data-theme="light"] .announce-tag { background: rgba(42,144,97,0.1); color: #2a9061; }
.announce-sep {
  color: rgba(42,144,97,0.35);
  font-size: 10.1px;
  padding: 0 4px;
}

.announce-bar {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #0d1810;
  border-bottom: 1px solid rgba(42,144,97,0.3);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-nav {
  background: var(--green); color: #fff; border: none;
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.8585rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-nav:hover { background: var(--green-light); transform: translateY(-1px); }

.btn-primary {
  background: var(--green); color: #fff;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.9292rem; font-weight: 600; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; box-shadow: 0 8px 28px var(--green-glow);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 12px 40px var(--green-glow); }

.btn-secondary,
.btn-ghost {
  background: transparent; color: var(--text);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.9292rem; font-weight: 600;
  border: 1px solid var(--card-border); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover,
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   SECTION SHARED / TYPOGRAPHY
   ============================================================ */
section { padding: 90px 5%; }

.section-label,
.section-eyebrow {
  display: inline-block;
  color: var(--green); font-size: 0.7272rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.919rem, 3.535vw, 2.929rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub {
  color: var(--text-muted); font-size: 1.01rem;
  max-width: 560px; line-height: 1.7;
}
.divider {
  width: 48px; height: 3px; background: var(--green);
  border-radius: 2px; margin: 1rem 0 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7575rem; color: var(--text-muted); margin-bottom: 1.5rem;
  animation: fadeUp 0.5s ease both;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--green); font-weight: 600; }

/* Hero eyebrow / badge */
.hero-badge,
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  color: var(--green); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.7878rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-eyebrow .dot,
.hero-badge::before { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero-badge::before { content: '●'; font-size: 0.6060rem; animation: pulse 2s infinite; }
.hero-eyebrow .dot { display: inline-block; animation: pulse 2s infinite; }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatOrb { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.float-actions {
  position: fixed; right: 20px; bottom: 90px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.313rem; text-decoration: none; box-shadow: 0 6px 20px var(--shadow);
  transition: all 0.2s; position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn .tooltip {
  position: absolute; right: 62px;
  background: var(--card); border: 1px solid var(--card-border);
  color: var(--text); font-size: 0.7575rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-btn:hover .tooltip { opacity: 1; }
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--green); color: #fff; }

/* ============================================================
   TICKER (index page)
   ============================================================ */
.ticker-wrap { background: var(--green); padding: 0.7rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 3rem; animation: ticker 25s linear infinite; }
.ticker-item { font-size: 0.8282rem; font-weight: 600; color: #fff; letter-spacing: 0.5px; }
.ticker-item .up { color: #a8ffcc; margin-left: 4px; }
.ticker-item .down { color: #ffa8a8; margin-left: 4px; }

/* ============================================================
   STATS BAND (shared across pages)
   ============================================================ */
.stats-band { background: var(--green); padding: 60px 5%; }
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.band-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 3.535rem; color: #fff; line-height: 1; }
.band-stat .label { font-size: 0.8282rem; color: rgba(255, 255, 255, 0.75); font-weight: 500; letter-spacing: 0.5px; margin-top: 4px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
 
/* ── CAROUSEL SLIDES ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1), transform 6s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(1.04);
}
 
/* Slide images — using Unsplash finance/trading themed */
.slide-1 { background-image: url('../img/r2w.jpg'); }
.slide-2 { background-image: url('../img/bull3.jpg'); }
 
/* ── OVERLAY LAYERS ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
}
/* subtle green vignette bottom */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 50% at 20% 60%, rgba(42,144,97,0.12) 0%, transparent 70%),
    linear-gradient(to top, rgba(7,13,10,0.7) 0%, transparent 40%);
}
/* animated scan line texture */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}
 
/* ── CAROUSEL DOTS ── */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  padding: 0;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--green);
}
 
/* ── PROGRESS BAR ── */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--green);
  z-index: 10;
  width: 0%;
  transition: width linear;
  box-shadow: 0 0 10px var(--green);
}
 
/* ── SLIDE COUNTER ── */
.hero-counter {
  position: absolute;
  bottom: 2.2rem;
  right: 5%;
  z-index: 10;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.01rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}
.hero-counter span { color: var(--green); }
 
/* ── CONTENT ── */
.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 5% 100px;
  max-width: 680px;
  width: 100%;
}
 
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42,144,97,0.15);
  border: 1px solid rgba(42,144,97,0.35);
  color: var(--green-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.7878rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
 
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero h1 em { font-style: normal; color: var(--green); }
 
.hero p {
  font-size: 1.0605rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
 
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9595rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(42,144,97,0.4);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(42,144,97,0.5);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9595rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
 
/* ── STATS ── */
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeUp 0.7s 0.5s ease both;
}
.stat-item {
  position: relative;
  padding-left: 1rem;
}
.stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: var(--green);
  border-radius: 2px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.02rem;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.7272rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-transform: uppercase;
}
 
/* ── FLOATING CARD ── */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-card-float {
  background: var(--glass);
  border: 1px solid rgba(42,144,97,0.25);
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(24px);
  width: 300px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: float 4s ease-in-out infinite;
}
.chart-mini { width: 100%; height: 110px; margin-bottom: 1rem; }
.card-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(42,144,97,0.1);
}
.card-stat-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.card-label { font-size: 0.7676rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.card-val { font-weight: 700; color: rgba(255,255,255,0.85); font-size: 0.8888rem; }
.card-val.up { color: var(--green-light); }
 
/* card live dot */
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.8rem;
}
.card-title { font-size: 0.7272rem; color: var(--text); letter-spacing: 1px; text-transform: uppercase; }
.live-dot {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.6868rem; color: var(--green-light); font-weight: 600;
}
.live-dot::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s infinite;
}
 
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-12px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; padding: 100px 5% 120px; }
}
@media (max-width: 500px) {
  .hero-stats { gap: 1.2rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ============================================================
   ABOUT SECTION (index + about page)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
/* ===== ABOUT IMAGE — IMAGE FILL FIX ===== */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  display: block; /* remove flex so image fills naturally */
}

.about-photo-placeholder img.big-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* Hide the text labels when image is present */
.about-photo-placeholder p {
  display: none;
}
.about-photo-placeholder .big-icon { font-size: 4.04rem; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: #fff;
  border-radius: 16px; padding: 1rem 1.5rem; text-align: center;
  box-shadow: 0 10px 30px var(--green-glow);
}
.about-badge-float .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.525rem; line-height: 1; }
.about-badge-float .txt { font-size: 0.7272rem; font-weight: 600; opacity: 0.9; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.808rem; color: var(--green); font-weight: 600; margin-bottom: 1.5rem;
}
.expertise-list { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.expertise-tag {
  background: rgba(42, 144, 97, 0.12);
  border: 1px solid rgba(42, 144, 97, 0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.808rem;
  color: #34b87a;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 0 12px rgba(42, 144, 97, 0.15);
  transition: all 0.2s ease;
}

.expertise-tag:hover {
  background: rgba(42, 144, 97, 0.22);
  border-color: rgba(42, 144, 97, 0.6);
  box-shadow: 0 0 18px rgba(42, 144, 97, 0.3);
  transform: translateY(-1px);
}

/* ============================================================
   LEADERSHIP SECTION — ldr-* prefix (no conflicts)
   ============================================================ */
.ldr-section {
  padding: 100px 5%;
  background: var(--bg2);
}

.ldr-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}

/* ── Card ── */
.ldr-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.ldr-card:hover {
  box-shadow: 0 24px 60px var(--shadow);
  transform: translateY(-4px);
  border-color: var(--green);
}

.ldr-content {
  padding: 2.2rem 2.5rem;
}

.ldr-desc {
  font-size: 0.8686rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

/* ── Photo side ── */
.ldr-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.ldr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ldr-card:hover .ldr-photo {
  transform: scale(1.03);
}

/* Badge on photo */
.ldr-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 0.7rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px var(--green-glow);
}
.ldr-badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.616rem;
  line-height: 1;
}
.ldr-badge-txt {
  display: block;
  font-size: 0.6565rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 2px;
}

/* ── Content side ── */
.ldr-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.ldr-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}

.ldr-eyebrow {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.ldr-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.616rem, 2.525vw, 2.222rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.ldr-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.7575rem;
  color: var(--green);
  font-weight: 600;
  width: fit-content;
}
.ldr-divider {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 1.2rem 0;
}
.ldr-desc {
  font-size: 0.8888rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.ldr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.ldr-tag {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7676rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.ldr-tag:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── Reverse layout (photo left, text right) ── */
.ldr-card-reverse {
  /* grid already puts photo-wrap first in DOM for reverse card */
}
.ldr-card-reverse .ldr-content::before {
  /* move accent line to bottom for visual variety */
  top: auto;
  bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ldr-card,
  .ldr-card-reverse {
    grid-template-columns: 1fr;
  }
  .ldr-photo-wrap {
    min-height: 300px;
  }
  /* On mobile, always show photo on top */
  .ldr-card-reverse .ldr-photo-wrap {
    order: -1;
  }
  .ldr-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .ldr-photo-wrap {
    min-height: 240px;
  }
  .ldr-content {
    padding: 1.5rem;
  }
}

/* ============================================================
   INTERNSHIP SECTION (index page — prefixed icard to avoid conflicts)
   ============================================================ */
.intern-section {
  padding: 90px 5%;
  background: var(--bg2);
}

.intern-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.icard {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.icard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.icard:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 50px var(--shadow);
}
.icard:hover::after {
  transform: scaleX(1);
}

.icard-type {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.icard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.111rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.icard-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.222rem;
  color: var(--text);
  line-height: 1;
}

.icard-duration {
  font-size: 0.7878rem;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--card-border);
}

.icard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.icard-list li {
  font-size: 0.8484rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.icard-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.7878rem;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .intern-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .intern-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES (index + services page)
   ============================================================ */
.services-bg { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.414rem; margin-bottom: 1.2rem; transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--green-glow); }
.service-card h3 { font-size: 1.0605rem; font-weight: 700; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.8787rem; color: var(--text-muted); line-height: 1.6; }
.service-list { margin-top: 1rem; list-style: none; }
.service-list li {
  font-size: 0.8282rem; color: var(--text-muted); padding: 0.2rem 0;
  display: flex; align-items: flex-start; gap: 6px;
}
.service-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Services page — detailed section layout */
.svc-section { padding: 90px 5%; position: relative; }
.svc-section:nth-child(even) { background: var(--bg2); }
.svc-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.svc-header.reverse { direction: rtl; }
.svc-header.reverse > * { direction: ltr; }
.svc-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; display: block; }
.svc-title { font-family: 'Playfair Display', serif; font-size: clamp(1.818rem, 3.03vw, 2.626rem); font-weight: 700; line-height: 1.18; margin-bottom: 1rem; }
.svc-title em { font-style: italic; color: var(--green); }
.svc-desc { font-size: 0.9595rem; color: var(--text-muted); line-height: 1.8; }
.svc-visual {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: 28px; padding: 2.2rem;
  backdrop-filter: blur(16px); box-shadow: 0 20px 50px var(--shadow);
  position: relative; overflow: hidden;
}
.svc-visual::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}
.svc-icon-big { font-size: 3.03rem; margin-bottom: 1rem; }
.svc-visual-title { font-family: 'Playfair Display', serif; font-size: 1.111rem; font-weight: 700; margin-bottom: 0.5rem; }
.svc-visual-sub { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.mini-stat { background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 12px; padding: 0.9rem 1rem; text-align: center; }
.mini-stat .n { font-family: 'Bebas Neue', sans-serif; font-size: 1.818rem; color: var(--green); line-height: 1; }
.mini-stat .l { font-size: 0.707rem; color: var(--text-muted); margin-top: 2px; }

/* Feature cards (services page) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.feature-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 1.6rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 16px 40px var(--shadow); }
.feature-card:hover::after { transform: scaleY(1); }
.fc-icon { font-size: 1.414rem; margin-bottom: 0.8rem; }
.fc-title { font-weight: 700; font-size: 0.9595rem; margin-bottom: 0.5rem; }
.fc-list { list-style: none; }
.fc-list li { font-size: 0.8282rem; color: var(--text-muted); padding: 0.22rem 0; display: flex; align-items: flex-start; gap: 7px; }
.fc-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 0.7878rem; margin-top: 1px; }

/* Service tabs (services page) */
.service-tabs-wrap {
  background: var(--bg2); border-bottom: 1px solid var(--card-border);
  position: sticky; top: 68px; z-index: 900;
}
.service-tabs { display: flex; gap: 0; overflow-x: auto; padding: 0 5%; scrollbar-width: none; }
.service-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none; border: none; color: var(--text-muted);
  font-family: 'DM Sans', sans-serif; font-size: 0.8282rem; font-weight: 600;
  padding: 1rem 1.4rem; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

/* Who can join section */
.who-section { padding: 90px 5%; }
.who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; margin-top: 3rem; }
.who-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 1.8rem 1.2rem; text-align: center; transition: all 0.3s;
}
.who-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.who-emoji { font-size: 2.222rem; margin-bottom: 0.8rem; }
.who-label { font-weight: 700; font-size: 0.909rem; margin-bottom: 0.4rem; }
.who-desc { font-size: 0.7878rem; color: var(--text-muted); line-height: 1.5; }

/* Process section */
.process-section { padding: 90px 5%; background: var(--bg2); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
  opacity: 0.35; z-index: 0;
}
.step,
.step-item { text-align: center; padding: 0 1rem; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.step-num-circle,
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.616rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; box-shadow: 0 8px 24px var(--green-glow);
}
.step-circle {
  background: var(--card); border: 2px solid var(--green); color: inherit;
  font-size: 1.414rem; transition: all 0.3s;
}
.step-item:hover .step-circle { background: var(--green); transform: scale(1.08); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 0.7575rem; color: var(--green); letter-spacing: 2px; margin-bottom: 0.4rem; }
.step-title { font-weight: 700; font-size: 0.909rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.808rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   COURSES PAGE
   ============================================================ */
.courses-hero {
  min-height: 62vh; padding: 100px 5% 70px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.222rem; color: var(--green); line-height: 1; }
.hero-stat .lbl { font-size: 0.7272rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* Filter bar */
.filter-bar {
  position: sticky; top: 68px; z-index: 100;
  background: var(--bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.9rem 5%; display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center;
}
.filter-label { font-size: 0.7272rem; font-weight: 700; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; margin-right: 0.4rem; white-space: nowrap; }
.filter-btn {
  background: transparent; border: 1px solid var(--card-border);
  color: var(--text-muted); border-radius: 50px;
  padding: 0.4rem 1.1rem; font-size: 0.808rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Course track label */
.track-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; margin-top: 3.5rem; }
.track-label:first-of-type { margin-top: 0; }
.track-line { flex: 1; height: 1px; background: var(--card-border); }
.track-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  color: var(--green); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.7575rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}

.included-from {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(42,144,97,0.12), rgba(42,144,97,0.05));
  border: 1px solid rgba(42,144,97,0.3);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.included-from-text { flex: 1; }
.included-from-label {
  display: block;
  font-size: 0.5858rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.included-from-name {
  font-size: 0.8282rem;
  font-weight: 600;
  color: var(--text);
}

/* Course grid */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.courses-grid.two-col { grid-template-columns: repeat(2, 1fr); }

/* Course card */
.course-card,
.courses-grid .course-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 24px; overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.32s; position: relative;
}
.course-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 24px 60px var(--shadow); }
.course-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-glow); }
.card-top {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border); position: relative;
}
.card-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.707rem; font-weight: 700; letter-spacing: 0.5px;
}
.badge-level { background: var(--green-dim); border: 1px solid var(--card-border); color: var(--green); }
.badge-popular { background: rgba(255, 180, 0, 0.12); border: 1px solid rgba(255, 180, 0, 0.25); color: #e6a800; }
.badge-new { background: rgba(42, 144, 97, 0.2); border: 1px solid rgba(42, 144, 97, 0.4); color: var(--green-light); }
.badge-ai { background: rgba(100, 140, 255, 0.1); border: 1px solid rgba(100, 140, 255, 0.25); color: #8aadff; }
.badge-adv { background: rgba(255, 80, 80, 0.1); border: 1px solid rgba(255, 80, 80, 0.2); color: #ff8080; }
.card-price-row { display: flex; align-items: flex-end; gap: 0.6rem; margin-bottom: 0.8rem; }
.card-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.626rem; color: var(--text); line-height: 1; }
.card-price span { font-size: 1.313rem; color: var(--text-muted); }
.card-duration,
.course-duration { font-size: 0.7575rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; padding-bottom: 1rem; display: flex; align-items: center; gap: 5px; }
.card-title,
.course-name { font-family: 'Playfair Display', serif; font-size: 1.212rem; font-weight: 700; line-height: 1.25; }
.card-body { padding: 1.5rem 2rem 0; flex: 1; }
.card-desc { font-size: 0.8484rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.3rem; }
.course-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.02rem; color: var(--green); margin-top: 0.4rem; }

.modules-toggle,
.expand-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 0.808rem; font-weight: 700;
  padding: 0; font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 1rem; transition: opacity 0.2s;
}
.modules-toggle:hover,
.expand-btn:hover { opacity: 0.75; }
.modules-toggle .arrow,
.expand-btn .arr { transition: transform 0.3s; display: inline-block; }
.modules-toggle.open .arrow,
.expand-btn.open .arr { transform: rotate(180deg); }
.modules-list { display: none; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.modules-list.open { display: flex; }
.expandable { display: none; }
.expandable.open { display: block; }
.module-item,
.mod-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.808rem; color: var(--text-muted); line-height: 1.45;
}
.module-item::before,
.mod-item::before { content: '✔'; color: var(--green); font-size: 0.6565rem; margin-top: 2px; flex-shrink: 0; }
.highlights { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.highlight-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8181rem; color: var(--text-muted); }
.hi-icon { font-size: 0.909rem; flex-shrink: 0; }
.bonuses-row,
.bonus-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.3rem; }
.bonus-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.25rem 0.7rem; font-size: 0.7272rem; color: var(--text-muted);
}
.card-footer,
.course-footer { padding: 1.2rem 2rem 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

.btn-enroll,
.btn-course,
.btn-apply {
  flex: 1; min-width: 120px;
  background: var(--green); color: #fff; border: none; border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.8888rem; font-weight: 700;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: all 0.2s; box-shadow: 0 6px 20px var(--green-glow);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-enroll:hover,
.btn-course:hover,
.btn-apply:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-details,
.btn-info {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--card-border); border-radius: 50px;
  padding: 0.75rem 1.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.8484rem; font-weight: 600;
  cursor: pointer; text-decoration: none; text-align: center; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-details:hover,
.btn-info:hover { border-color: var(--green); color: var(--green); }

/* Featured tag (index courses section) */
.featured-tag {
  background: var(--green); color: #fff;
  font-size: 0.707rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.25rem 0.8rem; border-radius: 50px; display: inline-block; margin-bottom: 0.6rem;
}
.course-header {
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border);
}
.course-body { padding: 1.5rem; flex: 1; }
.course-features { list-style: none; }
.course-features li {
  font-size: 0.8484rem; color: var(--text-muted); padding: 0.35rem 0;
  display: flex; align-items: flex-start; gap: 8px;
  border-bottom: 1px solid var(--card-border);
}
.course-features li:last-child { border: none; }
.course-features li::before { content: '→'; color: var(--green); font-weight: 700; }

/* Mega card (flagship 10-month) */
.mega-wrapper { margin-top: 4rem; position: relative; }
.mega-top-label { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.mega-top-label .line { flex: 1; height: 1px; background: var(--green); opacity: 0.3; }
.mega-top-label .label-text { font-size: 0.7272rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); white-space: nowrap; }
.mega-card {
  background: var(--card); border: 2px solid var(--green); border-radius: 32px; overflow: hidden;
  box-shadow: 0 0 80px var(--green-glow), 0 24px 60px var(--shadow); position: relative;
}
.mega-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
}
.mega-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.mega-left { padding: 3rem; border-right: 1px solid var(--card-border); background: linear-gradient(135deg, var(--green-dim), transparent); }
.mega-right { padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mega-price-row { display: flex; align-items: flex-end; gap: 0.6rem; margin-bottom: 0.5rem; }
.mega-price { font-family: 'Bebas Neue', sans-serif; font-size: 4.04rem; color: var(--text); line-height: 1; }
.mega-price span { font-size: 2.02rem; color: var(--text-muted); }
.mega-dur { font-size: 0.7878rem; color: var(--text-muted); font-weight: 600; }
.mega-title { font-family: 'Playfair Display', serif; font-size: 1.919rem; font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.mega-title em { font-style: italic; color: var(--green); }
.mega-desc { font-size: 0.909rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.mega-modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.mega-mod { display: flex; align-items: flex-start; gap: 8px; font-size: 0.7878rem; color: var(--text-muted); line-height: 1.4; }
.mega-mod::before { content: '✔'; color: var(--green); font-size: 0.6565rem; margin-top: 2px; flex-shrink: 0; }
.mega-bonuses-title { font-size: 0.7272rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; }
.mega-bonuses { display: flex; flex-direction: column; gap: 0.6rem; }
.mega-bonus { display: flex; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid var(--card-border); border-radius: 12px; padding: 0.7rem 1rem; font-size: 0.8282rem; color: var(--text-muted); }
.mega-bonus .bi { font-size: 1.01rem; }
.mega-cta-area { margin-top: auto; }
.mega-cta-area p { font-size: 0.7878rem; color: var(--text-muted); margin-top: 0.8rem; text-align: center; }
.btn-mega {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; border: none; border-radius: 50px; width: 100%;
  padding: 1.05rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 1.01rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s; box-shadow: 0 10px 30px var(--green-glow);
}
.btn-mega:hover { background: var(--green-light); transform: translateY(-2px); }

/* Comparison table */
.comparison-section { padding: 80px 5% 100px; background: var(--bg2); }
.table-wrapper { overflow-x: auto; margin-top: 3rem; border-radius: 20px; border: 1px solid var(--card-border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.8484rem; }
.compare-table th {
  padding: 1.2rem 1.4rem; text-align: left; background: var(--card);
  color: var(--text-muted); font-weight: 700; font-size: 0.7575rem;
  letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid var(--card-border); white-space: nowrap;
}
.compare-table th:first-child { color: var(--green); }
.compare-table td { padding: 1rem 1.4rem; border-bottom: 1px solid var(--card-border); color: var(--text-muted); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--green-dim); }
.compare-table td:first-child { color: var(--text); font-weight: 600; }
.compare-table td .check,
.check { color: var(--green); font-size: 1.01rem; }
.compare-table td .cross,
.cross { color: var(--text-dim); }
.compare-table td .price-cell,
.price-cell { font-family: 'Bebas Neue', sans-serif; font-size: 1.313rem; color: var(--text); }
.compare-table tr.highlight-row td,
.compare-table tr.hl td { background: var(--green-dim); }
.compare-table tr.highlight-row td:first-child { color: var(--green); }

/* ============================================================
   COURSES & INTERNSHIP MERGED PAGE — ADDITIONAL CSS ONLY
   Uses existing script.css; only new styles below
   ============================================================ */

/* ── Combined Hero ── */
.ci-hero {
  min-height: 68vh;
  padding: 130px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ci-hero .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
}

/* ── Section Jump Nav ── */
.ci-jump-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.ci-jump-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  color: var(--green);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8888rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.ci-jump-btn:hover,
.ci-jump-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}

/* ── Section Divider Band ── */
.ci-section-band {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 5%;
  margin: 0;
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  min-height: 64px;
}

.ci-band-icon {
  font-size: 1.515rem;
  flex-shrink: 0;
}

.ci-band-label {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

.ci-band-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.111rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.ci-band-sep {
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

.ci-band-pill {
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.7272rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Programs section wrapper ── */
.programs-section {
  padding: 60px 5% 80px;
}

/* ── Courses section wrapper ── */
.courses-section {
  padding: 60px 5% 80px;
}

/* ── Intro difference cards ── */
.ci-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  animation: fadeUp 0.7s 0.35s ease both;
}

.ci-diff-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.ci-diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.ci-diff-card:hover::before {
  transform: scaleX(1);
}

.ci-diff-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--shadow);
}

.ci-diff-icon {
  font-size: 1.616rem;
  margin-bottom: 0.6rem;
}

.ci-diff-type {
  font-size: 0.6565rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.ci-diff-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9595rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.ci-diff-desc {
  font-size: 0.808rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CI-HERO — TWO COLUMN LAYOUT + PROMINENT CTA BUTTONS
   ============================================================ */
.ci-hero {
  min-height: 80vh;
  padding: 140px 5% 100px;
  align-items: center;
}

.ci-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

/* Left column — text content */
.ci-hero-left {
  display: flex;
  flex-direction: column;
}

/* Right column — cards */
.ci-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ci-diff-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 0;
  animation: none;
}

.ci-diff-card {
  padding: 1.8rem;
  border-radius: 20px;
}

.ci-diff-card:hover {
  transform: translateX(6px) translateY(-2px);
}

/* Jump nav buttons — prominent CTA */
.ci-jump-nav {
  margin-top: 2.2rem;
  gap: 0.8rem;
}

.ci-jump-btn {
  padding: 0.9rem 2rem;
  font-size: 0.9292rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(42, 144, 97, 0.3);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ci-jump-btn:first-child {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 8px 28px rgba(42, 144, 97, 0.4);
}

.ci-jump-btn:first-child:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(42, 144, 97, 0.5);
}

.ci-jump-btn:last-child {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  box-shadow: none;
}

.ci-jump-btn:last-child:hover {
  background: var(--green-dim);
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 144, 97, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .ci-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ci-hero-right {
    display: none;
  }

  .ci-diff-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .ci-hero {
    padding: 108px 5% 70px;
    min-height: auto;
  }

  .ci-diff-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ci-jump-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.8686rem;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ci-hero {
    min-height: auto;
    padding: 90px 5% 60px;
  }

  .ci-diff-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ci-jump-nav {
    gap: 0.5rem;
  }

  .ci-jump-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8282rem;
  }

  .ci-section-band {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1rem 5%;
    min-height: auto;
  }

  .ci-band-sep {
    display: none;
  }

  .programs-section,
  .courses-section {
    padding: 50px 5% 60px;
  }
}

/* ============================================================
   INTERNSHIP PAGE
   ============================================================ */
.intern-hero {
  min-height: 100vh; padding: 100px 5% 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; animation: floatOrb 8s ease-in-out infinite; }
.orb-1 { width: 300px; height: 300px; background: rgba(42, 144, 97, 0.08); top: 15%; right: 8%; animation-delay: 0s; }
.orb-2 { width: 200px; height: 200px; background: rgba(42, 144, 97, 0.06); bottom: 20%; left: 5%; animation-delay: 3s; }
.eligibility-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; animation: fadeUp 0.7s 0.28s ease both; }
.elig-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.35rem 0.9rem; font-size: 0.7676rem; color: var(--text-muted); font-weight: 600;
}
.elig-chip span { color: var(--green); }

/* Track selector card (hero right) */
.track-selector-card {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: 28px; padding: 2rem;
  backdrop-filter: blur(20px); box-shadow: 0 24px 60px var(--shadow);
  position: relative; overflow: hidden;
}
.track-selector-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}
.ts-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
.ts-title { font-family: 'Playfair Display', serif; font-size: 1.111rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.3; }
.track-tabs { display: flex; flex-direction: column; gap: 0.7rem; }
.track-tab {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1rem 1.2rem; cursor: pointer; transition: all 0.22s; text-decoration: none;
}
.track-tab:hover,
.track-tab.active { border-color: var(--green); background: var(--green-dim); }
.track-tab .t-icon { font-size: 1.313rem; flex-shrink: 0; }
.track-tab .t-info { flex: 1; }
.track-tab .t-name { font-size: 0.8888rem; font-weight: 700; color: var(--text); }
.track-tab .t-dur { font-size: 0.7272rem; color: var(--text-muted); margin-top: 2px; }
.track-tab .t-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.313rem; color: var(--green); flex-shrink: 0; }

/* Track toggle bar */
.track-toggle-bar {
  position: sticky; top: 68px; z-index: 100;
  background: var(--bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.85rem 5%; display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
}
.ttb-label { font-size: 0.7272rem; font-weight: 700; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; margin-right: 0.4rem; white-space: nowrap; }
.ttb-btn {
  background: transparent; border: 1px solid var(--card-border);
  color: var(--text-muted); border-radius: 50px;
  padding: 0.4rem 1.1rem; font-size: 0.808rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.ttb-btn:hover { border-color: var(--green); color: var(--green); }
.ttb-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* Track dividers */
.track-divider { display: flex; align-items: center; gap: 1rem; margin: 4rem 0 2rem; }
.track-divider:first-of-type { margin-top: 0; }
.td-line { flex: 1; height: 1px; background: var(--card-border); }
.td-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--card-border); border-radius: 50px; padding: 0.45rem 1.3rem;
  font-size: 0.7575rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.td-badge.standard { background: var(--green-dim); color: var(--green); }
.td-badge.ai { background: rgba(100, 140, 255, 0.1); border-color: rgba(100, 140, 255, 0.25); color: #8aadff; }

/* Internship program cards */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.prog-grid.two { grid-template-columns: repeat(2, 1fr); }
.prog-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 26px; overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.32s; position: relative;
}
.prog-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 24px 60px var(--shadow); }
.prog-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-glow); }
.pc-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border); position: relative;
}
.pc-badges { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 1rem; }
.badge-dur { background: var(--green-dim); border: 1px solid var(--card-border); color: var(--green); }
.badge-pop { background: rgba(255, 180, 0, 0.12); border: 1px solid rgba(255, 180, 0, 0.25); color: #e6a800; }
.pc-price-row { display: flex; align-items: flex-end; gap: 0.5rem; margin-bottom: 0.4rem; }
.pc-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.828rem; color: var(--text); line-height: 1; }
.pc-price span { font-size: 1.414rem; color: var(--text-muted); }
.pc-dur { font-size: 0.7474rem; color: var(--text-muted); font-weight: 600; padding-bottom: 0.8rem; }
.pc-title { font-family: 'Playfair Display', serif; font-size: 1.1615rem; font-weight: 700; line-height: 1.25; }
.pc-objective { font-size: 0.7676rem; color: var(--green); font-weight: 600; letter-spacing: 0.5px; margin-top: 0.4rem; }
.pc-body { padding: 1.5rem 2rem 0; flex: 1; }
.pc-desc { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.3rem; }
.mod-section { margin-bottom: 1.1rem; }
.mod-section-title { font-size: 0.707rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.mod-items { display: flex; flex-direction: column; gap: 0.38rem; }
.outcome-row { margin-bottom: 1.3rem; }
.outcome-title { font-size: 0.707rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.outcomes { display: flex; flex-direction: column; gap: 0.35rem; }
.outcome-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.808rem; color: var(--text-muted); }
.outcome-item::before { content: '★'; color: var(--green); font-size: 0.6060rem; flex-shrink: 0; }
.pc-footer { padding: 1.2rem 2rem 2rem; display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* What you gain */
.gain-section { padding: 80px 5%; background: var(--bg2); }
.gain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.gain-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 22px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.gain-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.gain-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
.gain-card:hover::after { transform: scaleX(1); }
.gain-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.232rem; color: var(--green-mid); line-height: 1; margin-bottom: 0.4rem; transition: color 0.3s; }
.gain-card:hover .gain-num { color: var(--green); }
.gain-icon { font-size: 1.515rem; margin-bottom: 0.7rem; }
.gain-title { font-family: 'Playfair Display', serif; font-size: 1.01rem; font-weight: 700; margin-bottom: 0.5rem; }
.gain-desc { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.65; }

/* Eligibility */
.elig-section { padding: 80px 5%; }
.elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.degree-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.degree-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.2rem 1.3rem;
  display: flex; align-items: center; gap: 0.8rem; transition: all 0.25s;
}
.degree-card:hover { border-color: var(--green); background: var(--green-dim); }
.degree-icon { font-size: 1.414rem; flex-shrink: 0; }
.degree-name { font-size: 0.8585rem; font-weight: 700; color: var(--text); }
.skill-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.skill-item { display: flex; align-items: flex-start; gap: 1rem; }
.skill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 5px; }
.skill-text { font-size: 0.8585rem; color: var(--text-muted); line-height: 1.55; }
.skill-text strong { color: var(--text); }

/* Certificate highlight */
.cert-section { padding: 0 5% 80px; }
.cert-card {
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border: 1px solid var(--card-border); border-left: 4px solid var(--green);
  border-radius: 24px; padding: 2.5rem 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.cert-left h3 { font-family: 'Playfair Display', serif; font-size: 1.414rem; font-weight: 700; margin-bottom: 0.7rem; }
.cert-left p { font-size: 0.8888rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }
.cert-right { text-align: center; }
.cert-icon { font-size: 4.04rem; margin-bottom: 0.5rem; }
.cert-badge-text { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 100vh; padding: 100px 5% 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-inner.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Mission card */
.mission-card {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: 28px; padding: 2.5rem; backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px var(--shadow); position: relative; overflow: hidden;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}
.mission-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
.mission-number { font-family: 'Bebas Neue', sans-serif; font-size: 5.05rem; color: var(--green); line-height: 1; margin-bottom: 0.2rem; }
.mission-text { font-size: 1.2625rem; font-weight: 700; line-height: 1.35; margin-bottom: 1.5rem; }
.mission-divider { width: 40px; height: 2px; background: var(--green); border-radius: 2px; margin-bottom: 1.5rem; }
.mission-sub { font-size: 0.8888rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.cert-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cert-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.35rem 0.9rem; font-size: 0.7575rem; color: var(--green); font-weight: 600;
}

/* Story section */
.story-section { padding: 100px 5%; background: var(--bg2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.story-body p { font-size: 0.9595rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.story-body p strong { color: var(--text); }
.highlight-box {
  background: var(--card); border: 1px solid var(--card-border); border-left: 3px solid var(--green);
  border-radius: 0 16px 16px 0; padding: 1.2rem 1.5rem; margin: 2rem 0;
  font-size: 1.01rem; font-style: italic; color: var(--text-muted); line-height: 1.65;
}
.highlight-box strong { color: var(--green); font-style: normal; }

/* Timeline */
.story-timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-dim); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 1.111rem; flex-shrink: 0; position: relative; z-index: 1;
}
.tl-line { width: 1px; flex: 1; background: linear-gradient(to bottom, var(--green), transparent); margin-top: 8px; }
.tl-item:last-child .tl-line { display: none; }
.tl-content { padding-top: 8px; }
.tl-year { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; color: var(--green); text-transform: uppercase; margin-bottom: 0.4rem; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1.01rem; font-weight: 700; margin-bottom: 0.5rem; }
.tl-desc { font-size: 0.8484rem; color: var(--text-muted); line-height: 1.6; }

/* Values */
.values-section { padding: 100px 5%; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 22px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.value-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
.value-card:hover::after { transform: scaleX(1); }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.535rem; color: var(--green-mid); line-height: 1; margin-bottom: 0.5rem; transition: color 0.3s; }
.value-card:hover .value-num { color: var(--green); }
.value-icon { font-size: 1.616rem; margin-bottom: 0.8rem; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.0605rem; font-weight: 700; margin-bottom: 0.6rem; }
.value-desc { font-size: 0.8484rem; color: var(--text-muted); line-height: 1.65; }

/* Team */
.team-section { padding: 100px 5%; background: var(--bg2); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
/* ===== TEAM AVATAR — REMOVE ROUND SHAPE ===== */
/* ===== TEAM AVATAR — PER-PERSON POSITION FIX ===== */
.team-avatar {
  width: 100%;
  height: 260px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  display: block;
  margin: 0;
  border: none;
  background: none;
}

/* Individual position overrides */
img.team-avatar[src*="srini"] {
  object-position: center 20%; /* adjust % to show face */
}

img.team-avatar[src*="ranjith"] {
  object-position: center 15%; /* adjust % to show face */
}

#team .team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  max-width: 440px;
  width: 100%;
}

/* ===== TEAM GRID — WIDTH FIX ===== */
#team .team-grid {
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.team-avatar {
  height: 300px; /* slightly taller now that cards are narrower */
}
/* ===== TEAM CARD — IMAGE BLEED FIX ===== */
.team-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden; /* clips image to card corners */
  transition: all 0.3s;
  text-align: center;
  padding: 0; /* remove top padding so image fills edge to edge */
}

/* Push the text content back in */
.team-card .team-name,
.team-card .team-role,
.team-card .team-cert,
.team-card .team-desc,
.team-card > div:last-child {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.team-card .team-name  { padding-top: 1.2rem; }
.team-card > div:last-child { padding-bottom: 1.5rem; }

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 20px 50px var(--shadow);
}
.team-name { font-family: 'Playfair Display', serif; font-size: 1.212rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-role { font-size: 0.808rem; color: var(--green); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; }
.team-cert {
  background: var(--green-dim); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.3rem 0.8rem; font-size: 0.7575rem; color: var(--green); font-weight: 600; display: inline-block; margin-bottom: 1rem;
}
.team-desc { font-size: 0.8585rem; color: var(--text-muted); line-height: 1.65; }

/* About page team cards (larger) */
.team-card.large { padding: 0; border-radius: 28px; overflow: hidden; display: flex; flex-direction: column; }
.team-header {
  padding: 2.5rem 2.5rem 2rem; background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border); display: flex; gap: 1.5rem; align-items: flex-start;
}
.avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.02rem; flex-shrink: 0; border: 3px solid var(--card-border); box-shadow: 0 8px 20px var(--green-glow);
}
.team-info { flex: 1; }
.team-body { padding: 2rem 2.5rem 2.5rem; flex: 1; }
.exp-tag {
  background: var(--bg2); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.3rem 0.8rem; font-size: 0.7676rem; color: var(--text-muted);
}

/* Services preview (about page) */
.services-preview { padding: 100px 5%; }
.svc-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 1.8rem; transition: all 0.3s; cursor: default;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.svc-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.svc-card .svc-icon { width: 48px; height: 48px; background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.313rem; }
.svc-card .svc-title { font-size: 0.9595rem; font-weight: 700; }
.svc-card .svc-desc { font-size: 0.8282rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   WHY US (index)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 3rem; }
.why-points { display: flex; flex-direction: column; gap: 1.2rem; }
.why-point {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.2rem; transition: all 0.3s;
}
.why-point:hover { border-color: var(--green); transform: translateX(5px); }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.212rem;
}
.why-point h4 { font-size: 0.9595rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-point p { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.55; }
.why-visual { background: var(--card); border: 1px solid var(--card-border); border-radius: 24px; padding: 2rem; }
.why-visual h4 { font-family: 'Playfair Display', serif; font-size: 1.111rem; font-weight: 700; margin-bottom: 1.5rem; }
.progress-row { margin-bottom: 1.2rem; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.8282rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.progress-bar { background: var(--bg2); border-radius: 50px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 50px; transition: width 1s ease; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-bg { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 1.8rem; transition: all 0.3s; }
.testi-card:hover { border-color: var(--green); transform: translateY(-4px); }
.stars { color: #f5b942; font-size: 0.909rem; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.8888rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.01rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.8888rem; }
.testi-city { font-size: 0.7575rem; color: var(--text-muted); }

/* ============================================================
   FAQ (multiple pages)
   ============================================================ */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-section .faq-list,
.faq-section + .faq-list { max-width: 780px; }
.faq-item {
  border: 1px solid var(--card-border); border-radius: 14px; margin-bottom: 0.8rem;
  overflow: hidden; transition: border-color 0.3s; background: var(--card);
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; background: var(--card); border: none; padding: 1.2rem 1.5rem;
  text-align: left; color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 0.9292rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .chevron {
  width: 22px; height: 22px; border: 1px solid var(--card-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.707rem; flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .chevron { transform: rotate(180deg); background: var(--green); border-color: var(--green); color: #fff; }
.faq-q .arrow { font-size: 0.909rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  background: var(--card); max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.8686rem; color: var(--text-muted); line-height: 1.75;
}
.faq-a-inner { padding: 0 1.5rem 1.2rem; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-a:not(:has(.faq-a-inner)) { padding: 0 1.5rem 1.5rem; }

/* ============================================================
   PLAYBOOK PAGE
   ============================================================ */
.playbook-hero {
  min-height: 100vh; padding: 100px 5% 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.playbook-preview-card {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: 28px; padding: 2.2rem; backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px var(--shadow); position: relative; overflow: hidden;
}
.playbook-preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}
.preview-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
.preview-rules { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.8rem; }
.preview-rules li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8888rem; color: var(--text-muted); line-height: 1.5;
  padding: 0.7rem 0.9rem; background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 10px;
}
.preview-rules li .rule-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.111rem; color: var(--green); flex-shrink: 0; line-height: 1; margin-top: 1px; }
.preview-rules li strong { color: var(--text); display: block; font-size: 0.8282rem; margin-bottom: 2px; }
.preview-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.prev-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 50px; padding: 0.3rem 0.8rem; font-size: 0.7373rem; color: var(--green); font-weight: 600; }

/* Pillars */
.pillars-section { padding: 100px 5%; background: var(--bg2); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pillar-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.3s; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.pillar-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.535rem; color: var(--green-mid); line-height: 1; margin-bottom: 0.4rem; transition: color 0.3s; }
.pillar-card:hover .pillar-num { color: var(--green); }
.pillar-icon { font-size: 1.616rem; margin-bottom: 0.8rem; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.0605rem; font-weight: 700; margin-bottom: 0.6rem; }
.pillar-desc { font-size: 0.8484rem; color: var(--text-muted); line-height: 1.65; }

/* Golden rules */
.rules-section { padding: 100px 5%; }
.rules-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.rule-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 1.6rem 2rem;
  display: flex; gap: 1.8rem; align-items: flex-start; transition: all 0.3s; position: relative; overflow: hidden;
}
.rule-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.rule-item:hover::before { transform: scaleY(1); }
.rule-item:hover { border-color: var(--green); transform: translateX(6px); box-shadow: 0 12px 40px var(--shadow); }
.rule-badge {
  min-width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.414rem; color: var(--green); flex-shrink: 0;
}
.rule-content { flex: 1; }
.rule-title { font-family: 'Playfair Display', serif; font-size: 1.0605rem; font-weight: 700; margin-bottom: 0.5rem; }
.rule-desc { font-size: 0.8686rem; color: var(--text-muted); line-height: 1.7; }
.rule-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-dim); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 0.22rem 0.7rem;
  font-size: 0.707rem; color: var(--green); font-weight: 600; margin-top: 0.7rem;
}

/* Checklist */
.checklist-section { padding: 100px 5%; background: var(--bg2); }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.checklist-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; overflow: hidden; transition: all 0.3s; }
.checklist-card:hover { border-color: var(--green); box-shadow: 0 20px 50px var(--shadow); }
.checklist-header {
  padding: 1.5rem 2rem 1.2rem; border-bottom: 1px solid var(--card-border);
  background: linear-gradient(135deg, var(--green-dim), transparent);
  display: flex; align-items: center; gap: 1rem;
}
.checklist-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-dim); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-size: 1.313rem; flex-shrink: 0; }
.checklist-title { font-family: 'Playfair Display', serif; font-size: 1.01rem; font-weight: 700; }
.checklist-sub { font-size: 0.7676rem; color: var(--text-muted); margin-top: 2px; }
.checklist-body { padding: 1.5rem 2rem 2rem; }
.check-items { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.check-items li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8686rem; color: var(--text-muted); line-height: 1.5; }
.check-items li .ck { color: var(--green); font-size: 0.909rem; flex-shrink: 0; margin-top: 1px; }
.check-items li strong { color: var(--text); }

/* Trading setups */
.setups-section { padding: 100px 5%; background: var(--bg2); }
.setups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.setup-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 1.8rem; transition: all 0.3s; position: relative; overflow: hidden; }
.setup-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 20px 50px var(--shadow); }
.setup-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--green-dim); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-size: 1.414rem; margin-bottom: 1rem; }
.setup-title { font-family: 'Playfair Display', serif; font-size: 1.01rem; font-weight: 700; margin-bottom: 0.5rem; }
.setup-desc { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.setup-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.setup-tag { background: var(--bg2); border: 1px solid var(--card-border); border-radius: 50px; padding: 0.25rem 0.75rem; font-size: 0.7272rem; color: var(--text-muted); }

/* Risk band */
.risk-band { background: var(--green); padding: 60px 5%; }
.risk-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.risk-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 3.535rem; color: #fff; line-height: 1; }
.risk-stat .label { font-size: 0.808rem; color: rgba(255, 255, 255, 0.75); font-weight: 500; margin-top: 4px; }
.risk-stat .sub { font-size: 0.707rem; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }

/* Mindset section */
.mindset-section { padding: 100px 5%; }
.mindset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.mindset-left p { font-size: 0.9595rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.mindset-left p strong { color: var(--text); }
.quote-block {
  background: var(--card); border: 1px solid var(--card-border); border-left: 3px solid var(--green);
  border-radius: 0 16px 16px 0; padding: 1.2rem 1.5rem; margin: 2rem 0;
  font-size: 1.01rem; font-style: italic; color: var(--text-muted); line-height: 1.65;
}
.quote-block strong { color: var(--green); font-style: normal; }
.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.do-card { background: var(--green-dim); border: 1px solid rgba(42, 144, 97, 0.3); border-radius: 18px; padding: 1.5rem; }
.dont-card { background: rgba(200, 50, 50, 0.07); border: 1px solid rgba(200, 50, 50, 0.18); border-radius: 18px; padding: 1.5rem; }
.dd-header { font-size: 0.7272rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.do-card .dd-header { color: var(--green); }
.dont-card .dd-header { color: #e05555; }
.dd-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.dd-list li { font-size: 0.8282rem; color: var(--text-muted); display: flex; gap: 8px; line-height: 1.45; }
.do-card .dd-list li::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }
.dont-card .dd-list li::before { content: '✕'; color: #e05555; flex-shrink: 0; font-weight: 700; }

/* Journey section */
.journey-section { padding: 100px 5%; }
.journey-steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.journey-step { display: flex; gap: 2rem; padding-bottom: 3rem; position: relative; }
.journey-step:last-child { padding-bottom: 0; }
.js-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.js-dot { width: 52px; height: 52px; border-radius: 50%; background: var(--green-dim); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.313rem; flex-shrink: 0; z-index: 1; }
.js-line { width: 1px; flex: 1; background: linear-gradient(to bottom, var(--green), transparent); margin-top: 8px; }
.journey-step:last-child .js-line { display: none; }
.js-content { padding-top: 10px; flex: 1; }
.js-phase { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; }
.js-title { font-family: 'Playfair Display', serif; font-size: 1.1615rem; font-weight: 700; margin-bottom: 0.6rem; }
.js-desc { font-size: 0.8787rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.8rem; }
.js-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.js-checklist li { font-size: 0.8282rem; color: var(--text-muted); display: flex; gap: 8px; }
.js-checklist li::before { content: '→'; color: var(--green); flex-shrink: 0; }

/* ============================================================
    GALLERY PAGE
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 20px 50px var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height: 52vh; padding: 110px 5% 70px;
  display: flex; align-items: center; position: relative; overflow: hidden; text-align: center;
}
/* ===== CONTACT PAGE HERO ===== */
.contact-hero {
  min-height: 52vh;
  padding: 110px 5% 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero .hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero .hero-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT FAQ ===== */
.faq-section {
  padding: 90px 5%;
}

.faq-section .reveal {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.faq-section .faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
}
.contact-main { padding: 80px 5% 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 1.6rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.info-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.info-card:hover::before { transform: scaleY(1); }
.info-card:hover { border-color: var(--green); transform: translateX(5px); box-shadow: 0 12px 36px var(--shadow); }
.info-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--green-dim); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; font-size: 1.313rem; flex-shrink: 0; }
.info-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.info-value { font-size: 0.9595rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.info-sub { font-size: 0.808rem; color: var(--text-muted); line-height: 1.5; }

.wa-cta-card {
  background: linear-gradient(135deg, #128c3e 0%, #25D366 100%);
  border: none; border-radius: 20px; padding: 1.8rem;
  text-align: center; cursor: pointer; text-decoration: none; display: block;
  transition: all 0.3s; box-shadow: 0 12px 36px rgba(37, 211, 102, 0.3);
}
.wa-cta-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4); }
.wa-cta-card .wa-icon { font-size: 2.222rem; margin-bottom: 0.6rem; display: block; }
.wa-cta-card .wa-title { font-family: 'Playfair Display', serif; font-size: 1.111rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.wa-cta-card .wa-sub { font-size: 0.8282rem; color: rgba(255, 255, 255, 0.8); line-height: 1.5; }

.hours-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 1.6rem 1.8rem; }
.hours-title { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--card-border); font-size: 0.8585rem; }
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text); font-weight: 600; }
.hours-badge { background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 50px; padding: 0.18rem 0.6rem; font-size: 0.6868rem; color: var(--green); font-weight: 700; }
.hours-badge.closed { background: rgba(200, 50, 50, 0.08); border-color: rgba(200, 50, 50, 0.2); color: #e05555; }

/* Contact form */
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px var(--shadow); position: relative;
}
.contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-light), transparent); }

/* ===== PAGE DISCLAIMER SECTION ===== */
.page-disclaimer-section {
  background: var(--bg2);
  padding: 3rem 6vw;
  border-top: 1px solid var(--card-border);
}

.page-disclaimer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 2rem 2.2rem;
}

.page-disclaimer-icon {
  width: 48px;
  height: 48px;
  background: var(--green-mid);        /* was --green-dim, too dark */
  border: 1px solid var(--green-light);/* added border so it's visible */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-disclaimer-icon i {
  font-size: 1.4rem;
  color: var(--green-light);
}

.page-disclaimer-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.9rem;
}

.page-disclaimer-content p {
  font-size: 0.97rem;       /* was 0.875rem — bumped up */
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 0.9rem;
}

.page-disclaimer-content p:last-child {
  margin-bottom: 0;
}

.page-disclaimer-content strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 640px) {
  .page-disclaimer-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.form-header { padding: 2.2rem 2.5rem 1.8rem; border-bottom: 1px solid var(--card-border); background: linear-gradient(135deg, var(--green-dim), transparent); }
.form-header-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.form-header-icon { font-size: 1.818rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.414rem; font-weight: 700; }
.form-sub { font-size: 0.8585rem; color: var(--text-muted); line-height: 1.6; }
.form-body { padding: 2rem 2.5rem 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.7878rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; }
.form-label span { color: var(--green); }
.form-input, .form-select, .form-textarea {
  background: var(--input-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 0.85rem 1.1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.909rem; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-dim); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232a9061' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: var(--bg); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.interest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 0.2rem; }
.interest-btn {
  background: var(--input-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 0.6rem 0.8rem; font-family: 'DM Sans', sans-serif; font-size: 0.808rem;
  color: var(--text-muted); cursor: pointer; text-align: left; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.interest-btn:hover { border-color: var(--green); color: var(--green); }
.interest-btn.selected { background: var(--green-dim); border-color: var(--green); color: var(--green); font-weight: 600; }
.form-submit {
  width: 100%; background: var(--green); color: #fff; border: none; border-radius: 14px;
  padding: 1rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 1.01rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; box-shadow: 0 8px 28px var(--green-glow);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 1.5rem;
}
.form-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 14px 36px var(--green-glow); }
.form-submit.loading { opacity: 0.75; pointer-events: none; }
.form-note { font-size: 0.7676rem; color: var(--text-dim); text-align: center; margin-top: 1rem; line-height: 1.5; }
.form-note a { color: var(--green); text-decoration: none; }
.success-state { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 2rem; gap: 1rem; }
.success-icon { font-size: 3.535rem; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.515rem; font-weight: 700; }
.success-sub { font-size: 0.909rem; color: var(--text-muted); line-height: 1.7; max-width: 380px; }
.success-pill { background: var(--green-dim); border: 1px solid var(--card-border); border-radius: 50px; padding: 0.4rem 1.2rem; font-size: 0.808rem; color: var(--green); font-weight: 600; }

/* Map */
.map-section { padding: 0 5% 80px; }
.map-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 24px; overflow: hidden; }
.map-header { padding: 1.8rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid var(--card-border); background: linear-gradient(135deg, var(--green-dim), transparent); }
.map-label { font-size: 0.707rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.map-title { font-family: 'Playfair Display', serif; font-size: 1.212rem; font-weight: 700; }
.map-address { font-size: 0.8383rem; color: var(--text-muted); margin-top: 0.2rem; }
.map-actions { display: flex; gap: 0.6rem; }
.map-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--green); color: #fff; border: none; padding: 0.6rem 1.2rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.8282rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.map-btn:hover { background: var(--green-light); }
.map-btn.outline { background: transparent; border: 1px solid var(--card-border); color: var(--text-muted); }
.map-btn.outline:hover { border-color: var(--green); color: var(--green); background: var(--green-dim); }
.map-embed { width: 100%; height: 340px; border: none; display: block; filter: grayscale(30%) contrast(1.05); }
[data-theme="light"] .map-embed { filter: none; }

/* ============================================================
   CTA SECTION (shared)
   ============================================================ */
.cta-section {
  padding: 100px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg,
.cta-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, var(--green-dim) 0%, transparent 70%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.02rem, 4.04vw, 3.03rem); font-weight: 900; line-height: 1.15;
  max-width: 680px; margin: 0 auto 1rem;
}
.cta-title em { font-style: italic; color: var(--green); }
.cta-sub { font-size: 1.01rem; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .section-title { margin: 0 auto 1rem; max-width: 700px; }
.cta-section .section-sub { margin: 0 auto 2.5rem; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg3); border-top: 1px solid var(--card-border);
  padding: 60px 5% 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--card-border); }
.footer-brand p { font-size: 0.8585rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0; max-width: 280px; }
.footer-title,
.footer-col-title { font-size: 0.808rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.8585rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.contact-item,
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; }
.contact-icon,
.fc-icon,
.fc-icon-s {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--green-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.909rem;
}
.contact-text,
.fc-text { font-size: 0.8383rem; color: var(--text-muted); line-height: 1.5; }
.contact-text strong,
.fc-text strong { color: var(--text); display: block; font-size: 0.7878rem; margin-bottom: 1px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.808rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--card-border);
  background: transparent; display: flex; align-items: center; justify-content: center;
  font-size: 1.01rem; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--green); border-color: var(--green); }

.footer-dev {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-dev a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-dev a:hover { opacity: 0.75; }

/* ============================================================
   RISE2WEALTH — ICON COLOR NUCLEAR FIX
   Kills ALL blue icons site-wide — forces green everywhere
   Add this LAST after all other stylesheets
   ============================================================ */

/* ── Nuclear reset: kill browser blue on ALL icon fonts ── */
i[class*="bi-"],
i[class*="fa-"],
i[class*="fas "],
i[class*="far "],
i[class*="fab "],
span[class*="bi-"],
[class^="bi "],
[class^="bi-"] {
  color: var(--green) !important;
}

/* ── Social media card icons (Instagram / YouTube / Telegram blocks) ── */
.social-card,
.social-card-link,
.social-link-card,
.contact-social-card,
[class*="social-card"] {
  color: var(--green) !important;
  text-decoration: none !important;
}

.social-card i,
.social-card svg,
.social-card [class*="bi-"],
.social-card-link i,
.social-card-link svg,
.social-link-card i,
.social-link-card svg,
[class*="social-card"] i,
[class*="social-card"] svg {
  color: var(--green) !important;
  fill: var(--green) !important;
}

/* ── WhatsApp CTA card icon (the one on green background) ── */
.wa-cta-card i,
.wa-cta-card svg,
.wa-cta-card [class*="bi-"],
.wa-cta-card .wa-icon,
.wa-cta-card span {
  color: #fff !important;
  fill: #fff !important;
}

/* ── Contact info card icons ── */
.info-icon i,
.info-icon svg,
.info-icon [class*="bi-"] {
  color: var(--green) !important;
  fill: var(--green) !important;
}

/* ── Business hours icon ── */
.hours-title i,
.hours-title svg,
.hours-title [class*="bi-"],
.hours-card i,
.hours-card svg {
  color: var(--green) !important;
}

/* ── Interest buttons (Beginner Foundation, Core Trading etc.) ── */
.interest-btn,
.interest-btn i,
.interest-btn svg,
.interest-btn [class*="bi-"] {
  color: var(--text-muted) !important;
}

.interest-btn.selected,
.interest-btn.selected i,
.interest-btn.selected svg {
  color: var(--green) !important;
}

/* ── Footer social buttons ── */
.footer-social a,
.footer-social .social-btn,
footer .social-btn {
  color: var(--green) !important;
  text-decoration: none !important;
}

.footer-social a i,
.footer-social a svg,
.footer-social a [class*="bi-"],
.footer-social .social-btn i,
.footer-social .social-btn svg,
footer .social-btn i,
footer .social-btn svg,
footer .social-btn [class*="bi-"] {
  color: var(--green) !important;
  fill: var(--green) !important;
}

.footer-social a:hover,
.footer-social .social-btn:hover,
footer .social-btn:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}

.footer-social a:hover i,
.footer-social a:hover svg,
.footer-social .social-btn:hover i,
footer .social-btn:hover i {
  color: #fff !important;
  fill: #fff !important;
}

/* ── Float action buttons ── */
.float-wa,
.float-wa i,
.float-wa svg {
  color: #fff !important;
}

.float-call,
.float-call i,
.float-call svg {
  color: #fff !important;
}

/* ── Service icons, feature icons, gain icons etc. ── */
.service-icon i,
.service-icon svg,
.fc-icon i,
.gain-icon i,
.why-icon i,
.setup-icon i,
.checklist-icon i,
.step-circle i,
.tl-dot i,
.js-dot i,
.info-icon i,
.ldr-cert i {
  color: var(--green) !important;
}

/* ── Nav icons if any ── */
nav i[class*="bi-"],
.nav-links i[class*="bi-"] {
  color: inherit !important;
}

/* ── Catch-all: any remaining blue <a> wrapping an icon ── */
a:has(> i[class*="bi-"]),
a:has(> svg) {
  color: var(--green) !important;
  text-decoration: none !important;
}

/* ── Override Bootstrap's own link color globally ── */
a {
  color: inherit;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):not(.btn-nav):not(.btn-enroll):not(.btn-course):not(.btn-apply):not(.btn-mega):not(.btn-details):not(.btn-info):not(.map-btn):not(.track-tab):not(.mob-nav-btn):not(.float-btn):not(.social-btn) {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   RISE2WEALTH — FOOTER FIXES
   Add this LAST in your stylesheet (after all other CSS)
   Fixes: 1) gap below footer  2) social icons blue → green
   ============================================================ */

/* ── 1. Remove gap below footer ── */
html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

/* Remove any accidental bottom space */
footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Kill any phantom space after footer */
footer + * {
  display: none;
}

/* If body has padding-bottom from mobile nav, only apply when mobile nav is visible */
@media (min-width: 769px) {
  body {
    padding-bottom: 0 !important;
  }
}

/* ── 2. Social media icons — force green, kill blue ── */

/* Target all social buttons everywhere */
.social-btn,
.footer-social .social-btn,
.footer-social a,
footer .social-btn,
footer a.social-btn {
  color: var(--green) !important;
  background: transparent !important;
  border: 1px solid var(--card-border) !important;
  text-decoration: none !important;
}

.social-btn:hover,
.footer-social .social-btn:hover,
footer a.social-btn:hover {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}

/* Kill browser default blue on any <a> or <i> inside social buttons */
.social-btn *,
.social-btn i,
.social-btn svg,
.social-btn span,
footer .social-btn *,
footer .social-btn i {
  color: inherit !important;
  fill: currentColor !important;
}

/* Bootstrap Icons / Font Awesome / any icon font inside social links */
.footer-social i,
.footer-social svg,
.footer-social [class*="bi-"],
.footer-social [class*="fa-"],
footer [class*="bi-"],
footer [class*="fa-"],
footer i {
  color: var(--green) !important;
  fill: var(--green) !important;
}

/* Float action buttons — keep WhatsApp green, call green */
.float-wa {
  background: #25D366 !important;
  color: #fff !important;
}

.float-call {
  background: var(--green) !important;
  color: #fff !important;
}

/* Any stray <a> tags that might be inheriting blue */
footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--green);
}

/* Social buttons specifically as <a> tags */
a.social-btn {
  color: var(--green) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   RISE2WEALTH — ONE MILLION COMMUNITY PAGE (omc.css)
   All sections: hero, counter band, overview, benefits,
   activities, why-join, programs, vision, for-section, cta
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.omc-hero {
  min-height: 100vh;
  padding: 140px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.omc-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.omc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

/* Crown badge */
.omc-crown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.7878rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.crown-icon { font-size: 1.01rem; }
.crown-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Hero title */
.omc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.828rem, 6.06vw, 5.05rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.omc-hero-title em {
  font-style: italic;
  color: var(--green);
}

/* Hero description */
.omc-hero-desc {
  font-size: 1.0605rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 600px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.22s ease both;
}

.omc-hero-desc strong { color: var(--text); }

/* Quick stat chips */
.omc-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.28s ease both;
}

.omc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8282rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.omc-chip:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

.chip-icon { font-size: 0.909rem; }

/* CTA row */
.omc-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.33s ease both;
}

/* Jump nav */
.omc-jump-nav {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* ============================================================
   OMC HERO — TWO COLUMN LAYOUT
   ============================================================ */
.omc-hero {
  padding: 140px 5% 100px;
  align-items: center;
}

.omc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}

/* Left column gets the text content */
.omc-hero-left {
  display: flex;
  flex-direction: column;
}

/* Right column — stats + CTA card */
.omc-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.omc-hero-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.omc-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}

.omc-hero-card-label {
  font-size: 0.6868rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.omc-hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.omc-hero-stat {
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.omc-hero-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.818rem;
  color: var(--green);
  line-height: 1;
}

.omc-hero-stat .l {
  font-size: 0.6868rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

.omc-hero-cta-card {
  background: var(--green);
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(42, 144, 97, 0.4);
}

.omc-hero-cta-card:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(42, 144, 97, 0.5);
}

.omc-hero-cta-card .cta-text {
  font-weight: 700;
  font-size: 0.9595rem;
  color: #fff;
}

.omc-hero-cta-card .cta-sub {
  font-size: 0.7575rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.omc-hero-cta-card .cta-arrow {
  font-size: 1.414rem;
  color: #fff;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .omc-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .omc-hero-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .omc-hero {
    padding: 118px 5% 70px;
    min-height: auto;
  }
}

/* ============================================================
   COUNTER BAND
   ============================================================ */
.omc-counter-band {
  background: var(--green);
  padding: 52px 5%;
}

.omc-counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.omc-counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.232rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.omc-counter-label {
  font-size: 0.7878rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.omc-overview-section {
  padding: 90px 5%;
}

.omc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.omc-overview-p {
  font-size: 0.9393rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.omc-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.omc-tag {
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.7979rem;
  font-weight: 600;
  color: var(--green);
  transition: all 0.2s;
}

.omc-tag:hover {
  background: rgba(42, 144, 97, 0.22);
  border-color: rgba(42, 144, 97, 0.5);
}

/* What you get cards (right col) */
.omc-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.omc-what-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.omc-what-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.omc-what-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
}

.omc-what-card:hover::after { transform: scaleX(1); }

.omc-what-icon { font-size: 1.616rem; margin-bottom: 0.7rem; }
.omc-what-title { font-weight: 700; font-size: 0.9393rem; margin-bottom: 0.5rem; }
.omc-what-desc { font-size: 0.808rem; color: var(--text-muted); line-height: 1.6; }

/* Not signals banner */
.omc-not-signals {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--green);
  border-radius: 0 18px 18px 0;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.omc-ns-icon { font-size: 2.02rem; flex-shrink: 0; }

.omc-ns-content { flex: 1; }

.omc-ns-title {
  font-weight: 700;
  font-size: 0.9595rem;
  margin-bottom: 0.5rem;
}

.omc-ns-desc {
  font-size: 0.8484rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.omc-ns-badge {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.7575rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.omc-benefits-section {
  padding: 90px 5%;
  background: var(--bg2);
}

.omc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.omc-benefit-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.32s;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.omc-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.omc-benefit-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
}

.omc-benefit-card:hover::before { transform: scaleX(1); }

.omc-benefit-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.03rem;
  color: var(--green-mid);
  line-height: 1;
  transition: color 0.3s;
}

.omc-benefit-card:hover .omc-benefit-num { color: var(--green); }

.omc-benefit-icon { font-size: 1.616rem; }

.omc-benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0605rem;
  font-weight: 700;
}

.omc-benefit-desc {
  font-size: 0.8484rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.omc-benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.omc-benefit-tags span {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.22rem 0.7rem;
  font-size: 0.7171rem;
  color: var(--text-muted);
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.omc-activities-section {
  padding: 90px 5%;
  background: var(--bg2);
}

.omc-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.omc-activity-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  transition: all 0.32s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.omc-activity-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
}

.omc-act-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.omc-act-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.313rem;
}

.omc-act-category {
  font-size: 0.6868rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.omc-act-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.01rem;
  font-weight: 700;
  line-height: 1.25;
}

.omc-act-desc {
  font-size: 0.8383rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Schedule rows */
.omc-act-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.omc-act-sched-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.808rem;
  color: var(--text-muted);
  font-weight: 500;
}

.omc-act-sched-row i {
  color: var(--green);
  font-size: 0.8888rem;
  flex-shrink: 0;
}

/* Topic chips */
.omc-act-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.omc-act-topics span {
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.22rem 0.75rem;
  font-size: 0.7171rem;
  font-weight: 600;
  color: var(--green);
}

/* Bonus row */
.omc-act-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 144, 97, 0.08);
  border: 1px solid rgba(42, 144, 97, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-size: 0.7878rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.omc-act-bonus-tag {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 0.15rem 0.55rem;
  font-size: 0.6565rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   WHY JOIN SECTION
   ============================================================ */
.omc-why-section {
  padding: 90px 5%;
}

.omc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left differentiators */
.omc-why-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.omc-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.omc-why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.omc-why-item:hover::before { transform: scaleY(1); }

.omc-why-item:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: 0 12px 36px var(--shadow);
}

.omc-why-icon-box {
  width: 46px;
  height: 46px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.313rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.omc-why-item:hover .omc-why-icon-box { background: var(--green-glow); }

.omc-why-item-title {
  font-size: 0.9595rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.omc-why-item-desc {
  font-size: 0.8383rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* Compare card (right col) */
.omc-why-right { position: relative; }

.omc-compare-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

.omc-compare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}

.omc-compare-eyebrow {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.omc-compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.omc-compare-title em { font-style: italic; color: var(--green); }

.omc-compare-table { margin-top: 1.5rem; }

.omc-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.omc-compare-header span {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.omc-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.omc-cr-bad,
.omc-cr-good {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.7979rem;
  line-height: 1.4;
}

.omc-cr-bad {
  background: rgba(200, 50, 50, 0.06);
  border: 1px solid rgba(200, 50, 50, 0.15);
  color: var(--text-muted);
}

.omc-cr-bad i { color: #e05555; font-size: 0.8585rem; flex-shrink: 0; }

.omc-cr-good {
  background: var(--green-dim);
  border: 1px solid rgba(42, 144, 97, 0.25);
  color: var(--text-muted);
}

.omc-cr-good i { color: var(--green); font-size: 0.8585rem; flex-shrink: 0; }

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.omc-programs-section {
  padding: 90px 5%;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.omc-programs-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(42, 144, 97, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.omc-programs-inner { position: relative; z-index: 1; }

.omc-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.omc-prog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.32s;
  position: relative;
  overflow: hidden;
}

.omc-prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.omc-prog-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow);
}

.omc-prog-card:hover::before { transform: scaleX(1); }

.omc-prog-card.omc-prog-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green-glow);
}

.omc-prog-card.omc-prog-flagship {
  border-color: rgba(200, 160, 40, 0.4);
  box-shadow: 0 0 0 2px rgba(200, 160, 40, 0.12);
}

.omc-prog-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.222rem;
  color: var(--green-mid);
  line-height: 1;
  transition: color 0.3s;
}

.omc-prog-card:hover .omc-prog-num { color: var(--green); }

.omc-prog-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7272rem;
  font-weight: 700;
  color: var(--green);
  width: fit-content;
}

.omc-badge-fire {
  background: rgba(255, 100, 50, 0.1);
  border-color: rgba(255, 100, 50, 0.25);
  color: #e05533;
}

.omc-badge-crown {
  background: rgba(42, 144, 97, 0.18);
  border-color: rgba(42, 144, 97, 0.4);
  color: var(--green-light);
}

.omc-badge-gold {
  background: rgba(200, 160, 40, 0.12);
  border-color: rgba(200, 160, 40, 0.3);
  color: #c8a028;
}

.omc-prog-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9898rem;
  font-weight: 700;
  line-height: 1.25;
}

.omc-prog-fee {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.02rem;
  color: var(--text);
  line-height: 1;
}

.omc-prog-fee span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.01rem;
  color: var(--text-muted);
}

.omc-prog-capital {
  font-size: 0.7676rem;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--card-border);
}

.omc-prog-target {
  font-size: 0.808rem;
  font-weight: 600;
  color: var(--green);
}

.omc-prog-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0;
}

.omc-prog-list li {
  font-size: 0.808rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.omc-prog-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.7272rem;
  margin-top: 2px;
}

/* Fix: btn-enroll inside prog card — kill flex:1 growth from script.css */
.omc-prog-card .btn-enroll {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.78rem 1.5rem !important;
  font-size: 0.8888rem !important;
  height: auto !important;
  min-height: unset !important;
  flex: 0 0 auto !important;   /* kills the flex:1 from script.css */
  margin-top: auto;
}

.omc-prog-refund {
  font-size: 0.7676rem;
  color: var(--green);
  font-weight: 600;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  line-height: 1.5;
}

/* ===== REFUND POLICY SECTION ===== */
.omc-refund-section {
  padding: 5rem 6vw;
  background: var(--bg2);
  position: relative;
}

.omc-refund-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.omc-refund-header {
  text-align: center;
  margin-bottom: 3rem;
}

.omc-refund-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-mid);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.omc-refund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.omc-refund-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.8rem;
}

.omc-refund-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

.omc-refund-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.omc-refund-list li {
  display: block; /* was flex — that's what caused the gaps */
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}

.omc-refund-list li i.bi-check-circle-fill {
  color: var(--green);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.omc-refund-list li i.omc-dot {
  color: var(--green-light);
  font-size: 1.2rem;
  margin-top: 0px;
  flex-shrink: 0;
}

.omc-refund-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green-dim);
  border: 1px solid var(--green-mid);
  border-radius: 10px;
  padding: 1rem 1.4rem;
}

.omc-refund-disclaimer i {
  color: var(--green-light);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.omc-refund-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.omc-refund-disclaimer strong {
  color: var(--text);
}

/* Fix bold inline gap issue */
.omc-hl {
  color: var(--text);
  font-weight: 700;
  background: var(--green-dim);
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.omc-refund-list li i.bi-chevron-right {
  color: var(--green);
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  top: 4px;
}

/* Prominent disclaimer */
.omc-refund-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--card);
  border: 1.5px solid var(--green-mid);
  border-left: 4px solid var(--green-light);
  border-radius: 12px;
  padding: 1.6rem 2rem;
  margin-top: 1.5rem;
}

.omc-rd-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--green-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.omc-rd-icon-wrap i {
  color: var(--green-light);
  font-size: 1.2rem;
}

.omc-rd-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.omc-rd-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.omc-rd-content strong {
  color: var(--text);
  font-weight: 600;
}

.omc-hl {
  color: var(--text);
  font-weight: 700;
  background: var(--green-dim);
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.omc-refund-list li i.bi-chevron-right {
  color: var(--green);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .omc-refund-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   VISION SECTION
   ============================================================ */
.omc-vision-section {
  padding: 90px 5%;
}

.omc-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.omc-vision-eyebrow {
  font-size: 0.707rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.omc-vision-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.919rem, 3.03vw, 2.626rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.omc-vision-title em { font-style: italic; color: var(--green); }

.omc-vision-p {
  font-size: 0.909rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Vision pillars */
.omc-vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.omc-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  transition: all 0.3s;
}

.omc-pillar:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: 0 12px 36px var(--shadow);
}

.omc-pillar-icon {
  font-size: 1.515rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.omc-pillar:hover .omc-pillar-icon { background: var(--green-glow); }

.omc-pillar-title {
  font-weight: 700;
  font-size: 0.9595rem;
  margin-bottom: 0.4rem;
}

.omc-pillar-desc {
  font-size: 0.8282rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Growth roadmap progress visual */
.omc-vision-progress {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
}

.omc-vp-label {
  font-size: 0.7272rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2.5rem;
}

.omc-vp-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.omc-vp-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.omc-vp-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.omc-vp-stage.active .omc-vp-circle {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 8px 28px var(--green-glow);
  transform: scale(1.12);
}

.omc-vp-stage-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.omc-vp-stage-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.omc-vp-line {
  flex: 1;
  height: 2px;
  background: var(--card-border);
  min-width: 40px;
  max-width: 80px;
  margin-bottom: 28px;
  position: relative;
}

.omc-vp-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0%;
  height: 100%;
  background: var(--green);
  transition: width 1.2s ease;
}

/* ============================================================
   WHO IS THIS FOR SECTION
   ============================================================ */
.omc-for-section {
  padding: 90px 5%;
  background: var(--bg2);
}

.omc-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.omc-for-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: all 0.3s;
}

.omc-for-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
  color: var(--text);
}

.omc-for-check {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Not for block */
.omc-not-for {
  background: rgba(200, 50, 50, 0.05);
  border: 1px solid rgba(200, 50, 50, 0.18);
  border-radius: 20px;
  padding: 2rem 2.2rem;
}

.omc-nf-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.omc-nf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.omc-nf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.omc-nf-x {
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 1px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.omc-cta-section {
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.omc-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, var(--green-dim) 0%, transparent 70%);
  pointer-events: none;
}

.omc-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.omc-cta-crown {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.omc-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.omc-cta-title em { font-style: italic; color: var(--green); }

.omc-cta-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.omc-cta-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}

.omc-cta-hl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.omc-cta-hl i { color: var(--green); }

.omc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.omc-cta-note {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============================================================
   PARTICLE ANIMATION (hero particles)
   ============================================================ */
@keyframes omc-particle {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) scale(0.5); opacity: 0; }
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1200px) {
  .omc-counter-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .omc-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .omc-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .omc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .omc-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .omc-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .omc-vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .omc-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .omc-hero {
    padding: 110px 5% 70px;
    min-height: auto;
  }

  .omc-hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .omc-hero-chips {
    gap: 0.45rem;
  }

  .omc-chip {
    font-size: 0.7676rem;
    padding: 0.35rem 0.85rem;
  }

  .omc-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .omc-hero-cta .btn-primary,
  .omc-hero-cta .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .omc-jump-nav {
    gap: 0.4rem;
  }

  /* Counter band */
  .omc-counter-band {
    padding: 40px 5%;
  }

  .omc-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .omc-counter-num {
    font-size: 2.525rem;
  }

  /* Overview */
  .omc-overview-section {
    padding: 60px 5%;
  }

  .omc-what-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .omc-not-signals {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Benefits */
  .omc-benefits-section {
    padding: 60px 5%;
  }

  .omc-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .omc-benefit-card {
    padding: 1.5rem;
  }

  /* Activities */
  .omc-activities-section {
    padding: 60px 5%;
  }

  .omc-activities-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  /* Why join */
  .omc-why-section {
    padding: 60px 5%;
  }

  .omc-why-left {
    gap: 1rem;
  }

  .omc-compare-card {
    padding: 1.6rem;
  }

  /* Programs */
  .omc-programs-section {
    padding: 60px 5%;
  }

  .omc-programs-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .omc-prog-card {
    padding: 1.6rem;
  }

  /* Vision */
  .omc-vision-section {
    padding: 60px 5%;
  }

  .omc-vp-stages {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .omc-vp-line {
    width: 2px;
    height: 30px;
    min-width: unset;
    max-width: unset;
    margin-bottom: 0;
    margin-left: 33px;
  }

  /* For section */
  .omc-for-section {
    padding: 60px 5%;
  }

  .omc-for-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .omc-nf-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  /* CTA */
  .omc-cta-section {
    padding: 70px 5%;
  }

  .omc-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .omc-cta-btns .btn-primary,
  .omc-cta-btns .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .omc-counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .omc-counter-num {
    font-size: 2.02rem;
  }

  .omc-benefits-grid,
  .omc-activities-grid {
    grid-template-columns: 1fr;
  }

  .omc-compare-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .omc-compare-header {
    display: none;
  }

  .omc-cr-bad::before {
    content: '✗ Without: ';
    font-size: 0.6565rem;
    font-weight: 700;
    color: #e05555;
    display: block;
    margin-bottom: 2px;
  }

  .omc-cr-good::before {
    content: '✓ With community: ';
    font-size: 0.6565rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 2px;
  }
}

/* ============================================================
   HERO SHARED BG (all pages)
   ============================================================ */
.hero-bg-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 20% 60%, rgba(42, 144, 97, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(42, 144, 97, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 60% 80%, rgba(42, 144, 97, 0.07) 0%, transparent 55%);
}
.hero-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image: linear-gradient(var(--green) 1px, transparent 1px),
                    linear-gradient(90deg, var(--green) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-left,
.hero-right { position: relative; z-index: 1; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

/* ===== ABOUT PAGE HERO SPECIFIC ===== */
.about-hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* Hide the mission card on smaller screens so they don't stack/touch */
@media (max-width: 1024px) {
  .about-hero .hero-inner {
    grid-template-columns: 1fr;
  }
  .about-hero .hero-right {
    display: none;
  }
}

/* ============================================================
   INTERNSHIP/ABOUT HERO SPECIFIC
   ============================================================ */
.about-hero h1,
.intern-hero h1,
.playbook-hero h1,
.courses-hero h1,
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900; line-height: 1.06; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.15s ease both;
}
.about-hero h1 em,
.intern-hero h1 em,
.playbook-hero h1 em,
.courses-hero h1 em,
.contact-hero h1 em { font-style: italic; color: var(--green); }

.hero-desc {
  font-size: 1.0605rem; color: var(--text-muted); line-height: 1.75;
  max-width: 530px; margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.22s ease both;
}

/* ===== INTERNSHIP PAGE HERO ===== */
.intern-hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.intern-hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .intern-hero .hero-inner {
    grid-template-columns: 1fr;
  }
  .intern-hero .hero-right {
    display: none;
  }
}

/* ============================================================
   SERVICES HERO
   ============================================================ */
.services-hero {
  min-height: 70vh; padding: 120px 5% 80px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; animation: fadeUp 0.7s 0.3s ease both; }
.hero-pill { background: var(--card); border: 1px solid var(--card-border); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.808rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

.hero-pill {
  text-decoration: none;
  color: inherit;
}
/* ============================================================
   INTERNSHIP HERO INNER (two col)
   ============================================================ */
.hero-inner.intern-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

/* ===== PLAYBOOK PAGE HERO ===== */
.playbook-hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.playbook-hero .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .playbook-hero .hero-inner {
    grid-template-columns: 1fr;
  }
  .playbook-hero .hero-right {
    display: none;
  }
}

/* ============================================================
   LIVE TRADING PAGE — ALL ADDITIONAL STYLES
   ============================================================ */

/* ── Keyframes ── */
@keyframes liveRing {
  0%   { box-shadow: 0 0 0 0 rgba(42,144,97,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(42,144,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,144,97,0); }
}
@keyframes redRing {
  0%   { box-shadow: 0 0 0 0 rgba(255,80,80,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,80,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,80,80,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   HERO
   ============================================================ */
.lt-hero {
  min-height: 72vh;
  padding: 130px 5% 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lt-hero .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(42,144,97,0.12);
  border: 1px solid rgba(42,144,97,0.35);
  color: var(--green-light);
  padding: 0.44rem 1.1rem;
  border-radius: 100px;
  font-size: 0.7878rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.live-dot-anim {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5555;
  animation: redRing 1.8s infinite;
  flex-shrink: 0;
}

/* Hero quick info row */
.hero-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.28s ease both;
}
.hq-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8282rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hq-chip .hq-icon { color: var(--green); }

/* Intro diff cards */
.lt-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem;
  animation: fadeUp 0.7s 0.35s ease both;
}
.lt-diff-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.lt-diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.lt-diff-card:hover::before { transform: scaleX(1); }
.lt-diff-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--shadow);
}
.lt-diff-icon { font-size: 1.717rem; margin-bottom: 0.6rem; }
.lt-diff-type {
  font-size: 0.6565rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.lt-diff-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9898rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.lt-diff-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.lt-diff-chip {
  background: var(--green-dim);
  border: 1px solid rgba(42,144,97,0.25);
  border-radius: 50px;
  padding: 0.18rem 0.65rem;
  font-size: 0.707rem;
  color: var(--green);
  font-weight: 600;
}
.lt-diff-desc {
  font-size: 0.808rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Jump nav */
.lt-jump-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 0.7s 0.42s ease both;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.lt-stats-band { background: var(--green); padding: 55px 5%; }
.lt-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.lt-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.232rem;
  color: #fff;
  line-height: 1;
}
.lt-stat .label {
  font-size: 0.7878rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-top: 4px;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.lt-programs-section { padding: 60px 5% 80px; }
.lt-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  margin-top: 0;
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.lt-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.32s;
  position: relative;
}
.lt-card:hover {
  transform: translateY(-7px);
  border-color: var(--green);
  box-shadow: 0 32px 80px var(--shadow);
}
.lt-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 0 0 2px var(--green-glow), 0 20px 60px var(--shadow);
}
.lt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}

/* Card header */
.lt-card-header {
  padding: 2.2rem 2.2rem 1.8rem;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border);
}
.lt-card-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.badge-trial {
  background: rgba(255,180,0,0.12);
  border: 1px solid rgba(255,180,0,0.28);
  color: #e6a800;
}
.badge-monthly {
  background: rgba(42,144,97,0.15);
  border: 1px solid rgba(42,144,97,0.35);
  color: var(--green-light);
}
.badge-live-red {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.22);
  color: #ff8a8a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.badge-live-red::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff6b6b;
  animation: redRing 1.5s infinite;
  flex-shrink: 0;
}
.lt-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}
.lt-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.434rem;
  color: var(--text);
  line-height: 1;
}
.lt-price span { font-size: 1.616rem; color: var(--text-muted); }
.lt-price-note {
  font-size: 0.7272rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lt-duration {
  font-size: 0.7676rem;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 0.9rem;
}
.lt-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3635rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.lt-card-tagline {
  font-size: 0.8383rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* Card body */
.lt-card-body {
  padding: 1.8rem 2.2rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lt-card-desc {
  font-size: 0.8787rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Schedule block */
.lt-schedule {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lt-sched-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8383rem;
  color: var(--text-muted);
}
.lt-sched-row .si { font-size: 1.01rem; flex-shrink: 0; color: var(--green); }
.lt-sched-row strong { color: var(--text); font-weight: 600; }

/* Section label */
.lt-section-label {
  font-size: 0.6868rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* Experience / Learn grid */
.lt-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.lt-exp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8181rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0.45rem 0.65rem;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.lt-exp-item:hover { border-color: var(--green); }
.lt-exp-item::before {
  content: '✔';
  color: var(--green);
  font-size: 0.606rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Program includes (icon rows) */
.lt-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lt-include-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--green-dim);
  border: 1px solid rgba(42,144,97,0.22);
  border-radius: 11px;
  padding: 0.65rem 1rem;
  font-size: 0.8383rem;
  color: var(--text-muted);
}
.lt-include-row .li-icon { font-size: 1.0605rem; flex-shrink: 0; }
.lt-include-row .li-label { font-weight: 600; color: var(--text); margin-right: 4px; }

/* No recordings badge */
.lt-no-rec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,50,50,0.07);
  border: 1px solid rgba(200,50,50,0.18);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.808rem;
  color: #e05555;
  margin-bottom: 1.5rem;
}
.lt-no-rec .nr-icon { font-size: 1.01rem; flex-shrink: 0; }

/* Bonus banner */
.lt-bonus {
  background: linear-gradient(135deg, rgba(42,144,97,0.14), rgba(42,144,97,0.04));
  border: 1px solid rgba(42,144,97,0.28);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.lt-bonus-label {
  font-size: 0.6565rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.lt-bonus-text {
  font-size: 0.8282rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.lt-bonus-text strong { color: var(--text); }

/* Ideal / Suitable chips */
.lt-ideal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.lt-ideal-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.28rem 0.75rem;
  font-size: 0.7373rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Trust strip */
.lt-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.7878rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.lt-trust .trust-icon { color: var(--green); font-size: 1.01rem; flex-shrink: 0; margin-top: 1px; }

/* Card footer */
.lt-card-footer {
  padding: 1.4rem 2.2rem 2.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-mid);
  border-radius: 8px;
  padding: 14px 20px;
  margin: 2rem 0 0;
}

.footer-disclaimer i {
  font-size: 1.1rem;
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-disclaimer p {
  font-size: 0.90rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.footer-disclaimer strong {
  color: var(--green-light);
}

/* ============================================================
   QUICK COMPARE TABLE
   ============================================================ */
.lt-compare-section {
  padding: 80px 5% 100px;
  background: var(--bg2);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.lt-how-section { padding: 90px 5%; }
.lt-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.lt-steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
  opacity: 0.3;
  z-index: 0;
}
.lt-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lt-step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.616rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 24px var(--green-glow);
  transition: transform 0.3s;
}
.lt-step:hover .lt-step-circle { transform: scale(1.1); }
.lt-step-title {
  font-weight: 700;
  font-size: 0.9292rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.lt-step-desc {
  font-size: 0.808rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHAT YOU GAIN
   ============================================================ */
.lt-gain-section {
  padding: 90px 5%;
  background: var(--bg2);
}
.lt-gain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lt-gain-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.lt-gain-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.lt-gain-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 20px 50px var(--shadow);
}
.lt-gain-card:hover::after { transform: scaleX(1); }
.lt-gain-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.03rem;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.lt-gain-card:hover .lt-gain-num { color: var(--green); }
.lt-gain-icon { font-size: 1.515rem; margin-bottom: 0.7rem; }
.lt-gain-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.01rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.lt-gain-desc {
  font-size: 0.8383rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   REAL MARKET PHILOSOPHY
   ============================================================ */
.lt-honest-section { padding: 90px 5%; }
.lt-honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.lt-honest-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.lt-honest-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.lt-honest-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.lt-honest-item:hover::before { transform: scaleY(1); }
.lt-honest-item:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: 0 12px 36px var(--shadow);
}
.lt-honest-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.313rem;
  flex-shrink: 0;
}
.lt-honest-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.lt-honest-item p {
  font-size: 0.8383rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.lt-honest-right {
  background: var(--card);
  border: 2px solid var(--green);
  border-radius: 28px;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 70px var(--green-glow);
}
.lt-honest-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light), transparent);
}
.lt-honest-eyebrow {
  font-size: 0.6868rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.lt-honest-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.414rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.lt-honest-quote em { font-style: italic; color: var(--green); }
.lt-hl-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.lt-hl-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.8484rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.lt-hl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   CONSULTATION SERVICES SECTION
   ============================================================ */
.lt-consult-section {
  padding: 90px 5%;
  background: var(--bg2);
}
.lt-consult-intro {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--green);
  border-radius: 0 20px 20px 0;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.lt-consult-intro p {
  font-size: 0.909rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.lt-consult-intro p strong { color: var(--text); }
.lt-mode-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}
.lt-mode-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid rgba(42,144,97,0.25);
  border-radius: 50px;
  padding: 0.32rem 0.9rem;
  font-size: 0.7373rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}

/* Consultation cards grid */
.lt-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.lt-consult-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.lt-consult-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 20px 55px var(--shadow);
}
.lt-consult-card.featured-consult {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green-glow);
}
.lt-cc-header {
  padding: 1.8rem 1.8rem 1.4rem;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border-bottom: 1px solid var(--card-border);
}
.lt-cc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8585rem;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.lt-cc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.111rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.lt-cc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.lt-cc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.222rem;
  color: var(--text);
  line-height: 1;
}
.lt-cc-price span { font-size: 1.111rem; color: var(--text-muted); }
.lt-cc-duration {
  font-size: 0.7676rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.22rem 0.7rem;
}

/* Card body */
.lt-cc-body { padding: 1.5rem 1.8rem 0; flex: 1; }
.lt-cc-desc {
  font-size: 0.8484rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}

/* Topics / Includes split */
.lt-cc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.lt-cc-col-title {
  font-size: 0.6666rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.lt-cc-list {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.lt-cc-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.7979rem;
  color: var(--text-muted);
  line-height: 1.45;
  list-style: none;
}
.lt-cc-list li::before {
  content: '✔';
  color: var(--green);
  font-size: 0.606rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lt-cc-list li.include::before { content: '🎁'; font-size: 0.7272rem; margin-top: 0; }

/* Best for chips */
.lt-cc-best-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.lt-cc-best-chip {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.22rem 0.65rem;
  font-size: 0.707rem;
  color: var(--text-muted);
}

/* Takeaway row */
.lt-cc-takeaway {
  background: linear-gradient(135deg, var(--green-dim), transparent);
  border: 1px solid rgba(42,144,97,0.22);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.5rem;
}
.lt-cc-takeaway-label {
  font-size: 0.6464rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.lt-cc-takeaway-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lt-cc-takeaway-item {
  font-size: 0.7575rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.lt-cc-takeaway-item::before { content: '✔'; color: var(--green); font-size: 0.606rem; }

/* Card footer */
.lt-cc-footer {
  padding: 1.2rem 1.8rem 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Offset anchor targets for fixed header (announce 38px + nav 68px + buffer) */
[id] {
  scroll-margin-top: 120px;
}


/* ── WhatsApp Book Button in Consultation Table ── */
.wa-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.7878rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.wa-book-btn:hover {
  background: #128c3e;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  color: #fff !important;
}

.wa-book-btn i {
  color: #fff !important;
  font-size: 0.9rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.lt-faq-section { padding: 90px 5%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .lt-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .lt-cards-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
  .lt-honest-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lt-consult-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 900px) {
  .lt-gain-grid { grid-template-columns: repeat(2, 1fr); }
  .lt-steps-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .lt-steps-row::before { display: none; }
}
@media (max-width: 768px) {
  .lt-hero { min-height: auto; padding: 90px 5% 60px; }
  .lt-diff-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lt-cards-grid { grid-template-columns: 1fr; max-width: 100%; gap: 1.4rem; }
  .lt-card-header, .lt-card-body { padding-left: 1.6rem; padding-right: 1.6rem; }
  .lt-card-footer { padding: 1rem 1.6rem 1.6rem; flex-direction: column; }
  .lt-card-footer .btn-enroll, .lt-card-footer .btn-details { width: 100%; justify-content: center; }
  .lt-exp-grid { grid-template-columns: 1fr; }
  .lt-steps-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .lt-gain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lt-gain-card { padding: 1.5rem; }
  .lt-honest-section, .lt-how-section, .lt-gain-section, .lt-consult-section, .lt-faq-section { padding: 60px 5%; }
  .lt-honest-right { padding: 2rem; }
  .lt-consult-intro { grid-template-columns: 1fr; gap: 1rem; }
  .lt-mode-pills { flex-direction: row; flex-wrap: wrap; }
  .lt-consult-grid { grid-template-columns: 1fr; max-width: 100%; }
  .lt-cc-cols { grid-template-columns: 1fr; }
  .lt-cc-header, .lt-cc-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lt-cc-footer { padding: 1rem 1.5rem 1.5rem; flex-direction: column; }
  .lt-cc-footer .btn-enroll, .lt-cc-footer .btn-details { width: 100%; justify-content: center; }
  .lt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .lt-stat .num { font-size: 2.626rem; }
}
@media (max-width: 480px) {
  .lt-price { font-size: 2.828rem; }
  .lt-card-title { font-size: 1.111rem; }
  .lt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-quick-row { gap: 0.5rem; }
  .hq-chip { font-size: 0.7676rem; padding: 0.35rem 0.8rem; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner.intern-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .elig-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .gain-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .about-grid,
  .story-grid,
  .why-grid,
  .mindset-grid,
  .checklist-grid,
  .svc-header { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-header.reverse { direction: ltr; }
  .hero-inner.two-col { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid,
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .setups-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid.two-col { grid-template-columns: 1fr 1fr; }
  .mega-inner { grid-template-columns: 1fr; }
  .mega-right { border-top: 1px solid var(--card-border); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RISE2WEALTH — MOBILE RESPONSIVE FIXES
   Add this AFTER your main stylesheet (global.css)
   Covers all pages: index, about, services, courses,
   internship, playbook, contact
   ============================================================ */


/* ============================================================
   BASE / GLOBAL MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {

  /* Prevent horizontal scroll on all pages */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Section padding reduction for mobile */
  section,
  .svc-section,
  .gain-section,
  .elig-section,
  .cert-section,
  .pillars-section,
  .rules-section,
  .checklist-section,
  .setups-section,
  .mindset-section,
  .journey-section,
  .values-section,
  .story-section,
  .team-section,
  .services-preview,
  .comparison-section,
  .faq-section,
  .contact-main,
  .ldr-section,
  .intern-section,
  .who-section,
  .process-section {
    padding: 60px 5%;
  }

  /* Section title sizing */
  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
    line-height: 1.2;
  }

  /* Section sub text */
  .section-sub {
    font-size: 0.9292rem;
    max-width: 100%;
  }

  /* Breadcrumb wrapping */
  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }
}


/* ============================================================
   NAVIGATION — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav {
    padding: 0 4%;
    height: 60px;
  }

  .logo {
    font-size: 1.01rem;
  }

  .logo-img {
    width: 170px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Bottom nav grid fix for 7 items */
  .mobile-nav {
    display: block;
  }

  .mobile-nav-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
  }

  .mob-nav-btn {
    padding: 0.35rem 0.1rem;
    min-width: 0;
  }

  .mob-nav-btn .icon {
    font-size: 1.111rem;
  }

  .mob-nav-btn .label {
    font-size: 0.3434rem;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 380px) {
  .mob-nav-btn .icon {
    font-size: 0.9595rem;
  }

  .mob-nav-btn .label {
    font-size: 0.303rem;
  }
}


/* ============================================================
   INDEX — HERO SECTION
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 5% 60px;
    text-align: center;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 1.2rem;
  }

  .hero p {
    font-size: 0.9696rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary,
  .hero-btns .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-num {
    font-size: 1.919rem;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}


/* ============================================================
   TICKER
   ============================================================ */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 0.7676rem;
  }
}


/* ============================================================
   STATS BAND
   ============================================================ */
@media (max-width: 768px) {
  .stats-band {
    padding: 50px 5%;
  }

  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .band-stat .num {
    font-size: 2.828rem;
  }

  .band-stat .label {
    font-size: 0.7575rem;
  }
}

@media (max-width: 380px) {
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .band-stat .num {
    font-size: 2.222rem;
  }
}


/* ============================================================
   ABOUT SECTION (index + about page shared)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo-placeholder {
    aspect-ratio: 4/3;
    max-height: 360px;
  }

  .about-badge-float {
    bottom: -14px;
    right: -8px;
    padding: 0.75rem 1rem;
  }

  .about-badge-float .num {
    font-size: 2.02rem;
  }

  .about-badge-float .txt {
    font-size: 0.6565rem;
  }

  .expertise-list {
    margin-top: 1rem;
  }
}


/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
@media (max-width: 900px) {
  .ldr-card,
  .ldr-card-reverse {
    grid-template-columns: 1fr;
  }

  .ldr-photo-wrap {
    min-height: 280px;
  }

  .ldr-content {
    padding: 1.8rem;
  }

  .ldr-card-reverse .ldr-photo-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ldr-section {
    padding: 60px 5%;
  }

  .ldr-list {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .ldr-name {
    font-size: 1.414rem;
  }

  .ldr-photo-wrap {
    min-height: 240px;
  }

  .ldr-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ldr-photo-wrap {
    min-height: 220px;
  }

  .ldr-content {
    padding: 1.2rem;
  }

  .ldr-tags {
    gap: 0.4rem;
  }
}


/* ============================================================
   SERVICES SECTION (index + services page)
   ============================================================ */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Services page sticky tabs */
  .service-tabs-wrap {
    top: 60px;
  }

  .service-tabs {
    padding: 0 4%;
  }

  .tab-btn {
    padding: 0.85rem 1rem;
    font-size: 0.7878rem;
  }

  /* Service section layout */
  .svc-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .svc-header.reverse {
    direction: ltr;
  }

  .svc-visual {
    padding: 1.5rem;
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature cards */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .mini-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .mini-stat .n {
    font-size: 1.515rem;
  }
}


/* ============================================================
   WHO CAN JOIN SECTION
   ============================================================ */
@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .who-card {
    padding: 1.4rem 1rem;
  }

  .who-emoji {
    font-size: 1.818rem;
  }

  .who-label {
    font-size: 0.8484rem;
  }
}

@media (max-width: 380px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .who-card {
    padding: 1.1rem 0.8rem;
  }
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */
@media (max-width: 768px) {
  .process-section {
    padding: 60px 5%;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .step-num-circle,
  .step-circle {
    width: 52px;
    height: 52px;
    font-size: 1.313rem;
  }

  .step-title {
    font-size: 0.8585rem;
  }

  .step-desc {
    font-size: 0.7676rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .step,
  .step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .step-num-circle,
  .step-circle {
    flex-shrink: 0;
    margin: 0;
  }
}


/* ============================================================
   WHY US SECTION
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .why-point {
    padding: 1rem;
  }

  .why-icon {
    width: 40px;
    height: 40px;
  }

  .why-point h4 {
    font-size: 0.9rem;
  }

  .progress-label {
    font-size: 0.7878rem;
  }
}


/* ============================================================
   INTERNSHIP INDEX SECTION (icard)
   ============================================================ */
@media (max-width: 1024px) {
  .intern-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intern-section {
    padding: 60px 5%;
  }

  .intern-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .icard {
    padding: 1.5rem;
  }

  .icard-price {
    font-size: 1.919rem;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .testi-card {
    padding: 1.4rem;
  }
}


/* ============================================================
   FAQ SECTIONS
   ============================================================ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5%;
  }

  .faq-list {
    margin: 2rem auto 0;
    max-width: 100%;
  }

  .faq-q {
    font-size: 0.8686rem;
    padding: 1rem 1.2rem;
  }

  .faq-a-inner {
    padding: 0 1.2rem 1rem;
    font-size: 0.8383rem;
  }
}


/* ============================================================
   COURSES PAGE
   ============================================================ */
@media (max-width: 768px) {

  /* Courses hero */
  .courses-hero {
    min-height: auto;
    padding: 80px 5% 60px;
  }

  .courses-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-stats-row {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stat .num {
    font-size: 1.818rem;
  }

  /* Filter bar */
  .filter-bar {
    top: 60px;
    padding: 0.7rem 4%;
    gap: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.7676rem;
    flex-shrink: 0;
  }

  /* Course cards grid */
  .courses-grid,
  .courses-grid.two-col {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .course-card {
    border-radius: 18px;
  }

  .card-top {
    padding: 1.5rem 1.5rem 1.2rem;
  }

  .card-price {
    font-size: 2.222rem;
  }

  .card-body {
    padding: 1.2rem 1.5rem 0;
  }

  .card-footer,
  .course-footer {
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-enroll,
  .btn-details {
    width: 100%;
    justify-content: center;
  }

  /* Mega card */
  .mega-wrapper {
    margin-top: 2.5rem;
  }

  .mega-card {
    border-radius: 22px;
  }

  .mega-inner {
    grid-template-columns: 1fr;
  }

  .mega-left {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--card-border);
  }

  .mega-right {
    padding: 2rem 1.5rem;
    border-top: none;
  }

  .mega-price {
    font-size: 3.03rem;
  }

  .mega-title {
    font-size: 1.515rem;
  }

  .mega-modules-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  /* Comparison table */
  .comparison-section {
    padding: 60px 4%;
  }

  .table-wrapper {
    border-radius: 14px;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.7575rem;
  }
}

@media (max-width: 480px) {
  .card-top {
    padding: 1.2rem;
  }

  .card-body {
    padding: 1rem 1.2rem 0;
  }

  .card-footer,
  .course-footer {
    padding: 0.9rem 1.2rem 1.4rem;
  }

  .mega-left,
  .mega-right {
    padding: 1.5rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.65rem 0.65rem;
    font-size: 0.707rem;
  }
}


/* ============================================================
   INTERNSHIP PAGE
   ============================================================ */
@media (max-width: 1100px) {
  .intern-hero .hero-inner {
    grid-template-columns: 1fr;
  }

  .intern-hero .hero-right {
    display: none;
  }

  .prog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .elig-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {

  /* Internship hero */
  .intern-hero {
    min-height: auto;
    padding: 80px 5% 60px;
  }

  .intern-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .eligibility-row {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .elig-chip {
    font-size: 0.7272rem;
    padding: 0.28rem 0.7rem;
  }

  /* Track toggle bar */
  .track-toggle-bar {
    top: 60px;
    padding: 0.7rem 4%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .track-toggle-bar::-webkit-scrollbar {
    display: none;
  }

  .ttb-btn {
    flex-shrink: 0;
    font-size: 0.7676rem;
    padding: 0.35rem 0.9rem;
  }

  /* Program cards */
  .prog-grid,
  .prog-grid.two {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .prog-card {
    border-radius: 20px;
  }

  .pc-header {
    padding: 1.5rem 1.5rem 1.2rem;
  }

  .pc-price {
    font-size: 2.323rem;
  }

  .pc-body {
    padding: 1.2rem 1.5rem 0;
  }

  .pc-footer {
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-apply,
  .btn-info {
    width: 100%;
    justify-content: center;
  }

  /* Gain grid */
  .gain-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .gain-card {
    padding: 1.5rem;
  }

  .gain-num {
    font-size: 2.626rem;
  }

  /* Eligibility */
  .elig-section {
    padding: 60px 5%;
  }

  .elig-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .degree-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  /* Certificate card */
  .cert-section {
    padding: 0 5% 60px;
  }

  .cert-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.8rem 1.5rem;
  }

  .cert-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .pc-header {
    padding: 1.2rem;
  }

  .pc-body {
    padding: 1rem 1.2rem 0;
  }

  .pc-footer {
    padding: 0.9rem 1.2rem 1.4rem;
  }

  .degree-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .about-hero .hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero .hero-right {
    display: none;
  }
}

@media (max-width: 768px) {

  /* About hero */
  .about-hero {
    min-height: auto;
    padding: 80px 5% 60px;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  /* Story section */
  .story-section {
    padding: 60px 5%;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .story-body p {
    font-size: 0.909rem;
  }

  /* Timeline */
  .tl-item {
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .tl-dot {
    width: 38px;
    height: 38px;
    font-size: 0.9595rem;
  }

  .tl-title {
    font-size: 0.9292rem;
  }

  .tl-desc {
    font-size: 0.808rem;
  }

  /* Values */
  .values-section {
    padding: 60px 5%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  /* Team section */
  .team-section {
    padding: 60px 5%;
  }

  #team .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-card {
    max-width: 100%;
  }

  .team-avatar {
    height: 240px;
  }

  .team-card .team-name {
    padding-top: 1rem;
    font-size: 1.111rem;
  }

  /* Services preview on about page */
  .services-preview {
    padding: 60px 5%;
  }

  .services-preview .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  #team .team-grid {
    max-width: 100%;
  }

  .team-avatar {
    height: 200px;
  }

  .team-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}


/* ============================================================
   PLAYBOOK PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .playbook-hero .hero-inner {
    grid-template-columns: 1fr;
  }

  .playbook-hero .hero-right {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Playbook hero */
  .playbook-hero {
    min-height: auto;
    padding: 80px 5% 60px;
  }

  .playbook-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  /* Pillars */
  .pillars-section {
    padding: 60px 5%;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .pillar-card {
    padding: 1.5rem;
  }

  /* Golden rules */
  .rules-section {
    padding: 60px 5%;
  }

  .rules-list {
    gap: 1rem;
    margin-top: 2rem;
  }

  .rule-item {
    padding: 1.3rem 1.2rem;
    gap: 1rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .rule-badge {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.212rem;
  }

  .rule-title {
    font-size: 0.9595rem;
  }

  .rule-desc {
    font-size: 0.8282rem;
  }

  /* Checklist section */
  .checklist-section {
    padding: 60px 5%;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .checklist-header {
    padding: 1.2rem 1.5rem 1rem;
  }

  .checklist-body {
    padding: 1.2rem 1.5rem 1.5rem;
  }

  /* Trading setups */
  .setups-section {
    padding: 60px 5%;
  }

  .setups-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  /* Risk band */
  .risk-band {
    padding: 50px 5%;
  }

  .risk-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .risk-stat .num {
    font-size: 2.828rem;
  }

  /* Mindset section */
  .mindset-section {
    padding: 60px 5%;
  }

  .mindset-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .do-dont-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Journey section */
  .journey-section {
    padding: 60px 5%;
  }

  .journey-steps {
    margin-top: 2rem;
  }

  .journey-step {
    gap: 1.2rem;
    padding-bottom: 2rem;
  }

  .js-dot {
    width: 44px;
    height: 44px;
    font-size: 1.111rem;
  }

  .js-title {
    font-size: 1.01rem;
  }

  .js-desc {
    font-size: 0.8383rem;
  }
}

@media (max-width: 480px) {
  .rule-item {
    flex-direction: row;
    gap: 0.8rem;
  }

  .risk-stat .num {
    font-size: 2.222rem;
  }

  .risk-band-grid {
    gap: 1rem;
  }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
@media (max-width: 768px) {

  /* Contact hero */
  .contact-hero {
    min-height: auto;
    padding: 80px 5% 50px;
    text-align: center;
    justify-content: center;
  }

  .contact-hero .hero-inner {
    align-items: center;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .contact-hero .hero-desc {
    text-align: center;
    margin: 0 auto 1.5rem;
  }

  /* Contact main grid */
  .contact-main {
    padding: 50px 5% 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Info cards */
  .contact-info {
    gap: 1rem;
  }

  .info-card {
    padding: 1.3rem 1.4rem;
    gap: 1rem;
  }

  .info-icon {
    width: 42px;
    height: 42px;
  }

  .info-value {
    font-size: 0.8888rem;
  }

  .info-sub {
    font-size: 0.7676rem;
  }

  /* Hours card */
  .hours-card {
    padding: 1.3rem 1.4rem;
  }

  .hours-row {
    font-size: 0.808rem;
  }

  /* WA CTA */
  .wa-cta-card {
    padding: 1.4rem;
  }

  /* Contact form */
  .contact-form-wrap {
    border-radius: 20px;
  }

  .form-header {
    padding: 1.5rem 1.5rem 1.2rem;
  }

  .form-body {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .interest-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .form-title {
    font-size: 1.212rem;
  }

  .form-submit {
    padding: 0.9rem;
    font-size: 0.9595rem;
  }

  /* Map section */
  .map-section {
    padding: 0 5% 60px;
  }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
  }

  .map-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .map-btn {
    flex: 1;
    justify-content: center;
    font-size: 0.7878rem;
    padding: 0.5rem 0.9rem;
  }

  .map-embed {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .form-header {
    padding: 1.2rem;
  }

  .form-body {
    padding: 1.2rem;
  }

  .interest-btn {
    font-size: 0.7676rem;
    padding: 0.5rem 0.7rem;
  }

  .map-embed {
    height: 220px;
  }
}


/* ============================================================
   CTA SECTION (shared across all pages)
   ============================================================ */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 5%;
  }

  .cta-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    max-width: 100%;
  }

  .cta-sub {
    font-size: 0.9292rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-secondary,
  .cta-btns .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 50px 5% 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.8282rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
    gap: 0.8rem;
  }

  .footer-copy {
    font-size: 0.7676rem;
  }

  .social-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9595rem;
  }

  .contact-item,
  .footer-contact-item {
    gap: 8px;
  }

  .contact-text,
  .fc-text {
    font-size: 0.808rem;
  }
}


/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
@media (max-width: 768px) {
  .float-actions {
    right: 14px;
    bottom: 82px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.212rem;
  }

  .float-btn .tooltip {
    display: none;
  }
}


/* ============================================================
   BUTTONS — GLOBAL MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    padding: 0.8rem 1.6rem;
    font-size: 0.8888rem;
  }
}


/* ============================================================
   HERO BADGE / EYEBROW — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hero-badge,
  .hero-eyebrow {
    font-size: 0.7272rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.2rem;
  }
}


/* ============================================================
   TRACK LABEL — COURSES
   ============================================================ */
@media (max-width: 768px) {
  .track-label {
    margin-top: 2.5rem;
    margin-bottom: 1.4rem;
  }

  .track-tag {
    font-size: 0.707rem;
    padding: 0.35rem 1rem;
  }
}


/* ============================================================
   MISC SHARED CARD FIXES
   ============================================================ */
@media (max-width: 768px) {

  /* Divider alignment */
  .divider {
    margin: 0.8rem 0 1.2rem;
  }

  /* Bonus chips */
  .bonuses-row,
  .bonus-chips {
    gap: 0.35rem;
  }

  .bonus-chip {
    font-size: 0.6868rem;
    padding: 0.22rem 0.6rem;
  }

  /* Highlights */
  .highlight-item {
    font-size: 0.7878rem;
  }

  /* Module items */
  .module-item,
  .mod-item {
    font-size: 0.7878rem;
  }

  /* Section eyebrow */
  .section-label,
  .section-eyebrow {
    font-size: 0.6868rem;
    letter-spacing: 2px;
  }
}


/* ============================================================
   INTERNSHIP TRACK DIVIDER
   ============================================================ */
@media (max-width: 768px) {
  .track-divider {
    margin: 2.5rem 0 1.5rem;
  }

  .td-badge {
    font-size: 0.707rem;
    padding: 0.35rem 1rem;
  }
}


/* ============================================================
   SAFE AREA — NOTCHED DEVICES (iPhone X+)
   ============================================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-nav {
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }
  .float-actions { bottom: 80px; right: 14px; }
  .stats-band-grid,
  .risk-band-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid,
  .pillars-grid,
  .setups-grid,
  .do-dont-grid { grid-template-columns: 1fr; }
  .courses-grid,
  .courses-grid.two-col,
  .prog-grid,
  .prog-grid.two { grid-template-columns: 1fr; }
  .filter-bar { gap: 0.4rem; }
  .mega-left,
  .mega-right { padding: 2rem; }
  .mega-modules-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .form-row,
  .interest-grid { grid-template-columns: 1fr; }
  .map-header { flex-direction: column; align-items: flex-start; }
  .cert-card { grid-template-columns: 1fr; }
  .cert-right { display: none; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .gain-grid,
  .hero-inner.intern-inner,
  .elig-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 5% 60px; }
  .hero h1 { font-size: 2.5rem; }
  .contact-hero { text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats,
  .hero-stats-row { gap: 1.5rem; }
  .hero-btns,
  .hero-cta-row,
  .cta-btns { flex-direction: column; }
  .btn-primary,
  .btn-secondary,
  .btn-ghost { justify-content: center; }
  .stats-band-grid,
  .risk-band-grid { gap: 1.5rem; }
  .band-stat .num,
  .risk-stat .num { font-size: 2.525rem; }
  .rule-item { flex-direction: column; gap: 1rem; }
  .card-footer { flex-direction: column; }
  .btn-enroll,
  .btn-details { width: 100%; }
  .table-wrapper { border-radius: 12px; }
  .compare-table th,
  .compare-table td { padding: 0.8rem 0.9rem; font-size: 0.7676rem; }
  .degree-grid,
  .process-steps { grid-template-columns: 1fr; }
  .form-body { padding: 1.5rem; }
  .form-header { padding: 1.5rem; }
  .hero-pills { gap: 0.4rem; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .team-header { flex-direction: column; gap: 1rem; }
  .prog-grid,
  .gain-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .live-trading-grid,
  .consultation-grid,
  .contact-grid-outer {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .community-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .community-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}
@media (max-width: 480px) {
  .community-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   RISE2WEALTH — MOBILE FIX PATCH
   Paste this at the VERY END of script.css (after all other CSS).
   Fixes mobile issues on: courses, community, mentorship, contact
   ============================================================ */

/* ── 1. FIX: Announce bar must be above nav ──────────────────
   announce-bar and nav both had z-index:1000 — bar wins now.  */
.announce-bar {
  position: fixed !important;
  top: 0 !important;
  z-index: 1002 !important;
}

nav {
  top: 38px !important;
  z-index: 1001 !important;
}

/* ── 2. FIX: Body needs top padding so hero doesn't hide under
   the announce bar (38px) + nav (68px desktop / 60px mobile).
   Hero sections already have large padding-top, but the fixed
   stack is 38+68=106px desktop, 38+60=98px mobile.            */
@media (max-width: 768px) {
  /* Courses hero */
  .courses-hero {
    padding-top: 108px !important;
  }

  /* Community (omc) hero */
  .omc-hero {
    padding-top: 118px !important;
  }

  /* Live trading hero */
  .lt-hero {
    padding-top: 108px !important;
  }

  /* About, internship, playbook, services heroes */
  .about-hero,
  .intern-hero,
  .playbook-hero,
  .services-hero {
    padding-top: 108px !important;
  }

  /* Contact hero */
  .contact-hero {
    padding-top: 108px !important;
  }

  /* Generic fallback for any hero not listed above */
  .hero {
    padding-top: 108px !important;
  }
}

/* ── 3. FIX: Filter bar sticky top — courses page ────────────
   On mobile: nav=60px + announce bar=38px = 98px total fixed.
   Add 2px breathing room = 100px.                             */
.filter-bar {
  top: 106px; /* desktop: announce(38) + nav(68) */
}

@media (max-width: 768px) {
  .filter-bar {
    top: 98px !important; /* mobile: announce(38) + nav(60) */
  }
}

/* ── 4. FIX: Track toggle bar (internship) same sticky issue  */
.track-toggle-bar {
  top: 106px;
}

@media (max-width: 768px) {
  .track-toggle-bar {
    top: 98px !important;
  }
}

/* ── 5. FIX: Service tabs sticky top                          */
.service-tabs-wrap {
  top: 106px;
}

@media (max-width: 768px) {
  .service-tabs-wrap {
    top: 98px !important;
  }
}

/* ── 6. FIX: mob-nav-btn label font-size for 7-item bottom nav
   The 0.38rem value was being overridden back to 0.58rem by a
   later rule. Force it correctly at mobile.                    */
@media (max-width: 768px) {
  .mobile-nav-grid {
    grid-template-columns: repeat(7, 1fr) !important;
  }

  .mob-nav-btn .label {
    font-size: 0.3434rem !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mob-nav-btn .icon {
    font-size: 1.0605rem !important;
  }

  .mob-nav-btn {
    padding: 0.35rem 0.1rem !important;
  }
}

@media (max-width: 380px) {
  .mob-nav-btn .icon {
    font-size: 0.9292rem !important;
  }

  .mob-nav-btn .label {
    font-size: 0.2929rem !important;
  }
}

/* ── 7. FIX: Contact page — hero centering on mobile          */
@media (max-width: 768px) {
  .contact-hero .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .contact-hero .breadcrumb {
    justify-content: center;
  }
}

/* ── 8. FIX: Community page cards — omc-programs-grid
   On mobile the 4-col grid was not fully collapsing.          */
@media (max-width: 600px) {
  .omc-programs-grid {
    grid-template-columns: 1fr !important;
  }

  .omc-benefits-grid,
  .omc-activities-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 9. FIX: Courses grid on mobile — ensure full collapse     */
@media (max-width: 600px) {
  .courses-grid,
  .courses-grid.two-col {
    grid-template-columns: 1fr !important;
  }

  .card-top,
  .card-body {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  .card-footer,
  .course-footer {
    padding: 0.9rem 1.2rem 1.4rem !important;
    flex-direction: column !important;
  }

  .btn-enroll,
  .btn-details,
  .btn-course,
  .btn-apply {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ── 10. FIX: Mentorship page — general card grids on mobile  
   Mentorship reuses .services-grid, .why-grid, .feature-card  */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 11. FIX: Contact form — interest grid on mobile          */
@media (max-width: 480px) {
  .interest-grid {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* ── 12. FIX: Float action buttons — don't overlap bottom nav */
@media (max-width: 768px) {
  .float-actions {
    bottom: 88px !important;
    right: 14px !important;
    gap: 10px !important;
  }
}

/* ── 13. FIX: Body bottom padding — ensure content clears
   mobile bottom nav (approx 62px) + safe area                 */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ── 14. FIX: Comparison table — horizontal scroll on mobile  */
@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .compare-table {
    min-width: 520px;
  }

  .lt-compare-section .compare-table {
    min-width: 480px;
  }
}

/* ── 15. FIX: omc-vp-stages roadmap on mobile — vertical layout */
@media (max-width: 600px) {
  .omc-vp-stages {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }

  .omc-vp-line {
    width: 2px !important;
    height: 28px !important;
    min-width: unset !important;
    max-width: unset !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
  }
}

/* ── 16. FIX: Live trading page stats band on mobile           */
@media (max-width: 600px) {
  .lt-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }

  .lt-stat .num {
    font-size: 2.222rem !important;
  }
}

/* ── 17. FIX: Section band (ci-section-band) wrapping on mobile */
@media (max-width: 480px) {
  .ci-section-band {
    flex-wrap: wrap !important;
    padding: 0.9rem 5% !important;
    min-height: auto !important;
    gap: 0.4rem !important;
  }

  .ci-band-sep {
    display: none !important;
  }

  .ci-band-title {
    font-size: 0.9595rem !important;
  }
}