/* =========================================================
   HB GROUP
   GLOBAL VARIABLES
========================================================= */

:root {

    /* =========================================
       HB GROUP BRAND COLOURS
    ========================================= */

    --hb-black: #050505;
    --hb-black-deep: #000000;

    --hb-dark: #0a0a0c;
    --hb-dark-soft: #111216;
    --hb-dark-card: #15161a;

    /* Refrigeration / Water */
    --hb-blue: #268cff;
    --hb-blue-light: #55a8ff;
    --hb-blue-dark: #126bd1;

    /* Heating / Emergency */
    --hb-red: #ff3838;
    --hb-red-light: #ff5a52;
    --hb-red-dark: #d91f26;

    /* Neutral */
    --hb-white: #ffffff;
    --hb-off-white: #f7f7f8;

    --hb-text: #e7e7e9;
    --hb-muted: #92949a;

    --container: 1380px;

    --transition: 0.25s ease;
}



/* =========================================================
   BASIC RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    background: #ffffff;

    color: #111827;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;
}


body.mobile-nav-open {
    overflow: hidden;
}


img {
    display: block;

    max-width: 100%;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
}


svg {
    display: block;
}


.container {
    width: min(calc(100% - 64px),
            var(--container));

    margin-inline: auto;
}



/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;

    top: -100px;
    left: 20px;

    z-index: 99999;

    padding: 12px 18px;

    background: var(--hb-blue);

    color: white;

    border-radius: 6px;

    font-weight: 700;
}


.skip-link:focus {
    top: 20px;
}



/* =========================================================
   GLOBAL BUTTON
========================================================= */

.btn {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 24px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.btn--primary {
    background:
        linear-gradient(135deg,
            var(--hb-blue),
            var(--hb-blue-light));

    color: white;

    box-shadow:
        0 12px 30px rgba(38, 140, 255, 0.25);
}


.btn--primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 35px rgba(38, 140, 255, 0.34);
}


.btn--full {
    width: 100%;
}



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

.site-header {
    position: relative;

    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(180deg,
            #050505 0%,
            #050505 100%);

    color: white;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}



/* =========================================================
   TOP BAR
========================================================= */

.site-topbar {
    min-height: 42px;

    display: flex;

    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    background: #000000;
}


.site-topbar__inner {
    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.site-topbar__status {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #8f9bab;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.site-topbar__dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #36e397;

    box-shadow:
        0 0 12px rgba(54, 227, 151, 0.55);
}


.site-topbar__contact {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 16px;

    color: #8691a2;

    font-size: 11px;

    font-weight: 600;
}


.site-topbar__contact a {
    transition: color var(--transition);
}


.site-topbar__contact a:hover {
    color: white;
}


.site-topbar__divider {
    width: 1px;
    height: 13px;

    background:
        rgba(255, 255, 255, 0.12);
}


.site-topbar__trust {
    color: #cdd5df;
}



/* =========================================================
   LARGE HEADER
========================================================= */

.site-header__main {
    position: relative;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(38, 140, 255, 0.04),
            transparent 45%),
        #050505;
}


.site-header__inner {
    position: relative;

    min-height: 156px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}



/* =========================================================
   CENTRE LOGO
========================================================= */

.site-logo {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    justify-content: center;
}


.site-logo img {
    width: 116px;

    height: auto;

    object-fit: contain;

    transition: transform var(--transition);
}


.site-logo:hover img {
    transform: scale(1.04);
}



/* =========================================================
   MENU BUTTON
========================================================= */

.mobile-menu-toggle {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 0;

    background: transparent;

    color: white;

    cursor: pointer;
}

.menu-toggle__icon>span {
    display: block;
    width: 18px;
    height: 1px;
    flex: 0 0 1px;

    background: #ffffff;
    border-radius: 999px;
}

.menu-toggle__icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    transition:
        border var(--transition),
        background var(--transition),
        transform var(--transition);
}


/* Three-line hamburger using the existing two <i> elements */
.menu-toggle__icon i {
    width: 18px;
    height: 1px;

    display: block;

    background: white;

    transition:
        width var(--transition),
        transform var(--transition),
        opacity var(--transition);
}


.menu-toggle__icon::after {
    content: "";

    width: 18px;
    height: 1px;

    display: block;

    background: white;

    transition:
        width var(--transition),
        transform var(--transition),
        opacity var(--transition);
}


.menu-toggle__label {
    color: #c4cbd5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition: color var(--transition);
}


.mobile-menu-toggle:hover .menu-toggle__icon {
    background:
        rgba(38, 140, 255, 0.08);

    border-color:
        rgba(85, 168, 255, 0.5);

    transform: scale(1.04);
}


