/* ============================================================
   GLOBAL REFRIGERATION & EQUIPMENTS
   HOMEPAGE 2026
   All homepage classes / IDs are gre-prefixed.
   ============================================================ */

:root {
    --gre-navy: #071c2c;
    --gre-navy-soft: #0c2b40;
    --gre-blue: #075985;
    --gre-blue-bright: #0878a8;
    --gre-yellow: #f5b700;
    --gre-yellow-dark: #d99f00;
    --gre-white: #ffffff;
    --gre-light: #f5f7f8;
    --gre-light-blue: #edf4f7;
    --gre-text: #17212b;
    --gre-muted: #64717d;
    --gre-line: #dfe5e9;
    --gre-line-dark: rgba(255, 255, 255, 0.12);
    --gre-font: "Manrope", Arial, sans-serif;
    --gre-max-width: 1320px;
    --gre-header-height: 84px;
    --gre-ease: cubic-bezier(0.2, 0.65, 0.25, 1);
}

#gre-site-shell,
#gre-site-shell *,
#gre-site-shell *::before,
#gre-site-shell *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

body.gre-menu-open {
    overflow: hidden;
}

#gre-site-shell {
    position: relative;
    width: 100%;
    overflow: clip;
    background: var(--gre-white);
    color: var(--gre-text);
    font-family: var(--gre-font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

#gre-site-shell img {
    display: block;
    max-width: 100%;
}

#gre-site-shell a {
    color: inherit;
    text-decoration: none;
}

#gre-site-shell button,
#gre-site-shell select {
    font: inherit;
}

#gre-site-shell button {
    border: 0;
}

#gre-site-shell a,
#gre-site-shell button,
#gre-site-shell summary {
    -webkit-tap-highlight-color: transparent;
}

#gre-site-shell a:focus-visible,
#gre-site-shell button:focus-visible,
#gre-site-shell summary:focus-visible,
#gre-site-shell select:focus-visible,
#gre-site-shell [tabindex]:focus-visible {
    outline: 3px solid rgba(245, 183, 0, 0.65);
    outline-offset: 3px;
}

.gre-shell-width {
    width: min(var(--gre-max-width), calc(100% - 140px));
    margin-inline: auto;
}

.gre-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gre-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.gre-eyebrow::before {
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--gre-yellow);
    content: "";
}

.gre-eyebrow-light {
    color: #d7e9f3;
}

.gre-section-heading {
    max-width: 760px;
    margin: 0;
    color: var(--gre-navy);
    font-size: clamp(2rem, 2vw, 3.65rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.gre-section-heading-light {
    color: var(--gre-white);
}

.gre-section-copy {
    max-width: 670px;
    margin: 14px 0 14px;
    color: #151617;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.8;
}

.gre-section-intro {
    margin-bottom: 46px;
}

.gre-section-intro-centered {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.gre-section-intro-centered .gre-eyebrow {
    justify-content: center;
}

.gre-section-intro-centered .gre-section-heading,
.gre-section-intro-centered .gre-section-copy {
    margin-inline: auto;
}

.gre-primary-action,
.gre-secondary-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    transition:
        color 260ms var(--gre-ease),
        border-color 260ms var(--gre-ease),
        transform 260ms var(--gre-ease);
}

.gre-primary-action::before,
.gre-secondary-action::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    transform: translateX(-102%);
    background: var(--gre-navy);
    content: "";
    transition: transform 340ms var(--gre-ease);
}

.gre-primary-action {
    background: var(--gre-yellow);
    color: var(--gre-navy);
}

.gre-primary-action:hover,
.gre-primary-action:focus-visible {
    color: #ededed!important;
    transform: translateY(-2px);
}

.gre-primary-action:hover::before,
.gre-primary-action:focus-visible::before,
.gre-secondary-action:hover::before,
.gre-secondary-action:focus-visible::before {
    transform: translateX(0);
}

.gre-primary-action svg,
.gre-secondary-action svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform 260ms var(--gre-ease);
}

.gre-primary-action:hover svg,
.gre-primary-action:focus-visible svg,
.gre-secondary-action:hover svg,
.gre-secondary-action:focus-visible svg {
    transform: translateX(4px);
}

.gre-secondary-action {
    border-color: rgba(7, 28, 44, 0.22);
    background: rgba(255, 255, 255, 0.88);
    color: var(--gre-navy);
    backdrop-filter: blur(8px);
}

.gre-secondary-action:hover,
.gre-secondary-action:focus-visible {
    border-color: var(--gre-navy);
    color: var(--gre-white);
    transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */

.gre-topbar {
    position: relative;
    z-index: 90;
    background: var(--gre-navy);
    color: #d7e2e9;
}

.gre-topbar-inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gre-topbar-contact,
.gre-topbar-link,
.gre-topbar-socials {
    display: flex;
    align-items: center;
}

.gre-topbar-contact {
    min-width: 0;
    gap: 12px;
}

.gre-topbar-link {
    gap: 8px;
    color: #dce7ed;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.1;
    transition: color 220ms ease;
}

.gre-topbar-link:hover,
.gre-topbar-link:focus-visible {
    color: var(--gre-yellow);
}

.gre-topbar-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--gre-yellow);
}

.gre-topbar-divider {
    width: 1px;
    height: 14px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.17);
}

.gre-topbar-socials {
    gap: 6px;
}

