:root {
    --bg: #f4f7ff;
    --surface: #ffffff;
    --ink: #14213d;
    --muted: #60708f;
    --primary: #1f6feb;
    --primary-2: #255fda;
    --accent: #16a085;
    --ring: rgba(31, 111, 235, 0.2);
    --border: #d6e0f5;
    --shadow: 0 14px 34px rgba(20, 33, 61, 0.12);
}

* {
    box-sizing: border-box;
}

body.site-shell {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 10% 10%, #e8eeff 0, #f6f8ff 40%, #f9fbff 100%);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.45;
}

.orb-1 {
    width: 300px;
    height: 300px;
    right: -90px;
    top: -80px;
    background: #5f8dff;
}

.orb-2 {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -110px;
    background: #43d9b9;
}

.site-nav {
    background: rgba(15, 40, 88, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(15, 40, 88, 0.22);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff !important;
}

.navbar .nav-link {
    color: #d9e4ff !important;
    font-weight: 600;
    border-radius: 12px;
    padding: 8px 12px !important;
}

.navbar .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

.nav-cta {
    background: linear-gradient(135deg, #36c2ff, #1f6feb);
    color: #fff !important;
}

.hotline-pill {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-main {
    position: relative;
    z-index: 1;
}

.alert {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.hero-panel {
    background: linear-gradient(125deg, #0f3a86 0%, #1f6feb 45%, #2a9cff 100%);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 58, 134, 0.28);
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: rgba(238, 244, 255, 0.95);
    font-size: 1.03rem;
    max-width: 620px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    padding: 18px;
}

.hero-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-card ul {
    padding-left: 18px;
    margin: 0;
}

.hero-card li {
    margin-bottom: 7px;
}

.hero-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    padding: 8px 12px;
    min-width: 94px;
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 1.05rem;
}

.mini-stat span {
    font-size: 0.78rem;
    opacity: 0.95;
}

.sticker {
    position: absolute;
    font-weight: 800;
    font-size: 0.78rem;
    background: #fff;
    color: #1449a9;
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.sticker-left {
    top: 14px;
    left: 14px;
}

.sticker-right {
    top: 14px;
    right: 14px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 33, 61, 0.16);
}

.feature-card {
    position: relative;
}

.feature-badge {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e7f0ff, #d6ebff);
    color: #1f6feb;
    font-weight: 800;
}

.card-header {
    border-radius: 18px 18px 0 0 !important;
    border: 0;
}

.btn {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 10px 18px;
}

.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 20px rgba(31, 111, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(31, 111, 235, 0.36);
}

.btn-outline-primary {
    border: 1px solid #8cb6ff;
    color: #245fdd;
    background: rgba(255, 255, 255, 0.8);
}

.form-control,
.form-select,
input[type="text"],
input[type="tel"],
select,
textarea {
    border: 1px solid var(--border);
    border-radius: 12px;
    min-height: 46px;
    width: 100%;
    padding: 10px 12px;
}

.form-control:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #8cb6ff;
    box-shadow: 0 0 0 4px var(--ring);
    outline: 0;
}

.form-label {
    font-weight: 700;
    color: #203259;
}

.badge {
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
}

.site-footer {
    background: rgba(255, 255, 255, 0.66);
    border-top: 1px solid #dbe5fb;
}

.footer-link {
    color: #1a3e80;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.page-shell {
    max-width: 1120px;
}

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.page-title {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
}

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

.stat-tile {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(140deg, #ffffff, #eff4ff);
    border: 1px solid #dbe6ff;
    box-shadow: var(--shadow);
}

.stat-tile .label {
    color: #4f6289;
    font-weight: 700;
    font-size: 0.82rem;
}

.stat-tile .value {
    font-size: 1.65rem;
    font-weight: 800;
    color: #173970;
}

.panel-soft {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe6ff;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.list-clean {
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 992px) {
    .hero-panel {
        padding: 26px 20px;
    }

    .sticker {
        font-size: 0.68rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .site-nav {
        background: #0e2a5f;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        border-radius: 14px;
        background: rgba(8, 25, 60, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .navbar .nav-link {
        color: #f2f6ff !important;
    }

    .nav-cta {
        background: #ffffff;
        color: #123f9a !important;
    }

    .navbar-brand img {
        width: 34px;
        height: 34px;
    }

    .hero-panel {
        border-radius: 18px;
    }

    .hero-stats {
        gap: 8px;
    }

    .mini-stat {
        min-width: 82px;
        padding: 7px 9px;
    }

    .card {
        border-radius: 14px;
    }

    .grid-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .stat-tile {
        padding: 11px;
        border-radius: 12px;
    }

    .stat-tile .value {
        font-size: 1.28rem;
    }

    .page-title {
        font-size: 1.3rem;
    }
}