.mobile-menu-toggle:hover .menu-toggle__icon i,
.mobile-menu-toggle:hover .menu-toggle__icon::after {
    width: 18px;
}


.mobile-menu-toggle:hover .menu-toggle__label {
    color: white;
}



/* =========================================================
   HEADER CTA
========================================================= */

.header-quote {
    min-width: 182px;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 0 22px;

    border:
        1px solid rgba(255, 255, 255, 0.19);

    border-radius: 4px;

    color: white;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    transition:
        background var(--transition),
        border var(--transition),
        transform var(--transition);
}


.header-quote svg {
    width: 17px;

    height: 17px;
}


.header-quote:hover {
    background:
        rgba(38, 140, 255, 0.08);

    border-color:
        rgba(85, 168, 255, 0.55);

    transform: translateY(-2px);
}



/* =========================================================
   NAVIGATION OVERLAY
========================================================= */

.mobile-nav {
    position: fixed;

    inset: 0;

    z-index: 5000;

    visibility: hidden;

    pointer-events: none;
}


.mobile-nav.is-open {
    visibility: visible;

    pointer-events: auto;
}



/* =========================================================
   NAV BACKDROP
========================================================= */

.mobile-nav__backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.76);

    opacity: 0;

    backdrop-filter: blur(5px);

    -webkit-backdrop-filter: blur(5px);

    transition:
        opacity 0.35s ease;
}


.mobile-nav.is-open .mobile-nav__backdrop {
    opacity: 1;
}



/* =========================================================
   LEFT NAV DRAWER
========================================================= */