.gre-topbar-social-link {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #dbe5eb;
    transition:
        color 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.gre-topbar-social-link:hover,
.gre-topbar-social-link:focus-visible {
    border-color: rgba(245, 183, 0, 0.65);
    background: rgba(245, 183, 0, 0.12);
    color: var(--gre-yellow);
    transform: translateY(-2px);
}

.gre-topbar-social-link svg {
    width: 13px;
    height: 13px;
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
/* ============================================================
   MAIN HEADER
   ============================================================ */

.gre-main-header {
    position: sticky;
    z-index: 999;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(7, 28, 44, 0.08);
    background: rgba(255, 255, 255, 0.96);
    transition:
        box-shadow 260ms ease,
        background 260ms ease;
}

.gre-main-header.gre-is-scrolled {
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 12px 32px rgba(7, 28, 44, 0.09);
    backdrop-filter: blur(14px);
}


/* ============================================================
   HEADER INNER
   ============================================================ */

.gre-main-header-inner {
    position: relative;

    display: grid;
    min-height: var(--gre-header-height);

    grid-template-columns:
        minmax(170px, 1fr)
        auto
        minmax(200px, 1fr);

    align-items: center;
    gap: 28px;

    transition: min-height 260ms ease;
}

.gre-main-header.gre-is-scrolled .gre-main-header-inner {
    min-height: 72px;
}


/* ============================================================
   BRAND / LOGO
   ============================================================ */

.gre-brand-link {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.gre-brand-logo {
    width: 166px;
    max-width: 100%;
    height: auto;
    transition: width 260ms ease;
}

.gre-main-header.gre-is-scrolled .gre-brand-logo {
    width: 148px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.gre-site-nav {
    justify-self: center;
}

.gre-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 32px);

    margin: 0;
    padding: 0;

    list-style: none;
}

.gre-nav-item {
    margin: 0;
    padding: 0;
}


/* ============================================================
   NAV LINKS
   ============================================================ */

.gre-nav-link,
.gre-nav-product-trigger {
    position: relative;

    display: inline-flex;
    min-height: 44px;

    align-items: center;
    justify-content: center;

    color: var(--gre-navy);

    font-size: 0.93rem;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;
}


/* UNDERLINE */

.gre-nav-link::after,
.gre-nav-product-trigger::after {
    position: absolute;

    right: 50%;
    bottom: 5px;
    left: 50%;

    height: 2px;

    background: var(--gre-yellow);

    content: "";

    transition:
        left 220ms var(--gre-ease),
        right 220ms var(--gre-ease);
}

.gre-nav-link:hover::after,
.gre-nav-link:focus-visible::after,
.gre-nav-product-trigger:hover::after,
.gre-nav-product-trigger:focus-visible::after,
.gre-nav-product-trigger[aria-expanded="true"]::after {
    right: 0;
    left: 0;
}


/* ============================================================
   PRODUCTS BUTTON
   ============================================================ */

.gre-nav-product-trigger {
    gap: 5px;

    padding: 0;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;
}

.gre-nav-product-trigger svg {
    width: 15px;
    height: 15px;

    transition: transform 220ms ease;
}

.gre-nav-product-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}


/* ============================================================
   HEADER ACTIONS
   ============================================================ */

.gre-header-actions {
    display: flex;

    align-items: center;
    justify-self: end;

    gap: 12px;
}


/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */

.gre-whatsapp-action {
    position: relative;
    z-index: 1;

    display: inline-flex;
    min-height: 48px;

    align-items: center;

    gap: 9px;

    overflow: hidden;

    padding: 10px 16px;

    border: 1px solid #118b51;
    border-radius: 6px;

    background: #118b51;

    color: var(--gre-white);

    font-size: 0.78rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        border-color 260ms ease,
        color 260ms ease,
        transform 260ms ease;
}

.gre-whatsapp-action::before {
    position: absolute;
    z-index: -1;

    inset: 0;

    transform: translateX(-102%);

    background: var(--gre-navy);

    content: "";

    transition: transform 350ms var(--gre-ease);
}

.gre-whatsapp-action:hover,
.gre-whatsapp-action:focus-visible {
    border-color: var(--gre-navy);

    transform: translateY(-2px);

    color: #ebebef !important;
}

.gre-whatsapp-action:hover::before,
.gre-whatsapp-action:focus-visible::before {
    transform: translateX(0);
}

.gre-whatsapp-action-icon,
.gre-whatsapp-action-arrow {
    display: grid;

    flex: 0 0 auto;

    place-items: center;
}

.gre-whatsapp-action-icon svg,
.gre-whatsapp-action-arrow {
    width: 17px;
    height: 17px;
}

.gre-whatsapp-action-arrow {
    transition: transform 260ms var(--gre-ease);
}

.gre-whatsapp-action:hover .gre-whatsapp-action-arrow,
.gre-whatsapp-action:focus-visible .gre-whatsapp-action-arrow {
    transform: translateX(4px);
}


/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.gre-mobile-menu-button {
    display: none;

    width: 46px;
    height: 46px;

    place-items: center;

    border: 0;
    border-radius: 5px;

    background: var(--gre-navy);

    color: var(--gre-white);

    cursor: pointer;
}

.gre-mobile-menu-button svg {
    width: 22px;
    height: 22px;
}

.gre-mobile-menu-close-icon {
    display: none;
}

.gre-mobile-menu-button[aria-expanded="true"]
.gre-mobile-menu-open-icon {
    display: none;
}

.gre-mobile-menu-button[aria-expanded="true"]
.gre-mobile-menu-close-icon {
    display: block;
}


/* ============================================================
   PRODUCT MEGA MENU
   ============================================================ */

.gre-product-menu {
    position: absolute;
    z-index: 9999;

    /*
       IMPORTANT:
       Header ke exactly neeche menu attach hoga.
       Yahi main hover disappearing fix ka part hai.
    */
    top: 100%;
    left: 50%;

    width: min(1180px, calc(100vw - 40px));

    padding: 28px;

    border: 1px solid rgba(7, 28, 44, 0.08);
    border-top: 3px solid var(--gre-yellow);
    border-radius: 0 0 10px 10px;

    opacity: 0;

    background: rgba(255, 255, 255, 0.99);

    box-shadow:
        0 28px 70px rgba(7, 28, 44, 0.15);

    pointer-events: none;

    /*
       Pehle translateY(12px) tha.
       Uski wajah se cursor gap create ho sakta tha.
    */
    transform: translateX(-50%);

    visibility: hidden;

    transition:
        opacity 180ms ease,
        visibility 180ms ease;
}


/* ============================================================
   HOVER SAFETY BRIDGE
   ============================================================ */

.gre-product-menu::before {
    position: absolute;

    right: 0;
    bottom: 100%;
    left: 0;

    /*
       Header aur mega menu ke beech mouse movement safe rakhega
    */
    height: 16px;

    background: transparent;

    content: "";
}


/* ============================================================
   SHOW MEGA MENU
   ============================================================ */

.gre-nav-item-products:hover .gre-product-menu,
.gre-nav-item-products:focus-within .gre-product-menu,
.gre-product-menu:hover,
.gre-product-menu.gre-is-open {
    opacity: 1;

    pointer-events: auto;

    transform: translateX(-50%);

    visibility: visible;
}


/* Trigger arrow desktop hover par bhi rotate */

.gre-nav-item-products:hover
.gre-nav-product-trigger svg {
    transform: rotate(180deg);
}


/* ============================================================
   MEGA MENU GRID
   ============================================================ */

.gre-product-menu-grid {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 20px;
}

.gre-product-category {
    min-width: 0;
}


/* ============================================================
   PRODUCT CATEGORY HEADING
   ============================================================ */

.gre-product-category-heading {
    display: flex;

    width: 100%;
    min-height: 36px;

    align-items: center;
    justify-content: space-between;

    gap: 8px;

    padding: 0 0 11px;

    border: 0;
    border-bottom: 1px solid var(--gre-line);

    background: transparent;

    color: var(--gre-navy);

    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.07em;

    text-align: left;
    text-transform: uppercase;
}

.gre-product-category-heading svg {
    display: none;

    width: 16px;
    height: 16px;
}


/* ============================================================
   PRODUCT CATEGORY LINKS
   ============================================================ */

.gre-product-category-panel {
    display: grid;

    gap: 2px;

    padding-top: 12px;
}

.gre-product-category-panel a {
    display: block;

    padding: 7px 0;

    color: #4e5b66;

    font-size: 0.79rem;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 190ms ease,
        transform 190ms ease;
}

.gre-product-category-panel a:hover,
.gre-product-category-panel a:focus-visible {
    color: var(--gre-blue);

    transform: translateX(4px);
}


/* ============================================================
   MEGA MENU BOTTOM
   ============================================================ */

.gre-product-menu-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 24px;

    padding: 17px 20px;

    background: var(--gre-light);

    color: var(--gre-muted);

    font-size: 0.78rem;
}

.gre-product-menu-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gre-blue);

    font-weight: 800;

    text-decoration: none;
}

.gre-product-menu-bottom a svg {
    width: 17px;
    height: 17px;

    transition: transform 200ms ease;
}

.gre-product-menu-bottom a:hover svg,
.gre-product-menu-bottom a:focus-visible svg {
    transform: translateX(4px);
}


