:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --soft-blue: #e9f2ff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-main);
    background-color: #f8fbff;
}

.top-strip {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: min(200px, 45vw);
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background-color: #eef4ff;
}

.hero-section {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, #deebff, #ffffff 55%);
}

.hero-section h1 {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.hero-punchline {
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.hero-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.12);
    border: 1px solid #dbeafe;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(13, 110, 253, 0.16);
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background-color: #eff6ff;
    color: #1e40af;
    font-weight: 600;
    transition: all 0.25s ease;
}

.value-chip:hover {
    background-color: #dbeafe;
    border-color: #93c5fd;
}

.value-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.hero-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text-muted);
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.section-space {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.7rem, 2.2vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.bg-soft-primary {
    background: var(--soft-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-box {
    background: var(--white);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 1.1rem;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(13, 110, 253, 0.14);
    border-color: #93c5fd;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    background: #eaf2ff;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.stat-box:hover .stat-icon {
    background: #dbeafe;
    transform: scale(1.05);
}

.stat-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #dbeafe;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: #eaf2ff;
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(13, 110, 253, 0.14);
    border-color: #93c5fd;
    background-color: #f7fbff;
}

.feature-card:hover .feature-icon {
    background: #dbeafe;
    color: var(--primary);
    transform: scale(1.05);
}

.feature-card h5 {
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

.cta-section {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.contact-box,
.contact-form {
    background: var(--white);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-box:hover,
.contact-form:hover {
    transform: translateY(-3px);
    border-color: #93c5fd;
    box-shadow: 0 14px 26px rgba(13, 110, 253, 0.14);
}

.form-control {
    border: 1px solid #cbd5e1;
}

.form-control:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

.contact-box h6 {
    margin-top: 0.8rem;
    margin-bottom: 0.25rem;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
}

.footer {
    background: #0b2446;
    color: #d8e4ff;
}

.footer a {
    color: #d8e4ff;
    text-decoration: none;
    margin-left: 1rem;
}

.footer a:hover {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }

    .navbar-logo {
        height: 34px;
        max-width: 170px;
    }
}

@media (max-width: 767.98px) {
    .top-strip .container {
        justify-content: center !important;
    }

    .top-strip .btn {
        width: 100%;
        max-width: 320px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-space {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 2.75rem 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .value-chip {
        width: 100%;
        border-radius: 14px;
        align-items: flex-start;
        line-height: 1.35;
    }

    .value-icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-section .btn-lg {
        width: 100%;
    }

    .hero-card {
        padding: 1.1rem !important;
    }

    .navbar-logo {
        height: 30px;
        max-width: 150px;
    }

    .footer a {
        margin-left: 0;
        margin-right: 0.7rem;
    }

    .contact-items {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .top-strip {
        display: none;
    }

    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-toggler {
        padding: 0.28rem 0.45rem;
    }

    .hero-section .btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
