/* ============================================================
   UI Medical Marketing — Global Design System
   ============================================================ */

/* ── CSS Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: balance;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

/* ── Root Variables ──────────────────────────────────────────── */
:root {
    /* Brand palette */
    --blue: #0038D0;
    --blue-deep: #002CA6;
    --cyan: #009DDC;
    --blue-light: #DEEBF8;
    --navy: #0A1A3A;
    --navy-2: #0E2350;
    --ink: #1E293B;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E6ECF3;
    --gray-300: #D5DEEA;
    --gray-500: #64748B;
    --gray-600: #52617A;

    /* Accent — Royal Blue (default) */
    --accent: #0038D0;
    --accent-2: #009DDC;

    /* Layout */
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 26px;
    --sec-pad: 128px;
    --max: 1240px;

    /* Typography */
    --font-head: "Schibsted Grotesk", system-ui, sans-serif;
    --font-body: "Hanken Grotesk", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;

    /* Shadows */
    --sh-sm: 0 1px 2px rgba(10, 26, 58, .06), 0 1px 1px rgba(10, 26, 58, .04);
    --sh-md: 0 4px 14px rgba(10, 26, 58, .07), 0 1px 3px rgba(10, 26, 58, .05);
    --sh-lg: 0 18px 48px -12px rgba(10, 26, 58, .16), 0 6px 18px -8px rgba(10, 26, 58, .10);
    --sh-xl: 0 40px 80px -24px rgba(10, 26, 58, .28), 0 12px 32px -12px rgba(10, 26, 58, .16);
    --sh-blue: 0 18px 40px -12px rgba(0, 56, 208, .42);
}

/* ── Layout Utilities ─────────────────────────────────────────── */
.wrap {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding-top: var(--sec-pad);
    padding-bottom: var(--sec-pad);
    position: relative;
}

.bg-tint {
    background: var(--gray-50);
}

.bg-tint-blue {
    background: linear-gradient(180deg, var(--blue-light), #EFF5FC 60%, #FFFFFF);
}

@media (max-width: 1080px) {
    :root {
        --sec-pad: 96px;
    }
}

@media (max-width: 620px) {
    :root {
        --sec-pad: 72px;
    }

    .wrap {
        padding: 0 20px;
    }
}

/* ── Typography Utilities ──────────────────────────────────────── */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
}

.eyebrow--center {
    justify-content: center;
}

.sec-head {
    max-width: 900px;
}

.sec-head.center {
    margin: 0 auto;
    text-align: center;
}

.sec-head h2 {
    font-size: clamp(25px, 3vw, 38px);
    margin-top: 20px;
}

.sec-head p {
    margin-top: 20px;
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -0.01em;
    padding: 15px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s, background .2s, color .2s;
    white-space: nowrap;
}

.btn .icon {
    width: 17px;
    height: 17px;
}

.btn--primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: var(--sh-blue);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px -12px rgba(0, 56, 208, .55);
}

.btn--ghost {
    background: #FFFFFF;
    color: var(--navy);
    border-color: var(--gray-300);
    box-shadow: var(--sh-sm);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--light {
    background: rgba(255, 255, 255, .12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(6px);
}

.btn--light:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.btn--white {
    background: #FFFFFF;
    color: var(--blue);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

.btn--lg {
    padding: 18px 34px;
    font-size: 16.5px;
}

/* ── Link Arrow ───────────────────────────────────────────────── */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: var(--accent);
}

.link-arrow .icon {
    width: 16px;
    height: 16px;
    transition: transform .25s;
}

.link-arrow:hover .icon {
    transform: translateX(4px);
}

/* ── Navigation Button (shared: testimonials nav + header mobile) */
.tnav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    display: grid;
    place-items: center;
    color: var(--navy);
    transition: all .2s;
    box-shadow: var(--sh-sm);
}

.tnav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.tnav-btn .icon {
    width: 18px;
    height: 18px;
}


/* ── Photo Placeholder ─────────────────────────────────────── */
.ph {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        repeating-linear-gradient(135deg, var(--gray-100) 0 14px, var(--gray-50) 14px 28px);
    border: 1px solid var(--gray-200);
    display: grid;
    place-items: center;
    min-height: 200px;
}

.ph_label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: .05em;
    text-align: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .7);
    border-radius: 999px;
    border: 1px solid var(--gray-200);
}

