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

:root {
    --blue: #1A6CF6;
    --blue-dark: #0D4FD6;
    --blue-light: #EBF2FF;
    --white: #FFFFFF;
    --gray-50: #F8FAFF;
    --gray-400: #8898C4;
    --gray-700: #2D3A5E;
    --text-dark: #0D1B3E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 108, 246, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #1A6CF6, #0A3BAA);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
}

.nav-cta {
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

/* FOOTER */
footer {
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid rgba(26, 108, 246, 0.08);
    background: white;
}

.footer-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-copy {
    font-size: 13px;
    color: var(--gray-400);
}

/* SHARED UTILS */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 108, 246, 0.08);
    border: 1px solid rgba(26, 108, 246, 0.18);
    color: var(--blue);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-sub {
    font-size: 15px;
    color: var(--gray-400);
    text-align: center;
    max-width: 420px;
    margin: 0 auto 64px;
    line-height: 1.65;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 17px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 8px 32px rgba(26, 108, 246, 0.28);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(26, 108, 246, 0.35);
}

@media (max-width: 700px) {
    nav {
        padding: 14px 20px;
    }

    footer {
        padding: 28px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}