/* ============================================================
   IMPORTANT DESKTOP HOVER FIX
   ============================================================ */

@media (min-width: 992px) {

    /*
       Navigation ko poori header height dena bahut important hai.

       Pehle button approx 44px ka tha, jabki header usse bada tha.
       Cursor button se mega-menu par jaate waqt li ka hover break
       ho raha tha.

       Ab poora nav / li hover zone ban jayega.
    */

    .gre-site-nav {
        display: flex;

        height: 100%;

        align-self: stretch;
        align-items: stretch;
    }

    .gre-nav-list {
        height: 100%;

        align-items: stretch;
    }

    .gre-nav-item {
        display: flex;

        height: 100%;

        align-items: center;
    }

    .gre-nav-item-products {
        /*
           position: relative NAHI karna.
           Mega menu .gre-main-header-inner ke according
           properly centered rahega.
        */

        position: static;

        display: flex;

        height: 100%;

        align-items: center;
    }

    .gre-nav-product-trigger {
        height: 100%;
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1199px) and (min-width: 992px) {

    .gre-main-header-inner {
        gap: 18px;
    }

    .gre-nav-list {
        gap: 16px;
    }

    .gre-nav-link,
    .gre-nav-product-trigger {
        font-size: 0.86rem;
    }

    .gre-product-menu {
        width: calc(100vw - 30px);

        padding: 24px;
    }

    .gre-product-menu-grid {
        gap: 15px;
    }

    .gre-product-category-panel a {
        font-size: 0.75rem;
    }
}
/* ============================================================
   HERO
   ============================================================ */

.gre-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #e9eef1;
}

.gre-hero-viewport {
    position: relative;
    height: clamp(610px, 45vw, 680px);
}

.gre-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(12px);
    transition:
        opacity 650ms var(--gre-ease),
        transform 650ms var(--gre-ease);
}

.gre-hero-slide.gre-is-current {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.gre-hero-slide::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    /*background:*/
    /*    linear-gradient(*/
    /*        90deg,*/
    /*        rgba(245, 247, 248, 0.98) 0%,*/
    /*        rgba(245, 247, 248, 0.94) 26%,*/
    /*        rgba(245, 247, 248, 0.74) 41%,*/
    /*        rgba(245, 247, 248, 0.2) 60%,*/
    /*        rgba(245, 247, 248, 0.02) 76%*/
    /*    );*/
    content: "";
    pointer-events: none;
}

.gre-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.gre-hero-slide.gre-is-current .gre-hero-media {
    animation: gre-hero-zoom 9s linear both;
}

.gre-hero-media-one {
    object-position: 68% 58%;
}

.gre-hero-media-two {
    object-position: 72% 56%;
}

.gre-hero-media-three {
    object-position: 73% 56%;
}

@keyframes gre-hero-zoom {
    from {
        transform: scale(1.01);
    }
    to {
        transform: scale(1.055);
    }
}

.gre-hero-content-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    height: 100%;
    align-items: center;
}

.gre-hero-content {
    width: min(590px, 50%);
    padding-bottom: 34px;
}

.gre-hero-eyebrow {
    margin-bottom: 18px;
}

.gre-hero-heading {
        max-width: 620px;
    margin: 0;
    color: var(--gre-navy);
    font-size: clamp(2.65rem, 3vw, 5rem);
    font-weight: 800;
    /* letter-spacing: -0.055em; */
    line-height: 1;
}

.gre-hero-heading span {
    display: block;
    color: #f5b700;
}

.gre-hero-copy {
    max-width: 565px;
    margin: 26px 0 0;
    color: #44525e;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.75;
}

.gre-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.gre-hero-controls {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 27px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.gre-hero-pagination,
.gre-hero-arrow-group {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.gre-hero-dot {
    width: 28px;
    height: 5px;
    padding: 0;
    border-radius: 5px;
    background: rgba(7, 28, 44, 0.23);
    cursor: pointer;
    transition:
        width 220ms ease,
        background 220ms ease;
}

.gre-hero-dot.gre-is-current {
    width: 46px;
    background: var(--gre-yellow);
}

.gre-hero-arrow {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(7, 28, 44, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gre-navy);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        border-color 220ms ease,
        background 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.gre-hero-arrow:first-child svg {
    transform: rotate(180deg);
}

.gre-hero-arrow:hover,
.gre-hero-arrow:focus-visible {
    border-color: var(--gre-navy);
    background: var(--gre-navy);
    color: var(--gre-white);
    transform: translateY(-2px);
}

.gre-hero-arrow svg {
    width: 19px;
    height: 19px;
}

/* ============================================================
   ABOUT
   ============================================================ */

.gre-about {
    padding: clamp(82px, 9vw, 132px) 0;
    background: var(--gre-white);
}

.gre-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
}

.gre-about-collage {
    position: relative;
    min-height: 575px;
}

.gre-about-accent {
    position: absolute;
    z-index: 0;
    right: 8%;
    bottom: 3%;
    width: 31%;
    height: 33%;
    border: 8px solid var(--gre-yellow);
    opacity: 0.28;
}

.gre-about-image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #e9edef;
    box-shadow: 0 18px 52px rgba(7, 28, 44, 0.11);
}

.gre-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gre-about-image-main {
    z-index: 1;
    top: 0;
    left: 0;
    width: 72%;
    height: 89%;
}

.gre-about-image-main img {
    object-position: center 45%;
}

.gre-about-image-workshop {
       z-index: 2;
    top: 6%;
    right: 0;
    width: 35%;
    height: 41%;
    border: 7px solid var(--gre-white);
}

.gre-about-image-product {
    z-index: 3;
    right: 2%;
    bottom: 0;
    width: 43%;
    height: 47%;
    border: 7px solid var(--gre-white);
}

.gre-about-image-product img {
       object-fit: contain;
    padding: 6px;
    background: #071c2c;
}

.gre-about-content {
    padding: 12px 0;
}

.gre-about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 34px;
    border: 1px solid var(--gre-line);
    background: var(--gre-line);
}

.gre-about-highlight {
    padding: 19px 15px;
    background: var(--gre-white);
}

.gre-about-highlight strong,
.gre-about-highlight span {
    display: block;
}

.gre-about-highlight strong {
    margin-bottom: 4px;
    color: var(--gre-navy);
    font-size: 0.9rem;
    line-height: 1.35;
}

.gre-about-highlight span {
    color: var(--gre-muted);
    font-size: 0.73rem;
    line-height: 1.5;
}

.gre-about-action {
    margin-top: 30px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */

.gre-products {
    padding: clamp(82px, 5vw, 124px) 0;
    background: var(--gre-light);
}

.gre-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.gre-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #dde3e7;
    border-radius: 8px;
    background: var(--gre-white);
    transition:
        border-color 280ms ease,
        transform 280ms var(--gre-ease),
        box-shadow 280ms ease;
}

.gre-product-card::before {
    position: absolute;
    z-index: 5;
    right: auto;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: var(--gre-yellow);
    content: "";
    transition: width 320ms var(--gre-ease);
}

.gre-product-card:hover {
    border-color: rgba(8, 120, 168, 0.45);
    box-shadow: 0 18px 38px rgba(7, 28, 44, 0.08);
    transform: translateY(-5px);
}