.mobile-nav__panel {
    position: absolute;

    top: 0;
    left: 0;

    width: min(480px, 92vw);

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow-y: auto;

    background:
        radial-gradient(circle at 0% 0%,
            rgba(38, 140, 255, 0.12),
            transparent 32%),
        linear-gradient(180deg,
            #111216,
            #050505);

    border-right:
        1px solid rgba(255, 255, 255, 0.09);

    box-shadow:
        30px 0 80px rgba(0, 0, 0, 0.4);

    transform: translateX(-105%);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
}



/* =========================================================
   DRAWER HEADER
========================================================= */

.mobile-nav__head {
    min-height: 104px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.mobile-nav__logo img {
    width: 100px;

    height: auto;
}


.mobile-nav__close {
    position: relative;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    padding: 0;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    cursor: pointer;
}


.mobile-nav__close span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 17px;
    height: 1px;

    background: white;
}


.mobile-nav__close span:first-child {
    transform:
        translate(-50%, -50%) rotate(45deg);
}


.mobile-nav__close span:last-child {
    transform:
        translate(-50%, -50%) rotate(-45deg);
}



/* =========================================================
   DRAWER INTRO
========================================================= */

.mobile-nav__intro {
    padding: 28px 28px 12px;
}


.mobile-nav__intro>span {
    display: block;

    margin-bottom: 8px;

    color: var(--hb-blue-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.mobile-nav__intro p {
    max-width: 340px;

    margin: 0;

    color: #7e899a;

    font-size: 12px;

    line-height: 1.7;
}



/* =========================================================
   DRAWER LINKS
========================================================= */

.mobile-nav__links {
    padding: 14px 28px 25px;
}


.mobile-nav__links>a,
.mobile-nav__accordion {
    width: 100%;

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0;

    background: transparent;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    color: #eef2f7;

    text-align: left;

    font-size: 17px;

    font-weight: 650;

    cursor: pointer;

    transition:
        color var(--transition),
        padding var(--transition);
}


.mobile-nav__links>a {
    justify-content: flex-start;

    gap: 16px;
}


.mobile-nav__links>a>span {
    color: #526176;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.mobile-nav__links>a:hover,
.mobile-nav__accordion:hover {
    color: var(--hb-blue-light);
}


.mobile-nav__links>a:hover {
    padding-left: 5px;
}


.mobile-nav__accordion-title {
    display: flex;

    align-items: center;

    gap: 16px;
}


.mobile-nav__accordion-title small {
    color: #526176;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.mobile-nav__accordion>svg {
    width: 17px;

    height: 17px;

    transition:
        transform var(--transition);
}


.mobile-nav__accordion.is-open>svg {
    transform: rotate(180deg);
}



/* =========================================================
   DRAWER SUB MENUS
========================================================= */

.mobile-nav__submenu {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    padding-left: 25px;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}


.mobile-nav__submenu.is-open {
    max-height: 500px;

    opacity: 1;
}


.mobile-nav__submenu a,
.mobile-nav__submenu>span {
    min-height: 46px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 5px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.04);

    color: #8f9bab;

    font-size: 12px;

    font-weight: 600;

    transition:
        color var(--transition),
        padding var(--transition);
}


.mobile-nav__submenu a::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--hb-blue);

    opacity: 0.65;
}


.mobile-nav__submenu a:hover {
    padding-left: 4px;

    color: white;
}


.mobile-nav__coming {
    opacity: 0.55;
}


.mobile-nav__coming small {
    margin-left: auto;

    padding: 3px 6px;

    border:
        1px solid rgba(85, 168, 255, 0.25);

    border-radius: 4px;

    color: var(--hb-blue-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}



/* =========================================================
   DRAWER CONTACT
========================================================= */

.mobile-nav__contact {
    margin-top: auto;

    padding: 28px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.mobile-nav__contact-label {
    display: block;

    margin-bottom: 5px;

    color: #657287;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.mobile-nav__phone {
    display: block;

    margin-bottom: 5px;

    color: white;

    font-size: 22px;

    font-weight: 800;
}


.mobile-nav__email {
    display: block;

    margin-bottom: 22px;

    color: var(--hb-blue-light);

    font-size: 12px;

    font-weight: 600;
}



/* =========================================================
   DRAWER TRUST
========================================================= */

.mobile-nav__trust {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    padding:
        0 28px 28px;
}


.mobile-nav__trust span {
    padding: 5px 7px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 4px;

    background:
        rgba(255, 255, 255, 0.03);

    color: #6f7b8c;

    font-size: 8px;

    font-weight: 750;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}



/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.is-scrolled .site-header__main {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}



/* =========================================================
   GLOBAL MAIN
========================================================= */

main {
    min-height: 50vh;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .container {
        width:
            min(calc(100% - 36px),
                var(--container));
    }


    .site-header__inner {
        min-height: 120px;
    }


    .site-logo img {
        width: 100px;
    }


    .menu-toggle__label {
        display: none;
    }


    .menu-toggle__icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }


    .header-quote {
        min-width: 155px;

        min-height: 49px;

        padding-inline: 16px;
    }

}



@media (max-width: 650px) {

    .site-topbar__inner {
        justify-content: center;
    }


    .site-topbar__status {
        display: none;
    }


    .site-topbar__contact {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }


    .site-topbar__trust,
    .site-topbar__contact .site-topbar__divider:last-of-type {
        display: none;
    }


    .site-header__inner {
        min-height: 94px;
    }


    .site-logo img {
        width: 78px;
    }


    .header-quote {
        min-width: auto;

        min-height: 44px;

        padding: 0 15px;
    }


    .header-quote span {
        font-size: 9px;
    }


    .header-quote svg {
        display: none;
    }


    .menu-toggle__icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

}



@media (max-width: 430px) {

    .container {
        width:
            min(calc(100% - 24px),
                var(--container));
    }


    .site-topbar {
        min-height: 34px;
    }


    .site-topbar__inner {
        min-height: 34px;
    }


    .site-topbar__contact {
        font-size: 9px;
    }


    .site-topbar__divider {
        display: none;
    }


    .site-header__inner {
        min-height: 86px;
    }


    .site-logo img {
        width: 68px;
    }


    .menu-toggle__icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .header-quote {
        min-height: 40px;

        padding-inline: 11px;
    }


    .mobile-nav__head,
    .mobile-nav__intro,
    .mobile-nav__links,
    .mobile-nav__contact {
        padding-left: 20px;

        padding-right: 20px;
    }


    .mobile-nav__trust {
        padding-left: 20px;

        padding-right: 20px;
    }

}

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

.site-footer {
    background: #050505;
    color: #cbd3df;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {
    position: relative;

    padding: 42px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at 15% 50%,
            rgba(38, 140, 255, 0.22),
            transparent 38%),
        linear-gradient(135deg,
            #111216,
            #0a0a0c);

    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-cta::after {
    content: "";

    position: absolute;
    top: -80px;
    right: -70px;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(85, 168, 255, 0.12);
    border-radius: 50%;
}

.footer-cta__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.footer-cta__content {
    max-width: 720px;
}

.footer-cta__eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--hb-blue-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-cta h2 {
    margin: 0 0 10px;

    color: var(--hb-white);

    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.1;
}

.footer-cta p {
    max-width: 650px;

    margin: 0;

    color: #9ca7b6;

    font-size: 14px;
}

.footer-cta__actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 22px;
}

.footer-cta__phone {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.footer-cta__phone span {
    color: #788394;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-cta__phone strong {
    margin-top: 4px;

    color: var(--hb-white);

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.site-footer__main {
    padding: 68px 0 55px;

    background:
        linear-gradient(180deg,
            #0a0a0c,
            #050505);
}

.site-footer__grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr) minmax(160px, 0.8fr) minmax(160px, 0.8fr) minmax(260px, 1fr);

    gap: 50px;
}

.site-footer__logo {
    display: inline-block;

    margin-bottom: 18px;
}

.site-footer__logo img {
    width: 125px;
    height: auto;
}

.site-footer__brand p {
    max-width: 390px;

    margin: 0 0 22px;

    color: #8994a4;

    font-size: 13px;
    line-height: 1.8;
}

.site-footer__trust {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.site-footer__trust span {
    padding: 6px 8px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;

    color: #a8b2c0;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.site-footer__column h3 {
    margin: 0 0 20px;

    color: var(--hb-white);

    font-size: 14px;
    font-weight: 800;
}

.site-footer__column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer__column li {
    margin-bottom: 10px;
}

.site-footer__column li:last-child {
    margin-bottom: 0;
}

.site-footer__column li a,
.site-footer__column li span {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #8995a5;

    font-size: 12px;
    font-weight: 550;

    transition:
        color var(--transition),
        transform var(--transition);
}

.site-footer__column li a::before {
    content: "";

    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: var(--hb-blue);

    opacity: 0.6;
}

.site-footer__column li a:hover {
    color: var(--hb-white);
    transform: translateX(3px);
}

.site-footer__column li span {
    opacity: 0.5;
}

.site-footer__column li small {
    padding: 2px 5px;

    border: 1px solid rgba(85, 168, 255, 0.22);
    border-radius: 4px;

    color: var(--hb-blue-light);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.site-footer__contact {
    display: flex;
    flex-direction: column;
}

.footer-contact {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color: var(--hb-white);
}

.footer-contact__icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(38, 140, 255, 0.08);

    border: 1px solid rgba(85, 168, 255, 0.14);

    color: var(--hb-blue-light);

    transition:
        background var(--transition),
        color var(--transition);
}

.footer-contact__icon svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.footer-contact>span:last-child {
    display: flex;
    flex-direction: column;

    line-height: 1.25;
}

.footer-contact small {
    margin-bottom: 2px;

    color: #747f90;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-contact strong {
    color: #dfe5ed;

    font-size: 12px;
    font-weight: 700;
}

.footer-contact:hover .footer-contact__icon {
    background: var(--hb-blue);
    color: var(--hb-white);
}

.site-footer__availability {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 7px;

    color: #9ca7b6;

    font-size: 11px;
    font-weight: 650;
}

.site-footer__availability-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #35e399;

    box-shadow:
        0 0 10px rgba(53, 227, 153, 0.55);
}


/* =========================================================
   SEO LINKS
========================================================= */

.site-footer__seo {
    padding: 18px 0;

    background: #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__seo-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px 16px;
}

.site-footer__seo-inner span {
    color: #657082;

    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__seo-inner a {
    color: #8894a5;

    font-size: 10px;
    font-weight: 550;

    transition: color var(--transition);
}

.site-footer__seo-inner a:hover {
    color: var(--hb-blue-light);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.site-footer__bottom {
    padding: 18px 0;

    background: #000000;
}

.site-footer__bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}

.site-footer__copyright,
.site-footer__legal,
.site-footer__credit {
    color: #606b7b;
    font-size: 13px;
}

.site-footer__legal {
    display: flex;
    align-items: center;

    gap: 16px;
}

.site-footer__legal a,
.site-footer__credit a {
    transition: color var(--transition);
}

.site-footer__legal a:hover,
.site-footer__credit a:hover {
    color: var(--hb-white);
}

.site-footer__credit {
    text-align: right;
}

.site-footer__credit a {
    color: #a9b3c1;
    font-weight: 700;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .site-footer__contact {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px 25px;

        padding-top: 25px;

        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .site-footer__contact h3,
    .site-footer__availability {
        grid-column: 1 / -1;
    }

}


@media (max-width: 820px) {

    .footer-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-footer__credit {
        text-align: center;
    }

}


@media (max-width: 560px) {

    .footer-cta {
        padding: 34px 0;
    }

    .footer-cta__actions {
        width: 100%;

        align-items: stretch;
        flex-direction: column;
    }

    .footer-cta__actions .btn {
        width: 100%;
    }

    .footer-cta__phone {
        align-items: center;

        text-align: center;
    }

    .site-footer__main {
        padding: 48px 0 38px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__contact {
        display: flex;

        padding-top: 0;

        border-top: 0;
    }

    .site-footer__seo {
        display: none;
    }

}

/* =========================================================
   COOKIE CONSENT
========================================================= */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* =========================================================
   BANNER WRAPPER
========================================================= */

.cookie-consent,
.cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 10000;

    visibility: hidden;
    pointer-events: none;
}


.cookie-consent.is-open,
.cookie-settings.is-open {
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   BACKDROP
========================================================= */

.cookie-consent__backdrop,
.cookie-settings__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(1, 5, 12, 0.58);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;

    transition: opacity 0.3s ease;
}


.cookie-consent.is-open .cookie-consent__backdrop,
.cookie-settings.is-open .cookie-settings__backdrop {
    opacity: 1;
}


/* =========================================================
   MAIN CONSENT CARD
========================================================= */

.cookie-consent__panel {
    position: absolute;

    left: 32px;
    bottom: 32px;

    width: min(475px, calc(100% - 64px));

    padding: 32px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background:
        radial-gradient(circle at 15% 0%,
            rgba(38, 140, 255, 0.15),
            transparent 38%),
        linear-gradient(145deg,
            #111216,
            #050505);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.48);

    color: white;

    opacity: 0;

    transform:
        translateY(25px) scale(0.98);

    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


.cookie-consent.is-open .cookie-consent__panel {
    opacity: 1;

    transform:
        translateY(0) scale(1);
}


/* =========================================================
   COOKIE ICON
========================================================= */

.cookie-consent__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background:
        rgba(38, 140, 255, 0.1);

    border:
        1px solid rgba(85, 168, 255, 0.18);

    color: var(--hb-blue-light);
}


.cookie-consent__icon svg {
    width: 23px;
    height: 23px;
}


/* =========================================================
   CLOSE
========================================================= */

.cookie-consent__close,
.cookie-settings__close {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 38px;
    height: 38px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);

    cursor: pointer;
}


.cookie-consent__close span,
.cookie-settings__close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 15px;
    height: 1px;

    background: #b7c0cd;
}


.cookie-consent__close span:first-child,
.cookie-settings__close span:first-child {
    transform:
        translate(-50%, -50%) rotate(45deg);
}


.cookie-consent__close span:last-child,
.cookie-settings__close span:last-child {
    transform:
        translate(-50%, -50%) rotate(-45deg);
}


/* =========================================================
   TEXT
========================================================= */

.cookie-consent__eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--hb-blue-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.cookie-consent h2,
.cookie-settings h2 {
    margin: 0;

    color: white;

    font-size: 27px;

    line-height: 1.15;

    letter-spacing: -0.03em;
}


.cookie-consent__panel>p {
    margin: 14px 0 0;

    color: #8f9bab;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   COOKIE BUTTONS
========================================================= */

.cookie-consent__actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px;

    margin-top: 24px;
}


.cookie-btn {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 16px;

    border-radius: 7px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border 0.25s ease,
        transform 0.25s ease;
}


.cookie-btn--primary {
    border: 1px solid var(--hb-blue);

    background:
        linear-gradient(135deg,
            var(--hb-blue),
            var(--hb-blue-light));

    color: white;
}


.cookie-btn--primary:hover {
    transform: translateY(-1px);
}


.cookie-btn--secondary {
    border:
        1px solid rgba(255, 255, 255, 0.13);

    background:
        rgba(255, 255, 255, 0.045);

    color: #d5dce5;
}


.cookie-btn--secondary:hover {
    background:
        rgba(255, 255, 255, 0.08);
}


.cookie-btn--text {
    grid-column: 1 / -1;

    min-height: 38px;

    border: 0;

    background: transparent;

    color: #7f8b9d;
}


.cookie-btn--text:hover {
    color: white;
}


/* =========================================================
   POLICY LINKS
========================================================= */

.cookie-consent__links {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 17px;
}


.cookie-consent__links a {
    color: #687589;

    font-size: 9px;

    font-weight: 650;
}


.cookie-consent__links a:hover {
    color: var(--hb-blue-light);
}


.cookie-consent__links span {
    width: 1px;
    height: 10px;

    background:
        rgba(255, 255, 255, 0.12);
}


/* =========================================================
   SETTINGS PANEL
========================================================= */

.cookie-settings__panel {
    position: absolute;

    top: 50%;
    left: 50%;

    width: min(600px, calc(100% - 40px));

    max-height: calc(100vh - 50px);

    overflow-y: auto;

    padding: 32px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    background:
        linear-gradient(145deg,
            #111216,
            #050505);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.55);

    color: white;

    opacity: 0;

    transform:
        translate(-50%, -46%) scale(0.97);

    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


.cookie-settings.is-open .cookie-settings__panel {
    opacity: 1;

    transform:
        translate(-50%, -50%) scale(1);
}


.cookie-settings__header {
    position: relative;

    padding-right: 50px;
}


.cookie-settings__header>div>span {
    display: block;

    margin-bottom: 7px;

    color: var(--hb-blue-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.cookie-settings__intro {
    margin: 17px 0 25px;

    color: #8995a5;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   COOKIE OPTIONS
========================================================= */

.cookie-option {
    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 22px;

    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.cookie-option__title {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 6px;
}


.cookie-option strong {
    color: white;

    font-size: 13px;
}


.cookie-option p {
    max-width: 430px;

    margin: 0;

    color: #778498;

    font-size: 11px;

    line-height: 1.65;
}


.cookie-option__required {
    padding: 3px 6px;

    border:
        1px solid rgba(53, 227, 153, 0.17);

    border-radius: 4px;

    color: #57dca2;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


/* =========================================================
   TOGGLE
========================================================= */

.cookie-switch {
    position: relative;

    width: 46px;
    height: 26px;

    flex: 0 0 46px;

    cursor: pointer;
}


.cookie-switch input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.cookie-switch>span:not(.sr-only) {
    position: absolute;

    inset: 0;

    border-radius: 50px;

    background: #293242;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.25s ease;
}


.cookie-switch>span:not(.sr-only)::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #c7cfda;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.cookie-switch input:checked+span:not(.sr-only) {
    background: var(--hb-blue);
}


.cookie-switch input:checked+span:not(.sr-only)::after {
    transform: translateX(20px);

    background: white;
}


.cookie-switch--locked {
    cursor: default;
}


.cookie-switch--locked span {
    background: #16784e !important;
}


.cookie-switch--locked span::after {
    transform: translateX(20px);

    background: white !important;
}


/* =========================================================
   SETTINGS ACTIONS
========================================================= */

.cookie-settings__actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 24px;
}


.cookie-settings__footnote {
    margin: 18px 0 0;

    color: #626e80;

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .cookie-consent__panel {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;

        padding: 26px 22px;
    }


    .cookie-consent h2,
    .cookie-settings h2 {
        font-size: 23px;
    }


    .cookie-consent__actions {
        grid-template-columns: 1fr;
    }


    .cookie-btn--text {
        grid-column: auto;
    }


    .cookie-settings__panel {
        width:
            calc(100% - 24px);

        padding:
            26px 20px;
    }


    .cookie-settings__actions {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   HB GROUP SECONDARY BRAND ACCENTS
   Red = heating / emergency
   Blue = water / refrigeration / general actions
========================================================= */

.btn--emergency {
    background: var(--hb-red);
    color: var(--hb-white);
    box-shadow: 0 12px 30px rgba(255, 56, 56, 0.22);
}

.btn--emergency:hover {
    background: var(--hb-red-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(255, 56, 56, 0.30);
}

.text--heating,
.accent--heating {
    color: var(--hb-red);
}

.text--cooling,
.accent--cooling {
    color: var(--hb-blue);
}

.bg--heating-soft {
    background: rgba(255, 56, 56, 0.08);
}

.bg--cooling-soft {
    background: rgba(38, 140, 255, 0.08);
}

.border--heating {
    border-color: rgba(255, 56, 56, 0.30) !important;
}

.border--cooling {
    border-color: rgba(38, 140, 255, 0.30) !important;
}


/* =========================================================
   HB GROUP
   HEADER REDESIGN v2
   Engineering / trade-led navigation
========================================================= */

.site-header {
    position: relative;
    z-index: 4000;
    width: 100%;
    background: #050505;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* -------------------------
   Utility bar
------------------------- */

.site-topbar {
    min-height: 38px;
    display: flex;
    align-items: center;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-topbar__trust-list,
.site-topbar__contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-topbar__trust-list {
    color: #8c96a4;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-topbar__trust-list>span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-topbar__status-dot {
    width: 6px;
    height: 6px;
    display: block;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #39d98a;
    box-shadow: 0 0 10px rgba(57, 217, 138, 0.5);
}

.site-topbar__contact {
    color: #a7b0bc;
    font-size: 10px;
    font-weight: 650;
}

.site-topbar__contact a {
    transition: color var(--transition);
}

.site-topbar__contact a:hover {
    color: #fff;
}

.site-topbar__divider {
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.14);
}


/* -------------------------
   Main header
------------------------- */

.site-header__main {
    position: relative;
    background:
        linear-gradient(90deg,
            rgba(38, 140, 255, 0.025),
            transparent 24%,
            transparent 76%,
            rgba(255, 56, 56, 0.018)),
        #070709;
}

.site-header__inner {
    position: relative;
    min-height: 94px;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: 38px;
}


/* -------------------------
   Logo
------------------------- */

.site-logo {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
}

.site-logo img {
    width: 108px;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.site-logo:hover img {
    transform: scale(1.025);
}


/* -------------------------
   Desktop navigation
------------------------- */

.desktop-nav {
    min-width: 0;
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}


/* Main links + dropdown buttons */
.desktop-nav__link,
.nav-dropdown__toggle {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #b8c0cb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


/* ---------------------------------------------------------
   REMOVE OLD BLUE UNDERLINE
--------------------------------------------------------- */

.desktop-nav__link::after,
.nav-dropdown__toggle::after {
    display: none;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.desktop-nav__link:hover,
.nav-dropdown__toggle:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.035);

    border-color:
        rgba(255, 255, 255, 0.10);
}


/* ---------------------------------------------------------
   ACTIVE PAGE
--------------------------------------------------------- */

.desktop-nav__link.is-active {
    color: #ffffff;

    background:
        linear-gradient(180deg,
            rgba(38, 140, 255, 0.10),
            rgba(38, 140, 255, 0.035));

    border-color:
        rgba(85, 168, 255, 0.48);

    box-shadow:
        inset 0 0 0 1px rgba(38, 140, 255, 0.035),
        0 0 18px rgba(38, 140, 255, 0.08);
}


/* Small blue accent inside active item */
.desktop-nav__link.is-active::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 24px;
    height: 2px;

    transform: translateX(-50%);

    background: var(--hb-blue);

    border-radius: 0 0 2px 2px;

    box-shadow:
        0 0 8px rgba(38, 140, 255, 0.35);
}


/* ---------------------------------------------------------
   DROPDOWN WRAPPER
--------------------------------------------------------- */

.nav-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}


/* Dropdown arrow */
.nav-dropdown__toggle svg {
    width: 13px;
    height: 13px;

    transition:
        transform var(--transition),
        color var(--transition);
}


/* ---------------------------------------------------------
   OPEN DROPDOWN
--------------------------------------------------------- */

.nav-dropdown.is-open .nav-dropdown__toggle {
    color: #ffffff;

    background:
        linear-gradient(180deg,
            rgba(38, 140, 255, 0.10),
            rgba(38, 140, 255, 0.035));

    border-color:
        rgba(85, 168, 255, 0.42);

    box-shadow:
        0 0 18px rgba(38, 140, 255, 0.07);
}


/* Rotate arrow when open */
.nav-dropdown.is-open .nav-dropdown__toggle svg {
    transform: rotate(180deg);
}


/* Blue accent on open dropdown */
.nav-dropdown.is-open .nav-dropdown__toggle::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 24px;
    height: 2px;

    transform: translateX(-50%);

    background: var(--hb-blue);

    border-radius: 0 0 2px 2px;

    box-shadow:
        0 0 8px rgba(38, 140, 255, 0.35);
}

/* -------------------------
   Desktop dropdowns
------------------------- */

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 5000;

    width: 690px;
    padding: 24px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, 12px);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0 0 14px 14px;

    background:
        radial-gradient(circle at 12% 0%,
            rgba(38, 140, 255, 0.10),
            transparent 30%),
        #0c0d10;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

.nav-dropdown__menu--areas {
    width: 500px;
}

.nav-dropdown.is-open .nav-dropdown__menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown__intro {
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown__intro>span {
    display: block;
    margin-bottom: 5px;
    color: var(--hb-blue-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nav-dropdown__intro>strong {
    color: #fff;
    font-size: 17px;
    font-weight: 750;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.nav-dropdown__grid>a,
.nav-dropdown__area-grid>a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.nav-dropdown__grid>a:hover,
.nav-dropdown__area-grid>a:hover,
.nav-dropdown__grid>a.is-active {
    background: rgba(38, 140, 255, 0.075);
    border-color: rgba(85, 168, 255, 0.22);
    transform: translateY(-1px);
}

.nav-dropdown__grid small {
    margin-bottom: 6px;
    color: var(--hb-blue-light);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nav-dropdown__grid strong,
.nav-dropdown__area-grid strong {
    color: #eef2f6;
    font-size: 12px;
    font-weight: 750;
}

.nav-dropdown__grid span,
.nav-dropdown__area-grid span {
    margin-top: 4px;
    color: #707b8b;
    font-size: 9px;
    line-height: 1.5;
}

.nav-dropdown__area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.nav-dropdown__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd3dd;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-dropdown__all>span {
    color: var(--hb-blue-light);
    font-size: 15px;
}


/* -------------------------
   Header actions
------------------------- */

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.header-phone span {
    color: #727d8d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.header-phone strong {
    margin-top: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.header-quote {
    min-width: 152px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 19px;

    border: 1px solid var(--hb-blue);
    border-radius: 5px;

    background:
        linear-gradient(135deg,
            var(--hb-blue),
            var(--hb-blue-light));

    color: #fff;

    box-shadow: 0 10px 25px rgba(38, 140, 255, 0.18);

    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.header-quote svg {
    width: 15px;
    height: 15px;
}

.header-quote:hover {
    background:
        linear-gradient(135deg,
            var(--hb-blue),
            var(--hb-blue-light));
    border-color: var(--hb-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(38, 140, 255, 0.28);
}


/* -------------------------
   Mobile toggle
------------------------- */

.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu-toggle__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);
}

.menu-toggle__icon>span {
    width: 17px;
    height: 1px;
    display: block;
    flex: 0 0 1px;
    background: #fff;
    border-radius: 999px;
}

.menu-toggle__icon::after {
    display: none !important;
}

.menu-toggle__label {
    color: #b7c0cc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* -------------------------
   Sticky state
------------------------- */

.site-header.is-scrolled {
    position: sticky;
    top: 0;
}

.site-header.is-scrolled .site-topbar {
    display: none;
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .desktop-nav__link,
.site-header.is-scrolled .nav-dropdown__toggle {
    min-height: 76px;
    height: 76px;
}

.site-header.is-scrolled .site-logo img {
    width: 88px;
}

.site-header.is-scrolled .site-header__main {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.30);
}


/* -------------------------
   Responsive
------------------------- */

@media (max-width: 1180px) {

    .site-header__inner {
        grid-template-columns: 120px minmax(0, 1fr) auto;
        gap: 20px;
    }

    .desktop-nav__link,
    .nav-dropdown__toggle {
        padding-inline: 10px;
        font-size: 9px;
    }

    .header-phone {
        display: none;
    }

    .header-quote {
        min-width: 135px;
    }

}


@media (max-width: 980px) {

    .site-topbar__trust-list span:nth-child(2),
    .site-topbar__trust-list span:nth-child(3) {
        display: none;
    }

    .site-header__inner {
        min-height: 82px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .site-logo img {
        width: 90px;
    }

    .desktop-nav {
        display: none;
    }

    .site-header__actions {
        margin-left: auto;
        gap: 10px;
    }

    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-quote {
        min-width: 128px;
        min-height: 44px;
        padding-inline: 14px;
    }

    .site-header.is-scrolled .site-header__inner {
        min-height: 72px;
    }

}


@media (max-width: 650px) {

    .site-topbar {
        min-height: 34px;
    }

    .site-topbar__inner {
        min-height: 34px;
        justify-content: center;
    }

    .site-topbar__trust-list {
        display: none;
    }

    .site-topbar__contact {
        width: 100%;
        justify-content: center;
        gap: 12px;
        font-size: 9px;
    }

    .site-header__inner {
        min-height: 76px;
    }

    .site-logo img {
        width: 78px;
    }

    .header-quote {
        min-width: auto;
        min-height: 42px;
        padding: 0 13px;
    }

    .header-quote svg {
        display: none;
    }

    .menu-toggle__label {
        display: none;
    }

    .menu-toggle__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

}


@media (max-width: 430px) {

    .site-topbar__contact a:first-child {
        color: #fff;
        font-weight: 750;
    }

    .site-topbar__contact a:last-child,
    .site-topbar__divider {
        display: none;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-logo img {
        width: 70px;
    }

    .header-quote {
        min-height: 40px;
        padding-inline: 10px;
        font-size: 8px;
    }

    .menu-toggle__icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

}

/* =========================================================
   FOOTER SOCIAL
========================================================= */

.site-footer__social {
    margin-top: 25px;
}

.site-footer__social-label {
    display: block;

    margin-bottom: 9px;

    color: #697586;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__facebook {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 8px 12px 8px 8px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.site-footer__facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);

    transform: translateY(-2px);
}

.site-footer__facebook-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    flex: 0 0 29px;

    border-radius: 50%;

    background: #1877f2;
    color: #ffffff;
}

.site-footer__facebook-icon svg {
    width: 16px;
    height: 16px;
}

.site-footer__facebook strong {
    color: #dfe5ec;

    font-size: 10px;
    font-weight: 800;
}

.site-footer__facebook-arrow {
    margin-left: 3px;

    color: #6da9f7;

    font-size: 13px;
}


/* MOBILE */

@media (max-width: 760px) {

    .site-footer__social {
        margin-top: 20px;
    }

}