/* ============================================================
   LEVERAGE — ELEVATEEG | Financial Courses & Consulting
   Design tokens + base + components
   Palette from logo: Navy #0E1E37 · Gold #C9A227 · Cream #F5F1E6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy: #0E1E37;
  --navy-2: #1E3A5F;
  --navy-3: #0A1730;
  --gold: #C9A227;
  --gold-2: #D4AF37;
  --gold-soft: #E9C86B;
  --cream: #F5F1E6;
  --cream-2: #F9F6EE;
  --white: #FFFFFF;
  --ink: #0B1424;
  --muted: #5A6B85;
  --line: #E2DCCB;
  --shadow-sm: 0 2px 8px rgba(14,30,55,.08);
  --shadow-md: 0 10px 30px rgba(14,30,55,.12);
  --shadow-lg: 0 24px 60px rgba(14,30,55,.18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --font: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
section { position: relative; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { margin-bottom: 44px; }
.section-head p { color: var(--muted); max-width: 620px; margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201,162,39,.5); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-3);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color .2s; }
.topbar a:hover { color: var(--gold-2); }
.topbar svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-cta { color: var(--gold-2) !important; font-weight: 600; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #F8F7F3; /* matches logo.png background so the logo blends seamlessly */
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 60px; width: auto; }
.brand .brand-name { font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.brand .brand-name span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: color .2s, background .2s;
  font-size: .97rem;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--gold); background: rgba(201,162,39,.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform .25s; }
.nav-item.dropdown:hover .nav-link svg, .nav-item.dropdown.open .nav-link svg { transform: rotate(180deg); }
.nav-cta { margin-left: 10px; padding: 11px 22px; font-size: .9rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 100;
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.open .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 500;
  font-size: .93rem;
  transition: background .2s, color .2s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }
.dropdown-menu a svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.dropdown-menu .dd-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 8px 14px 4px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 1050;
  padding: 96px 8% 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform .45s var(--ease), opacity .3s, visibility .3s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu a.m-link {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mobile-menu a.m-link:hover { color: var(--gold-2); }
.mobile-menu .m-sub { padding: 4px 0 4px 16px; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu .m-sub a { font-size: 1rem; color: rgba(255,255,255,.75); font-weight: 400; padding: 8px 0; }
.mobile-menu .m-sub a:hover { color: var(--gold-2); }
.mobile-menu .m-cta { margin-top: 26px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(30,58,95,.55), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(201,162,39,.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 92px 0 110px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,162,39,.5);
  color: var(--gold-2);
  background: rgba(201,162,39,.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .gold-word {
  background: linear-gradient(120deg, var(--gold-2), var(--gold-soft) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 34px; font-weight: 300; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-trust strong { color: var(--gold-2); font-weight: 600; }

/* Hero logo visual (transparent, animated) */
.hero-logo-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 10px;
}
.hero-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(620px, 100%);
}
.lock-line {
  flex: 1 1 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2) 40%, var(--gold) 100%);
  border-radius: 2px;
  transform: scaleX(0);
}
.lock-left { transform-origin: right center; }
.lock-right { transform-origin: left center; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, transparent); }
.hero-logo-img {
  position: relative;
  width: min(440px, 78%);
  flex-shrink: 0;
}
.hero-logo-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.5)) drop-shadow(0 0 30px rgba(201,162,39,.2));
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; max-width: 520px; }
.hero-stat { border-left: 2px solid var(--gold); padding-left: 12px; }
.hero-stat .val { font-size: 1.25rem; font-weight: 700; color: var(--white); }
.hero-stat .lbl { font-size: .74rem; color: rgba(255,255,255,.6); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Section rhythm ---------- */
.section { padding: 92px 0; }
.section-cream { background: var(--cream); }
.section-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-tag { color: var(--gold-2); }
.section-navy p { color: rgba(255,255,255,.75); }
.section-center { text-align: center; }
.section-center .section-head p { margin-inline: auto; }
.section-center .section-tag::before { display: none; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: -60px; position: relative; z-index: 5; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num .suffix { color: var(--gold); }
.stat-lbl { margin-top: 10px; color: var(--muted); font-size: .9rem; }

/* ---------- Cards ---------- */
.course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  height: 100%;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,.5); }
.course-badge {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 100px;
}
.course-badge.gold { color: var(--navy); background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-color: transparent; }
.course-card h3 { font-size: 1.12rem; }
.course-card p { color: var(--muted); font-size: .93rem; flex-grow: 1; }
.course-meta { display: flex; gap: 14px; color: var(--muted); font-size: .82rem; }
.course-meta span { display: inline-flex; align-items: center; gap: 5px; }
.course-meta svg { width: 14px; height: 14px; color: var(--gold); }
.course-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  transition: color .2s, gap .2s;
}
.course-card .card-link:hover { color: var(--gold); gap: 11px; }
.course-card .card-link svg { width: 16px; height: 16px; }

