/* ==========================================================================
   1. Base Reset & Root Brand Guidelines
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-deep-green: #2e654a;
    --brand-accent-green: #3cd070;
    --brand-dark: #1a202c;
    --brand-light-bg: #f8fafc;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

html, body {
    width: 100%;
    min-height: 100%;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    pointer-events: auto !important;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2. Utility Top Bar
   ========================================================================== */
.top-utility-bar {
    background-color: var(--brand-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1010;
}

.utility-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-hub-tag {
    font-size: 0.75rem;
    color: var(--brand-accent-green);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.utility-right a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 20px;
    transition: color 0.2s ease;
}

.utility-right a:hover {
    color: #ffffff;
}

/* ==========================================================================
   3. Corporate Navigation Header
   ========================================================================== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    height: 85px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 769px) {
    .logo {
        font-size: 1.08rem;
        white-space: nowrap;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }
}

/* Logo text — see css/site-mobile-polish.css for lockup + mobile sizing */

.nav-container-inner {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 85px;
}

.nav-link-anchor {
    text-decoration: none;
    color: #3e4d68;
    padding: 0 20px;
    font-weight: 700;
    font-size: 0.98rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-bottom: 4px solid transparent;
    white-space: nowrap;
}

.nav-item:hover .nav-link-anchor {
    color: var(--brand-deep-green);
    border-bottom-color: var(--brand-deep-green);
    background-color: var(--brand-light-bg);
}

.nav-link-anchor.current-page {
    color: var(--brand-deep-green);
    border-bottom-color: var(--brand-deep-green);
}

.nav-item-wellness {
    margin-left: 6px;
}

.nav-link-wellness-hub {
    gap: 7px;
    padding: 10px 18px !important;
    height: auto !important;
    margin-top: 0;
    align-self: center;
    border-radius: 999px;
    border: 1px solid #bbf7d0 !important;
    border-bottom: 1px solid #bbf7d0 !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--brand-deep-green) !important;
    box-shadow: 0 2px 10px rgba(46, 101, 74, 0.12);
    font-size: 0.92rem;
}

.nav-wellness-spark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent-green);
    box-shadow: 0 0 0 3px rgba(60, 208, 112, 0.25);
    flex-shrink: 0;
}

.nav-item-wellness:hover .nav-link-wellness-hub,
.nav-link-wellness-hub.current-page {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #86efac !important;
    border-bottom-color: #86efac !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46, 101, 74, 0.18);
}

.nav-item-wellness:hover .nav-link-wellness-hub {
    background-color: transparent;
}

.menu-arrow-icon {
    font-size: 0.7rem;
    margin-left: 6px;
    display: inline-block;
    color: #a0aec0;
    transition: transform 0.2s ease;
}

.nav-item:hover .menu-arrow-icon {
    transform: rotate(180deg);
    color: var(--brand-deep-green);
}

.mega-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 920px;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(26, 32, 44, 0.12);
    border-top: 1px solid #edf2f7;
    border-bottom: 4px solid var(--brand-deep-green);
    padding: 40px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    border-radius: 0 0 12px 12px;
}

.nav-item.has-mega:hover .mega-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-column h5 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border-left: 3px solid var(--brand-accent-green);
    padding-left: 8px;
}

.mega-links {
    list-style: none;
}

.mega-links li {
    margin-bottom: 10px;
}

.mega-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.15s ease;
}

.mega-links a:hover {
    color: var(--brand-deep-green);
}

.mega-dropdown-compact {
    width: 280px;
    padding: 22px 26px;
}

.mega-links-simple {
    list-style: none;
}

.mega-links-simple li {
    margin-bottom: 4px;
}

.mega-links-simple a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.mega-links-simple a:hover {
    background-color: var(--brand-light-bg);
}