.gre-product-card:hover::before {
    width: 100%;
}

.gre-product-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.2 / 1;
    background:
        linear-gradient(145deg, #f8fafb 0%, #eef2f4 100%);
}

.gre-product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 450ms var(--gre-ease),
        filter 300ms ease;
}

.gre-product-card:hover .gre-product-image-link img {
    transform: scale(1.045) translateY(-4px);
}

.gre-product-content {
    min-height: 212px;
    padding: 24px 22px 25px;
}

.gre-product-category-label {
    display: block;
    margin-bottom: 7px;
    color: var(--gre-blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gre-product-content h3 {
    margin: 0;
    color: var(--gre-navy);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.gre-product-content h3 a {
    transition: color 200ms ease;
}

.gre-product-content h3 a:hover,
.gre-product-content h3 a:focus-visible {
    color: var(--gre-blue);
}

.gre-product-content p {
    margin: 11px 0 19px;
    color: var(--gre-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.gre-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gre-navy);
    font-size: 0.77rem;
    font-weight: 800;
}

.gre-product-link svg {
    width: 16px;
    height: 16px;
    color: var(--gre-yellow-dark);
    transition: transform 220ms var(--gre-ease);
}

.gre-product-link:hover svg,
.gre-product-link:focus-visible svg,
.gre-product-card:hover .gre-product-link svg {
    transform: translateX(5px);
}

/* ============================================================
   DIFFERENCE
   ============================================================ */

.gre-difference {
    position: relative;
    min-height: 625px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 44, 0.98) 0%,
            rgba(7, 28, 44, 0.96) 34%,
            rgba(7, 28, 44, 0.82) 53%,
            rgba(7, 28, 44, 0.36) 72%,
            rgba(7, 28, 44, 0.12) 100%
        ),
        url("../../g-img/glycon-chiller-new.png") center right / cover no-repeat;
}

.gre-difference::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(8, 120, 168, 0.08),
            transparent 55%
        );
    content: "";
    pointer-events: none;
}

.gre-difference-inner {
    position: relative;
    z-index: 2;
    /*padding-block: clamp(86px, 4vw, 130px);*/
}

.gre-difference-content {
    width: min(660px, 55%);
}

.gre-difference-copy {
      max-width: 610px;
    margin: 13px 0 0;
    color: #ededed;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.gre-difference-list {
    margin-top: 30px;
}

.gre-difference-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gre-difference-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gre-difference-number {
    padding-top: 3px;
    color: var(--gre-yellow);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.gre-difference-item h3 {
    margin: 0 0 5px;
    color: var(--gre-white);
    font-size: 1rem;
    font-weight: 700;
}

.gre-difference-item p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    line-height: 1.65;
}

/* ============================================================
   CLIENTS
   ============================================================ */

.gre-clients {
    padding: clamp(82px, 8vw, 122px) 0;
    background: var(--gre-white);
}

.gre-clients-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: center;
    gap: clamp(38px, 6vw, 86px);
}

.gre-clients-content .gre-primary-action {
    margin-top: 28px;
}

.gre-client-marquee {
    position: relative;
    overflow: hidden;
    padding-block: 22px;
    border-block: 1px solid var(--gre-line);
    background:
        linear-gradient(
            90deg,
            var(--gre-white) 0,
            transparent 8%,
            transparent 92%,
            var(--gre-white) 100%
        );
}

.gre-client-marquee::before,
.gre-client-marquee::after {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    width: 52px;
    content: "";
    pointer-events: none;
}

.gre-client-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--gre-white), transparent);
}

.gre-client-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--gre-white), transparent);
}

.gre-client-track {
    display: flex;
    width: max-content;
    animation: gre-client-scroll 28s linear infinite;
}

.gre-client-group {
    display: flex;
    gap: 18px;
    padding-right: 18px;
}

.gre-client-marquee:hover .gre-client-track,
.gre-client-marquee:focus-within .gre-client-track {
    animation-play-state: paused;
}

.gre-client-logo {
    display: grid;
    width: 174px;
    min-height: 132px;
    flex: 0 0 174px;
    place-items: center;
    margin: 0;
    padding: 18px 14px 13px;
    border: 1px solid #e4e9ec;
    background: var(--gre-white);
    transition:
        border-color 220ms ease,
        transform 220ms ease;
}

.gre-client-logo:hover {
    border-color: rgba(8, 120, 168, 0.35);
    transform: translateY(-3px);
}

.gre-client-logo img {
    width: 150px;
    height: 66px;
    object-fit: contain;
    filter: saturate(0.9);
}

.gre-client-logo figcaption {
    margin-top: 11px;
    color: var(--gre-muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

@keyframes gre-client-scroll {
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   QUALITY
   ============================================================ */

.gre-quality {
    position: relative;
    padding: clamp(62px, 4vw, 124px) 0;
    overflow: hidden;
    background-color: var(--gre-light);
    background-image:
        linear-gradient(rgba(7, 28, 44, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 28, 44, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
}

.gre-quality::before {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(8, 120, 168, 0.12);
    border-radius: 50%;
    content: "";
}

.gre-quality-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2.4fr 3fr;
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.gre-quality-process {
    margin-top: 6px;
    border-top: 1px solid #ccd6dc;
}

.gre-quality-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    min-height: 50px;
    gap: 14px;
    border-bottom: 1px solid #ccd6dc;
}

.gre-quality-step span {
    color: var(--gre-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.gre-quality-step strong {
    color: var(--gre-navy);
    font-size: 0.9rem;
    font-weight: 700;
}

.gre-quality-visual {
    position: relative;
}

.gre-quality-image-frame {
    position: relative;
    overflow: hidden;
    border: 8px solid var(--gre-white);
    border-radius: 10px;
    background: var(--gre-white);
    box-shadow: 0 24px 60px rgba(7, 28, 44, 0.13);
}

.gre-quality-image-frame::before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gre-yellow);
    content: "";
}

.gre-quality-image-frame img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
}

.gre-quality-certifications {
    position: relative;
    z-index: 3;
    display: flex;
    width: max-content;
    max-width: calc(100% - 36px);
    flex-wrap: wrap;
    gap: 10px;
    margin: -34px auto 0;
    padding: 11px;
    border: 1px solid var(--gre-line);
    border-radius: 7px;
    background: var(--gre-white);
    box-shadow: 0 10px 28px rgba(7, 28, 44, 0.08);
}

.gre-quality-certification {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    padding: 4px;
    border: 1px solid #e4e9ec;
}

.gre-quality-certification img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================================
   FAQ
   ============================================================ */

.gre-faq {
    padding: clamp(82px, 8vw, 126px) 0;
    background: var(--gre-white);
}

.gre-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.39fr) minmax(0, 0.61fr);
    align-items: start;
    gap: clamp(46px, 7vw, 96px);
}

.gre-faq-intro {
    position: sticky;
    top: 110px;
}

.gre-faq-visual {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 17px;
    margin-top: 34px;
    padding: 15px;
    border: 1px solid var(--gre-line);
    background: var(--gre-light);
}

.gre-faq-visual img {
    width: 116px;
    height: 116px;
    object-fit: contain;
    background: #f4c528;
    padding: 3px;
    border-radius: 10px;
}

.gre-faq-visual-copy strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gre-navy);
    font-size: 0.85rem;
}

