﻿  :root {
    --forest: #2B3D2F;
    --forest-deep: #1A2B1E;
    --forest-light: #3D5A43;
    --teal: #0A9B8E;
    --teal-light: #0DBFAF;
    --teal-soft: rgba(10,155,142,0.08);
    --ink: #1A1A1A;
    --ink-soft: #5e5d59;
    --ink-muted: #9e9d99;
    --bg: #FFFFFF;
    --bg-warm: #F5F4ED;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.06);
    --border-strong: rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg); color: var(--ink); line-height: 1.6; overflow-x: hidden;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate { opacity: 0; animation: fadeUp 0.8s ease forwards; }
  .animate-d1 { animation-delay: 0.1s; }
  .animate-d2 { animation-delay: 0.2s; }
  .animate-d3 { animation-delay: 0.3s; }
  .animate-d4 { animation-delay: 0.4s; }
  .reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(250,250,248,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo img { height: 48px; width: auto; display: block; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
    text-decoration: none; color: var(--ink-soft); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-cta {
    background: var(--forest); color: var(--white);
    padding: 10px 24px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
  }
  .nav-cta:hover { background: var(--forest-light); transform: translateY(-1px); }

  /* SECTIONS */
  section { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }
  .section-full { max-width: none; }
  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); display: block; margin-bottom: 16px;
    padding-left: 20px; position: relative;
  }
  .section-tag::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 12px; height: 1.5px;
    background: var(--teal); transform: translateY(-50%);
  }
  .section-heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500; line-height: 1.12;
    letter-spacing: -0.01em; color: var(--ink); margin-bottom: 20px;
  }
  .section-sub {
    font-size: 1.05rem; line-height: 1.75;
    color: var(--ink-soft); font-weight: 400; max-width: 580px;
  }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 160px 48px 80px; max-width: 900px; margin: 0 auto;
  }
  .hero.hero-split {
    flex-direction: row; align-items: center; text-align: left;
    gap: 64px; max-width: 1200px; padding: 160px 80px 80px;
  }
  .hero-split .hero-text { flex: 1; min-width: 0; }
  .hero-split .hero-text .hero-sub { margin: 0 0 48px; }
  .hero-split .hero-text .hero-actions { justify-content: flex-start; }
  .hero-split .hero-illus { flex: 0 0 420px; max-width: 420px; }
  .hero-split .hero-illus img { width: 100%; height: auto; display: block; }
  .hero h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 500; line-height: 1.10;
    letter-spacing: -0.01em; color: var(--ink); margin-bottom: 28px;
  }
  .hero h1 em { font-style: normal; color: var(--teal); }
  .hero .hero-sub {
    font-size: 1.12rem; line-height: 1.75;
    color: var(--ink-soft); font-weight: 400;
    max-width: 600px; margin: 0 auto 48px;
  }
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--forest); color: var(--white);
    padding: 14px 32px; border-radius: 100px;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(43,61,47,0.2); }
  .btn-secondary {
    background: transparent; color: var(--ink);
    padding: 14px 32px; border-radius: 100px;
    font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
    border: 1.5px solid var(--border-strong);
  }
  .btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

  /* PROOF BAR */
  .proof-bar {
    padding: 48px; max-width: 1200px; margin: -40px auto 0;
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  }
  .proof-item {
    font-size: 0.78rem; font-weight: 500;
    color: var(--ink-muted); letter-spacing: 0.02em;
    white-space: nowrap; position: relative; padding-left: 14px;
  }
  .proof-item::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); transform: translateY(-50%);
  }

  /* PARTNER LOGOS */
  .partner-strip {
    display: flex; justify-content: center; align-items: center;
    gap: 48px; padding: 32px 48px 0;
    max-width: 600px; margin: 0 auto;
    opacity: 0.4;
  }
  .partner-strip svg { height: 24px; width: auto; }
  .partner-strip:hover { opacity: 0.6; transition: opacity 0.3s; }
  .partner-label {
    text-align: center; font-size: 0.68rem;
    color: var(--ink-muted); letter-spacing: 0.08em;
    text-transform: uppercase; font-weight: 500;
    margin-top: 12px;
  }

  /* STATS */
  .stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    margin: 80px auto; max-width: 1200px;
  }
  .stat-cell { background: var(--white); padding: 48px 32px; text-align: center; }
  .stat-num {
    font-size: 2.8rem; font-weight: 800;
    color: var(--forest); letter-spacing: -0.03em; line-height: 1;
  }
  .stat-num .teal { color: var(--teal); }
  .stat-label { font-size: 0.8rem; color: var(--ink-muted); margin-top: 8px; line-height: 1.5; }

  /* SERVICES */
  .services-grid {
    display: grid; grid-template-columns: 1.75fr 1fr;
    gap: 2px; margin-top: 64px;
    border-radius: var(--radius-lg); overflow: hidden; background: var(--border);
  }
  .service-card {
    background: var(--white); padding: 48px 36px;
    transition: all 0.4s ease;
  }
  .service-card:first-child {
    grid-row: span 2;
    background: var(--forest); color: var(--white);
    display: flex; flex-direction: column;
  }
  .service-card-img {
    margin-top: auto; width: 100%;
    display: block;
  }
  .service-card:first-child:hover { background: var(--forest-light); }
  .service-card:first-child h3 { color: var(--white); }
  .service-card:first-child p { color: rgba(255,255,255,0.7); }
  .service-card:first-child .service-grant {
    background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  }
  .service-card:first-child .service-link { color: var(--teal-light); }
  .service-card:hover { background: var(--teal-soft); }
  .service-card:first-child:hover { background: var(--forest-light); }
  .service-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem; color: var(--teal);
    letter-spacing: 0.1em; margin-bottom: 24px; display: block;
  }
  .service-card h3 {
    font-size: 1.3rem; font-weight: 700;
    letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.25;
  }
  .service-card p {
    font-size: 0.88rem; line-height: 1.7; color: var(--ink-soft); font-weight: 400;
  }
  .service-grant {
    display: inline-block; margin-top: 20px; padding: 6px 14px;
    background: var(--teal-soft); border-radius: 100px;
    font-size: 0.72rem; font-weight: 600; color: var(--teal);
  }

  /* TRAINING */
  .training-section {
    background: var(--forest-deep); color: var(--white); padding: 120px 48px; max-width: none;
  }
  .training-inner { max-width: 1200px; margin: 0 auto; }
  .training-section .section-tag { color: var(--teal-light); }
  .training-section .section-heading { color: var(--white); }
  .training-section .section-sub { color: rgba(255,255,255,0.6); }
  .training-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; margin-top: 64px;
  }
  .training-track {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 40px;
    transition: all 0.3s ease;
  }
  .training-track:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
  .track-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-light); background: rgba(10,155,142,0.15);
    padding: 5px 12px; border-radius: 100px;
    display: inline-block; margin-bottom: 20px;
  }
  .training-track h3 {
    font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em;
  }
  .training-track p {
    font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6);
  }
  .track-modules { list-style: none; margin-top: 24px; }
  .track-modules li {
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem; color: rgba(255,255,255,0.75);
    display: flex; gap: 10px; align-items: flex-start;
  }
  .track-modules li::before { content: '\2192'; color: var(--teal-light); flex-shrink: 0; }
  .track-modules li:last-child { border-bottom: none; }

  /* TRAINER */
  .trainer-card {
    display: flex; gap: 48px; align-items: center;
    margin-top: 80px; padding-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .trainer-photo {
    width: 160px; height: 160px; border-radius: var(--radius-lg);
    object-fit: cover; object-position: center top; flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.15);
  }
  .trainer-info h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
  .trainer-info .trainer-title { font-size: 0.85rem; color: var(--teal-light); margin-bottom: 16px; }
  .trainer-creds { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
  .trainer-creds li {
    font-size: 0.72rem; padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; color: rgba(255,255,255,0.7);
  }

  /* TESTIMONIALS */
  .testimonials {
    margin-top: 64px; padding-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .testimonials h4 {
    font-size: 0.72rem; font-family: 'DM Mono', monospace;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 32px;
  }
  .testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 28px;
  }
  .testimonial-card blockquote {
    font-size: 0.85rem; line-height: 1.7;
    color: rgba(255,255,255,0.75); font-style: italic;
    margin-bottom: 16px;
  }
  .testimonial-card cite {
    font-size: 0.75rem; color: rgba(255,255,255,0.4);
    font-style: normal; font-weight: 500;
  }
  .tracom-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(10,155,142,0.15);
    border: 1px solid rgba(10,155,142,0.3);
    border-radius: var(--radius); padding: 16px 24px;
    margin-top: 32px;
  }
  .tracom-score {
    font-size: 2rem; font-weight: 800; color: var(--teal-light); line-height: 1;
  }
  .tracom-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.4;
  }

  /* CAMPAIGNS */
  .campaigns-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; margin-top: 64px;
  }
  .campaign-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); transition: all 0.3s ease;
    overflow: hidden; display: flex; flex-direction: column;
  }
  .campaign-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
  .campaign-img {
    width: 100%; height: 200px; object-fit: cover;
    display: block;
  }
  .campaign-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
  .campaign-org {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px;
  }
  .campaign-card h3 {
    font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px;
  }
  .campaign-desc {
    font-size: 0.85rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; flex: 1;
  }
  .campaign-stats {
    display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--border);
  }
  .campaign-stat-num {
    font-size: 1.6rem; font-weight: 800; color: var(--forest); letter-spacing: -0.02em; line-height: 1;
  }
  .campaign-stat-label { font-size: 0.7rem; color: var(--ink-muted); margin-top: 4px; }

  /* MARKETING */
  .marketing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 64px;
  }
  .mktg-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s ease;
  }
  .mktg-card:hover { border-color: var(--teal); transform: translateY(-3px); }
  .mktg-icon {
    width: 48px; height: 48px; background: var(--teal-soft);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; margin-bottom: 20px;
  }
  .mktg-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
  .mktg-card p { font-size: 0.85rem; line-height: 1.7; color: var(--ink-soft); }

  /* GRANTS */
  .grants-section { background: var(--bg-warm); padding: 120px 48px; max-width: none; }
  .grants-inner { max-width: 1200px; margin: 0 auto; }
  .grants-inner .grants-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 2px; margin-top: 64px;
    border-radius: var(--radius-lg); overflow: hidden; background: var(--border);
  }
  .grant-cell {
    background: var(--white); padding: 36px 24px; text-align: center;
    transition: all 0.3s ease;
  }
  .grant-cell:hover { background: var(--teal-soft); }
  .grant-pct {
    font-size: 2.4rem; font-weight: 800; color: var(--forest); line-height: 1;
    letter-spacing: -0.03em;
  }
  .grant-name {
    font-family: 'DM Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); margin: 10px 0; font-weight: 500;
  }
  .grant-desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.6; }

  /* ABOUT */
  .about-grid {
    display: grid; grid-template-columns: auto 1fr;
    gap: 64px; align-items: start; margin-top: 64px;
  }
  .about-photo {
    width: 280px; border-radius: var(--radius-lg); overflow: hidden;
  }
  .about-photo img { width: 100%; display: block; }
  .about-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
  .about-text .about-title { font-size: 0.85rem; color: var(--teal); margin-bottom: 20px; font-weight: 500; }
  .about-text p { font-size: 0.92rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 16px; }

  /* CTA / BOOKING */
  .cta-section {
    background: var(--forest-deep); color: var(--white);
    text-align: center; padding: 100px 48px; max-width: none;
  }
  .cta-inner { max-width: 800px; margin: 0 auto; }
  .cta-section .section-tag { color: var(--teal-light); }
  .cta-section h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
    letter-spacing: -0.01em; margin-bottom: 16px;
  }
  .cta-section > .cta-inner > p {
    font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px;
  }
  .booking-frame {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; margin-top: 32px;
  }
  .booking-frame iframe { display: block; }
  .cta-alt {
    margin-top: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
  }
  .cta-alt a { color: var(--teal-light); text-decoration: none; }
  .cta-alt a:hover { text-decoration: underline; }

  /* old footer styles removed — see .site-footer block below */

  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    section { padding: 60px 24px; }
    .hero { padding: 80px 24px 60px; }
    .hero.hero-split { flex-direction: column; padding: 80px 24px 48px; gap: 32px; text-align: center; }
    .hero-split .hero-text .hero-sub { margin: 0 auto 40px; }
    .hero-split .hero-text .hero-actions { justify-content: center; }
    .hero-split .hero-illus { flex: none; max-width: 260px; align-self: center; }
    .hero h1 { font-size: 2.4rem; }
    .proof-bar { gap: 16px; padding: 32px 24px; }
    .proof-item { font-size: 0.7rem; }
    .partner-strip { gap: 24px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .training-grid { grid-template-columns: 1fr; }
    .training-section { padding: 80px 24px; }
    .trainer-card { flex-direction: column; text-align: center; }
    .trainer-creds { justify-content: center; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .campaigns-grid { grid-template-columns: 1fr; }
    .marketing-grid { grid-template-columns: 1fr; }
    .grants-section { padding: 80px 24px; }
    .grants-inner .grants-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-photo { margin: 0 auto; width: 220px; }
    .cta-section { padding: 80px 24px; }
    /* old footer responsive removed — see .site-footer responsive below */
  }

/* Nav styles */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
}
.nav-mobile-menu {
  /* Do NOT use display:none — it prevents max-height transitions from working.
     Use max-height:0 + overflow:hidden for the collapsed state instead. */
  position: fixed;
  top: 69px; /* nav height */
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.nav-mobile-menu.open {
  max-height: 400px;
}
.nav-mobile-menu ul {
  list-style: none;
  padding: 16px 24px 24px;
}
.nav-mobile-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu ul li:last-child { border-bottom: none; }
.nav-mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
}
.nav-mobile-menu .nav-cta { color: var(--white); }
.nav-links .active, .nav-mobile-menu .active {
  color: var(--teal);
  font-weight: 700;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile-menu { display: block; }
  nav { padding: 16px 24px; }
}

