  :root {
    --navy: #1a2e4a;
    --navy-light: #243b5e;
    --gold: #c8922a;
    --gold-light: #e8b04a;
    --cream: #faf7f2;
    --cream-dark: #f0ebe0;
    --white: #ffffff;
    --text: #1e2a38;
    --text-mid: #3d4f62;
    --text-light: #647b94;
    --green: #2e7d52;
    --green-light: #e8f5ee;
    --border: #d4c9b5;
    --shadow: 0 4px 24px rgba(26,46,74,0.10);
    --shadow-lg: 0 8px 40px rgba(26,46,74,0.15);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 18px; }
  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
  }

  /* ========== NAVBAR ========== */
  nav {
    background: var(--navy);
    position: sticky; top: 0; z-index: 999;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .nav-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px;
  }
  .nav-brand {
    font-family: 'Lora', serif;
    font-size: 1.55rem; font-weight: 700;
    color: var(--white); text-decoration: none;
    padding: 16px 0; letter-spacing: -0.01em;
    flex-shrink: 0;
  }
  .nav-brand span { color: var(--gold-light); }

  /* top-level list */
  .nav-links { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }

  /* every top-level item is a positioning parent */
  .nav-links > li { position: relative; }

  .nav-links > li > a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.96rem; font-weight: 500;
    padding: 20px 16px; display: flex;
    align-items: center; gap: 5px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s; white-space: nowrap;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
  }
  /* chevron icon inside parent links that have dropdowns */
  .nav-links > li.has-drop > a::after {
    content: '▾';
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.2s;
  }
  .nav-links > li.has-drop:hover > a::after { transform: rotate(180deg); }

  /* ── DROPDOWN PANEL ── */
  .dropdown {
    display: none;
    position: absolute; top: 100%; left: 0;
    background: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 32px rgba(26,46,74,0.18);
    min-width: 220px;
    border-top: 3px solid var(--gold);
    z-index: 1000;
    padding: 6px 0;
  }
  /* open on hover (desktop) */
  .nav-links > li.has-drop:hover > .dropdown { display: block; }

  .dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    color: var(--navy); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid var(--cream-dark);
  }
  .dropdown a:last-child { border-bottom: none; }
  .dropdown a:hover { background: var(--cream); color: var(--gold); }
  .dropdown a .dd-icon { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
  .dropdown a.active { color: var(--gold); font-weight: 600; }

  /* hamburger */
  .nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 10px; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; width: 28px; height: 3px;
    background: white; margin: 5px 0; border-radius: 2px;
    transition: 0.3s;
  }

  /* ── MOBILE ── */
  @media (max-width: 860px) {
    .nav-toggle { display: block; }
    .nav-links {
      display: none; flex-direction: column;
      width: 100%; background: var(--navy-light);
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a {
      padding: 14px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      border-left: none;
    }
    .nav-links > li.has-drop > a::after { float: right; }
    /* on mobile, dropdown is toggled by JS class */
    .dropdown {
      position: static; border-radius: 0;
      border-top: none; border-left: 4px solid var(--gold);
      box-shadow: none; background: rgba(0,0,0,0.15);
      padding: 0; min-width: unset;
    }
    .dropdown a {
      color: rgba(255,255,255,0.82); padding: 11px 20px 11px 36px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.93rem;
    }
    .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }
    .dropdown a.active { color: var(--gold-light); }
    /* mobile open class toggled by JS */
    .nav-links > li.has-drop.drop-open > .dropdown { display: block; }
    .nav-links > li.has-drop > .dropdown { display: none; }
  }

  /* ========== SECTIONS / PAGES ========== */
  .page { display: none; }
  .page.active { display: block; }

  /* ========== SHARED ========== */
  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-alt { background: var(--navy); color: var(--white); }
  .section-cream { background: var(--cream-dark); }
  h1, h2.page-title { font-family: 'Lora', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; }
  .hero h2.page-title { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 20px; color: white; }
  .hero h2.page-title span { color: var(--gold-light); }
  .about-hero h2.page-title, .program-hero h2.page-title, .jobs-hero h2.page-title, .contact-hero h2.page-title { color: white; }
  h2 { font-family: 'Lora', serif; font-size: clamp(1.55rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.25; }
  h3 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; }
  h4 { font-size: 1.05rem; font-weight: 600; }
  p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 1rem; }
  .section-alt p { color: rgba(255,255,255,0.82); }
  .label {
    display: inline-block;
    background: var(--gold); color: var(--white);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 2px;
    margin-bottom: 16px;
  }
  .label-green { background: var(--green); }
  .divider { width: 60px; height: 4px; background: var(--gold); margin: 18px 0 28px; border-radius: 2px; }
  .divider-white { background: rgba(255,255,255,0.5); }

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-block; text-decoration: none;
    padding: 14px 32px; border-radius: 4px;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.2s; letter-spacing: 0.01em;
    font-family: 'Source Sans 3', sans-serif;
  }
  .btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
  .btn-primary:hover { background: #a97420; border-color: #a97420; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,146,42,0.35); }
  .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
  .btn-outline:hover { background: var(--navy); color: var(--white); }
  .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
  .btn-outline-white:hover { background: white; color: var(--navy); }
  .btn-green { background: var(--green); color: white; border-color: var(--green); }
  .btn-green:hover { background: #245f3f; }
  .btn-lg { padding: 18px 40px; font-size: 1.1rem; }

  /* ========== UNFAIR ADVANTAGE ========== */
  .unfair-section {
    background: var(--cream); padding: 72px 0; text-align: center;
  }
  .unfair-title {
    font-family: 'Lora', serif; font-size: clamp(1.7rem,3.5vw,2.4rem);
    font-weight: 700; color: var(--navy); margin-bottom: 12px;
  }
  .unfair-sub {
    color: var(--text-light); font-size: 1rem; margin-bottom: 48px;
  }
  .unfair-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; text-align: left;
  }
  .unfair-card {
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 10px; padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .unfair-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .unfair-icon { font-size: 2.2rem; margin-bottom: 16px; }
  .unfair-card h4 { color: var(--gold); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
  .unfair-card p { color: var(--text-mid); font-size: 0.97rem; margin: 0; line-height: 1.65; }
  @media (max-width: 640px) { .unfair-grid { grid-template-columns: 1fr; } }

  /* ========== SENIOR ADVANTAGE SECTION ========== */
  .senior-advantage {
    background: #0f1f35;
    padding: 80px 0 60px;
    text-align: center;
  }
  .sa-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 16px;
  }
  .sa-title {
    font-family: 'Lora', serif; font-size: clamp(2rem,4vw,2.8rem);
    font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px;
  }
  .sa-title span { color: var(--gold-light); }
  .sa-sub {
    color: rgba(255,255,255,0.68); font-size: 1rem;
    max-width: 560px; margin: 0 auto 52px; line-height: 1.6;
  }
  .sa-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; margin-bottom: 56px; text-align: left;
    border-radius: 12px; overflow: hidden;
  }
  .sa-card { padding: 36px 30px; }
  .sa-before  { background: #1a2d45; }
  .sa-middle  { background: #1e3d6e; }
  .sa-winner  { background: #1a3d2e; }
  .sa-card-tag {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
    display: inline-block; margin-bottom: 20px;
  }
  .sa-before  .sa-card-tag { background: rgba(224,85,85,0.25); color: #f08080; }
  .sa-middle  .sa-card-tag { background: rgba(232,176,74,0.25); color: var(--gold-light); }
  .sa-winner  .sa-card-tag { background: rgba(46,204,113,0.25); color: #2ecc71; }
  .sa-icon { font-size: 2.2rem; margin-bottom: 14px; }
  .sa-card h3 { color: white; font-size: 1.25rem; margin-bottom: 4px; font-family:'Lora',serif; }
  .sa-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.07em; }
  .sa-desc { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 24px; }
  .sa-bars { display: flex; flex-direction: column; gap: 10px; }
  .sa-bar-row { display: flex; align-items: center; gap: 10px; }
  .sa-bar-row > span:first-child { font-size: 0.75rem; color: rgba(255,255,255,0.5); width: 42px; flex-shrink: 0; }
  .sa-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
  .sa-bar-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
  .sa-bar-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); width: 36px; text-align: right; flex-shrink: 0; }
  .sa-quote { margin-top: 8px; }
  .sa-quote p {
    font-family: 'Lora', serif; font-size: clamp(1.5rem,3vw,2.1rem);
    color: white; font-weight: 700; line-height: 1.35; margin-bottom: 14px;
  }
  .sa-quote p span { color: var(--gold-light); }
  .sa-quote cite {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em; text-transform: uppercase; font-style: normal;
  }
  @media (max-width: 768px) {
    .sa-grid { grid-template-columns: 1fr; }
  }

  /* ========== HERO ========== */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #1a3050 100%);
    color: white; padding: 80px 0 90px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(46,125,82,0.10) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 1;
  }
  .hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 20px; color: white; }
  .hero h1 span { color: var(--gold-light); }
  .hero-sub {
    font-size: 1.2rem; color: rgba(255,255,255,0.88);
    max-width: 720px; margin-bottom: 36px; line-height: 1.6;
    font-weight: 300;
  }
  .hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; align-items: center; }
  .hero-sub-row {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 24px;
    margin-bottom: 28px; max-width: 820px;
  }
  .hero-sub-row .hero-sub { margin-bottom: 0; flex: 1; }
  .hero-photo-wrap { flex-shrink: 0; }
  .hero-photo {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .hero-photo-row { display: flex; align-items: center; gap: 12px; margin-right: 8px; }
  .hero-photo-caption { display: flex; flex-direction: column; }
  .hero-photo-caption strong { color: white; font-size: 0.95rem; line-height: 1.3; }
  .hero-photo-caption span { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
  .badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px; border-radius: 20px;
    font-size: 0.9rem;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

  /* ========== PROBLEM SECTION ========== */
  .problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
  .problem-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 28px 24px;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow);
  }
  .problem-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
  .problem-card h4 { margin-bottom: 8px; color: var(--navy); }
  .problem-card p { margin: 0; font-size: 0.98rem; }

  /* ========== JOURNEY SECTION ========== */
  .journey { background: var(--navy); padding: 72px 0; }
  .journey-steps { display: flex; gap: 0; overflow-x: auto; padding-bottom: 12px; }
  .journey-step {
    flex: 1; min-width: 180px;
    text-align: center; position: relative;
    padding: 0 12px;
  }
  .journey-step:not(:last-child)::after {
    content: '→';
    position: absolute; right: -10px; top: 36px;
    color: var(--gold-light); font-size: 1.6rem;
    font-weight: 700;
  }
  .step-circle {
    width: 76px; height: 76px;
    background: rgba(255,255,255,0.08);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 700; color: white; margin: 0 auto 14px;
    transition: all 0.3s;
  }
  .journey-step:hover .step-circle { background: var(--gold); transform: scale(1.05); }
  .step-month {
    background: var(--gold); color: white;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 2px 10px; border-radius: 10px;
    display: inline-block; margin-bottom: 10px;
  }
  .journey-step h4 { color: white; font-size: 0.95rem; margin-bottom: 6px; }
  .journey-step p { color: rgba(255,255,255,0.68); font-size: 0.83rem; margin: 0; }

  /* ========== LEVELS ========== */
  .levels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; margin-top: 40px; }
  .level-card {
    background: white; border-radius: 10px;
    box-shadow: var(--shadow); overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .level-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); cursor: pointer; }
  .level-header {
    background: var(--navy); color: white;
    padding: 22px 24px;
  }
  .level-num { color: var(--gold-light); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
  .level-header h3 { color: white; font-size: 1.2rem; }
  .level-body { padding: 24px; }
  .level-body ul { padding-left: 20px; }
  .level-body li { margin-bottom: 8px; font-size: 0.98rem; color: var(--text-mid); }
  .level-body .duration {
    display: inline-block; background: var(--green-light);
    color: var(--green); font-size: 0.82rem; font-weight: 600;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
  }
  .level-coming {
    border: 2px dashed var(--border);
    background: var(--cream);
  }
  .level-coming .level-header { background: var(--text-light); }

  /* ========== WHO IT'S FOR ========== */
  .who-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
  .who-card {
    background: white; border: 1px solid var(--border);
    border-radius: 8px; padding: 20px 18px;
    text-align: center; box-shadow: var(--shadow);
    transition: transform 0.2s;
  }
  .who-card:hover { transform: translateY(-3px); }
  .who-card .who-icon { font-size: 2rem; margin-bottom: 10px; }
  .who-card h4 { font-size: 0.95rem; color: var(--navy); }

  /* ========== WHAT YOU CAN DO ========== */
  .can-do-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 18px; margin-top: 36px; }
  .can-do-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 20px 18px;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .can-do-item .check { color: var(--gold-light); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
  .can-do-item p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }

  /* ========== ABOUT TEASER ========== */
  .about-teaser {
    background: var(--cream-dark); padding: 72px 0;
  }
  .teaser-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
  }
  .teaser-text .quote {
    font-family: 'Lora', serif; font-style: italic;
    font-size: 1.4rem; color: var(--navy);
    border-left: 4px solid var(--gold);
    padding-left: 20px; margin: 20px 0 28px;
    line-height: 1.5;
  }
  .teaser-visual {
    background: var(--navy);
    border-radius: 12px; padding: 40px;
    text-align: center; color: white;
    box-shadow: var(--shadow-lg);
  }
  .portrait-placeholder {
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
  }
  .teaser-visual h3 { color: white; margin-bottom: 6px; }
  .teaser-visual .subtitle { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
  .stat-row { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
  .stat { text-align: center; }
  .stat .num { font-family: 'Lora', serif; font-size: 1.8rem; color: var(--gold-light); font-weight: 700; }
  .stat .desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

  /* ========== ABOUT PAGE ========== */
  .about-hero { background: var(--navy); padding: 72px 0; color: white; }
  .about-hero h1 { color: white; margin-bottom: 16px; }
  .about-body { padding: 72px 0; }
  .about-body .story-section { margin-bottom: 48px; }
  .philosophy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 28px; }
  .phil-card {
    background: var(--navy); color: white;
    padding: 28px 24px; border-radius: 8px;
    text-align: center;
  }
  .phil-card .phil-word { font-family: 'Lora', serif; font-size: 2rem; color: var(--gold-light); font-weight: 700; margin-bottom: 10px; }
  .phil-card p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.95rem; }
  .timeline { border-left: 3px solid var(--gold); padding-left: 32px; margin-top: 28px; }
  .timeline-item { margin-bottom: 32px; position: relative; }
  .timeline-item::before {
    content: '';
    position: absolute; left: -41px; top: 6px;
    width: 14px; height: 14px;
    background: var(--gold); border-radius: 50%;
    border: 3px solid var(--cream);
  }
  .timeline-item .year { font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
  .timeline-item h4 { margin-bottom: 6px; }

  /* ========== BOOK SERIES PAGE ========== */
  .book-layout {
    display: grid; grid-template-columns: 300px 1fr;
    gap: 48px; align-items: start;
    background: white; border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    padding: 36px; box-shadow: var(--shadow-lg);
    margin-bottom: 12px;
  }
  .book-cover-col { text-align: center; }
  .book-cover-box { position: relative; }
  .book-features { list-style: none; padding: 0; margin-bottom: 24px; }
  .book-features li { padding: 7px 0; font-size: 0.97rem; color: var(--text-mid); border-bottom: 1px solid var(--cream-dark); }
  .book-features li:last-child { border-bottom: none; }
  .book-reviews { background: var(--cream); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
  .review-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; }
  .review-item { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
  .review-item:last-of-type { border-bottom: none; margin-bottom: 0; }
  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }
  .review-item p { font-size: 0.88rem; color: var(--text-mid); margin: 0 0 4px; font-style: italic; }
  .review-item span { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }
  .review-note { font-size: 0.78rem; color: #b07000; background: #fff8e0; border: 1px dashed #e8c060; border-radius: 6px; padding: 8px 12px; margin-top: 10px; }
  .book-pricing { background: var(--cream-dark); border-radius: 10px; padding: 24px; }
  .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
  .price-main { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); }
  .price-strike { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
  .bundle-badge { background: var(--navy); color: var(--gold-light); font-size: 0.82rem; font-weight: 700; padding: 7px 14px; border-radius: 20px; display: inline-block; margin-bottom: 6px; }
  .format-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .format-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); width: 80px; flex-shrink: 0; }
  .fmt-btn { padding: 7px 20px; border-radius: 4px; font-size: 0.82rem; font-weight: 700; cursor: pointer; border: 2px solid var(--navy); background: transparent; color: var(--navy); transition: all 0.2s; }
  .fmt-btn.active { background: var(--navy); color: white; }
  .paperback-note { font-size: 0.76rem; color: #b07000; background: #fff8e0; border: 1px dashed #e8c060; border-radius: 6px; padding: 7px 12px; margin: 8px 0 14px; }
  .qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .qty-ctrl { display: flex; align-items: center; gap: 0; border: 2px solid var(--navy); border-radius: 6px; overflow: hidden; }
  .qty-ctrl button { background: var(--navy); color: white; border: none; width: 36px; height: 36px; font-size: 1.1rem; cursor: pointer; font-weight: 700; }
  .qty-ctrl input { width: 48px; height: 36px; border: none; text-align: center; font-size: 1rem; font-weight: 600; background: white; }
  .btn-add-cart { display: block; width: 100%; padding: 14px; background: white; border: 2px solid var(--navy); border-radius: 6px; color: var(--navy); font-size: 1rem; font-weight: 700; cursor: pointer; margin-bottom: 10px; font-family: 'Source Sans 3', sans-serif; transition: all 0.2s; }
  .btn-add-cart:hover { background: var(--cream); }
  .btn-buy-now { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; background: var(--navy); border-radius: 6px; color: white; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
  .btn-buy-now:hover { background: #0f1f35; }
  .btn-buy-now.full { width: 100%; justify-content: center; }
  .pay-icons { background: white; color: var(--navy); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; letter-spacing: 0.05em; }
  .book-mini-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 22px 20px; box-shadow: var(--shadow); }
  .book-mini-card.available { border-top: 4px solid var(--green); }
  .book-mini-card.coming { border-top: 4px solid var(--border); opacity: 0.85; }
  .bmc-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
  .coming-tag { color: var(--text-light) !important; }
  .book-mini-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
  .book-mini-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 12px; }
  .bmc-price { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
  .bmc-price.soon { font-size: 0.88rem; font-weight: 600; color: var(--text-light); font-family: 'Source Sans 3', sans-serif; }
  @media (max-width: 768px) {
    .book-layout {
      grid-template-columns: 1fr;
      padding: 20px;
      gap: 24px;
    }
    .book-cover-col { max-width: 280px; margin: 0 auto; }
    .book-detail-col h2 { font-size: 1.3rem; }
    .book-reviews { padding: 14px; }
    .book-pricing { padding: 16px; }
    .price-main { font-size: 1.8rem; }
    .format-row { flex-wrap: wrap; }
    .format-label { width: auto; margin-bottom: 4px; }
    .bundle-badge { font-size: 0.75rem; padding: 6px 10px; }
    .book-mini-card { padding: 16px; }
  }

  /* Two-column inline grids inside level pages → single column on mobile */
  @media (max-width: 600px) {
    /* Professional/Personal two-col in level 2 */
    .book-detail-col div[style*="grid-template-columns:1fr 1fr"] {
      display: block !important;
    }
    /* QR scan cards grid */
    .book-detail-col div[style*="grid-template-columns:1fr 1fr"] > div {
      margin-bottom: 10px;
    }
    /* Domain tags */
    .book-detail-col div[style*="flex-wrap:wrap"] {
      gap: 6px !important;
    }
    /* Sample case study cards */
    .book-detail-col div[style*="grid-template-columns:1fr 1fr"]:last-of-type {
      display: block !important;
    }
    /* Mini cards at bottom */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(200px"] {
      grid-template-columns: 1fr 1fr !important;
    }
    /* Author box */
    div[style*="display:flex; align-items:center; gap:16px"] {
      flex-direction: column; text-align: center;
    }
    /* Program hero padding */
    .program-hero { padding: 40px 0; }
    .program-hero h1 { font-size: 1.5rem; }
    /* Level tag bar */
    div[style*="background:var(--navy); color:white; border-radius:8px 8px 0 0"] {
      flex-direction: column; align-items: flex-start; gap: 8px;
    }
  }

  /* ========== PROGRAM PAGE ========== */
  .program-hero { background: linear-gradient(135deg, var(--navy), #1a3a5e); padding: 64px 0; color: white; }
  .program-hero h1 { color: white; }
  .level-full {
    background: white; border-radius: 12px;
    box-shadow: var(--shadow-lg); margin-bottom: 40px;
    overflow: hidden; border: 1px solid var(--border);
  }
  .lf-header {
    background: var(--navy); color: white;
    padding: 28px 36px; display: flex;
    align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .lf-header h2 { color: white; font-size: 1.5rem; }
  .lf-body { padding: 36px; }
  .lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .lf-col h4 { color: var(--navy); margin-bottom: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
  .lf-col ul { padding-left: 20px; }
  .lf-col li { margin-bottom: 10px; color: var(--text-mid); font-size: 0.98rem; }
  .outcome-box {
    background: var(--green-light); border: 1px solid #b8dfc8;
    border-radius: 8px; padding: 20px 24px; margin-top: 24px;
  }
  .outcome-box h4 { color: var(--green); margin-bottom: 8px; }
  .outcome-box p { color: var(--green); margin: 0; font-size: 0.97rem; }

  /* ========== JOBS PAGE ========== */
  .jobs-hero { background: var(--navy); padding: 64px 0; color: white; }
  .jobs-hero h1 { color: white; }
  .form-section { background: white; border-radius: 12px; padding: 40px; box-shadow: var(--shadow); margin-top: 40px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  label { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
  input, select, textarea {
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s;
  }
  input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--navy);
    background: white;
  }
  textarea { resize: vertical; min-height: 100px; }
  .pincode-note {
    background: #fff8e8; border: 1px solid #f0d080;
    border-radius: 8px; padding: 16px 20px; margin: 24px 0;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .pincode-note .pin-icon { font-size: 1.4rem; flex-shrink: 0; }
  .pincode-note p { margin: 0; font-size: 0.94rem; color: #7a5c10; }

  /* ========== RESOURCES PAGE ========== */
  .resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 36px; }
  .resource-card {
    background: white; border: 1px solid var(--border);
    border-radius: 10px; padding: 28px 24px;
    box-shadow: var(--shadow);
  }
  .resource-card .res-icon { font-size: 2rem; margin-bottom: 14px; }
  .resource-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .resource-card p { font-size: 0.94rem; }
  .faq-list { margin-top: 36px; }
  .faq-item {
    background: white; border: 1px solid var(--border);
    border-radius: 8px; margin-bottom: 14px;
    overflow: hidden;
  }
  .faq-q {
    padding: 18px 24px; font-weight: 600;
    cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    color: var(--navy); font-size: 1rem;
    user-select: none;
  }
  .faq-q:hover { background: var(--cream); }
  .faq-q .arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--gold); }
  .faq-a { padding: 0 24px 18px; color: var(--text-mid); font-size: 0.97rem; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .arrow { transform: rotate(180deg); }

  /* ========== CONTACT PAGE ========== */
  .contact-hero { background: var(--navy); padding: 64px 0; color: white; }
  .contact-hero h1 { color: white; }
  .contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-top: 40px; align-items: start; }
  .contact-info h3 { margin-bottom: 20px; }
  .contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding: 16px; background: white; border-radius: 8px; box-shadow: var(--shadow); }
  .contact-detail .cd-icon { font-size: 1.5rem; width: 44px; text-align: center; }
  .contact-detail .cd-text p { margin: 0; font-size: 0.93rem; }
  .contact-detail .cd-text strong { color: var(--navy); }
  .whatsapp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 14px 28px; border-radius: 6px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    margin-top: 8px; transition: all 0.2s;
  }
  .whatsapp-btn:hover { background: #1da851; transform: translateY(-1px); }
  .batch-notice {
    background: var(--navy); color: white;
    border-radius: 10px; padding: 28px 24px; margin-top: 28px;
  }
  .batch-notice h4 { color: var(--gold-light); margin-bottom: 10px; }
  .batch-notice p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.94rem; }

  /* ========== FINAL CTA SECTION ========== */
  .final-cta {
    background: var(--gold); padding: 72px 0; text-align: center;
  }
  .final-cta h2 { color: var(--navy); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
  .final-cta p { color: rgba(26,46,74,0.78); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ========== FOOTER ========== */
  footer {
    background: #0d1b2e; color: rgba(255,255,255,0.78);
    padding: 60px 0 28px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand {
    font-family: 'Lora', serif; font-size: 1.5rem;
    color: white; margin-bottom: 14px; display: block;
  }
  .footer-brand span { color: var(--gold-light); }
  .footer-tagline {
    color: var(--gold-light); font-size: 0.82rem;
    font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 14px; display: block;
  }
  footer p { font-size: 0.91rem; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 10px; }
  .footer-keywords {
    display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px;
  }
  .footer-keywords span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem; padding: 3px 10px; border-radius: 20px;
  }
  .footer-col h4 {
    color: white; font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.65);
    text-decoration: none; font-size: 0.9rem; margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold-light); padding-left: 4px; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px;
  }
  .footer-contact-item .fci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .footer-contact-item p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
  .footer-contact-item strong { color: rgba(255,255,255,0.9); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .footer-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: white;
    padding: 9px 18px; border-radius: 5px;
    text-decoration: none; font-size: 0.85rem; font-weight: 600;
    margin-top: 6px; transition: background 0.2s;
  }
  .footer-wa-btn:hover { background: #1da851; }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
  .footer-bottom-row {
    display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap;
  }
  .disclaimer {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 6px; padding: 14px 18px;
  }
  .disclaimer p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.65; }
  .footer-copy { font-size: 0.8rem; text-align: center; color: rgba(255,255,255,0.35); margin-top: 20px; }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ========== RESPONSIVE (content layouts) ========== */
  @media (max-width: 768px) {
    html { font-size: 16px; }
    .nav-inner { flex-wrap: wrap; }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .who-grid { grid-template-columns: repeat(3, 1fr); }
    .teaser-inner { grid-template-columns: 1fr; }
    .lf-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .journey-steps { gap: 0; }
    .journey-step:not(:last-child)::after { display: none; }
    .lf-header { flex-direction: column; align-items: flex-start; }
    /* Level pages */
    .book-layout { grid-template-columns: 1fr; padding: 16px; gap: 20px; }
    .book-cover-col { max-width: 260px; margin: 0 auto; }
    .program-hero { padding: 36px 0; }
    .program-hero h1 { font-size: 1.4rem; }
    /* Two-col info on jobs page */
    .two-col-info { grid-template-columns: 1fr !important; }
    /* SA grid */
    .sa-grid { grid-template-columns: 1fr; }
    /* unfair grid */
    .unfair-grid { grid-template-columns: 1fr; }
    /* who-grid smaller */
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    /* problem grid */
    .problem-grid { grid-template-columns: 1fr 1fr; }
    /* hero sub row */
    .hero-sub-row { flex-direction: column; gap: 12px; }
    .hero-photo { width: 70px; height: 70px; }
  }

  @media (max-width: 480px) {
    .problem-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-badges { gap: 8px; }
    .badge { font-size: 0.78rem; padding: 4px 10px; }
    .hero h1 { font-size: 1.8rem; }
    .btn-lg { padding: 14px 20px; font-size: 0.95rem; }
    .hero-cta { flex-direction: column; }
    .book-layout { padding: 12px; }
    .book-pricing { padding: 14px; }
    .price-main { font-size: 1.6rem; }
    /* inline grids in level detail col */
    div[style*="grid-template-columns:1fr 1fr"] { display: block !important; }
    div[style*="grid-template-columns: 1fr 1fr"] { display: block !important; }
    .journey-steps { flex-direction: column; align-items: center; }
    .journey-step { min-width: auto; width: 100%; text-align: center; }
  }

  /* Override for multipage layout — each page is its own URL */
  .page { display: block !important; }

/* ===== Blog two-column layout ===== */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.blog-main { min-width: 0; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.blog-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.blog-widget h3 {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.blog-widget ul { list-style: none; padding: 0; margin: 0; }
.blog-widget li { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.blog-widget li:last-child { border-bottom: none; }
.blog-widget a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.93rem;
  display: block;
  transition: color 0.15s;
}
.blog-widget a:hover { color: var(--gold); }
.blog-widget .widget-cta {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 24px 20px;
  border-radius: 10px;
}
.blog-widget .widget-cta h3 { color: white; border-color: var(--gold-light); }
.blog-widget .widget-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0 0 14px; }
.blog-widget .widget-cta .btn {
  display: inline-block; background: var(--gold); color: white;
  padding: 10px 20px; border-radius: 6px; text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
}
.blog-widget .widget-cta .btn:hover { background: var(--gold-light); color: white; }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: 2; }
}


/* Register page: stack contact info on mobile */
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .register-cta-stack { grid-template-columns: 1fr !important; text-align: center; }
}