.gre-faq-visual-copy a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gre-blue);
    font-size: 0.75rem;
    font-weight: 800;
}

.gre-faq-visual-copy svg {
    width: 15px;
    height: 15px;
}

.gre-faq-list {
    display: grid;
    gap: 12px;
}

.gre-faq-item {
    overflow: hidden;
    border: 1px solid #dce3e7;
    border-left: 3px solid transparent;
    border-radius: 5px;
    background: var(--gre-white);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.gre-faq-item:hover {
    border-color: #cad5db;
}

.gre-faq-item.gre-is-open {
    border-left-color: var(--gre-yellow);
    box-shadow: 0 10px 30px rgba(7, 28, 44, 0.06);
}

.gre-faq-item h3 {
    margin: 0;
}

.gre-faq-question {
    display: flex;
    width: 100%;
    min-height: 63px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 22px;
    background: var(--gre-white);
    color: var(--gre-navy);
    cursor: pointer;
    text-align: left;
}

.gre-faq-question > span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.gre-faq-symbol {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--gre-light);
}

.gre-faq-symbol::before,
.gre-faq-symbol::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: var(--gre-navy);
    content: "";
    transition: transform 220ms ease;
}

.gre-faq-symbol::before {
    transform: translate(-50%, -50%);
}

.gre-faq-symbol::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.gre-faq-question[aria-expanded="true"] .gre-faq-symbol {
    background: var(--gre-yellow);
}

.gre-faq-question[aria-expanded="true"] .gre-faq-symbol::after {
    transform: translate(-50%, -50%) rotate(0);
}

.gre-faq-panel {
    height: auto;
}

.gre-js-ready .gre-faq-panel {
    height: 0;
    overflow: hidden;
    transition: height 320ms var(--gre-ease);
}

.gre-faq-answer {
    padding: 0 22px 22px;
}

.gre-faq-answer p {
    margin: 0;
    color: var(--gre-muted);
    font-size: 0.87rem;
    line-height: 1.78;
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */

.gre-contact-strip {
    position: relative;
    z-index: 3;
    padding: 0 0 58px;
    background: var(--gre-white);
}

.gre-contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #d8e0e5;
    border-radius: 9px;
    background: var(--gre-white);
    box-shadow: 0 18px 50px rgba(7, 28, 44, 0.08);
}

.gre-contact-strip-item {
    display: flex;
    min-width: 0;
    min-height: 118px;
    align-items: center;
    gap: 16px;
    padding: 24px 27px;
    border-right: 1px solid #d8e0e5;
    transition: background 220ms ease;
}

.gre-contact-strip-item:last-child {
    border-right: 0;
}

.gre-contact-strip-item:hover,
.gre-contact-strip-item:focus-visible {
    background: var(--gre-light);
}

.gre-contact-strip-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--gre-yellow);
    color: var(--gre-navy);
}

.gre-contact-strip-icon svg {
    width: 20px;
    height: 20px;
}

.gre-contact-strip-copy {
    min-width: 0;
}

.gre-contact-strip-copy small,
.gre-contact-strip-copy strong,
.gre-contact-strip-copy > span {
    display: block;
}

.gre-contact-strip-copy small {
    margin-bottom: 4px;
    color: var(--gre-blue);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gre-contact-strip-copy strong {
    overflow-wrap: anywhere;
    color: var(--gre-navy);
    font-size: 0.88rem;
    font-weight: 800;
}

.gre-contact-strip-copy > span {
    margin-top: 2px;
    color: var(--gre-muted);
    font-size: 0.74rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.gre-main-footer {
    position: relative;
    background: var(--gre-navy);
    color: #c6d0d7;
}

.gre-footer-seo {
    border-bottom: 1px solid var(--gre-line-dark);
    background: #061724;
}

.gre-seo-links {
    padding: 0;
}

.gre-seo-links summary {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--gre-white);
    cursor: pointer;
    list-style: none;
}

.gre-seo-links summary::-webkit-details-marker {
    display: none;
}

.gre-seo-links summary span {
    display: grid;
    gap: 3px;
    font-size: 0.96rem;
    font-weight: 800;
}

.gre-seo-links summary small {
    color: var(--gre-yellow);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gre-seo-links summary > svg {
    width: 22px;
    height: 22px;
    transition: transform 240ms ease;
}

.gre-seo-links[open] summary > svg {
    transform: rotate(180deg);
}

.gre-seo-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding: 0 0 28px;
}

.gre-seo-link-grid a {
    padding: 9px 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: #aebbc4;
    font-size: 0.73rem;
    transition:
        color 190ms ease,
        background 190ms ease;
}

.gre-seo-link-grid a:hover,
.gre-seo-link-grid a:focus-visible {
    background: rgba(255, 255, 255, 0.035);
    color: var(--gre-yellow);
}

.gre-footer-brand-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 27px 0 27px;
    border-bottom: 1px solid var(--gre-line-dark);
}

.gre-footer-logo-frame {
    display: grid;
    width: 174px;
    min-height: 76px;
    place-items: center;
    padding: 8px 13px;
    border-radius: 6px;
    background: var(--gre-white);
}

.gre-footer-logo-frame img {
    width: 150px;
    height: auto;
}

.gre-footer-brand-row p {
    max-width: 720px;
    margin: 0;
    color: #a8b6bf;
    font-size: 0.82rem;
    line-height: 1.75;
}

.gre-footer-socials {
    display: flex;
    gap: 8px;
}

.gre-footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #c5d1d8;
    transition:
        color 200ms ease,
        border-color 200ms ease,
        background 200ms ease,
        transform 200ms ease;
}

.gre-footer-socials a:hover,
.gre-footer-socials a:focus-visible {
    border-color: var(--gre-yellow);
    background: rgba(245, 183, 0, 0.1);
    color: var(--gre-yellow);
    transform: translateY(-2px);
}

.gre-footer-socials svg {
    width: 16px;
    height: 16px;
}

.gre-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.78fr 0.92fr 1.45fr;
    gap: clamp(32px, 4vw, 58px);
    padding: 54px 0 58px;
}

.gre-footer-column h2 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 11px;
    color: var(--gre-white);
    font-size: 0.92rem;
    font-weight: 800;
}

.gre-footer-column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--gre-yellow);
    content: "";
}

.gre-footer-address {
    margin-bottom: 16px;
}

.gre-footer-address strong,
.gre-footer-address span {
    display: block;
}

