:root {
    --brand-900: #102a43;
    --brand-800: #1f3b5d;
    --brand-700: #285f82;
    --brand-500: #2a9d8f;
    --brand-300: #9fd7d0;
    --accent: #f4a261;
    --neutral-50: #f6f8fb;
    --neutral-100: #eef2f7;
    --neutral-200: #d8e1ec;
    --neutral-700: #334e68;
    --neutral-900: #0f172a;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 16px 36px rgba(16, 42, 67, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--neutral-900);
    background: linear-gradient(180deg, #f9fbfe 0%, #f2f6fa 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

.site-nav {
    background: rgba(16, 42, 67, 0.92);
    backdrop-filter: blur(6px);
}

.site-nav .navbar-brand,
.site-nav .nav-link {
    color: #ffffff;
}

.site-nav .nav-link:hover,
.site-nav .navbar-brand:hover {
    color: var(--brand-300);
}

.btn-brand {
    background: linear-gradient(120deg, var(--brand-500), #2ec4b6);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

.btn-brand:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 15%, #2f6c8e 0%, transparent 35%),
                radial-gradient(circle at 90% 70%, #2a9d8f 0%, transparent 40%),
                linear-gradient(135deg, var(--brand-900), var(--brand-700));
    color: #ffffff;
    padding: 92px 0 84px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -110px -10%;
    height: 220px;
    background: linear-gradient(to right, rgba(244, 162, 97, 0.35), rgba(255, 255, 255, 0));
    transform: rotate(-2deg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.92rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
}

.hero-stat-card strong {
    font-size: 1.3rem;
    display: block;
    line-height: 1.2;
}

.section-title {
    color: var(--brand-900);
    font-weight: 700;
}

.feature-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(16, 42, 67, 0.18);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #e7f7f5, #d7e9ff);
    color: var(--brand-700);
    font-size: 1.45rem;
    margin-bottom: 0.95rem;
}

.process-wrap {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
}

.process-step {
    padding: 1rem;
    border-radius: 14px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
}

.process-step + .process-step {
    margin-top: 0.8rem;
}

.process-step small {
    color: var(--brand-700);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.process-step h5 {
    margin: 0.35rem 0;
    color: var(--brand-900);
}

.highlight-card {
    background: linear-gradient(160deg, #ffffff 0%, #edf6ff 100%);
    border: 1px solid #d8e5f4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
}

.cta-block {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(130deg, var(--brand-900), var(--brand-700));
    color: #ffffff;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.legal-shell {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    border: 1px solid var(--neutral-100);
}

.legal-shell h1 {
    margin-bottom: 0.5rem;
}

.legal-shell h2 {
    margin-top: 1.6rem;
    color: var(--brand-900);
    font-size: 1.35rem;
}

.legal-shell h3 {
    margin-top: 1rem;
    color: var(--brand-700);
    font-size: 1.1rem;
}

.legal-shell p,
.legal-shell li {
    color: var(--neutral-700);
    line-height: 1.65;
}

.site-footer {
    background: var(--brand-900);
    color: #dbe5ef;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--brand-300);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeRise 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 74px 0 64px;
    }

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

    .legal-shell {
        padding: 1.35rem;
    }
}

@media (max-width: 575px) {
    .cta-block {
        padding: 1.35rem;
    }

    .feature-card,
    .highlight-card,
    .process-wrap {
        border-radius: var(--radius-md);
    }
}
