:root {
    --color-navy: #0A2A5E;
    --color-orange: #FF6F00;
    --color-emerald: #18A999;
    --color-light: #F4F6F8;
    --color-text: #222833;
    --color-muted: #5A6270;
    --max-width: 1180px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 20px 60px rgba(10, 42, 94, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
}

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

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

header {
    background-color: rgba(244, 246, 248, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 40, 51, 0.08);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-navy);
    font-size: 1.1rem;
}

.nav-brand img {
    max-height: 50px;
    width: auto;
}

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

nav li {
    font-weight: 500;
}

nav a {
    color: var(--color-text);
}

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

#nav-toggle {
    display: none;
}

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

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: var(--color-text);
    height: 2px;
    width: 24px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 42, 94, 0.96);
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    overflow-y: auto;
}

.navbar:has(#nav-toggle:checked) .nav-overlay {
    display: block;
}

.nav-overlay-top {
    display: flex;
    justify-content: flex-end;
}

.nav-overlay-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

.nav-overlay ul {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.5rem;
}

main {
    padding-top: 3rem;
}

.section {
    padding: 5rem 1.5rem;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--color-navy);
    color: #fff;
}

.section-gradient {
    background: linear-gradient(135deg, rgba(10, 42, 94, 0.95), rgba(24, 169, 153, 0.85));
    color: #fff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

.card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(10, 42, 94, 0.08);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(10, 42, 94, 0.12);
}

.card-muted {
    background-color: #f9fbfd;
}

.card-dark {
    background-color: rgba(10, 42, 94, 0.92);
    color: #fff;
}

.card-dark::after {
    border-color: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 720px;
}

.highlight {
    color: var(--color-emerald);
    font-weight: 600;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(24, 169, 153, 0.12);
    color: var(--color-emerald);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e35f00;
}

.btn-secondary {
    background-color: rgba(10, 42, 94, 0.12);
    color: var(--color-navy);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(10, 42, 94, 0.22);
}

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

.stat-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

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

.badge-accent {
    background: rgba(255, 111, 0, 0.12);
    color: var(--color-orange);
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.list-checked {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 1rem;
}

.list-checked li {
    position: relative;
    padding-left: 2.25rem;
}

.list-checked li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--color-emerald);
    background: transparent;
}

.list-checked li::after {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.7rem;
    width: 0.5rem;
    height: 0.25rem;
    border-left: 2px solid var(--color-emerald);
    border-bottom: 2px solid var(--color-emerald);
    transform: translateY(-50%) rotate(-45deg);
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-emerald), rgba(24, 169, 153, 0));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.56rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    border: 3px solid rgba(24, 169, 153, 0.2);
}

.form-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

form {
    display: grid;
    gap: 1.5rem;
}

form label {
    font-weight: 600;
    color: var(--color-navy);
}

form input,
form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 42, 94, 0.2);
    background-color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(24, 169, 153, 0.18);
}

form textarea {
    min-height: 160px;
    resize: vertical;
}

.faq {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(10, 42, 94, 0.08);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.table th,
.table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(10, 42, 94, 0.08);
    text-align: left;
}

.accent-box {
    background: rgba(10, 42, 94, 0.06);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

footer {
    background-color: #0B1B3A;
    color: #fff;
    padding: 4rem 1.5rem 3rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    max-height: 100px;
    width: auto;
}

.footer-nav {
    display: grid;
    gap: 1rem;
}

.footer-nav h4 {
    margin: 0;
    font-size: 1.1rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 360px;
    background: #fff;
    color: var(--color-text);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    z-index: 1200;
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner button {
    align-self: flex-start;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(10, 42, 94, 0.08);
    color: var(--color-text);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

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

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

    .navbar {
        padding: 1rem;
    }

    .btn-group {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

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

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

    .section {
        padding: 4rem 1.25rem;
    }

    .card {
        padding: 2rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        max-width: calc(100% - 3rem);
        right: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .btn {
        width: 100%;
    }

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

    .faq {
        gap: 1.25rem;
    }

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