.gre-footer-address strong {
    margin-bottom: 3px;
    color: var(--gre-yellow);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gre-footer-address span {
    color: #aebbc3;
    font-size: 0.75rem;
    line-height: 1.65;
}

.gre-footer-contact-list {
    display: grid;
    gap: 7px;
    margin-top: 20px;
}

.gre-footer-contact-list a,
.gre-footer-nav a {
    color: #aebbc3;
    font-size: 0.75rem;
    line-height: 1.55;
    transition:
        color 190ms ease,
        transform 190ms ease;
}

.gre-footer-contact-list a:hover,
.gre-footer-contact-list a:focus-visible,
.gre-footer-nav a:hover,
.gre-footer-nav a:focus-visible {
    color: var(--gre-yellow);
}

.gre-footer-nav {
    display: grid;
    gap: 11px;
}

.gre-footer-nav a {
       position: relative;
    padding-left: 14px;
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

.gre-footer-nav a::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(245, 183, 0, 0.65);
    content: "";
}

.gre-footer-nav a:hover,
.gre-footer-nav a:focus-visible {
    transform: translateX(3px);
}

.gre-export-grid {
       display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    height: 194px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.gre-export-chip {
          display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    padding: 7px 3px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.025);
    color: #e1e1e2;
    font-size: 0.75rem;
    line-height: 1.3;
}

.gre-export-chip img {
    width: 54px;
    height: 42px;
    flex: 0 0 22px;
    object-fit: contain;
}

.gre-footer-map-link {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color 200ms ease,
        background 200ms ease;
}

.gre-footer-map-link:hover,
.gre-footer-map-link:focus-visible {
    border-color: rgba(245, 183, 0, 0.45);
    background: rgba(245, 183, 0, 0.06);
}

.gre-footer-map-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--gre-yellow);
    color: var(--gre-navy);
}

.gre-footer-map-icon svg {
    width: 17px;
    height: 17px;
}

.gre-footer-map-link small,
.gre-footer-map-link strong {
    display: block;
}

.gre-footer-map-link small {
    color: #8798a3;
    font-size: 0.61rem;
    text-transform: uppercase;
}

.gre-footer-map-link strong {
    color: var(--gre-white);
    font-size: 0.7rem;
}

.gre-footer-map-arrow {
    width: 17px;
    height: 17px;
    color: var(--gre-yellow);
}

.gre-footer-bottom {
    border-top: 1px solid var(--gre-line-dark);
    background: #05131e;
}

.gre-footer-bottom-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.gre-footer-bottom p {
    margin: 0;
    color: #83949f;
    font-size: 0.67rem;
    line-height: 1.6;
}

.gre-footer-credit {
    margin-left: 4px;
}

.gre-footer-credit a {
    color: #aab7bf;
}

.gre-footer-credit a:hover,
.gre-footer-credit a:focus-visible {
    color: var(--gre-yellow);
}

.gre-footer-legal {
    display: flex;
    gap: 18px;
    white-space: nowrap;
}

.gre-footer-legal a {
    color: #9baab4;
    font-size: 0.67rem;
    transition: color 190ms ease;
}

.gre-footer-legal a:hover,
.gre-footer-legal a:focus-visible {
    color: var(--gre-yellow);
}

/* ============================================================
   FLOATING CONTACT RAIL
   ============================================================ */

.gre-contact-rail {
    position: fixed;
    z-index: 70;
    top: 50%;
    left: 16px;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.gre-contact-rail-link {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(7, 28, 44, 0.11);
    border-radius: 24px;
    background: var(--gre-white);
    color: var(--gre-navy);
    box-shadow: 0 8px 28px rgba(7, 28, 44, 0.11);
    transition:
        width 300ms var(--gre-ease),
        color 200ms ease,
        background 200ms ease;
}

.gre-contact-rail-link svg {
    width: 18px;
    height: 18px;
    margin: 0 14px;
    flex: 0 0 18px;
}

.gre-contact-rail-link span {
    padding-right: 17px;
    opacity: 0;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
    transform: translateX(-5px);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.gre-contact-rail-link:hover,
.gre-contact-rail-link:focus-visible {
    width: 130px;
    background: #f5b700;
    color: #f5b700;
}

.gre-contact-rail-link:hover span,
.gre-contact-rail-link:focus-visible span {
    opacity: 1;
    transform: translateX(0);
}

.gre-contact-rail-whatsapp {
    color: #118b51;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */

.gre-scroll-top {
    --gre-scroll-progress: 0%;

    position: fixed;
    z-index: 72;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 3px;
    border-radius: 50%;
    opacity: 0;
    background:
        conic-gradient(
            var(--gre-yellow) var(--gre-scroll-progress),
            rgba(7, 28, 44, 0.13) 0
        );
    cursor: pointer;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 240ms ease,
        transform 240ms ease;
}

.gre-scroll-top.gre-is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.gre-scroll-top-inner {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--gre-navy);
    color: var(--gre-white);
    transition:
        background 220ms ease,
        color 220ms ease;
}

.gre-scroll-top:hover .gre-scroll-top-inner,
.gre-scroll-top:focus-visible .gre-scroll-top-inner {
    background: var(--gre-yellow);
    color: var(--gre-navy);
}

.gre-scroll-top svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   LANGUAGE TRANSLATOR
   ============================================================ */

.gre-language-dock {
    position: fixed;
    z-index: 74;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
}

.gre-language-toggle {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 7px 0 0 7px;
    background: var(--gre-navy);
    box-shadow: 0 8px 26px rgba(7, 28, 44, 0.16);
    color: var(--gre-white);
    cursor: pointer;
    transition:
        background 200ms ease,
        color 200ms ease,
        transform 220ms ease;
}

.gre-language-toggle:hover,
.gre-language-toggle:focus-visible,
.gre-language-toggle[aria-expanded="true"] {
    background: var(--gre-yellow);
    color: var(--gre-navy);
}

.gre-language-toggle svg {
    width: 18px;
    height: 18px;
}

.gre-language-toggle span {
    font-size: 0.7rem;
    font-weight: 800;
}

.gre-language-panel {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 260px;
    padding: 17px;
    border: 1px solid #dce4e8;
    border-radius: 8px;
    opacity: 0;
    background: var(--gre-white);
    box-shadow: 0 20px 55px rgba(7, 28, 44, 0.18);
    pointer-events: none;
    transform: translate(12px, -50%);
    transition:
        opacity 220ms ease,
        transform 260ms var(--gre-ease),
        visibility 220ms ease;
    visibility: hidden;
}

.gre-language-panel.gre-is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, -50%);
    visibility: visible;
}

.gre-language-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gre-line);
}

.gre-language-panel-heading small,
.gre-language-panel-heading strong {
    display: block;
}

.gre-language-panel-heading small {
    color: var(--gre-muted);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gre-language-panel-heading strong {
    margin-top: 2px;
    color: var(--gre-navy);
    font-size: 0.8rem;
}

.gre-language-panel-close {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--gre-light);
    color: var(--gre-navy);
    cursor: pointer;
}

.gre-language-panel-close svg {
    width: 16px;
    height: 16px;
}

.gre-google-translate {
    min-height: 40px;
}

#gre-google-translate select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #ccd7dd;
    border-radius: 5px;
    background: var(--gre-white);
    color: var(--gre-text);
    font-family: var(--gre-font);
    font-size: 0.75rem;
}

.gre-language-reset {
    width: 100%;
    margin-top: 11px;
    padding: 10px 12px;
    border-radius: 5px;
    background: var(--gre-light);
    color: var(--gre-blue);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    transition:
        background 190ms ease,
        color 190ms ease;
}

.gre-language-reset:hover,
.gre-language-reset:focus-visible {
    background: var(--gre-navy);
    color: var(--gre-white);
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */

.gre-mobile-bottom-nav {
    display: none;
}

/* ============================================================
   INTERSECTION OBSERVER REVEALS
   ============================================================ */

.gre-js-ready .gre-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 650ms var(--gre-ease) var(--gre-reveal-delay, 0ms),
        transform 650ms var(--gre-ease) var(--gre-reveal-delay, 0ms);
}