/* ── SVG Icon Sprite Container ──────────────────────────────── */
.icon_sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
    transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}

.reveal.pending {
    opacity: 0;
    transform: translateY(28px);
    transition: none;
}

.reveal.d1 {
    transition-delay: .07s;
}

.reveal.d2 {
    transition-delay: .14s;
}

.reveal.d3 {
    transition-delay: .21s;
}

.reveal.d4 {
    transition-delay: .28s;
}

/* Frozen/throttled: jump to final state */
body.no-anim .reveal {
    transition: none !important;
}

body.no-anim .reveal.pending {
    opacity: 1 !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.pending {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Visibility Utility ─────────────────────────────────────── */
.hidden {
    display: none !important;
}

/* ── Shared Float Animation ────────────────────────────────── */
.float-anim {
    animation: floaty 6s ease-in-out infinite;
}

.float-anim.b {
    animation-delay: -3s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .float-anim {
        animation: none;
    }
}



/* ============================================================
   SITE HEADER
   ============================================================ */

/* ── Shell ──────────────────────────────────────────────────── */
.site_header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.site_header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-color: var(--gray-200);
    box-shadow: 0 2px 24px -8px rgba(10, 26, 58, .12);
}

/* ── Nav row ─────────────────────────────────────────────────── */
.site_nav {
    display: flex;
    align-items: center;
    height: 80px;
    transition: height .3s;
}

.site_header.scrolled .site_nav {
    height: 68px;
}

/* ── Brand ───────────────────────────────────────────────────── */
.nav_brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 38px;
    text-decoration: none;
}

.nav_brand svg {
    height: 100%;
    width: auto;
}

/* ── Desktop nav list ────────────────────────────────────────── */
.nav_list {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    gap: 2px;
    height: 100%;
}

.nav_item {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Nav link / trigger ──────────────────────────────────────── */
.nav_link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    padding: 8px 13px;
    border-radius: 999px;
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
    transition: color .18s, background .18s;
}

.nav_link:hover {
    color: var(--blue);
    background: rgba(0, 56, 208, .06);
}

.nav_link.is-active {
    color: var(--blue);
    font-weight: 600;
}

.nav_item--drop.is-active > .nav_trigger {
    color: var(--blue);
    font-weight: 600;
}

.nav_item--drop.is-open > .nav_trigger {
    color: var(--blue);
    background: rgba(0, 56, 208, .06);
}

/* ── Chevron ────────────────────────────────────────────────── */
.nav_chev {
    flex-shrink: 0;
    opacity: .55;
    transition: transform .2s ease, opacity .2s;
}

.nav_item--drop.is-open > .nav_trigger .nav_chev {
    transform: rotate(180deg);
    opacity: .9;
}

/* ── Desktop CTA ─────────────────────────────────────────────── */
.nav_cta {
    margin-left: 18px;
    flex-shrink: 0;
    font-size: 14.5px;
    padding: 13px 22px;
}

/* ── Dropdown panel ──────────────────────────────────────────── */
.nav_panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px) scale(.98);
    min-width: 260px;
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--sh-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity .17s ease, transform .17s ease;
    z-index: 200;
}

.nav_panel--wide {
    min-width: 580px;
    left: 0;
    transform: translateY(-6px) scale(.98);
}

.nav_item--drop-right .nav_panel--wide {
    left: auto;
    right: 0;
}

.nav_panel--center {
    /* stays centered via default translateX(-50%) */
}

.nav_panel--sm {
    min-width: 230px;
}

/* Open states */
.nav_item--drop.is-open .nav_panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav_item--drop.is-open .nav_panel--wide {
    transform: translateY(0) scale(1);
}

/* ── Panel inner ─────────────────────────────────────────────── */
.nav_panel_inner {
    padding: 22px 22px 20px;
}

