/* Shared layout, typography, components */
:root {
    --navy: #1a2744;
    --navy-dark: #0f1a2e;
    --navy-light: #243456;
    --green: #2d7a3a;
    --green-light: #3a9e4a;
    --green-dark: #1e5c28;
    --olive: #6b8c42;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6ea;
    --gray-300: #ced4da;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
}

body.page-loading { opacity: 0; }
body.page-ready { opacity: 1; transition: opacity 0.5s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; height: auto; display: block; }

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,26,46,0.75) 0%, rgba(15,26,46,0.2) 50%, transparent 100%);
    z-index: 1;
}

.hero-visual-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.img-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-card:hover img { transform: scale(1.05); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

a { color: inherit; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 68px;
    background: rgba(15, 26, 46, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px; right: 14px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
}

.nav-cta:hover { background: var(--green-light) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── PARTNER LOGO BAR ── */
.partner-bar {
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    margin-top: var(--nav-height);
}

.partner-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.partner-bar-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-right: 4px;
}

.partner-bar-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 16px;
    min-height: 56px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.partner-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo--catalyst {
    max-height: 48px;
    max-width: 110px;
}

.partner-logo--opele {
    max-height: 42px;
    max-width: 150px;
}

.partner-logo--jade {
    max-height: 34px;
    max-width: 150px;
}

.partner-logo-wrap:hover .partner-logo { transform: scale(1.04); }

.partner-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
}

/* Logo display helpers */
.logo-on-dark { filter: none; }
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-200);
    min-height: 96px;
}

.logo-card.light { background: var(--white); border: 1px solid var(--gray-200); }
.logo-card img {
    height: auto;
    width: auto;
    max-height: 52px;
    max-width: 200px;
    object-fit: contain;
}
.logo-card img.logo-catalyst {
    max-height: 72px;
    max-width: 140px;
}
.logo-card img.logo-opele {
    max-height: 56px;
    max-width: 200px;
}
.logo-card img.logo-jade {
    max-height: 44px;
    max-width: 200px;
}
.logo-card.wide img { max-width: 220px; max-height: 48px; }

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    overflow: hidden;
    color: var(--white);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(45,122,58,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(107,140,66,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 720px;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    margin-bottom: 28px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-light); }

.hero-home {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--navy-light), var(--green-dark));
    box-shadow: var(--shadow-lg);
}

.hero-visual-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
}

.hero-solar-icon {
    width: 80px; height: 80px;
    color: rgba(255,255,255,0.9);
}

.hero-stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.stat-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-pill strong { color: var(--green-light); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45,122,58,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-full { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--gray-50); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.text-green { color: var(--green); }
.text-white { color: var(--white); }

.section-footer-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── GRIDS & CARDS ── */
.cards-grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.five-col { grid-template-columns: repeat(5, 1fr); }

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,122,58,0.15);
}

.card-bordered {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.section-dark .card-bordered { background: var(--navy-light); }

.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; }
.section-dark .card p { color: rgba(255,255,255,0.72); }

.card-icon {
    width: 52px; height: 52px;
    margin-bottom: 16px;
    color: var(--green);
}

.card-icon-sm { width: 40px; height: 40px; margin-bottom: 14px; color: var(--green); }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
}

.card-link:hover { gap: 10px; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── STATS ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-left: 2px; }
.stat h3 { font-size: 0.9rem; font-weight: 700; margin: 12px 0 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.stat p { font-size: 0.85rem; opacity: 0.65; }

/* ── PROCESS STEPS ── */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.step { text-align: center; flex: 1; max-width: 220px; }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.step-icon { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--green); }
.step h3 { font-size: 1rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.step p { font-size: 0.88rem; opacity: 0.75; }

.step-arrow { font-size: 1.4rem; color: rgba(255,255,255,0.25); padding-top: 72px; flex-shrink: 0; }

/* ── PARTNERSHIP ── */
.partnership-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: start;
}

.partner-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.partner-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.partner-role { color: var(--green); font-weight: 600; margin-bottom: 20px; font-size: 0.95rem; }

.flow-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.flow-step {
    background: var(--navy);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 170px;
}

.flow-step.highlight { background: var(--green); }
.flow-step strong { display: block; font-size: 0.9rem; }
.flow-step span { font-size: 0.78rem; opacity: 0.8; }
.flow-arrow-down { font-size: 1.4rem; color: var(--green); font-weight: 700; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--navy);
    transition: var(--transition);
}

.faq-question:hover { color: var(--green); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 22px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-person { display: flex; align-items: center; gap: 16px; }

.contact-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-phone {
    color: var(--green-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-phone:hover { text-decoration: underline; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.section-dark .contact-form input,
.section-dark .contact-form textarea,
.section-dark .contact-form select {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,122,58,0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-status {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-status.success { display: block; background: rgba(45,122,58,0.15); color: var(--green-dark); border: 1px solid var(--green); }
.form-status.error { display: block; background: rgba(192,57,43,0.1); color: #c0392b; border: 1px solid #c0392b; }

/* ── LEGAL PAGES ── */
.legal-content {
    padding: 48px 0 96px;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 12px;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 8px;
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.75;
}

.legal-content ul { padding-left: 24px; margin-bottom: 16px; }

.legal-updated {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}

.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    height: auto;
    max-height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 14px;
}
.footer-tagline { font-size: 0.85rem; opacity: 0.55; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-partners {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.footer-partners img {
    height: auto;
    width: auto;
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.95;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ── SPLIT CONTENT ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.split-content p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }

.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    color: var(--green);
    font-weight: 700;
}

.visual-box {
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    padding: 48px;
    color: var(--white);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── WHY MATTERS ── */
.why-matters {
    margin-top: 48px;
    background: var(--navy-light);
    border-radius: var(--radius);
    padding: 32px;
}

.why-matters h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green);
}

.matters-grid { display: flex; flex-wrap: wrap; gap: 12px; }

.matter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
}

.matter-icon { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .four-col, .five-col { grid-template-columns: repeat(2, 1fr); }
    .three-col { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-flow { grid-template-columns: 1fr; }
    .hero-grid, .split-section { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }

    .nav-links.active { display: flex; }

    .two-col, .three-col, .four-col, .five-col { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }

    .process-steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }

    .partner-bar-logos { justify-content: center; }
    .partner-divider { display: none; }
    .partner-logo-wrap { min-height: 48px; padding: 8px 12px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; }
}