/* Course cover image strip */
.course-cover {
  position: relative;
  height: 150px;
  margin: -26px -24px 0;
  overflow: hidden;
  background: var(--navy-2);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.course-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.course-card:hover .course-cover img { transform: scale(1.05); }
.course-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,30,55,.02) 40%, rgba(14,30,55,.12) 70%, rgba(14,30,55,.45) 100%),
    linear-gradient(135deg, rgba(14,30,55,.28), rgba(14,30,55,0) 55%);
  pointer-events: none;
}
.course-cover .course-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 1;
  background: rgba(245,241,230,.92);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(201,162,39,.45);
  backdrop-filter: blur(3px);
}
.course-cover .course-badge.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border-color: transparent;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Feature/why cards ---------- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,162,39,.16), rgba(201,162,39,.05));
  border: 1px solid rgba(201,162,39,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--gold); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .93rem; }

/* ---------- Consulting pillars ---------- */
.pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  height: 100%;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(201,162,39,.55); background: rgba(255,255,255,.09); }
.pillar .p-num {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: rgba(255,255,255,.7); font-size: .95rem; }
.pillar ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.pillar li { display: flex; gap: 8px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: .9rem; }
.pillar li svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,162,39,.25);
  font-family: Georgia, serif;
}
.quote-text { color: var(--ink); font-size: .99rem; margin-bottom: 22px; font-style: italic; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.quote-name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.quote-role { font-size: .8rem; color: var(--muted); }

/* ---------- News cards ---------- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,30,55,.02) 45%, rgba(14,30,55,.38) 100%);
  pointer-events: none;
}
.news-thumb svg { width: 48px; height: 48px; color: var(--gold); opacity: .85; }
.news-thumb .news-date-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 1;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.news-body h3 { font-size: 1.05rem; }
.news-body p { color: var(--muted); font-size: .9rem; flex-grow: 1; }
.news-body .card-link { font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(201,162,39,.18), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-3);
  color: rgba(255,255,255,.7);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer h4 { color: var(--white); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { color: rgba(255,255,255,.65); transition: color .2s, padding-left .2s; }
.footer a:hover { color: var(--gold-2); }
.footer .f-links { display: flex; flex-direction: column; gap: 11px; }
.footer .f-links a { display: flex; gap: 8px; align-items: center; }
.footer .f-links a svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer .f-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.footer .f-brand p { font-size: .92rem; max-width: 300px; }
.footer .f-contact { display: flex; flex-direction: column; gap: 12px; }
.footer .f-contact a { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.footer .f-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom .fb-links { display: flex; gap: 20px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 34px rgba(37,211,102,.6); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 350px at 85% -10%, rgba(30,58,95,.6), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 76px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; font-size: 1.08rem; font-weight: 300; }
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Filter chips ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-chip {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 500;
  font-size: .88rem;
  transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Course category heading */
.course-cat { margin: 54px 0 26px; display: flex; align-items: center; gap: 16px; }
.course-cat h3 { white-space: nowrap; }
.course-cat::after { content: ''; height: 1px; background: var(--line); flex: 1; }
.course-cat .cat-count { font-size: .8rem; color: var(--muted); background: var(--cream); padding: 4px 12px; border-radius: 100px; white-space: nowrap; }

/* ---------- Tabs ---------- */
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; }
.tab-btn {
  padding: 14px 30px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tab-btn svg { width: 18px; height: 18px; }
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: var(--navy);
}
.tab-panel { display: none; animation: fadeUp .45s var(--ease); }
.tab-panel.active { display: block; }

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

