:root {
    /* LOGO COLORS */
    --brand-blue: #2f3b9a;
    --brand-red: #e52325;
    --brand-orange: #d56b2b;
    --brand-white: #ffffff;

    /* UI */
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #f6f7fb;
    --card: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--bg);
}

/* Topbar */
.topbar {
    background: #0b1220;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.topbar a {
    color: #e5e7eb;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-link {
    font-weight: 600;
    color: #111827 !important;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    color: var(--brand-blue) !important;
    opacity: 1;
}

/* Buttons */
.btn-brand {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.btn-brand:hover {
    background: #26328a;
    border-color: #26328a;
    color: #fff;
}

.btn-accent {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.btn-accent:hover {
    background: #cc1f21;
    border-color: #cc1f21;
    color: #fff;
}

.btn-outline-brand {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline-brand:hover {
    background: var(--brand-blue);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    background:
        radial-gradient(1000px 400px at 20% 10%,
            rgba(47, 59, 154, 0.18),
            transparent 60%),
        radial-gradient(900px 420px at 80% 20%,
            rgba(229, 35, 37, 0.14),
            transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
    border-bottom: 1px solid var(--border);
}

.badge-soft {
    background: rgba(213, 107, 43, 0.12);
    color: #8a3f0f;
    border: 1px solid rgba(213, 107, 43, 0.25);
    font-weight: 700;
}

.hero h1 {
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.subtle {
    color: var(--muted);
}

/* Cards */
.card {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
}

.icon-pill i {
    font-size: 1.2rem;
    color: var(--brand-blue);
}

.section-title {
    letter-spacing: -0.01em;
}

.divider {
    width: 70px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            var(--brand-blue),
            var(--brand-red),
            var(--brand-orange));
}

/* Process */
.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 59, 154, 0.12);
    color: var(--brand-blue);
    font-weight: 800;
    border: 1px solid rgba(47, 59, 154, 0.18);
}

/* Testimonials */
.quote {
    font-size: 2rem;
    color: rgba(47, 59, 154, 0.25);
    line-height: 1;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    background: #fff;
}

/* Back to top */
#backToTop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: none;
    z-index: 9999;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

/* Small tweaks */
.list-check li {
    margin-bottom: 0.5rem;
}

.list-check i {
    color: var(--brand-red);
    margin-right: 0.5rem;
}

/* Anchor offset for sticky nav */
section {
    scroll-margin-top: 90px;
}