.nav_panel_head {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
}

.nav_panel_title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
}

.nav_panel_tagline {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ── Panel grid (2 cols for large menus) ───────────────────── */
.nav_panel_grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
}

/* ── Panel list (1 col) ─────────────────────────────────────── */
.nav_panel_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Panel link ─────────────────────────────────────────────── */
.nav_panel_link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background .14s, color .14s;
    line-height: 1.3;
}

.nav_panel_link:hover {
    background: var(--gray-50);
    color: var(--blue);
}

.nav_panel_link.is-active {
    color: var(--blue);
    font-weight: 600;
    background: rgba(0, 56, 208, .05);
}

.nav_panel_arr {
    display: flex;
    flex-shrink: 0;
    color: var(--blue);
    opacity: 0;
    transition: opacity .14s, transform .14s;
}

.nav_panel_link:hover .nav_panel_arr,
.nav_panel_link.is-active .nav_panel_arr {
    opacity: 1;
    transform: translateX(2px);
}

/* ── Hamburger ───────────────────────────────────────────────── */
.nav_burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.nav_burger:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.nav_burger_bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 999px;
    transform-origin: center;
    transition: transform .26s cubic-bezier(.4, 0, .2, 1),
                opacity .26s,
                width .26s;
}

.nav_burger.is-open .nav_burger_bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav_burger.is-open .nav_burger_bar:nth-child(2) { opacity: 0; width: 0; }
.nav_burger.is-open .nav_burger_bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ───────────────────────────────────────────── */
.nav_drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 100vw);
    background: #FFFFFF;
    z-index: 300;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -24px 0 64px rgba(10, 26, 58, .18);
    overflow: hidden;
}

.nav_drawer.is-open {
    transform: translateX(0);
}

/* ── Drawer header ───────────────────────────────────────────── */
.nav_drawer_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.nav_drawer_brand {
    height: 30px;
}

.nav_drawer_brand svg {
    height: 100%;
    width: auto;
}

.nav_drawer_close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: grid;
    place-items: center;
    color: var(--navy);
    cursor: pointer;
    transition: background .18s;
    flex-shrink: 0;
}

.nav_drawer_close:hover {
    background: var(--gray-100);
}

/* ── Drawer nav ──────────────────────────────────────────────── */
.nav_drawer_nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav_drawer_list {
    list-style: none;
    padding: 12px 14px 0;
    margin: 0;
    flex: 1;
}

.nav_drawer_item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2px;
}

/* ── Drawer direct links ─────────────────────────────────────── */
.nav_drawer_link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-radius: 12px;
    transition: background .15s, color .15s;
}

.nav_drawer_link:hover,
.nav_drawer_link.is-active {
    background: var(--gray-50);
    color: var(--blue);
}

.nav_drawer_link.is-active {
    font-weight: 600;
}

/* ── Drawer accordion trigger ────────────────────────────────── */
.nav_drawer_trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    text-align: left;
    transition: background .15s, color .15s;
}

.nav_drawer_trigger:hover {
    background: var(--gray-50);
}

.nav_drawer_item--acc.is-open .nav_drawer_trigger {
    color: var(--blue);
    background: rgba(0, 56, 208, .05);
    border-radius: 12px 12px 0 0;
}

/* ── Drawer chevron ──────────────────────────────────────────── */
.nav_drawer_chev {
    flex-shrink: 0;
    opacity: .5;
    transition: transform .22s ease, opacity .22s;
}

.nav_drawer_item--acc.is-open .nav_drawer_chev {
    transform: rotate(180deg);
    opacity: .9;
}

/* ── Drawer accordion sub (CSS grid trick for smooth animation) ─ */
.nav_drawer_sub_wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s cubic-bezier(.4, 0, .2, 1);
}

.nav_drawer_item--acc.is-open .nav_drawer_sub_wrap {
    grid-template-rows: 1fr;
}

.nav_drawer_sub {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    min-height: 0;
    background: var(--gray-50);
    border-radius: 0 0 12px 12px;
}

