:root {
    --hjm-primary: #0a4fa3;
    --hjm-primary-dark: #083c7b;
    --hjm-accent: #0f6bdc;
    --hjm-bg-soft: #f3f8ff;
    --hjm-text: #0f1b2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--hjm-text);
    background: #ffffff;
}

.hjm-navbar {
    background: rgba(7, 39, 84, 0.94);
    backdrop-filter: blur(8px);
}

.navbar-logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.hjm-navbar .nav-link {
    color: #dbe8ff;
}

.hjm-navbar .nav-link:hover,
.hjm-navbar .nav-link:focus {
    color: #ffffff;
}

.btn-login {
    background: #ffffff;
    color: var(--hjm-primary-dark);
    border-radius: 999px;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
}

.btn-login:hover {
    background: #dce9ff;
    color: var(--hjm-primary-dark);
}

.hero-section {
    background: radial-gradient(circle at 15% 20%, #2f78df 0%, #0d4e9e 40%, #062c5c 100%);
    color: #ffffff;
    padding: 9rem 0 6rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.55rem 0.85rem;
}

.hero-text {
    color: #d9e9ff;
    max-width: 60ch;
}

.hero-card {
    background: rgba(7, 33, 69, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: -2.3rem;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    position: relative;
    z-index: 2;
}

.hero-card-header {
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-card li {
    margin-bottom: 0.7rem;
}

.hero-card i {
    margin-right: 0.45rem;
    color: #8cd1ff;
}

.hero-visual-wrap {
    position: relative;
}

.hero-visual {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 45px rgba(3, 12, 32, 0.38);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: #44566f;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #dce8f8;
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 10px 24px rgba(10, 79, 163, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(10, 79, 163, 0.12);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #ffffff;
    background: linear-gradient(145deg, var(--hjm-accent), var(--hjm-primary));
}

.contact-list p {
    margin-bottom: 0.65rem;
}

.contact-list i {
    color: var(--hjm-primary);
    margin-right: 0.5rem;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #dce8f8;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(10, 79, 163, 0.08);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    background: #071f42;
    color: #d4e2fb;
    padding: 1.25rem 0;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #0a2348;
    color: #ffffff;
    padding: 0.9rem 0;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.2);
}

.privacy-page {
    background: var(--hjm-bg-soft);
}

.privacy-card {
    max-width: 860px;
    background: #ffffff;
    border: 1px solid #dce8f8;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 24px rgba(10, 79, 163, 0.08);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 7.5rem;
    }

    .navbar-logo {
        height: 36px;
    }

    .hero-card {
        margin-top: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .privacy-card {
        padding: 1.25rem;
    }
}
