:root {
    --brand: #0d6efd;
    --brand-dark: #0a58ca;
    --ink: #1c2434;
    --muted: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 74px;
}

main {
    flex: 1 0 auto;
}

/* ---------- Navbar ---------- */
.site-header .navbar {
    background: rgba(255, 255, 255, 0.97) !important;
}

.site-header .nav-link {
    font-weight: 500;
    color: var(--ink);
    padding: 0.5rem 1rem;
}

.site-header .nav-link.active {
    color: var(--brand);
    font-weight: 600;
}

.site-header .nav-link:hover {
    color: var(--brand);
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, #0d2b5b 0%, #0b5ed7 55%, #0d6efd 100%);
    min-height: 520px;
}

.hero .badge {
    border-radius: 50rem;
}

/* ---------- Feature cards ---------- */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e7f1ff;
    color: var(--brand);
    font-size: 1.5rem;
    line-height: 1;
}

.feature-card {
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08) !important;
}

/* ---------- Pricing ---------- */
.pricing-popular {
    border: 2px solid var(--brand) !important;
    box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.15) !important;
}

.product-description {
    color: var(--muted);
    line-height: 1.8;
    max-width: 860px;
}

/* ---------- Page header (sub pages) ---------- */
.page-header {
    background: linear-gradient(135deg, #0d2b5b 0%, #0b5ed7 100%);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(135deg, #0d2b5b 0%, #0b5ed7 100%);
}

/* ---------- Contact ---------- */
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-right: 0.9rem;
    border-radius: 12px;
    background: #e7f1ff;
    color: var(--brand);
    font-size: 1.15rem;
    line-height: 1;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0f172a !important;
}

.hover-white:hover {
    color: #ffffff !important;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
    background: var(--brand);
    color: #ffffff;
}

/* ---------- Misc ---------- */
@media (max-width: 991.98px) {
    .navbar-nav .btn {
        margin-top: 0.5rem;
    }
}