.nav_drawer_sub_link {
    display: flex;
    align-items: center;
    padding: 10px 16px 10px 30px;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--gray-600);
    text-decoration: none;
    transition: background .14s, color .14s;
}

.nav_drawer_sub_link:hover,
.nav_drawer_sub_link.is-active {
    color: var(--blue);
    background: rgba(0, 56, 208, .05);
}

.nav_drawer_sub_link.is-active {
    font-weight: 600;
}

.nav_drawer_sub li:last-child .nav_drawer_sub_link {
    padding-bottom: 14px;
}

/* ── Drawer footer CTA ───────────────────────────────────────── */
.nav_drawer_footer {
    padding: 18px 22px 24px;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.nav_drawer_footer .btn {
    width: 100%;
    justify-content: center;
}

/* ── Mobile overlay ──────────────────────────────────────────── */
.nav_overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 58, .48);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s;
}

.nav_overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1140px) {
    .nav_link {
        font-size: 14px;
        padding: 8px 10px;
    }

    .nav_cta {
        margin-left: 12px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .nav_list,
    .nav_cta {
        display: none;
    }

    .nav_burger {
        display: flex;
    }
}



/* ============================================================
   SITE FOOTER
   ============================================================ */

/* ── Footer shell ──────────────────────────────────────────── */
.site_footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .6);
}

/* ── Grid ──────────────────────────────────────────────────── */
.site_footer .footer_top {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1.1fr 1.15fr;
    gap: 40px 52px;
    padding: 64px 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ── Brand column ──────────────────────────────────────────── */
.site_footer .brand {
    display: block;
    height: 54px;
    margin-bottom: 20px;
}

.site_footer .brand svg {
    height: 100%;
    width: auto;
}

.site_footer .footer_about {
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 26px;
    max-width: 300px;
    color: rgba(255, 255, 255, .55);
}

.site_footer .footer_social {
    display: flex;
    gap: 10px;
}

.site_footer .footer_social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .7);
    transition: background .2s, border-color .2s, color .2s, transform .18s;
}

.site_footer .footer_social a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.site_footer .footer_social .icon {
    width: 18px;
    height: 18px;
}

/* ── Nav columns ───────────────────────────────────────────── */
.site_footer .footer_col {
    padding-top: 2px;
}

.site_footer .footer_col h4 {
    color: #FFFFFF;
    font-size: 11px;
    letter-spacing: .1em;
    margin-bottom: 22px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
}

.site_footer .footer_col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    border-radius: 2px;
}

.site_footer .footer_col a {
    width: fit-content;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 5.5px 0;
    color: rgba(255, 255, 255, .58);
    line-height: 1.4;
    transition: color .18s;
    position: relative;
}

.site_footer .footer_col a::before {
    content: '→';
    font-size: 11px;
    color: var(--cyan);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    margin-right: 0;
    transition: max-width .2s, opacity .2s, margin-right .2s;
}

.site_footer .footer_col a:hover {
    color: #FFFFFF;
}

.site_footer .footer_col a:hover::before {
    opacity: 1;
    max-width: 14px;
    margin-right: 6px;
}

/* ── Bottom bar ────────────────────────────────────────────── */
.site_footer .footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.site_footer .footer_copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
}

.site_footer .footer_location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
}

.site_footer .footer_location .icon {
    width: 13px;
    height: 13px;
    color: var(--cyan);
    flex-shrink: 0;
    display: block;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
    .site_footer .footer_top {
        grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
        gap: 40px 36px;
    }
}

@media (max-width: 920px) {
    .site_footer .footer_top {
        grid-template-columns: 1fr 1fr;
        gap: 48px 32px;
        padding: 52px 0 48px;
    }

    .site_footer .footer_col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site_footer .footer_col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site_footer .footer_col a::before {
        display: none;
    }

    .site_footer .footer_bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .site_footer .footer_top {
        grid-template-columns: 1fr;
        padding: 44px 0 40px;
    }

    .site_footer .brand {
        margin: 0 auto 20px;
    }

    .site_footer .footer_about {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .site_footer .footer_social {
        justify-content: center;
    }
}