@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --color-purple: #6a38f5;
    --color-sky: #56c8ff;
    --color-lime: #acf22f;
    --color-dark: #1c1c28;
    --color-light: #f5f7ff;
    --color-white: #ffffff;
    --color-muted: #70708c;
    --color-success: #1f9254;
    --color-error: #c0392b;
    --shadow-soft: 0 24px 48px rgba(26, 19, 61, 0.12);
    --radius-card: 18px;
    --radius-pill: 999px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    display: block;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: clamp(64px, 12vw, 120px) 0;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.section p {
    margin-top: 16px;
    color: var(--color-muted);
}

.hero {
    padding-top: clamp(96px, 14vw, 160px);
    padding-bottom: clamp(64px, 12vw, 120px);
}

.hero-grid {
    display: grid;
    gap: clamp(32px, 5vw, 64px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    line-height: 1.15;
    color: var(--color-white);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hero-media img {
    box-shadow: var(--shadow-soft);
}

.eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-meta {
    display: grid;
    gap: 12px;
    color: var(--color-white);
}

.hero-meta .meta-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.button-primary {
    background: linear-gradient(120deg, var(--color-purple), var(--color-sky));
    color: var(--color-white);
    border: none;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-outline {
    background: transparent;
    border: 2px solid var(--color-purple);
    color: var(--color-purple);
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(120deg, var(--color-purple), var(--color-sky));
    border-radius: var(--radius-pill);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px 0;
    border-radius: 2px;
}

.gradient-1 {
    background: linear-gradient(135deg, var(--color-purple), #281b6c);
    color: var(--color-white);
}

.gradient-2 {
    background: linear-gradient(135deg, #edf2ff, #ffffff);
}

.gradient-3 {
    background: linear-gradient(135deg, #4b2bb7, #6a38f5);
    color: var(--color-white);
}

.gradient-3 p,
.gradient-3 h2,
.gradient-4 h2,
.gradient-4 p {
    color: rgba(255, 255, 255, 0.9);
}

.gradient-4 {
    background: linear-gradient(135deg, #37b0ff, #6a38f5);
    color: var(--color-white);
}

.split {
    display: grid;
    gap: clamp(32px, 5vw, 56px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.split-text p {
    color: var(--color-muted);
}

.gradient-3 .split-text p,
.gradient-4 .split-text p {
    color: rgba(255, 255, 255, 0.85);
}

.checklist {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    color: inherit;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-lime);
    font-weight: 700;
}

.grid {
    display: grid;
    gap: clamp(24px, 4vw, 36px);
}

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

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

.stat-card,
.info-card,
.service-card,
.resource-item,
.method-item {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.stat-card {
    text-align: left;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-purple);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.service-card li::before,
.resource-item::before,
.method-item::before {
    content: '';
}

.dashboard-section {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: clamp(36px, 6vw, 60px);
    box-shadow: var(--shadow-soft);
}

.dashboard-intro p {
    color: var(--color-muted);
}

.dashboard-list {
    margin-top: 32px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dashboard-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.steps {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.steps.vertical .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
}

.step {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    padding: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: rgba(172, 242, 47, 0.2);
    color: var(--color-white);
    font-weight: 700;
}

.gradient-2 .step,
.section .step {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.gradient-2 .step-number,
.section .step-number {
    background: var(--color-purple);
}

.resource-grid {
    display: grid;
    gap: 36px;
}

.resource-items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.resource-item {
    position: relative;
    padding-top: 20px;
}

.resource-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cta-block {
    display: grid;
    gap: 24px;
    align-items: center;
    justify-items: start;
}

.footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: clamp(48px, 8vw, 72px) 0;
}

.site-footer {
    background: #0f1020;
    color: rgba(255, 255, 255, 0.85);
    margin-top: auto;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-contact {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu h3,
.footer-legal h3 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer-menu ul,
.footer-legal ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, 92%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: none;
    z-index: 999;
}

.cookie-banner a {
    color: var(--color-lime);
    text-decoration: underline;
}

.cookie-banner .button {
    margin-top: 16px;
}

.table {
    display: grid;
    gap: 12px;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 0.8fr;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-soft);
}

.table-header {
    background: rgba(90, 64, 225, 0.15);
    font-weight: 600;
}

.alert {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(31, 146, 84, 0.12);
    color: var(--color-success);
    border: 1px solid rgba(31, 146, 84, 0.35);
}

.alert-error {
    background: rgba(192, 57, 43, 0.12);
    color: var(--color-error);
    border: 1px solid rgba(192, 57, 43, 0.35);
}

.contact-form {
    background: var(--color-white);
    padding: clamp(32px, 6vw, 48px);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(106, 56, 245, 0.3);
    font-size: 1rem;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(86, 200, 255, 0.6);
}

.contact-info {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.coverage-list {
    list-style: disc;
    padding-left: 24px;
    margin-top: 16px;
    color: var(--color-muted);
}

.narrow {
    width: min(820px, 92%);
    margin: 0 auto;
}

.policy-list {
    list-style: disc;
    color: var(--color-muted);
    padding-left: 24px;
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.roadmap {
    list-style: decimal;
    padding-left: 24px;
    color: var(--color-muted);
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

@media (max-width: 992px) {
    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(15, 16, 32, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-110%);
        transition: none;
        text-align: center;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 28px;
    }

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

    .nav-toggle-label {
        display: flex;
    }

    .nav-toggle:checked ~ .site-nav {
        transform: translateY(0);
    }

    .hero-content h1,
    .hero-content p,
    .hero-meta {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .cta-block {
        justify-items: center;
        text-align: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-contact {
        justify-items: center;
    }

    .cookie-banner {
        bottom: 20px;
    }

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

    .steps.vertical .step {
        grid-template-columns: 1fr;
    }

    .step-number {
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner {
        width: 94%;
        padding: 20px;
    }

    .cookie-banner .button {
        width: 100%;
    }
}