:root {
    --navy: #0d1c3d;
    --navy-hover: #162d63;
    --navy-deep: #07122b;
    --navy-mid: #0b192c;
    --sky: #eef7fd;
    --sky-soft: #f8fbff;
    --sky-mid: #dceefa;
    --blue: #3d72fc;
    --sky-blue: #5cb0e9;
    --gold: #ffd25d;
    --gold-dark: #e8a317;
    --gradient-brand: linear-gradient(135deg, #5cb0e9 0%, #3d72fc 100%);
    --gradient-hero: #000000;
    --gradient-light: linear-gradient(180deg, #f8fbff 0%, #eef7fd 55%, #e4f0fa 100%);
    --gradient-dark: linear-gradient(180deg, #0b192c 0%, #07122b 55%, #0d1c3d 100%);
    --gradient-cta: linear-gradient(135deg, #eef7fd 0%, #dceefa 50%, #c8e4f7 100%);
    --gradient-footer: linear-gradient(165deg, #12325c 0%, #0f2a4f 38%, #153a6b 72%, #0e2647 100%);
    --text-on-dark: #ffffff;
    --text-on-dark-muted: #a8b4c4;
    --text-on-light: #0d1c3d;
    --text-on-light-muted: #4a5f7a;
    --border-on-dark: rgba(255, 255, 255, 0.1);
    --border-on-light: rgba(13, 28, 61, 0.1);
    --shadow-soft: 0 8px 32px rgba(13, 28, 61, 0.08);
    --shadow-card: 0 4px 24px rgba(13, 28, 61, 0.07);
    --shadow-navy: rgba(13, 28, 61, 0.28);
    --glow-blue: rgba(61, 114, 252, 0.28);
    --glow-sky: rgba(92, 176, 233, 0.18);
}
/* =========================
    HEADER + NAV
==========================*/
.site-logo img {
    width: 167px;
    height: 51px;
    object-fit: contain;
    display: none;
}

.site-logo .site-logo-white {
    display: inline-block;
}

.site-header.scrolled .site-logo-white {
    display: none;
}

.site-header.scrolled .site-logo-blue {
    display: inline-block;
}
.site-header {
    position: sticky;
    inset-inline: 0;
    top: 0;
    z-index: 999;
    background: linear-gradient(180deg, #f8fbff 0%, #eef7fd 55%, #e4f0fa 100%);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-on-light);
    box-shadow: 0 4px 24px rgba(13, 28, 61, 0.06);
}

.site-header-inner {
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.site-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--navy);
}

.site-logo span {
    color: var(--navy);
    background: none;
    -webkit-text-fill-color: var(--navy);
}

.site-header:not(.scrolled) .site-logo span {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.98rem;
}

.nav-links a {
    color: var(--navy);
    padding-block: 4px;
    position: relative;
    transition: color 0.2s ease;
    /*opacity: 0.8;*/
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5cb0e9 0%, #3d72fc 100%);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy);
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav .btn-cta {
    font-size: 0.95rem;
}

.site-header:not(.scrolled) .nav-links > a {
    color: #0d1c3d;
}

.site-header:not(.scrolled) .nav-links > a:hover {
    color: #0d1c3d;
}

.site-header:not(.scrolled) .nav-links > a::after {
    background: #0d1c3d;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--navy);
    padding-block: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /*opacity: 0.8;*/
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav-dropdown-toggle i {
    font-size: 0.62rem;
    transition: transform 0.2s ease;
}

.site-header:not(.scrolled) .nav-dropdown-toggle {
    color: #0d1c3d;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
    opacity: 1;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(13, 28, 61, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #5cb0e9 0%, #3d72fc 100%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.94rem;
    color: var(--navy);
    opacity: 1;
    white-space: nowrap;
    transition:
        background 0.18s ease,
        color 0.18s ease;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: #dceefa;
    color: #07122b;
}

.mobile-nav-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin: 18px 0 8px;
}

.mobile-nav-sub {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-sub a {
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    padding: 10px 0 10px 12px !important;
    border-bottom: none !important;
    color: rgba(255, 255, 255, 0.62) !important;
}

.mobile-nav-sub a:hover {
    color: #fff !important;
    padding-left: 18px !important;
}

/* =========================
           CTA BUTTON SYSTEM
        ==========================*/

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.14s ease,
        box-shadow 0.14s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
    white-space: nowrap;
}

.btn-cta-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(61, 114, 252, 0.35);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #6ec0f5 0%, #5280ff 100%);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(61, 114, 252, 0.45);
    color: #ffffff;
}

.btn-cta-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px var(--shadow-navy);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-cta-outline:hover {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    transform: translateY(-1px);
}

.btn-cta-outline:active {
    transform: translateY(0);
}

.btn-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

.btn-cta-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}
.site-footer {
    background: radial-gradient(ellipse 70% 55% at 12% 0%, rgba(92, 176, 233, 0.22) 0%, transparent 58%),
        radial-gradient(ellipse 60% 50% at 88% 100%, rgba(61, 114, 252, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse 45% 40% at 50% 50%, rgba(255, 210, 93, 0.04) 0%, transparent 60%),
        var(--gradient-footer);
    margin-top: 50px;
    padding: 4.5rem 0 2rem;
    color: rgba(238, 247, 253, 0.96);
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(92, 176, 233, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 176, 233, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: 0.7;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(92, 176, 233, 0.65),
        rgba(61, 114, 252, 0.75),
        rgba(255, 210, 93, 0.35),
        transparent
    );
    pointer-events: none;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.footer-glow--left {
    width: 480px;
    height: 480px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(61, 114, 252, 0.32) 0%, transparent 68%);
}

.footer-glow--right {
    width: 420px;
    height: 420px;
    bottom: -60px;
    right: -40px;
    background: radial-gradient(circle, rgba(92, 176, 233, 0.28) 0%, transparent 68%);
}

.footer-inner {
    margin: 0 auto;
    padding-inline: 24px;
    position: relative;
    z-index: 1;
}

.site-footer > .container > .footer-inner > .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
}

.site-footer > .container > .footer-inner > .row > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
}

.footer-main-title {
    font-size: clamp(1.7rem, 2.5vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-on-light);
}

.footer-main-copy {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-on-light-muted);
    margin-bottom: 18px;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.footer-cta-buttons .btn-cta-outline {
    background: #ffffff;
    color: var(--navy);
    border-color: var(--navy);
    border-width: 1.5px;
}

.footer-cta-buttons .btn-cta-outline:hover {
    background: var(--navy);
    color: #ffffff;
}

.closing-cta-section .btn-cta-primary {
    background: var(--navy);
    box-shadow: 0 8px 24px var(--shadow-navy);
}

.closing-cta-section .btn-cta-primary:hover {
    background: var(--navy-hover);
    box-shadow: 0 12px 32px var(--shadow-navy);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: min(200px, 100%);
    height: auto;
    display: block;
    filter: brightness(1.05);
}

.footer-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 0.75rem;
    max-width: 280px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(220, 234, 250, 0.92);
    margin: 0 0 1.5rem;
    max-width: 310px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(92, 176, 233, 0.35);
    background: linear-gradient(145deg, rgba(92, 176, 233, 0.18) 0%, rgba(61, 114, 252, 0.12) 100%);
    color: #eef7fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social a:hover {
    color: #fff;
    background: linear-gradient(145deg, rgba(92, 176, 233, 0.32) 0%, rgba(61, 114, 252, 0.24) 100%);
    border-color: rgba(125, 196, 245, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(61, 114, 252, 0.28);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #8ecbf5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading::after {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient-brand);
    opacity: 0.85;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 7px 0;
    font-size: 0.92rem;
    color: rgba(238, 247, 253, 0.9);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(238, 247, 253, 0.9);
}

.footer-contact-item a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(92, 176, 233, 0.28) 0%, rgba(61, 114, 252, 0.18) 100%);
    border: 1px solid rgba(125, 196, 245, 0.4);
    color: #b8e0fb;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(61, 114, 252, 0.15);
}

.footer-newsletter-card {
    background: linear-gradient(
        155deg,
        rgba(92, 176, 233, 0.16) 0%,
        rgba(61, 114, 252, 0.1) 55%,
        rgba(255, 255, 255, 0.06) 100%
    );
    border: 1px solid rgba(125, 196, 245, 0.32);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(14px);
    box-shadow:
        0 20px 50px rgba(8, 20, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    height: 100%;
}

.footer-newsletter-card .footer-heading {
    color: #fff;
    justify-content: center;
    text-align: center;
}

.footer-newsletter-card .footer-heading::after {
    display: none;
}

.footer-newsletter-card .footer-cta-copy {
    text-align: center;
}

.footer-cta-copy {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(220, 234, 250, 0.92);
    margin-bottom: 1.25rem;
}

.footer-divider {
    height: 1px;
    margin: 2.75rem 0 1.5rem;
    background: linear-gradient(90deg, transparent, rgba(92, 176, 233, 0.28), rgba(61, 114, 252, 0.28), transparent);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.footer-newsletter input {
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(13, 28, 61, 0.4);
    color: #eef7fd;
    font-size: 0.9rem;
    padding: 0 14px;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(226, 232, 240, 0.66);
}

.footer-newsletter input:focus {
    border-color: rgba(238, 247, 253, 0.58);
}

.footer-newsletter .btn-cta {
    width: 100%;
    min-height: 46px;
}

.footer-newsletter-trigger {
    margin-top: 4px;
}

/* Bootstrap newsletter modal â€” brand overrides */
/* Bootstrap newsletter modal — shell + brand overrides
           (shell keeps layout correct even before full Bootstrap CSS paints) */
#newsletterModal.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
#newsletterModal.modal.show {
    display: block;
}
#newsletterModal .modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 500px;
    pointer-events: none;
}
#newsletterModal.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
#newsletterModal.modal.show .modal-dialog {
    transform: none;
}
#newsletterModal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}
#newsletterModal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: #eef7fd;
    color: #0d1c3d;
    border: none;
    border-radius: 16px;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
body.modal-open {
    overflow: hidden;
}

#newsletterModal .modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(13, 28, 61, 0.1);
    padding: 22px 24px 12px;
}