.gre-js-ready .gre-reveal.gre-is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LAPTOP / SMALL DESKTOP
   ============================================================ */

@media (max-width: 1180px) {
    .gre-main-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .gre-nav-list {
        gap: 18px;
    }

    .gre-nav-link,
    .gre-nav-product-trigger {
        font-size: 0.78rem;
    }

    .gre-whatsapp-action-label {
        display: none;
    }

    .gre-whatsapp-action {
        width: 48px;
        justify-content: center;
        padding: 0;
    }

    .gre-whatsapp-action-arrow {
        display: none;
    }

    .gre-product-grid {
        gap: 18px;
    }

    .gre-footer-grid {
        grid-template-columns: 1.1fr 0.75fr 0.9fr 1.25fr;
        gap: 30px;
    }
}

/* ============================================================
   TABLET / MOBILE HEADER BREAKPOINT
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --gre-header-height: 74px;
    }

    .gre-shell-width {
        width: min(var(--gre-max-width), calc(100% - 36px));
    }

    .gre-main-header-inner {
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .gre-brand-logo {
        width: 145px;
    }

    .gre-main-header.gre-is-scrolled .gre-brand-logo {
        width: 138px;
    }

    .gre-mobile-menu-button {
        display: grid;
    }

    .gre-header-actions {
        grid-column: 2;
    }

    .gre-site-nav {
        position: absolute;
        z-index: 84;
        top: 100%;
        right: -18px;
        left: -18px;
        width: auto;
        justify-self: stretch;
        border-top: 1px solid var(--gre-line);
        background: var(--gre-white);
        box-shadow: 0 24px 42px rgba(7, 28, 44, 0.12);
    }

    .gre-js-ready .gre-site-nav {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 430ms var(--gre-ease),
            opacity 250ms ease;
    }

    .gre-js-ready .gre-site-nav.gre-is-mobile-open {
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto;
    }

    .gre-nav-list {
        display: grid;
        gap: 0;
        padding: 12px 18px 22px;
    }

    .gre-nav-item {
        border-bottom: 1px solid #edf0f2;
    }

    .gre-nav-link,
    .gre-nav-product-trigger {
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
        font-size: 0.88rem;
        text-align: left;
    }

    .gre-nav-link::after,
    .gre-nav-product-trigger::after {
        display: none;
    }

    .gre-product-menu {
        position: static;
        width: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 0;
        opacity: 1;
        background: #f7f9fa;
        box-shadow: none;
        pointer-events: auto;
        transform: none;
        transition: max-height 430ms var(--gre-ease);
        visibility: visible;
    }

    .gre-product-menu.gre-is-open {
        max-height: 1500px;
        transform: none;
    }

    .gre-product-menu-grid {
        display: block;
        padding: 8px 14px 12px;
    }

    .gre-product-category {
        border-bottom: 1px solid #e1e7ea;
    }

    .gre-product-category:last-child {
        border-bottom: 0;
    }

    .gre-product-category-heading {
        min-height: 48px;
        padding: 8px 0;
        border: 0;
        cursor: pointer;
        font-size: 0.7rem;
    }

    .gre-product-category-heading svg {
        display: block;
        transition: transform 220ms ease;
    }

    .gre-product-category-heading[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

    .gre-product-category-panel {
        display: grid;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        padding: 0;
        transition:
            max-height 350ms var(--gre-ease),
            padding 250ms ease;
    }

    .gre-product-category-panel.gre-is-open {
        max-height: 420px;
        padding: 0 0 10px;
    }

    .gre-product-category-panel a {
        padding: 7px 0 7px 12px;
        font-size: 0.78rem;
    }

    .gre-product-menu-bottom {
        display: none;
    }

    .gre-hero-viewport {
        height: 590px;
    }

    .gre-hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(245, 247, 248, 0.98) 0%,
                rgba(245, 247, 248, 0.92) 38%,
                rgba(245, 247, 248, 0.57) 62%,
                rgba(245, 247, 248, 0.1) 100%
            );
    }

    .gre-hero-content {
        width: min(580px, 64%);
    }

    .gre-about-layout,
    .gre-quality-layout {
        gap: 44px;
    }

    .gre-about-collage {
        min-height: 500px;
    }

    .gre-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .gre-difference-content {
        width: 64%;
    }

    .gre-clients-layout {
        grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
        gap: 40px;
    }

    .gre-faq-layout {
        grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
        gap: 40px;
    }

    .gre-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gre-seo-link-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gre-contact-rail {
        left: 10px;
    }
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 860px) {
    .gre-about-layout,
    .gre-quality-layout,
    .gre-faq-layout {
        grid-template-columns: 1fr;
    }

    .gre-about-collage {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
    }

    .gre-quality-visual {
        max-width: 700px;
        width: 100%;
        margin-inline: auto;
    }

    .gre-faq-intro {
        position: static;
    }

    .gre-faq-visual {
        max-width: 450px;
    }

    .gre-clients-layout {
        grid-template-columns: 1fr;
    }

    .gre-clients-content {
        max-width: 650px;
    }

    .gre-difference {
        background:
            linear-gradient(
                90deg,
                rgba(7, 28, 44, 0.98) 0%,
                rgba(7, 28, 44, 0.94) 48%,
                rgba(7, 28, 44, 0.65) 76%,
                rgba(7, 28, 44, 0.42) 100%
            ),
            url("../../g-img/glycon-chiller-new.png") center / cover no-repeat;
    }

    .gre-difference-content {
        width: 72%;
    }

    .gre-contact-strip-item {
        padding-inline: 20px;
    }

    .gre-contact-strip-copy strong {
        font-size: 0.8rem;
    }

    .gre-footer-brand-row {
        grid-template-columns: auto 1fr;
    }

    .gre-footer-socials {
        grid-column: 1 / -1;
    }

    .gre-export-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {
    :root {
        --gre-header-height: 68px;
    }

    html {
        scroll-padding-bottom: 86px;
    }

    #gre-site-shell {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .gre-shell-width {
        width: min(var(--gre-max-width), calc(100% - 28px));
    }

    .gre-topbar-inner {
        min-height: 38px;
        gap: 10px;
    }

    .gre-topbar-contact {
        gap: 7px;
    }

    .gre-topbar-secondary-phone,
    .gre-topbar-email-divider {
        display: none;
    }

    .gre-topbar-link {
        font-size: 0.7rem;
    }

    .gre-topbar-socials {
        gap: 3px;
    }

    .gre-topbar-social-link {
        width: 26px;
        height: 26px;
    }

    .gre-main-header-inner {
        min-height: 68px;
    }

    .gre-main-header.gre-is-scrolled .gre-main-header-inner {
        min-height: 64px;
    }

    .gre-brand-logo,
    .gre-main-header.gre-is-scrolled .gre-brand-logo {
        width: 125px;
    }

    .gre-whatsapp-action {
        display: none;
    }

    .gre-site-nav {
        right: -14px;
        left: -14px;
    }

    .gre-hero {
        min-height: 590px;
    }

    .gre-hero-viewport {
        height: 590px;
    }

    .gre-hero-slide::before {
        background:
            linear-gradient(
                180deg,
                rgba(245, 247, 248, 0.93) 0%,
                rgba(245, 247, 248, 0.9) 50%,
                rgba(245, 247, 248, 0.73) 72%,
                rgba(245, 247, 248, 0.32) 100%
            );
    }

    .gre-hero-media {
        object-position: 67% center;
    }

    .gre-hero-content-wrap {
        align-items: flex-start;
        padding-top: 62px;
    }

    .gre-hero-content {
        width: 100%;
        max-width: 560px;
        padding-bottom: 85px;
    }

    .gre-hero-heading {
        max-width: 540px;
        font-size: clamp(2.25rem, 10vw, 3.65rem);
        line-height: 1;
    }

    .gre-hero-copy {
        max-width: 510px;
        margin-top: 20px;
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .gre-hero-actions {
        margin-top: 24px;
    }

    .gre-primary-action,
    .gre-secondary-action {
        min-height: 49px;
        padding: 12px 17px;
        font-size: 0.8rem;
    }

    .gre-hero-controls {
        bottom: 18px;
    }

    .gre-hero-arrow {
        width: 42px;
        height: 42px;
    }

    .gre-about,
    .gre-products,
    .gre-clients,
    .gre-quality,
    .gre-faq {
        padding-block: 76px;
    }

    .gre-section-heading {
        font-size: clamp(2rem, 9.6vw, 3rem);
    }

    .gre-section-copy {
        font-size: 0.93rem;
    }

    .gre-about-collage {
        min-height: 435px;
    }

    .gre-about-image-main {
        width: 76%;
        height: 85%;
    }

    .gre-about-image-workshop {
        width: 38%;
        height: 31%;
    }

    .gre-about-image-product {
        width: 45%;
        height: 41%;
    }

    .gre-about-highlights {
        grid-template-columns: 1fr;
    }

    .gre-about-highlight {
        padding: 15px 17px;
    }

    .gre-product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gre-product-card {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .gre-product-image-link {
        aspect-ratio: 1.38 / 1;
    }

    .gre-product-content {
        min-height: 0;
        padding: 22px 20px 24px;
    }

    .gre-difference {
        min-height: auto;
        background:
            linear-gradient(
                rgba(7, 28, 44, 0.91),
                rgba(7, 28, 44, 0.93)
            ),
            url("../../g-img/glycon-chiller-new.png") center / cover no-repeat;
    }

    .gre-difference-inner {
        padding-block: 80px;
    }

    .gre-difference-content {
        width: 100%;
    }

    .gre-difference-item {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 10px;
    }

    .gre-client-logo {
        width: 152px;
        flex-basis: 152px;
    }

    .gre-quality-image-frame img {
        min-height: 300px;
    }

    .gre-quality-certifications {
        max-width: calc(100% - 24px);
    }

    .gre-faq-question {
        min-height: 68px;
        padding: 17px 17px;
    }

    .gre-faq-question > span:first-child {
        font-size: 0.86rem;
    }

    .gre-faq-answer {
        padding: 0 17px 18px;
    }

    .gre-faq-visual {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .gre-faq-visual img {
        width: 96px;
        height: 106px;
    }

    .gre-contact-strip {
        padding-bottom: 42px;
    }

    .gre-contact-strip-grid {
        grid-template-columns: 1fr;
    }

    .gre-contact-strip-item {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid #d8e0e5;
    }

    .gre-contact-strip-item:last-child {
        border-bottom: 0;
    }

    .gre-footer-brand-row {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 42px;
    }

    .gre-footer-logo-link {
        width: max-content;
    }

    .gre-footer-socials {
        grid-column: auto;
    }

    .gre-footer-grid {
        grid-template-columns: 1fr;
        padding-block: 44px;
    }

    .gre-seo-links summary {
        min-height: 78px;
    }

    .gre-seo-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gre-export-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gre-footer-bottom-inner {
        min-height: 96px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding-block: 20px;
        text-align: center;
    }

    .gre-footer-legal {
        justify-content: center;
    }

    .gre-contact-rail {
        display: none;
    }

    .gre-scroll-top {
        right: 13px;
        bottom: calc(84px + env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
    }

    .gre-scroll-top-inner {
        width: 38px;
        height: 38px;
    }

    .gre-language-dock {
        top: auto;
        right: 13px;
        bottom: calc(140px + env(safe-area-inset-bottom));
        transform: none;
    }

    .gre-language-toggle {
        width: 44px;
        height: 44px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .gre-language-toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .gre-language-panel {
        top: auto;
        right: 0;
        bottom: 52px;
        width: min(280px, calc(100vw - 28px));
        transform: translateY(8px);
    }

    .gre-language-panel.gre-is-open {
        transform: translateY(0);
    }

    .gre-mobile-bottom-nav {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        min-height: calc(66px + env(safe-area-inset-bottom));
        padding: 5px 4px env(safe-area-inset-bottom);
        border-top: 1px solid #d9e0e4;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -10px 28px rgba(7, 28, 44, 0.09);
        backdrop-filter: blur(12px);
    }

    .gre-mobile-bottom-nav > a {
        display: flex;
        min-width: 0;
        min-height: 56px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #5d6973;
        font-size: 0.59rem;
        font-weight: 700;
    }

    .gre-mobile-bottom-nav > a > svg {
        width: 20px;
        height: 20px;
    }

    .gre-mobile-home-action {
        position: relative;
        color: var(--gre-navy) !important;
    }

    .gre-mobile-home-icon {
        display: grid;
        width: 42px;
        height: 42px;
        margin-top: -24px;
        place-items: center;
        border: 4px solid var(--gre-white);
        border-radius: 50%;
        background: var(--gre-yellow);
        box-shadow: 0 8px 20px rgba(7, 28, 44, 0.16);
        color: var(--gre-navy);
    }

    .gre-mobile-home-icon svg {
        width: 19px;
        height: 19px;
    }
}

/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 520px) {
    .gre-topbar-email {
        display: none;
    }

    .gre-topbar-contact {
        flex: 1;
    }

    .gre-topbar-socials {
        flex: 0 0 auto;
    }

    .gre-hero-content-wrap {
        padding-top: 52px;
    }

    .gre-hero-heading {
        font-size: clamp(2.12rem, 11vw, 3rem);
    }

    .gre-hero-copy {
        max-width: 92%;
    }

    .gre-hero-actions {
        gap: 9px;
    }

    .gre-primary-action,
    .gre-secondary-action {
        padding-inline: 14px;
    }

    .gre-about-collage {
        min-height: 380px;
    }

    .gre-about-image-main {
        width: 80%;
        height: 82%;
    }

    .gre-about-image-workshop {
        width: 37%;
        height: 30%;
    }

    .gre-about-image-product {
        right: 0;
        width: 47%;
        height: 39%;
    }

    .gre-client-marquee::before,
    .gre-client-marquee::after {
        width: 25px;
    }

    .gre-quality-step {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .gre-contact-strip-item {
        padding: 20px 17px;
    }

    .gre-contact-strip-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .gre-seo-link-grid {
        grid-template-columns: 1fr;
    }

    .gre-export-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    #gre-site-shell *,
    #gre-site-shell *::before,
    #gre-site-shell *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gre-js-ready .gre-reveal {
        opacity: 1;
        transform: none;
    }

    .gre-client-track {
        animation: none;
    }

    .gre-client-marquee {
        overflow-x: auto;
    }

    .gre-hero-slide.gre-is-current .gre-hero-media {
        animation: none;
    }
}