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

:root {
    --color-primary: #1C7ED6;
    --color-secondary: #0B132B;
    --color-accent: #A3E635;
    --color-background: #F7F9FC;
    --color-surface: #FFFFFF;
    --color-text: #1F2937;
    --color-border: #E5E7EB;
    --color-muted: #6B7280;
    --shadow-soft: 0 20px 40px rgba(12, 42, 82, 0.08);
    --radius-card: 18px;
}

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

body {
    margin: 0;
    font-family: 'Inter', 'Manrope', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-top: 0;
}

p {
    margin-top: 0;
}

ul,
ol {
    margin: 0;
    padding-left: 1.2rem;
}

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

.section {
    padding: 5rem 0;
}

.section-tight {
    padding: 3.5rem 0;
}

.section-light {
    background-color: var(--color-surface);
}

.section-contrast {
    background: linear-gradient(145deg, rgba(12, 42, 82, 0.96), rgba(28, 126, 214, 0.92));
    color: #F9FBFF;
}

.section-contrast h2,
.section-contrast h3,
.section-contrast p,
.section-contrast li {
    color: #F9FBFF;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.section-contrast .section-heading p {
    color: rgba(255, 255, 255, 0.78);
}

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

.col-span-4 {
    grid-column: span 4;
}

.col-span-5 {
    grid-column: span 5;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-7 {
    grid-column: span 7;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-12 {
    grid-column: span 12;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-dark {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--color-primary), #3BA0F0);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(28, 126, 214, 0.25);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    padding: 0.82rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    background-color: transparent;
    transition: border 0.2s ease, color 0.2s ease;
}

.secondary-button:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0 0;
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--color-muted);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--color-accent), #D3F86A);
    box-shadow: 0 0 0 6px rgba(163, 230, 53, 0.18);
}

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

.stat-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.stat-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    color: var(--color-primary);
}

.stat-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(28, 126, 214, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 40px rgba(11, 19, 43, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.6);
}

.media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-step {
    padding: 1.8rem;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.7);
    box-shadow: var(--shadow-soft);
}

.timeline-step span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(28, 126, 214, 0.15);
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.module-card {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(11, 19, 43, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #F7FBFF;
    box-shadow: var(--shadow-soft);
}

.module-card h3 {
    color: #F7FBFF;
    margin-bottom: 0.6rem;
}

.module-card p {
    color: rgba(247, 249, 252, 0.76);
    margin-bottom: 1.1rem;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.module-card li {
    padding-left: 1.2rem;
    position: relative;
    color: rgba(247, 249, 252, 0.75);
}

.module-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.faq-list {
    display: grid;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    padding: 1.5rem 1.8rem;
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--color-secondary);
}

.faq-item p {
    margin: 0;
    color: var(--color-muted);
}

.contact-form {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(229, 231, 235, 0.85);
    box-shadow: var(--shadow-soft);
}

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

.form-grid .full-width {
    grid-column: span 2;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--color-secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(28, 126, 214, 0.18);
}

.site-header {
    background: rgba(247, 249, 252, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    border-bottom: 1px solid rgba(229, 231, 235, 0.7);
    padding: 0.55rem 0;
}

.top-bar .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--color-muted);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.nav-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 600;
    color: var(--color-secondary);
    padding: 0.4rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 10px;
    background: rgba(28, 126, 214, 0.08);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-secondary);
    position: relative;
    transition: background 0.2s ease;
}

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

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

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

.nav-close {
    display: none;
}

.hero {
    padding-top: 6rem;
}

.hero-eyebrow {
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.08rem;
    color: var(--color-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.inline-metric {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.inline-metric::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

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

.split-card .card {
    background: rgba(247, 249, 252, 0.9);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--color-muted);
    margin-bottom: 1.1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.service-card li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--color-muted);
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-primary);
}

.info-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--color-muted);
}

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

.process-step {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

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

.site-footer {
    background: rgba(11, 19, 43, 0.95);
    color: rgba(231, 238, 255, 0.88);
    padding: 3.5rem 0 2.2rem 0;
}

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

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: rgba(231, 238, 255, 0.7);
}

.footer-nav,
.footer-legal {
    display: grid;
    gap: 0.4rem;
}

.footer-nav a,
.footer-legal a {
    color: rgba(231, 238, 255, 0.78);
    font-weight: 500;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(231, 238, 255, 0.15);
    padding-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(231, 238, 255, 0.65);
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 360px;
    background: rgba(11, 19, 43, 0.9);
    color: #F9FBFF;
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(11, 19, 43, 0.35);
    z-index: 9999;
    backdrop-filter: blur(12px);
}

.cookie-banner h2 {
    margin-bottom: 0.6rem;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.cookie-banner p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(249, 251, 255, 0.78);
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-banner button {
    flex: 1 1 auto;
}

.cookie-banner .link-inline {
    color: rgba(163, 230, 53, 0.9);
    text-decoration: underline;
}

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

.table-like {
    display: grid;
    gap: 0.8rem;
}

.table-like-row {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, 0.7);
}

.table-like-row span:first-child {
    font-weight: 600;
    color: var(--color-secondary);
}

.notice {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(28, 126, 214, 0.25);
    background: rgba(28, 126, 214, 0.08);
    color: var(--color-secondary);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.legal-section p,
.legal-section li {
    color: var(--color-muted);
}

.definition-list {
    display: grid;
    gap: 1.1rem;
}

.definition-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
}

.definition-item strong {
    display: block;
    color: var(--color-secondary);
    margin-bottom: 0.35rem;
}

@media (max-width: 1200px) {
    .grid-12 {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .grid-12 {
        gap: 2rem;
    }

    .col-span-4,
    .col-span-5,
    .col-span-6,
    .col-span-7,
    .col-span-8,
    .col-span-12 {
        grid-column: span 12;
    }

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

    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(11, 19, 43, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 2rem;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.6rem;
        align-items: center;
    }

    .nav-menu a {
        color: #F7FBFF;
        font-size: 1.4rem;
    }

    .nav-menu a::after {
        background: var(--color-accent);
    }

    .nav-close {
        display: inline-flex;
        position: absolute;
        top: 1.6rem;
        right: 1.6rem;
        font-size: 2rem;
        color: #F7FBFF;
        cursor: pointer;
        padding: 0.4rem 0.6rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
    }

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

    #nav-toggle:checked ~ header .nav-toggle-label span {
        background: transparent;
    }

    #nav-toggle:checked ~ header .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    #nav-toggle:checked ~ header .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero {
        padding-top: 5rem;
    }

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

    .form-grid .full-width {
        grid-column: span 1;
    }

    .cookie-banner {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

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

@media (max-width: 680px) {
    .section {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu {
        padding: 3rem 2rem;
    }

    .nav-menu a {
        font-size: 1.3rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .cookie-banner .cookie-actions {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 4rem;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .card,
    .contact-form,
    .info-card,
    .service-card,
    .timeline-step,
    .process-step {
        padding: 1.6rem;
    }
}