#newsletterModal .modal-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0d1c3d;
    margin: 0;
}

#newsletterModal .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    color: #000;
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.7;
    cursor: pointer;
}

#newsletterModal .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 8px 24px 24px;
}

#newsletterModal .modal-copy {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(13, 28, 61, 0.82);
    margin-bottom: 18px;
}

#newsletterModal .footer-newsletter,
#newsletterModal .newsletter-form {
    display: grid;
    gap: 12px;
}

#newsletterModal .footer-newsletter input,
#newsletterModal .newsletter-form .email-input-field,
#newsletterModal .newsletter-form .form-control {
    display: block;
    width: 100%;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(13, 28, 61, 0.22);
    background: #fff;
    color: #0d1c3d;
    font-size: 0.9rem;
    padding: 0 14px;
    box-sizing: border-box;
}

#newsletterModal .footer-newsletter input::placeholder,
#newsletterModal .newsletter-form input::placeholder {
    color: rgba(13, 28, 61, 0.5);
}

#newsletterModal .footer-newsletter input:focus,
#newsletterModal .newsletter-form input:focus {
    border-color: #0d1c3d;
    box-shadow: 0 0 0 0.2rem rgba(13, 28, 61, 0.12);
    outline: 0;
}

#newsletterModal .footer-newsletter .btn-cta,
#newsletterModal .newsletter-form .btn-cta {
    width: 100%;
    min-height: 46px;
}

