:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --brand: #0ea5e9;
    --brand-600: #0284c7;
    --card: #ffffff;
    --border: #e2e8f0;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg)
}

a {
    color: var(--brand);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.brand {
    display: flex;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

.header {
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav a {
    margin-left: 18px;
    color: var(--brand);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brand);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}



.btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-primary:hover {
    background: var(--brand-600)
}

.btn-outline {
    border-color: var(--border);
    color: #0f172a;
    background: #fff
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
    font-size: 13px
}

.hero {
    background: linear-gradient(180deg, #f0f9ff, #ffffff);
    padding: 64px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%) opacity(0.8);
    transition: filter 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 24px 0;
    }

    .footer-grid {
        padding: 40px 24px;
    }

    .header-inner {
        padding: 14px 24px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 58px;
        left: 0;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        border-top: 1px solid var(--border);
        padding: 20px 0;
    }

    .nav a {
        margin: 12px 0;
        font-size: 20px;
    }

    .nav.active {
        display: flex;
        justify-content: space-around;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .logo-track {
        gap: 40px;
        animation-duration: 12s;
    }

    .logo-track img {
        height: 40px;
    }
}




@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.2fr .8fr
    }
}

.h1 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin: 10px 0 8px;
    font-weight: 800
}

h2,
h3 {
    color: var(--brand-600);
    font-weight: 900;
    text-align: center;
}


.container.faq h2 {
    margin-bottom: 36px;
}

.lead {
    color: var(--muted);
    font-size: 18px
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0
}

.list-check li {
    font-weight: bold;
    position: relative;
    padding-left: 28px;
    margin: 8px 0
}

.list-check.requirements li {
    font-weight: 400;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    padding: 12px 16px;
    background-color: white;
    border-radius: 8px;
}

.list-check li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    top: 0;
    color: #059669;
    font-weight: 800
}

.list-check.requirements li:before {
    content: none
}


.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    padding: 20px
}

.card .small {
    text-align: left;
}

label.small {
    font-weight: bold;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-card img {
    width: 100%;
    border-radius: 24px;
}

.num {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 12px
}

.section {
    padding: 64px 0
}

.section-muted {
    background: #f8fafc
}

.grid-3,
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}


@media (min-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: center;
    opacity: .9
}

@media (min-width: 900px) {
    .grid-logos {
        grid-template-columns: repeat(5, 1fr)
    }
}

.faq details {
    margin: 0
}

.faq summary {
    font-weight: 700;
    cursor: pointer
}

.footer {
    border-top: 1px solid var(--border)
}

.footer .small {
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr
    }
}

.input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px
}

.input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--brand);
    border-color: var(--brand)
}

.kpi {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 12px; */
    width: 100%;
    height: 75%;
}

.kpi .box {
    border: 1px dashed var(--border);
    height: 100%;
    width: 100%;
    display: flex;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kpi .val {
    font-size: 20px;
    font-weight: 800
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table th,
.table td {
    padding: 10px;
    border: 1px solid var(--border);
    text-align: right
}

.table th:first-child,
.table td:first-child {
    text-align: left
}

.small {
    font-size: 16px;
    text-align: center;
    color: var(--muted)
}

.alert {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    color: #b45309;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}