/* FOOTER */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 48px 0;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: -0.03em;
  display: block; margin-bottom: 12px;
}
.footer-logo img {
  height: 36px; width: auto; display: block;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.82rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 260px;
}
.footer-uen {
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bar {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding: 48px 24px 0; margin-top: 0; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* SERVICE LINK */
.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
.service-link:hover { color: var(--forest); }

/* SERVICE PAGE STYLES */
.page-hero {
  padding: 140px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-hero.page-hero-split {
  display: flex; flex-direction: row; align-items: center; gap: 64px;
}
.page-hero-split .page-hero-text { flex: 1; min-width: 0; }
.page-hero-split .page-hero-illus { flex: 0 0 380px; max-width: 380px; }
.page-hero-split .page-hero-illus img { width: 100%; height: auto; display: block; }
.page-hero .section-tag { color: var(--page-accent, var(--teal)); }
.page-hero .section-heading { max-width: 700px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border-top: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute; top: -8px; right: 16px;
  font-family: 'Lora', Georgia, serif;
  font-size: 7rem; font-weight: 600; line-height: 1;
  color: var(--ink); opacity: 0.07;
  pointer-events: none; user-select: none;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.grant-teaser-section {
  background: var(--forest-deep);
  padding: 80px 48px;
  max-width: none;
  margin: 0;
}
.grant-teaser {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.grant-teaser .section-tag { color: var(--teal-light); padding-left: 0; }
.grant-teaser .section-tag::before { display: none; }
.cta-section .section-tag::before { display: none; }
.cta-section .section-tag { padding-left: 0; }
.grant-teaser h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.grant-teaser p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.grant-teaser .service-link { color: var(--teal-light); font-size: 0.9rem; }

.testimonial-section {
  padding: 80px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial cite {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: normal;
}

/* Marketing page tiles */
.marketing-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.marketing-tile {
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px var(--border), 0 4px 20px rgba(0,0,0,0.05);
}
.marketing-tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.marketing-tile p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* GRANTS PAGE */
.grants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.grant-card {
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px var(--border), 0 4px 20px rgba(0,0,0,0.05);
}
.grant-card--highlight {
  border-top-color: var(--page-accent, var(--teal));
}
.grant-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.grant-card .grant-pct {
  font-family: 'DM Mono', monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--teal);
  flex-shrink: 0;
}
.grant-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.grant-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.grant-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
}
.grant-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.grant-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.grant-link:hover { color: var(--teal); border-color: var(--teal); }

/* Training track cards on light-background service pages (override dark-theme defaults) */
#whats-included .training-track {
  background: #fff;
  border: 1px solid var(--border);
}
#whats-included .training-track:hover {
  background: #fafafa;
  border-color: var(--ink-muted);
}
#whats-included .training-track h3 { color: var(--ink); }
#whats-included .training-track p { color: var(--ink-soft); }
#whats-included .track-modules li {
  color: var(--ink-soft);
  border-bottom-color: var(--border);
}
#whats-included .track-modules li::before { color: var(--page-accent, var(--teal)); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 96px 24px 48px; }
  .page-hero.page-hero-split { flex-direction: column; gap: 32px; }
  .page-hero-split .page-hero-illus { flex: none; max-width: 260px; align-self: center; }
  .grant-teaser-section { padding: 60px 24px; }
  .testimonial-section { padding: 60px 24px; }
  .marketing-tiles { grid-template-columns: 1fr; }
  .grants-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
}
