:root {
    --color-navy: #0E1B2E;
    --color-orange: #FF6B00;
    --color-blue: #1F6FEB;
    --color-white: #F7F9FC;
    --color-gray: #5B6876;
    --font-primary: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-navy);
    background-color: var(--color-white);
    line-height: 1.6;
}

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

a {
    color: var(--color-blue);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-orange);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background: rgba(14, 27, 46, 0.92);
    backdrop-filter: blur(12px);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    border-bottom: 1px solid rgba(247, 249, 252, 0.2);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
}

.brand-name {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.contact-mini {
    display: flex;
    gap: 1.2rem;
    font-size: 0.9rem;
}

.contact-mini a {
    color: #ffffff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    position: relative;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff;
    font-weight: 500;
    padding-bottom: 0.2rem;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
    border-bottom: 2px solid var(--color-orange);
}

.nav-toggle {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.35rem;
}

.burger span {
    width: 26px;
    height: 2px;
    background: #ffffff;
}

.mobile-menu {
    display: none;
}

.hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(15, 29, 47, 0.95), rgba(15, 29, 47, 0.85)), url("../images/hero-texture.png");
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--color-orange);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li {
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.impact,
.program,
.local-insights,
.design-integration,
.roadmap,
.metrics,
.faq-contact,
.story,
.method,
.timeline,
.values,
.partnerships,
.service-overview,
.process,
.resources,
.engagement,
.cta,
.contact-details,
.support,
.practical,
.legal,
.thanks {
    padding: 4.5rem 0;
}

.impact-grid,
.program-grid,
.faq-grid,
.story-highlights,
.timeline-grid,
.values-points,
.partnership-metrics,
.service-grid,
.process-steps,
.resources-grid,
.engagement-metrics,
.details-grid,
.support-points,
.practical-grid {
    display: grid;
    gap: 1.5rem;
}

.impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.impact-card,
.program-card,
.highlight-card,
.value-card,
.metric-card,
.detail-card,
.support-card,
.practical-card,
.service-card,
.step-card,
.lead-summary,
.message-block {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 27, 46, 0.08);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 10px 28px rgba(14, 27, 46, 0.08);
}

.program-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.program-visual,
.local-grid,
.design-grid,
.metrics-grid,
.story-grid,
.method-grid,
.process-grid,
.resources-grid,
.engagement-grid,
.details-grid,
.support-grid,
.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.program-card ul {
    padding-left: 1.2rem;
}

.local-text p,
.design-text p,
.metrics-text p,
.story-text p,
.method-text p,
.values-text p,
.partnership-text p,
.service-card p,
.process-text p,
.resources-text p,
.engagement-text p,
.detail-card p,
.support-text p,
.practical-card p {
    color: var(--color-gray);
}

.roadmap-flex {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.step h3 {
    margin-top: 0;
}

.metrics-list {
    list-style: disc;
    padding-left: 1.4rem;
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form-wrapper {
    margin-top: 3.5rem;
    background: rgba(31, 111, 235, 0.08);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(31, 111, 235, 0.2);
    box-shadow: 0 18px 38px rgba(31, 111, 235, 0.12);
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 12px;
    border: 1px solid rgba(14, 27, 46, 0.12);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(31, 111, 235, 0.4);
    border-color: rgba(31, 111, 235, 0.4);
}

.form-submit {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-notice {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.site-footer {
    background: var(--color-navy);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    color: var(--color-navy);
    padding: 1.5rem;
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(14, 27, 46, 0.18);
    border: 1px solid rgba(14, 27, 46, 0.08);
    z-index: 999;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-content a {
    color: var(--color-blue);
    text-decoration: underline;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: radial-gradient(circle at top left, rgba(31, 111, 235, 0.12), transparent 60%);
}

.thanks-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.lead-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-summary li {
    margin-bottom: 0.6rem;
}

.message-block {
    margin-top: 1.5rem;
    background: rgba(15, 29, 47, 0.05);
}

.next-steps,
.privacy-note {
    margin-top: 1.2rem;
    color: var(--color-gray);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 1.8rem;
    font-size: 1.2rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-top: 0.6rem;
}

.legal-content p {
    color: var(--color-gray);
}

.cta {
    background: linear-gradient(135deg, rgba(31, 111, 235, 0.1), rgba(255, 107, 0, 0.08));
}

.cta-box {
    text-align: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 3rem;
    box-shadow: 0 25px 40px rgba(14, 27, 46, 0.15);
    border: 1px solid rgba(14, 27, 46, 0.08);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks {
    padding: 5rem 0;
}

@media (max-width: 1024px) {
    .hero-grid,
    .program-visual,
    .local-grid,
    .design-grid,
    .metrics-grid,
    .story-grid,
    .method-grid,
    .process-grid,
    .resources-grid,
    .engagement-grid,
    .details-grid,
    .support-grid,
    .practical-grid,
    .roadmap-flex,
    .page-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-mini {
        display: none;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(14, 27, 46, 0.92);
        color: #ffffff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .mobile-menu-inner {
        position: relative;
        padding: 4rem 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: 100%;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 1rem;
    }

    .mobile-menu a {
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .close-mobile {
        position: absolute;
        top: 1.2rem;
        right: 1.8rem;
        font-size: 2.4rem;
        cursor: pointer;
        color: #ffffff;
    }

    .mobile-contact {
        margin-top: auto;
        display: grid;
        gap: 0.6rem;
        font-size: 0.95rem;
    }

    .nav-toggle:checked ~ .mobile-menu {
        transform: translateX(0);
    }

    .hero {
        padding-top: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.8rem;
    }

    .cta-box {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .top-bar-inner {
        padding: 0.6rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: unset;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .btn {
        width: 100%;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .legal-content {
        width: 90%;
    }
}