/* Partner tiles */
.partner-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.partner-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.5); }
.partner-logo {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo svg { width: 38px; height: 38px; color: var(--gold); }
.partner-tile h3 { font-size: 1rem; }
.partner-tile p { color: var(--muted); font-size: .85rem; }

/* Trainer cards */
.trainer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trainer-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.trainer-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trainer-head h3 { font-size: 1.08rem; }
.trainer-spec { color: var(--gold); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.trainer-card p { color: var(--muted); font-size: .92rem; }
.trainer-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.trainer-creds span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 38px 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 8px; }
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { color: #B3202C; font-size: .8rem; margin-top: 6px; display: none; }
.form-group.invalid .form-control { border-color: #B3202C; }
.form-group.invalid .form-error { display: block; }
.form-success {
  display: none;
  background: #ECFDF3;
  border: 1px solid #34C77B;
  color: #0B6B3A;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: .92rem;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,.16), rgba(201,162,39,.05));
  border: 1px solid rgba(201,162,39,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; color: var(--gold); }
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); font-size: .92rem; }
.info-card a:hover { color: var(--gold); }

/* ---------- Timeline (how we work) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  height: 100%;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: .9rem; }

/* ---------- About extras ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.value-item .feature-icon { margin-bottom: 14px; }
.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-item p { color: var(--muted); font-size: .93rem; }
.creds-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cred-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-2);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img .img-ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-img .img-ph svg { width: 70px; height: 70px; color: var(--gold); opacity: .8; }
.about-img .img-cap {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(14,30,55,.85);
  color: var(--gold-2);
  font-size: .78rem;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
}

/* Section photo banner */
.section-img {
  position: relative;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: var(--shadow-md);
}
.section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,30,55,.15) 30%, rgba(14,30,55,.6) 100%);
  pointer-events: none;
}
.section-img .img-cap {
  position: absolute;
  bottom: 20px; left: 26px;
  z-index: 1;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .05em;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}

/* ---------- Reveal animation base ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-logo-visual { max-width: 560px; margin-inline: auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; margin-top: -40px; }
  .section { padding: 68px 0; }
  .hero { padding: 64px 0 84px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .topbar .container { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ---------- Powered by ---------- */
.powered { font-size: .82rem; color: rgba(255,255,255,.55); }
.powered a { color: var(--gold-2); font-weight: 600; }
.powered a:hover { text-decoration: underline; }
/* ---------- Hero typewriter + scroll indicator ---------- */
.type-cursor {
  display: inline-block;
  width: 3px;
  height: .88em;
  margin-left: 7px;
  background: var(--gold-2);
  border-radius: 2px;
  vertical-align: -0.06em;
  animation: cursorBlink 1s steps(2, start) infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,.55);
  color: var(--gold-2);
  background: rgba(10,23,48,.42);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroArrowFloat 2.4s var(--ease) infinite;
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
}
.hero-scroll:hover {
  background: rgba(201,162,39,.22);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  box-shadow: 0 0 26px rgba(201,162,39,.4);
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes heroArrowFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .72; }
  50% { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}
@media (max-width: 768px) {
  .hero-scroll { bottom: 14px; width: 40px; height: 40px; }
}


/* ---------- Hero logo arrow ("The Rise") ---------- */
.hero-rise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.chart-head-l, .chart-head-r {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(201,162,39,.55);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14,30,55,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s, border-color .25s, color .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-2); border-color: var(--gold); color: var(--gold-soft); }
.to-top svg { width: 22px; height: 22px; transform: rotate(-90deg); }