.desktop-right-actions-bracket {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-login-link {
    text-decoration: none;
    color: var(--brand-deep-green);
    border: 2px solid var(--brand-deep-green);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-login-link:hover {
    background-color: var(--brand-light-bg);
}

.nav-donate-link {
    text-decoration: none;
    color: #ffffff;
    background-color: var(--brand-deep-green);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(46, 101, 74, 0.15);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-donate-link:hover {
    background-color: #1e4331;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(46, 101, 74, 0.25);
}

.mobile-only-action-container { display: none; }
.mobile-nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: transparent; border: none; cursor: pointer; outline: none; }
.mobile-nav-toggle span { width: 100%; height: 3px; background-color: var(--brand-dark); border-radius: 2px; transition: all 0.25s ease; }

/* ==========================================================================
   4. Index Page Template Scope (Isolated Layout Contexts)
   ========================================================================== */
.index-page .hero-cinematic {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background-color: #1a202c;
    background-image: url('assets/images/heroes/hero-01-mother-daughter.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.index-page .hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(26, 32, 44, 0.98) 0%, rgba(26, 32, 44, 0.92) 35%, rgba(26, 32, 44, 0.45) 55%, rgba(26, 32, 44, 0.08) 72%, rgba(26, 32, 44, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.index-page .hero-content-wrapper { position: relative; z-index: 5; width: 100%; }
.index-page .hero-brand-block { display: flex; align-items: flex-start; justify-content: flex-start; gap: 50px; max-width: 1050px; }
.index-page .hero-large-logo { max-width: 180px; height: auto; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)); }
.index-page .badge-light { background-color: rgba(46, 101, 74, 0.2); color: var(--brand-accent-green); border: 1px solid rgba(60, 208, 112, 0.4); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.index-page .hero-cinematic h1 { font-size: 3.5rem; font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 22px; }
.index-page .hero-cinematic p { font-size: 1.25rem; color: #cbd5e0; margin-bottom: 28px; }
.index-page .hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.index-page .btn-primary-large { background-color: var(--brand-deep-green); color: #fff; padding: 16px 44px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: inline-block; box-shadow: 0 4px 14px rgba(46, 101, 74, 0.3); transition: all 0.2s ease; }
.index-page .btn-primary-large:hover { background-color: #1e4331; transform: translateY(-2px); }
.index-page .btn-secondary-large { background-color: transparent; color: #ffffff; padding: 16px 44px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: inline-block; border: 2px solid rgba(255, 255, 255, 0.45); transition: all 0.2s ease; }
.index-page .btn-secondary-large:hover { background-color: rgba(255, 255, 255, 0.1); border-color: #ffffff; transform: translateY(-2px); }
.index-page .hero-audience-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.index-page .hero-audience-pills a { text-decoration: none; color: #e2e8f0; font-size: 0.88rem; font-weight: 600; padding: 8px 16px; border-radius: 20px; background-color: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); transition: all 0.2s ease; }
.index-page .hero-audience-pills a:hover { background-color: rgba(46, 101, 74, 0.5); border-color: var(--brand-accent-green); color: #ffffff; }

/* Trust Strip */
.trust-strip { background-color: #ffffff; border-bottom: 1px solid #edf2f7; padding: 28px 0; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background-color: #f0fdf4; color: var(--brand-deep-green); display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 0.95rem; color: var(--brand-dark); margin-bottom: 2px; }
.trust-item span { display: block; font-size: 0.82rem; color: var(--text-muted); }

/* GDPR / Data protection */
.gdpr-protection-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f8fafc 100%);
    border-bottom: 1px solid #d1fae5;
}
.gdpr-protection-inner { max-width: 920px; }
.gdpr-protection-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}
.gdpr-shield-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--brand-deep-green);
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(46, 101, 74, 0.08);
}
.gdpr-shield-icon svg { width: 26px; height: 26px; }
.gdpr-protection-head h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 6px 0 10px;
    line-height: 1.25;
}
.gdpr-protection-lead {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
}
.gdpr-cert-ref { font-weight: 600; color: var(--brand-deep-green); white-space: nowrap; }
.gdpr-protection-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
}
.gdpr-protection-points li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
    position: relative;
    padding-left: 40px;
}
.gdpr-protection-points li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--brand-deep-green);
    font-weight: 800;
}

/* Mission Split */
.mission-split-section { padding: 90px 0; background-color: #ffffff; border-bottom: 1px solid #edf2f7; }
.mission-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-text-block .section-eyebrow { display: block; margin-bottom: 12px; }
.mission-text-block h2 { font-size: 2.3rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; line-height: 1.2; }
.mission-text-block p { font-size: 1.05rem; color: #4a5568; line-height: 1.75; margin-bottom: 16px; }
.mission-checklist { list-style: none; margin-top: 24px; }
.mission-checklist li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 0.98rem; color: #4a5568; font-weight: 600; }
.mission-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-deep-green); font-weight: 800; }
.mission-visual-block { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 48px rgba(26, 32, 44, 0.12); }
.mission-visual-block img { width: 100%; height: 420px; object-fit: cover; display: block; }
.mission-visual-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(transparent, rgba(26, 32, 44, 0.85)); color: #ffffff; font-size: 0.9rem; font-weight: 600; }

/* Impact Stats Band */
.impact-stats-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-deep-green) 0%, #1e4331 100%);
    padding: 56px 0 40px;
    text-align: center;
}
.impact-stats-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 50%, rgba(60, 208, 112, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}
.impact-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.impact-stat { color: #ffffff; }
.impact-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--brand-accent-green);
}
.impact-stat-icon svg { width: 22px; height: 22px; }
.impact-number { display: block; font-size: 2.75rem; font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--brand-accent-green); }
.impact-label { display: block; font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.impact-disclaimer { margin-top: 24px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); position: relative; z-index: 1; }

