:root {
    --indigo: #3f3d56;
    --charcoal: #1f2933;
    --white: #ffffff;
    --neon: #39ff14;
    --light-gray: #f6f7fb;
    --muted: #6b7280;
    --border: #d7d9e3;
    --gradient: linear-gradient(135deg, #3f3d56 0%, #1f2933 60%, #39ff14 100%);
    --transition: 0s;
    --container-width: 1200px;
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--charcoal);
    background-color: var(--light-gray);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.container {
    width: min(var(--container-width), calc(100% - 3rem));
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section.hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--gradient);
    color: var(--white);
}

.section.hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.section.hero.slim {
    background: var(--gradient);
    color: var(--white);
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section.hero .section-header h2,
.section.hero .hero-content h1,
.section.hero.slim .hero-content h1 {
    color: var(--white);
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
}

.section.hero .section-header p,
.section.hero .hero-actions,
.section.hero .contact-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: var(--white);
    border-bottom: 1px solid rgba(63, 61, 86, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}

.brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--indigo);
}

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

.main-nav a {
    font-weight: 500;
    color: var(--charcoal);
}

.main-nav a.active {
    color: var(--neon);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--charcoal);
    margin-bottom: 6px;
}

.hero-grid,
.values-grid,
.resources-grid,
.engagement-grid,
.framework-grid,
.methodology-grid,
.form-grid,
.visit-grid,
.evidence-grid,
.governance-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.eyebrow {
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--neon);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-highlight p {
    margin: 0.2rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--neon);
    background-color: var(--neon);
    color: var(--charcoal);
    font-weight: 600;
}

.cta-button.secondary {
    background-color: transparent;
    border-color: var(--neon);
    color: var(--neon);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(31, 41, 51, 0.05);
    border: 1px solid rgba(63, 61, 86, 0.08);
}

.card h3 {
    margin-top: 0;
    color: var(--indigo);
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--neon);
}

.timeline {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-step {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--indigo);
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
}

.key-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.key-stats div {
    background-color: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    min-width: 140px;
    box-shadow: 0 8px 20px rgba(31, 41, 51, 0.08);
    text-align: center;
}

.key-stats strong {
    display: block;
    font-size: 2rem;
    color: var(--indigo);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(31, 41, 51, 0.1);
    border: 1px solid rgba(63, 61, 86, 0.07);
}

.site-footer {
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3.5rem;
}

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

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.site-footer a:hover,
.site-footer a:focus {
    color: var(--neon);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
}

.values-grid,
.resources-grid,
.engagement-grid,
.framework-grid,
.methodology-grid,
.form-grid,
.visit-grid,
.evidence-grid,
.governance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-icon {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.list-icon li {
    background-color: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(63, 61, 86, 0.08);
    box-shadow: 0 10px 25px rgba(31, 41, 51, 0.05);
}

.list-numbered {
    counter-reset: section;
    padding-left: 0;
    list-style: none;
    margin: 1.5rem 0 0 0;
}

.list-numbered li {
    counter-increment: section;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
}

.list-numbered li::before {
    content: counter(section);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--indigo);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 600;
}

.form-grid {
    align-items: start;
}

.form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(31, 41, 51, 0.08);
    border: 1px solid rgba(63, 61, 86, 0.07);
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-field label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--indigo);
}

.form-field input,
.form-field textarea {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 1rem;
    background-color: #ffffff;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid var(--neon);
    border-color: transparent;
}

.hidden-field {
    display: none;
}

.form-actions {
    text-align: right;
}

.form-alert {
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.form-alert.error {
    background-color: rgba(255, 99, 71, 0.1);
    border: 1px solid rgba(255, 99, 71, 0.4);
    color: #b91c1c;
}

.form-alert.success {
    background-color: rgba(57, 255, 20, 0.12);
    border: 1px solid rgba(57, 255, 20, 0.4);
    color: #1f7a1f;
}

.contact-details p {
    margin: 0.4rem 0;
}

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

.faq-list article {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(63, 61, 86, 0.08);
    box-shadow: 0 12px 26px rgba(31, 41, 51, 0.06);
    margin-bottom: 1rem;
}

.legal {
    padding: 4.5rem 0;
}

.legal-section {
    padding: 2.5rem 0;
}

.legal-section:nth-of-type(even) {
    background-color: rgba(63, 61, 86, 0.04);
}

.legal-section h2 {
    color: var(--indigo);
}

.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.legal-section th,
.legal-section td {
    border: 1px solid var(--border);
    padding: 0.9rem;
    text-align: left;
}

.cookie-banner {
    position: fixed;
    inset: auto 0 0 0;
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 0;
    display: none;
    z-index: 30;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner__content p {
    margin: 0;
    max-width: 720px;
}

.cookie-button {
    background-color: var(--neon);
    border: none;
    color: var(--charcoal);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
}

.timeline-step h3 {
    margin-top: 0;
}

.hero-media img,
.values-media img,
.resources-media img,
.engagement-media img,
.methodology-media img {
    border-radius: 20px;
}

.tablet,
.desktop {
    display: none;
}

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .values-grid,
    .resources-grid,
    .engagement-grid,
    .framework-grid,
    .methodology-grid,
    .form-grid,
    .visit-grid,
    .evidence-grid,
    .governance-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 2rem);
    }

    .section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle-label {
        display: inline-block;
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        background-color: rgba(31, 41, 51, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 25;
    }

    .main-nav a {
        color: var(--white);
        font-size: 1.5rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .key-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-button {
        width: 100%;
        text-align: center;
    }
}

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

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}