#newsletterModal .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#newsletterModal .form-check-input {
    flex-shrink: 0;
    margin-top: 3px;
}

.grecaptcha-badge {
    z-index: 11000 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 0.82rem;
    color: rgba(184, 210, 235, 0.95);
}

.footer-meta-right {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-meta-right a {
    color: inherit;
    transition: color 0.2s ease;
    position: relative;
}

.footer-meta-right a:hover {
    color: #fff;
}

.footer-meta-right a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.5);
    transform: translateY(-50%);
}
/* =========================
           HAMBURGER BUTTON
        ==========================*/

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border: 1px solid rgba(13, 28, 61, 0.22);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.hamburger:hover {
    background: rgba(13, 28, 61, 0.07);
    border-color: rgba(13, 28, 61, 0.45);
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #0d1c3d;
    transform-origin: center;
    transition:
        transform 0.28s ease,
        opacity 0.22s ease,
        width 0.22s ease;
}

.site-header:not(.scrolled) .hamburger {
    border-color: rgba(255, 255, 255, 0.45);
}

.site-header:not(.scrolled) .hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.site-header:not(.scrolled) .hamburger-bar {
    background: #ffffff;
}

.hamburger.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
           MOBILE DRAWER
        ==========================*/

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-height: 100dvh;
    background: radial-gradient(circle at top left, var(--glow-blue), transparent 55%),
        radial-gradient(circle at bottom right, var(--glow-sky), transparent 55%), rgba(3, 3, 10, 0.97);
    backdrop-filter: blur(22px);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.mobile-drawer-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 100px 32px 40px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.72);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        color 0.18s ease,
        padding-left 0.18s ease;
}

.mobile-nav-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.mobile-drawer-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-drawer-cta .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
}

.mobile-drawer-footer {
    margin-top: 32px;
    padding-top: 8px;
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.7);
}

.btn-cta-primary.footer-newsletter-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    cursor: pointer;
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 8px 28px rgba(61, 114, 252, 0.35);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
    white-space: nowrap;
}

.btn-cta-primary.footer-newsletter-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(61, 114, 252, 0.45);
    filter: brightness(1.05);
    color: #fff;
}

@media (max-width: 1399.98px) {
    .nav-links a {
        font-size: 13px;
    }
}
@media (max-width: 1200px) {
    .site-header-inner {
        max-width: 100%;
        padding: 14px 20px;
    }
    .mobile-drawer {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .site-header-inner {
        padding: 12px 18px;
        gap: 16px;
    }

    .site-logo img {
        width: 128px;
        height: auto;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta-wrap .btn-cta-primary {
        display: none !important;
    }
}
@media (max-width: 991.98px) {
    .site-header-inner {
        padding-block: 10px;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        padding: 3.5rem 0 1.75rem;
    }
}
@media (max-width: 767.98px) {
    .footer-cta-buttons {
        justify-content: center;
    }
}
@media (max-width: 575.98px) {
    .footer-main-title {
        font-size: 1.6rem;
    }

    .footer-newsletter-card {
        padding: 1.35rem;
    }
    header {
        padding: 0 16px;
    }

    .site-header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-logo {
        font-size: 1rem;
    }
    .site-header {
        padding: 0 0;
    }
    .site-header-inner {
        padding: 12px 0;
    }
}
@media (max-width: 400.98px) {
    .footer-inner {
        padding-inline: 0;
    }
    .footer-main-copy {
        font-size: 12px;
        line-height: normal;
    }
    .footer-main-title {
        font-size: 16px;
    }
}