/* Section backgrounds & shared typography */
.section-bg-light { background-color: var(--brand-light-bg); }
.section-bg-white { background-color: #ffffff; }
.section-bg-mint { background-color: #f0fdf4; }
.section-eyebrow { color: var(--brand-deep-green); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.section-eyebrow-center { display: block; text-align: center; margin-bottom: 10px; }

/* How It Works */
.how-it-works-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.how-it-works-deco {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 101, 74, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.how-it-works-deco-left { top: -80px; left: -60px; }
.how-it-works-deco-right { bottom: -100px; right: -40px; }
.steps-journey { position: relative; margin-bottom: 48px; }
.steps-connector {
    display: none;
    position: absolute;
    top: 88px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #bbf7d0 0, #bbf7d0 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.step-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(46, 101, 74, 0.04);
}
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--brand-accent-green), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(46, 101, 74, 0.1); }
.step-number { position: absolute; top: 16px; left: 16px; width: 28px; height: 28px; border-radius: 50%; background-color: var(--brand-deep-green); color: #ffffff; font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 14px; background-color: #f0fdf4; color: var(--brand-deep-green); display: flex; align-items: center; justify-content: center; }
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 6px; }
.step-hint {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brand-deep-green);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.step-card p:last-child { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.how-it-works-cta { text-align: center; }
.how-it-works-cta .btn-primary-large { background-color: var(--brand-deep-green); color: #fff; padding: 16px 44px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.05rem; display: inline-block; box-shadow: 0 4px 14px rgba(46, 101, 74, 0.25); transition: all 0.2s ease; }
.how-it-works-cta .btn-primary-large:hover { background-color: #1e4331; transform: translateY(-2px); }

@media (min-width: 1025px) {
    .steps-connector { display: block; }
}

/* Pillars Section Rules */
.pillars { padding: 95px 0; }
.section-title { text-align: center; font-size: 2.4rem; color: var(--brand-dark); margin-bottom: 12px; font-weight: 800; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 1.1rem; }
.grid-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pillar-card { border-radius: 16px; background-color: #ffffff; border: 1px solid #e2e8f0; display: flex; flex-direction: column; overflow: hidden; transition: all 0.25s ease; }
.pillar-card:hover { transform: translateY(-6px); border-color: var(--brand-accent-green); box-shadow: 0 20px 40px rgba(46, 101, 74, 0.08); }
.card-image-banner { position: relative; width: 100%; height: 240px; overflow: hidden; }
.pillar-banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillar-badge { position: absolute; top: 15px; left: 15px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; text-decoration: none; color: var(--brand-deep-green); background-color: rgba(255, 255, 255, 0.95); padding: 6px 14px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.card-text-content { padding: 30px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.focus-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #a0aec0; margin-bottom: 6px; }
.card-text-content h3 { margin-bottom: 12px; color: var(--brand-dark); font-size: 1.45rem; font-weight: 800; }
.card-text-content p { color: #4a5568; font-size: 0.98rem; margin-bottom: 24px; flex-grow: 1; }
.card-footer-cta a { text-decoration: none; color: var(--brand-deep-green); font-weight: 700; font-size: 0.95rem; }

/* Wellness Slider Interface Rules */
.mega-hub-events-section { padding: 95px 0; border-top: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; overflow: hidden; }
.grid-mega-engine { display: grid; grid-template-columns: 400px 1fr; gap: 50px; align-items: start; }
.mega-promo-column { background-color: #ffffff; padding: 40px 35px; border-radius: 20px; border: 1px solid #e2e8f0; }
.mega-promo-column h2 { font-size: 2.1rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 18px; }
.mega-promo-column p { font-size: 1rem; color: var(--text-muted); margin-bottom: 30px; }
.btn-bridge-hub { text-decoration: none; color: #ffffff; background-color: var(--brand-deep-green); font-weight: 700; display: block; text-align: center; padding: 14px; border-radius: 8px; }
.mega-slider-column { width: 100%; overflow: hidden; position: relative; }
.slider-header-controls { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 25px; }
.slider-titles h3 { font-size: 1.75rem; font-weight: 800; color: var(--brand-dark); }
.btn-scroll-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brand-deep-green); background-color: #ffffff; color: var(--brand-deep-green); font-weight: 700; cursor: pointer; }
.btn-scroll-arrow:hover { background-color: var(--brand-deep-green); color: #ffffff; }
.events-horizontal-rail { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; scroll-behavior: smooth; }
.events-horizontal-rail::-webkit-scrollbar { display: none; }
.mega-event-card { flex: 0 0 340px; background-color: #ffffff; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; display: flex; flex-direction: column; }
.event-img-frame { width: 100%; height: 150px; background-color: #edf2f7; }
.event-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.event-card-body h4 { font-size: 1.2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 10px; }
.event-meta-row { display: flex; gap: 15px; font-size: 0.85rem; color: #718096; margin-bottom: 12px; }
.event-card-body p { font-size: 0.92rem; color: #4a5568; margin-bottom: 20px; flex-grow: 1; }
.btn-event-link { text-decoration: none; color: var(--brand-deep-green); font-weight: 700; }
.event-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; width: fit-content; }
.event-tag.status-active { background-color: #f0fdf4; color: var(--brand-deep-green); border: 1px solid #bbf7d0; }
.event-tag.status-upcoming { background-color: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

/* Donation Module Rules */
.donation-gateway-placeholder { padding: 95px 0; text-align: center; }
.gateway-container-box { max-width: 650px; margin: 0 auto; }
.gateway-container-box h2 { font-size: 2.2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 15px; }
.gateway-container-box p { color: var(--text-muted); margin-bottom: 35px; }
.mock-gateway-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 35px; }
.mock-field-input { padding: 14px 28px; border: 2px solid #e2e8f0; border-radius: 8px; font-weight: 700; color: var(--brand-dark); cursor: pointer; }
.mock-field-input.standard-active, .mock-field-input:hover { border-color: var(--brand-deep-green); background-color: var(--brand-light-bg); color: var(--brand-deep-green); }

/* Testimonials */
.testimonials-section { padding: 95px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 32px 28px; margin: 0; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(46, 101, 74, 0.08); }
.testimonial-featured { border-color: var(--brand-deep-green); border-width: 2px; background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 40%); }
.testimonial-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: 1rem; color: #4a5568; line-height: 1.7; font-style: italic; flex-grow: 1; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid #edf2f7; padding-top: 20px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author cite { display: block; font-style: normal; font-weight: 800; color: var(--brand-dark); font-size: 0.95rem; }
.testimonial-author span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Team Preview */
.team-preview-section { padding: 95px 0; border-top: 1px solid #edf2f7; }
.team-preview-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f0fdf4 100%);
}
.team-section-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(46, 101, 74, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 92% 80%, rgba(60, 208, 112, 0.06) 0%, transparent 38%);
    pointer-events: none;
}
.team-preview-enhanced .container { position: relative; z-index: 1; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-grid-five { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(46, 101, 74, 0.04);
}
.team-card::after {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #bbf7d0, transparent);
    opacity: 0.6;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(46, 101, 74, 0.1); }
.team-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: center top; margin-bottom: 16px; border: 3px solid #f0fdf4; }
.team-photo-lg { width: 120px; height: 120px; }
.team-photo-bright { filter: brightness(1.06) contrast(1.02); }
.team-card-founder .team-photo { border-color: var(--brand-deep-green); border-width: 3px; box-shadow: 0 4px 16px rgba(46, 101, 74, 0.12); }
.team-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; font-weight: 700; color: var(--brand-deep-green); margin-bottom: 10px; }
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.team-photo-placeholder { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, #f0fdf4, #e2e8f0); border: 3px dashed #cbd5e1; display: flex; align-items: center; justify-content: center; color: var(--brand-deep-green); font-weight: 800; font-size: 1.4rem; }
.team-card-founder .team-photo-placeholder { border-color: var(--brand-deep-green); border-style: solid; background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.team-card-placeholder { opacity: 0.85; }
.team-card-placeholder .team-photo-placeholder span { color: #94a3b8; font-size: 1.6rem; }

/* Campaign Gallery */
.gallery-section { padding: 95px 0; border-top: 1px solid #edf2f7; }
.gallery-section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.gallery-title-inline { text-align: left; margin-bottom: 10px; }
.gallery-section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0; line-height: 1.6; }
.gallery-scroll-controls { display: flex; gap: 10px; flex-shrink: 0; }
.gallery-campaign-rail { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.gallery-campaign-rail::-webkit-scrollbar { height: 6px; }
.gallery-campaign-rail::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
.campaign-card { flex: 0 0 340px; scroll-snap-align: start; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; display: flex; flex-direction: column; }
.campaign-card:hover, .campaign-card:focus { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(46, 101, 74, 0.1); border-color: var(--brand-accent-green); outline: none; }
.campaign-card-cover { position: relative; height: 200px; overflow: hidden; }
.campaign-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.campaign-coming-soon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-accent-green);
    color: #0f172a;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}
.campaign-photo-count { position: absolute; top: 12px; right: 12px; background: rgba(26, 32, 44, 0.82); color: #ffffff; font-size: 0.75rem; font-weight: 700; padding: 5px 10px; border-radius: 20px; }
.campaign-card-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.campaign-date { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--brand-deep-green); margin-bottom: 8px; }
.campaign-card-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; line-height: 1.3; }
.campaign-card-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; flex-grow: 1; }
.campaign-thumb-strip { display: flex; gap: 6px; margin-bottom: 14px; }
.campaign-thumb-strip img { width: 52px; height: 40px; object-fit: cover; border-radius: 6px; border: 1px solid #e2e8f0; }
.campaign-open-link { font-size: 0.9rem; font-weight: 700; color: var(--brand-deep-green); }

body.gallery-modal-open { overflow: hidden; }
.gallery-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.gallery-modal[hidden] { display: none !important; }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.72); backdrop-filter: blur(4px); }
.gallery-modal-panel { position: relative; z-index: 1; width: 100%; max-width: 920px; max-height: 92vh; overflow-y: auto; background: #ffffff; border-radius: 18px; padding: 28px; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25); }
.gallery-modal-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.gallery-modal-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); margin: 0; }
.gallery-modal-meta { font-size: 0.85rem; color: var(--text-muted); margin: 4px 0 0; font-weight: 600; }
.gallery-modal-close { background: #f1f5f9; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--brand-dark); flex-shrink: 0; }
.gallery-modal-close:hover { background: #e2e8f0; }
.gallery-modal-summary { font-size: 0.95rem; color: #4a5568; line-height: 1.6; margin-bottom: 18px; }
.gallery-view-toggle { display: flex; gap: 8px; margin-bottom: 18px; }
.gallery-view-btn { border: 1px solid #e2e8f0; background: #f8fafc; color: var(--brand-dark); padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: inherit; }
.gallery-view-btn.is-active { background: var(--brand-deep-green); border-color: var(--brand-deep-green); color: #ffffff; }
.gallery-slide-stage { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin-bottom: 16px; }
.gallery-slide-frame { margin: 0; }
.gallery-slide-frame img { width: 100%; max-height: 420px; object-fit: contain; border-radius: 12px; background: #f8fafc; display: block; }
.gallery-slide-frame figcaption { margin-top: 10px; font-size: 0.92rem; color: #4a5568; line-height: 1.5; text-align: center; }
.gallery-nav-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--brand-deep-green); background: #ffffff; color: var(--brand-deep-green); font-weight: 700; cursor: pointer; font-size: 1.1rem; }
.gallery-nav-btn:hover:not(:disabled) { background: var(--brand-deep-green); color: #ffffff; }
.gallery-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.gallery-stack-view { display: flex; flex-direction: column; gap: 20px; margin-bottom: 16px; max-height: 460px; overflow-y: auto; padding-right: 4px; }
.gallery-stack-item { margin: 0; }
.gallery-stack-item img { width: 100%; border-radius: 12px; display: block; }
.gallery-stack-item figcaption { margin-top: 8px; font-size: 0.9rem; color: #4a5568; }
.gallery-modal-footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid #edf2f7; padding-top: 16px; }
.gallery-slide-counter { font-size: 0.88rem; font-weight: 700; color: var(--brand-deep-green); }
.gallery-thumb-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb-btn { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; width: 56px; height: 42px; cursor: pointer; background: none; opacity: 0.75; }
.gallery-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb-btn.is-active, .gallery-thumb-btn:hover { opacity: 1; border-color: var(--brand-deep-green); }

.contact-method-static { cursor: default; }
.contact-method-static:hover { transform: none; background-color: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); }

/* FAQ */
.faq-section { padding: 95px 0; border-top: 1px solid #e2e8f0; }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }
.faq-intro h2 { font-size: 2.2rem; font-weight: 800; color: var(--brand-dark); margin: 12px 0 16px; line-height: 1.2; }
.faq-intro p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.btn-faq-contact { display: inline-block; text-decoration: none; color: var(--brand-deep-green); font-weight: 700; font-size: 0.95rem; border: 2px solid var(--brand-deep-green); padding: 12px 24px; border-radius: 8px; transition: all 0.2s ease; }
.btn-faq-contact:hover { background-color: var(--brand-deep-green); color: #ffffff; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--brand-dark); transition: background-color 0.2s ease; }
.faq-question:hover { background-color: #f8fafc; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background-color: #f0fdf4; color: var(--brand-deep-green); font-size: 1.2rem; font-weight: 400; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease, background-color 0.2s ease; }
.faq-item.faq-open .faq-icon { transform: rotate(45deg); background-color: var(--brand-deep-green); color: #ffffff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.faq-open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.95rem; color: #4a5568; line-height: 1.65; margin: 0; }

/* Contact Strip */
.contact-strip { background-color: var(--brand-dark); padding: 60px 0 50px; border-top: 4px solid var(--brand-deep-green); }
.crisis-banner { display: flex; align-items: flex-start; gap: 12px; background-color: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.35); border-radius: 10px; padding: 14px 20px; margin-bottom: 40px; }
.crisis-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.crisis-banner p { margin: 0; font-size: 0.9rem; color: #fca5a5; line-height: 1.55; }
.crisis-banner a { color: #ffffff; font-weight: 700; }
.contact-strip-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: center; }
.contact-intro h2 { font-size: 2rem; font-weight: 800; color: #ffffff; margin: 10px 0 12px; }
.contact-intro p { font-size: 0.98rem; color: #a0aec0; line-height: 1.6; margin: 0; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method-card { display: flex; align-items: center; gap: 16px; text-decoration: none; background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 18px 22px; transition: all 0.2s ease; }
.contact-method-card:hover { background-color: rgba(46, 101, 74, 0.35); border-color: var(--brand-accent-green); transform: translateX(4px); }
.contact-method-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background-color: rgba(60, 208, 112, 0.15); color: var(--brand-accent-green); display: flex; align-items: center; justify-content: center; }
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-card strong { display: block; color: #ffffff; font-size: 0.95rem; margin-bottom: 2px; }
.contact-method-card span { display: block; color: #a0aec0; font-size: 0.88rem; }
.contact-placeholder-note { color: rgba(255, 255, 255, 0.35); margin-top: 20px; }

/* Footer social icon upgrade */
.footer-social-tray a { color: #a0aec0; text-decoration: none; background-color: rgba(255,255,255,0.05); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s ease; }
.footer-social-tray a:hover { background-color: var(--brand-deep-green); color: #ffffff; }
.logo-footer-brand-zone .footer-email-link { display: inline-block; margin-top: 12px; color: var(--brand-accent-green); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.logo-footer-brand-zone .footer-email-link:hover { text-decoration: underline; }

/* ==========================================================================
   5. Register Page Template Scope (Isolated Layout Contexts)
   ========================================================================== */
.register-page .split-register-hero-frame {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 125px);
    padding: 60px 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 5;
}

.register-page .flex-split-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30, 101, 64, 0.95) 0%, rgba(26, 32, 44, 0.90) 100%);
    z-index: 6;
    pointer-events: none;
}

.register-page .split-hero-content-engine {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.register-page .register-left-showcase { color: #ffffff; max-width: 580px; }
.register-page .register-left-showcase h2 { font-size: 2.5rem; font-weight: 800; line-height: 1.3; margin-bottom: 24px; }
.register-page .register-left-showcase p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }

.register-page .screenshot-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--brand-accent-green);
    position: relative;
    z-index: 20;
    pointer-events: auto !important;
}

.register-page .screenshot-form-card h3 { font-size: 1.6rem; color: var(--brand-deep-green); font-weight: 700; margin-bottom: 12px; }
.register-page .form-instruction-p { font-size: 0.9rem; color: #718096; margin-bottom: 30px; }
.register-page .screenshot-form-engine { display: flex; flex-direction: column; gap: 16px; }
.register-page .form-double-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.register-page .form-inner-group input, 
.register-page .form-inner-group select, 
.register-page .form-inner-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #2d3748;
    outline: none;
}

.register-page .form-inner-group input:focus, 
.register-page .form-inner-group select:focus, 
.register-page .form-inner-group textarea:focus {
    border-color: var(--brand-deep-green);
    box-shadow: 0 0 0 3px rgba(46, 101, 74, 0.15);
}

.register-page .btn-screenshot-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--brand-deep-green);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(46, 101, 74, 0.2);
}

.register-page .btn-screenshot-submit:hover { background-color: #1e4331; }
.register-page .btn-screenshot-submit:disabled { background-color: #cbd5e0; cursor: not-allowed; box-shadow: none; }

/* ==========================================================================
   6. Massive Corporate Base Footer
   ========================================================================== */
.massive-base-footer {
    background-color: var(--brand-dark);
    color: #ffffff;
    padding: 80px 0 0 0;
    border-top: 4px solid var(--brand-deep-green);
    position: relative;
    z-index: 10;
}

.footer-index-grid { display: grid; grid-template-columns: repeat(3, 1fr) 320px; gap: 40px; padding-bottom: 60px; }
.footer-index-column h4 { font-size: 1.1rem; font-weight: 800; color: #ffffff; margin-bottom: 25px; text-transform: uppercase; border-left: 3px solid var(--brand-accent-green); padding-left: 10px; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { color: #a0aec0; text-decoration: none; font-size: 0.95rem; font-weight: 600; }
.footer-links-list a:hover { color: var(--brand-accent-green); }
.logo-footer-brand-zone { background-color: rgba(255, 255, 255, 0.03); padding: 30px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); text-align: center; }
.footer-brand-emblem { height: 50px; margin-bottom: 15px; }
.logo-footer-brand-zone h3 { font-size: 1.15rem; color: #ffffff; margin-bottom: 10px; }
.logo-footer-brand-zone p { font-size: 0.85rem; color: #cbd5e0; }
.footer-legal-bar { background-color: #11141a; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.legal-flex-wrapper { display: flex; justify-content: space-between; align-items: center; }
.footer-social-tray { display: flex; gap: 15px; }
.footer-social-tray a { color: #a0aec0; text-decoration: none; background-color: rgba(255,255,255,0.05); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; }

/* ==========================================================================
   7. Strict Responsive Viewports Override Layer
   ========================================================================== */
@media (max-width: 1200px) {
    .nav-container { padding: 0 24px; }
    .mega-dropdown-panel { width: 840px; }
}

@media (max-width: 1024px) {
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gdpr-protection-points { grid-template-columns: 1fr 1fr; }
    .mission-split-grid { grid-template-columns: 1fr; gap: 40px; }
    .mission-visual-block img { height: 320px; }
    .impact-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid-five { grid-template-columns: repeat(2, 1fr); }
    .gallery-section-header { flex-direction: column; align-items: flex-start; }
    .campaign-card { flex: 0 0 300px; }
    .gallery-slide-stage { grid-template-columns: 1fr; }
    .gallery-nav-btn { display: none; }
    .gallery-modal-panel { padding: 20px; }
    .faq-layout { grid-template-columns: 1fr; gap: 36px; }
    .contact-strip-grid { grid-template-columns: 1fr; gap: 32px; }
    .grid-mega-engine { grid-template-columns: 1fr; gap: 40px; }
    .footer-index-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .register-page .split-hero-content-engine { grid-template-columns: 1fr; gap: 50px; }
    .register-page .register-left-showcase { text-align: center; max-width: 100%; }
    .register-page .screenshot-form-card { width: 100%; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 1100px), ((hover: none) and (pointer: coarse)) {
    .nav-container {
        height: 72px;
        padding: 0 52px 0 16px;
        justify-content: flex-start;
    }
    .logo-wrapper {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 40px);
    }
    .header-logo-img { flex-shrink: 0; }
    .desktop-right-actions-bracket { display: none !important; }
    .mobile-nav-toggle {
        display: flex;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1110;
        flex-shrink: 0;
    }
    
    .nav-container-inner { position: absolute; top: 100%; left: 0; transform: none; width: 100%; height: auto; }
    .mobile-only-action-container { display: flex !important; flex-direction: column; gap: 12px; padding: 24px 12px; width: 100%; border-top: 1px solid #edf2f7; }
    .mobile-only-action-container .nav-login-link, .mobile-only-action-container .nav-donate-link { display: block; text-align: center; width: 100%; }
    
    .main-nav { background-color: #ffffff; max-height: 0; width: 100%; overflow-y: auto; visibility: hidden; box-shadow: 0 20px 30px rgba(0,0,0,0.1); transition: all 0.35s ease; z-index: 1105; }
    .main-nav.pushdown-active { max-height: 85vh; visibility: visible; border-top: 1px solid #edf2f7; }
    .nav-nav-list { flex-direction: column; align-items: stretch; height: auto; width: 100%; padding: 10px 24px; }
    .nav-item { flex-direction: column; align-items: flex-start; height: auto; width: 100%; }
    .nav-link-anchor { width: 100%; justify-content: space-between; padding: 16px 0; height: auto; border-bottom: none !important; }
    .nav-item-wellness { margin-left: 0; width: 100%; }
    .nav-link-wellness-hub {
        width: 100%;
        justify-content: center;
        margin: 4px 0;
        padding: 14px 18px !important;
    }
    
    .mega-dropdown-panel { position: static; width: 100%; box-shadow: none; border: none; padding: 0; max-height: 0; overflow: hidden; display: block; opacity: 1; visibility: visible; transform: none !important; transition: max-height 0.3s ease-out; background-color: var(--brand-light-bg); border-radius: 8px; }
    .nav-item.drawer-open .mega-dropdown-panel { max-height: 900px; padding: 20px; margin-bottom: 10px; }
    .nav-item.drawer-open .menu-arrow-icon { transform: rotate(180deg); color: var(--brand-deep-green); }
    .mega-grid-wrapper { grid-template-columns: 1fr; gap: 24px; }
    
    .toggle-morph span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .toggle-morph span:nth-child(2) { opacity: 0; }
    .toggle-morph span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .top-utility-bar { padding: 8px 0; }
    .utility-flex { flex-wrap: wrap; gap: 6px 10px; align-items: center; }
    .active-hub-tag {
        font-size: 0.62rem;
        letter-spacing: 0.35px;
        line-height: 1.35;
        display: block;
        max-width: 100%;
    }
    .utility-right { display: flex; flex-wrap: wrap; gap: 8px 14px; }
    .utility-right a { margin-left: 0; font-size: 0.72rem; }
}

/* Utility bar: clean two-row layout on medium desktop only */
@media (min-width: 1101px) and (max-width: 1280px) {
    .utility-flex {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .utility-left {
        flex: 1 1 100%;
    }

    .utility-right {
        flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .utility-right a {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .index-page .hero-cinematic:not(.hero-cinematic--simple) {
        min-height: auto;
        padding: 44px 0 52px;
        background-position: center;
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-gradient-overlay {
        background: linear-gradient(180deg, rgba(26, 32, 44, 0.98) 0%, rgba(26, 32, 44, 0.92) 45%, rgba(26, 32, 44, 0.82) 100%);
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-brand-block { flex-direction: column; align-items: center; text-align: center; gap: 24px; max-width: 100%; }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-large-logo { max-width: 96px; }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-text-zone { width: 100%; max-width: 100%; }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .badge-light { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 14px; }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) h1 {
        font-size: clamp(1.55rem, 6.2vw, 2.15rem);
        line-height: 1.22;
        margin-bottom: 16px;
        word-wrap: break-word;
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) p {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .btn-primary-large,
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .btn-secondary-large {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        font-size: 0.98rem;
        box-sizing: border-box;
    }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-audience-pills { justify-content: center; gap: 8px; }
    .index-page .hero-cinematic:not(.hero-cinematic--simple) .hero-audience-pills a { font-size: 0.82rem; padding: 7px 14px; }
    .gdpr-protection-head { flex-direction: column; gap: 14px; }
    .gdpr-protection-points { grid-template-columns: 1fr; }
    .trust-strip-grid { grid-template-columns: 1fr; }
    .impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-number { font-size: 2.2rem; }
    .mission-text-block h2 { font-size: 1.85rem; }
    .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .team-grid-five { grid-template-columns: 1fr; max-width: 320px; }
    .testimonial-featured { order: -1; }
    .grid-pillars { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .footer-index-grid { grid-template-columns: 1fr; }
    .legal-flex-wrapper { flex-direction: column; gap: 15px; }
    .mock-gateway-row { flex-direction: column; gap: 10px; }
    .register-page .form-double-fields-row { grid-template-columns: 1fr; }
    .register-page .screenshot-form-card { padding: 35px 24px; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 48px 0 12px; }
    .container { padding: 0 16px; }
    .index-page .hero-cinematic h1 { font-size: 1.38rem; }
}

/* ==========================================================================
   PAGE SCOPE: admin-login-page 
   ========================================================================== */

.admin-login-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0f172a; /* Deep slate professional tone */
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.admin-login-page .login-container {
    background: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 440px;
    border: 1px solid #334155;
}

.admin-login-page .login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-page .login-header h2 {
    color: #38bdf8; /* Clear, professional accent */
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
}

.admin-login-page .login-header p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.95rem;
}

.admin-login-page .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.admin-login-page .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.admin-login-page input[type="email"],
.admin-login-page input[type="password"],
.admin-login-page .iti {
    width: 100%;
}

.admin-login-page input {
    background: #0f172a;
    border: 1px solid #475569;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-login-page input:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* Fixes for intl-tel-input utility injection in dark UI */
.admin-login-page .iti__country-list {
    background-color: #1e293b;
    border: 1px solid #475569;
    color: #fff;
}
.admin-login-page .iti__country:hover {
    background-color: #334155;
}

.admin-login-page button[type="submit"] {
    width: 100%;
    background: #0284c7;
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.admin-login-page button[type="submit"]:hover {
    background: #0369a1;
}

/* Alert Box States */
.admin-login-page .alert-hidden { display: none; }
.admin-login-page .alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   PAGE SCOPE: admin-control-page 
   ========================================================================== */
.admin-control-page {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    background: #f1f5f9;
}

.admin-control-page .sidebar {
    background: #0f172a;
    color: white;
    padding: 2rem;
}

.admin-control-page .dashboard-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.admin-control-page .card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* ==========================================================================
   PAGE SCOPE: intake-form-page
   ========================================================================== */
.intake-form-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8fafc;
    font-family: sans-serif;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

#intake-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

#intake-form select, #intake-form textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    width: 100%;
}

#intake-form button {
    background: #0f172a;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
/* Username Chips & Dynamic UI Fixes */
.username-input-wrapper { display: flex !important; gap: 10px !important; margin-bottom: 8px !important; }
.btn-utility-generate { padding: 0 15px !important; background: #0f172a !important; color: #ffffff !important; border: none !important; border-radius: 6px !important; font-weight: 600 !important; cursor: pointer !important; font-size: 0.85rem !important; }
.username-suggestions-tray { display: none; gap: 8px !important; flex-wrap: wrap !important; margin-top: 10px !important; margin-bottom: 15px !important; }
.username-chip { background: #f1f5f9 !important; border: 1px solid #cbd5e1 !important; padding: 5px 12px !important; border-radius: 20px !important; font-size: 0.8rem !important; cursor: pointer !important; color: #1e293b !important; font-weight: 600 !important; }
.username-chip:hover { background: #2e654a !important; color: #ffffff !important; border-color: #2e654a !important; }

/* Bot Shield Core Elements */
.bot-defense-container { display: flex !important; align-items: center !important; gap: 12px !important; padding: 12px !important; background: #f8fafc !important; border: 1px solid #cbd5e1 !important; border-radius: 6px !important; font-size: 0.85rem !important; color: #64748b !important; margin: 20px 0 !important; }
.shield-spinner { width: 16px !important; height: 16px !important; border: 2px solid #2e654a !important; border-top-color: transparent !important; border-radius: 50% !important; animation: rotation-spin 1s linear infinite !important; }
@keyframes rotation-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Pillar track pages (Mothers, Veterans, Youth) */
.pillar-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-color: #1a202c;
    overflow: hidden;
}

.pillar-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pillar-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.pillar-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(26, 32, 44, 0.98) 0%,
        rgba(26, 32, 44, 0.94) 30%,
        rgba(26, 32, 44, 0.72) 42%,
        rgba(26, 32, 44, 0.38) 58%,
        rgba(26, 32, 44, 0.1) 72%,
        rgba(26, 32, 44, 0) 100%
    );
}

.pillar-page-hero .hero-gradient-overlay {
    display: none;
}

.pillar-hero-inner {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 640px;
    padding: 88px 0 72px;
    width: 100%;
}

.pillar-back-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.2s ease;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.pillar-back-link:hover { color: #ffffff; }

.pillar-hero-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(46, 101, 74, 0.35);
    border: 1px solid rgba(60, 208, 112, 0.45);
    color: #bbf7d0;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pillar-hero-inner h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.pillar-hero-inner > p {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 560px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.pillar-content-section { padding: 80px 0; }

.pillar-intro-block {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.pillar-intro-block h2 {
    font-size: clamp(1.65rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.pillar-intro-block p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.pillar-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pillar-approach-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(46, 101, 74, 0.08);
}

.pillar-approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdf4;
    color: var(--brand-deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
}

.pillar-approach-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.pillar-approach-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
}

.pillar-process-section {
    padding: 72px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pillar-process-section .section-sub { margin-bottom: 40px; }

.pillar-join-section {
    padding: 88px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    text-align: center;
}

.pillar-join-inner { max-width: 580px; margin: 0 auto; }

.pillar-join-inner h2 {
    font-size: clamp(1.75rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.pillar-join-lead {
    color: #64748b;
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 8px;
}

.pillar-join-subline {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.95rem;
    margin-bottom: 32px;
    font-style: italic;
}

.pillar-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-deep-green);
    color: #ffffff;
    padding: 16px 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(46, 101, 74, 0.25);
    transition: all 0.2s ease;
}

.pillar-join-btn:hover {
    background-color: #1e4331;
    transform: translateY(-2px);
}

/* Training spotlight — homepage */
.training-spotlight-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a202c 55%, #2e654a 100%);
    color: #ffffff;
}
.training-spotlight-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(60, 208, 112, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}
.training-spotlight-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.training-spotlight-content .section-eyebrow { color: var(--brand-accent-green); }
.training-spotlight-content h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 10px 0 16px;
    color: #ffffff;
}
.training-spotlight-content > p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 20px;
    max-width: 540px;
}
.training-spotlight-points {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.training-spotlight-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
}
.training-spotlight-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-accent-green);
    font-weight: 800;
}
.training-spotlight-btn {
    display: inline-block;
    background: var(--brand-accent-green);
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.training-spotlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(60, 208, 112, 0.35);
}
.training-spotlight-visual {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}
.training-spotlight-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.training-spotlight-illustration svg {
    width: 100px;
    height: 100px;
    opacity: 0.95;
}
.training-spotlight-badge {
    display: inline-block;
    background: rgba(60, 208, 112, 0.15);
    color: var(--brand-accent-green);
    border: 1px solid rgba(60, 208, 112, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.training-spotlight-stat {
    font-size: 1.35rem;
    line-height: 1.4;
    margin: 0 0 14px;
    color: #ffffff;
}
.training-spotlight-stat strong { color: var(--brand-accent-green); }
.training-spotlight-caption {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* Mental health training page */
.training-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.training-audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}
.training-audience-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0;
}
.training-audience-highlight {
    background: linear-gradient(145deg, #f0fdf4, #ffffff);
    border-color: #bbf7d0;
}
.training-annual-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-deep-green);
    background: #dcfce7;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.training-cohort-date {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.training-cohort-note { font-size: 0.92rem; color: #64748b; line-height: 1.6; margin: 0; }
.training-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.training-checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}
.training-checklist li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--brand-deep-green);
    font-weight: 800;
}
.training-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.training-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 22px;
}
.training-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0fdf4;
    color: var(--brand-deep-green);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.training-step-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 8px;
}
.training-step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.training-standards-section { padding: 72px 0; }
.training-standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.training-standards-text h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 10px 0 16px;
}
.training-standards-text p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
}
.training-standards-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.training-standards-list li {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
}
.training-standards-list strong {
    display: block;
    font-size: 0.98rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
}
.training-standards-list span {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}
.training-join-section .training-join-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.training-join-secondary {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.training-join-secondary:hover { color: #ffffff; }

.training-interest-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.training-interest-modal[hidden] { display: none !important; }
body.training-modal-open { overflow: hidden; }
.training-interest-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
}
.training-interest-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    max-width: 480px;
    width: 100%;
    padding: 32px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    max-height: 92vh;
    overflow-y: auto;
}
.training-interest-panel h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
}
.training-interest-lead {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 22px;
}
.training-interest-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    color: #64748b;
    line-height: 1;
}
.training-field { margin-bottom: 14px; }
.training-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}
.training-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.training-interest-note {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    margin: 8px 0 18px;
}
.training-interest-msg.error { color: #b91c1c; font-size: 0.85rem; margin-bottom: 12px; }
.training-interest-submit { width: 100%; border: none; cursor: pointer; }
.training-interest-success { text-align: center; }
.training-success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.training-interest-success h3 { margin: 0 0 10px; font-size: 1.15rem; }
.training-interest-success p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0 0 20px; }

.pillar-other-tracks {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #e2e8f0;
}

.pillar-other-tracks > p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.pillar-other-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pillar-other-links a {
    color: var(--brand-deep-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.pillar-other-links a:hover { text-decoration: underline; }

/* Training page — richer workforce & graduates sections */
.training-workforce-section {
    position: relative;
    padding-top: 72px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 100%);
}

.training-workforce-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 12% 18%, rgba(46, 101, 74, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 88% 72%, rgba(60, 208, 112, 0.05) 0%, transparent 38%);
    pointer-events: none;
}

.training-workforce-section > .container {
    position: relative;
    z-index: 1;
}

.training-intro-block { margin-bottom: 28px; max-width: 760px; margin-left: auto; margin-right: auto; }

.training-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.training-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(46, 101, 74, 0.05);
}

.training-stat-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--brand-deep-green);
    line-height: 1.1;
    margin-bottom: 6px;
}

.training-stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.training-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.training-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0fdf4;
    color: var(--brand-deep-green);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.training-audience-card {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.training-audience-highlight .training-card-icon {
    background: #dcfce7;
}

.training-cohort-btn {
    margin-top: 18px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--brand-deep-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.training-cohort-btn:hover {
    background: #255a42;
    transform: translateY(-1px);
}

.training-partners-strip {
    margin-top: 36px;
    padding: 22px 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.training-partners-strip > p {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0 0 14px;
    line-height: 1.55;
}

.training-partners-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.training-partners-tags span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-deep-green);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 6px 12px;
    border-radius: 20px;
}

.training-graduates-section {
    padding: 72px 0;
    background: linear-gradient(165deg, #ecfdf5 0%, #f8fafc 55%, #ffffff 100%);
}

.training-outcomes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.training-outcome-chip {
    background: #ffffff;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    padding: 16px 14px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.45;
    text-align: center;
}

.training-outcome-chip strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-deep-green);
    margin-bottom: 4px;
}

.training-graduates-grid .pillar-approach-card {
    border-left: 4px solid var(--brand-deep-green);
    background: rgba(255, 255, 255, 0.92);
}

.training-graduates-grid .pillar-approach-icon {
    border-radius: 50%;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .pillar-page-hero { min-height: auto; }
    .pillar-hero-inner { max-width: 100%; }
    .pillar-hero-photo { object-position: 65% center; }
    .pillar-hero-gradient {
        background: linear-gradient(
            to right,
            rgba(26, 32, 44, 0.98) 0%,
            rgba(26, 32, 44, 0.92) 55%,
            rgba(26, 32, 44, 0.5) 75%,
            rgba(26, 32, 44, 0.15) 100%
        );
    }
    .pillar-approach-grid { grid-template-columns: 1fr; }
    .training-spotlight-grid { grid-template-columns: 1fr; gap: 32px; }
    .training-audience-grid { grid-template-columns: 1fr; }
    .training-stats-row { grid-template-columns: repeat(2, 1fr); }
    .training-outcomes-row { grid-template-columns: 1fr; }
    .training-steps-grid { grid-template-columns: 1fr; }
    .training-standards-grid { grid-template-columns: 1fr; gap: 28px; }
    .training-page-hero .training-hero-photo { object-position: 55% 42%; }
}

/* Training page — hero facts & richer stat cards */
.training-hero-facts {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.training-hero-facts li {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 14px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.training-hero-facts li strong {
    color: var(--brand-accent-green);
    font-weight: 800;
    margin-right: 4px;
}

.training-page-hero .pillar-hero-inner {
    max-width: 680px;
}

.training-page-hero .training-hero-facts {
    margin-top: 0;
    margin-bottom: 18px;
}

.training-page-hero .training-hero-desc > p {
    margin-bottom: 16px;
}

.training-page-hero .training-hero-actions {
    margin-top: 8px;
}

.training-page-hero {
    min-height: clamp(280px, 27.14vw, 521px);
}

.training-page-hero .training-hero-photo {
    object-position: center 38%;
}

.training-stat-icon {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 10px;
}

.training-stat-hint {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.training-stat-card {
    position: relative;
    overflow: hidden;
}

.training-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-deep-green), var(--brand-accent-green));
    opacity: 0.85;
}

.training-partners-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--brand-deep-green);
    margin-bottom: 10px;
}

.training-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.training-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 22px rgba(46, 101, 74, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.training-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(46, 101, 74, 0.1);
}

.training-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0fdf4;
    color: var(--brand-deep-green);
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.training-feature-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.training-feature-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.training-audience-grid {
    margin-top: 0;
}

.training-audience-card {
    padding: 32px 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.training-journey-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 4px;
    margin-bottom: 28px;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid #d1fae5;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(46, 101, 74, 0.06);
}

.training-journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 72px;
    text-align: center;
}

.training-journey-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-deep-green);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-journey-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.25;
    max-width: 88px;
}

.training-journey-connector {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-deep-green), #bbf7d0);
    flex-shrink: 0;
}

.training-graduate-quote {
    margin: 0 0 32px;
    padding: 24px 28px;
    background: #ffffff;
    border-left: 4px solid var(--brand-deep-green);
    border-radius: 0 14px 14px 0;
    box-shadow: 0 8px 24px rgba(46, 101, 74, 0.07);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.training-graduate-quote p {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #334155;
    font-style: italic;
    margin: 0 0 10px;
}

.training-graduate-quote cite {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-deep-green);
    font-style: normal;
}

.training-graduate-card {
    min-height: 200px;
    box-shadow: 0 10px 26px rgba(46, 101, 74, 0.08);
}

.training-graduate-card .pillar-approach-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
}

.training-graduates-section {
    padding: 80px 0 88px;
}

@media (max-width: 768px) {
    .training-feature-row { grid-template-columns: 1fr; }
    .training-journey-connector { width: 18px; }
    .training-journey-bar { gap: 6px 2px; padding: 16px 12px; }
    .training-graduate-quote { padding: 20px 18px; }
    .training-graduate-quote p { font-size: 0.94rem; }
}

@import url('css/site-mobile-polish.css?v=202607251934');
