:root {
    --header-top-background-color:#045690;
    --header-bottom-background-color:#020302;
    --footer-background-color:#fff;
    --brand-blue: #2c2e73;
    --brand-turquoise: #81b6b9;
    --brand-dark: #515252;
    --brand-light: #ddd;
    --accent: #045690;
    --accent-soft: #fff3e8;
    --surface: #fff;
    --surface-muted: #f6f7fb;
    --border: #d8dde8;
    --text: #1f2937;
    --text-muted: #5b6474;
    --shadow: 0 20px 40px rgb(15 23 42 / 10%);
    --radius: 18px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Roboto, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgb(129 182 185 / 18%), transparent 28%),
        radial-gradient(circle at top right, rgb(163 48 52 / 12%), transparent 26%),
        linear-gradient(180deg, #fff, #f6f7fb 55%, #eef2f7);
}

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

a,
a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: Roboto, sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

p {
    line-height: 1.65;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #d3d3d3;
}

::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.container {
    width: min(var(--container-width), calc(100% - 60px));
    margin: 0 auto;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-content {
    min-height: 240px;
}

.gl-hide-on-mobile {
    display: inherit;
}

.gl-hide-on-desktop {
    display: none;
}

.error {
    padding: 12px 14px;
    border: 1px solid #d62828;
    border-radius: 10px;
    background: #fff1f1;
    color: #8f1313;
}

.brand-blue-text {
    color: var(--brand-blue) !important;
}

.btn-1,
.btn-2,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
    cursor: pointer;
}

.btn-1 {
    color: var(--gl-dh-btn-color, var(--accent));
    background: transparent;
    border: 2px solid var(--gl-dh-btn-color, var(--accent));
}

.btn-2 {
    color: #fff;
    background: var(--gl-dh-btn-color, var(--accent));
    border: 2px solid var(--gl-dh-btn-color, var(--accent));
}

.btn-white {
    color: var(--brand-blue) !important;
    background: #fff;
    border: 1px solid rgb(255 255 255 / 30%);
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
}

.btn-1:hover,
.btn-2:hover,
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgb(15 23 42 / 12%);
}

.btn-white span {
    color: inherit !important;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th,
.cart-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.cart-table thead th {
    background: var(--surface-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-table tbody tr:last-child td {
    border-bottom: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.summary-row.total {
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-weight: 700;
}

#gl-header-top {
    padding: 16px 0;
    background: var(--header-top-background-color);
}

#gl-header-top * {
    color: #fff;
}

#glht-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#glht-cta-btns,
#glht-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.glht-social-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(255 255 255 / 16%);
}

#gl-header-bottom {
    background-color: var(--header-bottom-background-color);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 18px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgb(15 23 42 / 10%);
}

#glhb-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#glhb-logo-wrapper img {
    max-height: 72px;
    width: auto;
}

#glhb-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.glhb-nav-item {
    height: 50px;
}

.glhb-nav-item,
.glhb-nav-item-mobile {
    position: relative;
}

.glhb-nav-link,
.glhb-submenu-link,
.glhb-nav-item > a,
.glhb-nav-item-mobile > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 700;
    width: 100%;
}

.glhb-nav-item > a.active-page span,
.glhb-nav-item-mobile > a.active-page span,
.glhb-submenu-link.active-page span {
    color: var(--header-top-background-color) !important;
}

.drop-down-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.nav-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #e5f0ff;
    color: var(--brand-blue) !important;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.dropdown-menu-main-nav,
.dropdown-menu-main-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.dropdown-menu-main-nav {
    position: absolute;
    top: 65%;
    left: -18px;
    min-width: 220px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgb(255 255 255 / 96%);
    box-shadow: var(--shadow);
}

.glhb-submenu-item {
    position: relative;
}

.dropdown-menu-sub-nav {
    display: none;
    position: absolute;
    top: -18px;
    left: calc(100% + 16px);
    min-width: 220px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgb(255 255 255 / 96%);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

.dropdown-menu-main-nav a,
.dropdown-menu-sub-nav a {
    color: inherit;
    text-decoration: none;
}

.drop-down-icon-child {
    margin-left: auto;
}

.glhb-nav-item:hover > .dropdown-menu-main-nav {
    display: flex;
}

.glhb-submenu-item:hover > .dropdown-menu-sub-nav {
    display: flex;
}

#header-mobile-nav {
    display: none;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgb(255 255 255 / 96%);
    box-shadow: var(--shadow);
}

.dropdown-menu-main-nav-mobile {
    display: flex;
    margin-top: 10px;
    margin-left: 16px;
}

.dropdown-menu-sub-nav-mobile {
    display: flex;
    margin-top: 10px;
    margin-left: 16px;
    flex-direction: column;
    gap: 12px;
}

.glhb-submenu-item-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#gl-footer {
    margin-top: 60px;
    padding: 30px 0;
    background-color: var(--footer-background-color);
    box-shadow: 0 10px 30px rgb(15 23 42 / 10%);
}

#gl-footer-grid-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

#glf2-1 {
    display: flex;
    align-items: center;
    gap: 24px;
}

#glf-logo-wrapper img {
    max-height: 64px;
    width: auto;
}

#glf2-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.glfb-nav-item span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.slick-slide {
    height: auto;
}

#gl-slider {
    position: relative;
    overflow: hidden;
    background: #e9edf4;
    box-shadow: var(--shadow);
}

#gl-slider a,
.gl-slide-image {
    display: block;
}

#gl-slider img {
    width: 100%;
    aspect-ratio: 1920 / 500;
    object-fit: cover;
}

#gl-slider-prev,
#gl-slider-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgb(15 23 42 / 70%);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    transform: translateY(-50%);
    cursor: pointer;
}

#gl-slider-prev {
    left: 18px;
}

#gl-slider-next {
    right: 18px;
}

#gl-hero-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#gl-hero-image img {
    width: 100%;
    aspect-ratio: 1920 / 500;
    object-fit: cover;
}

.gl-google-map {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.gl-google-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

#gl-product-grid-section {
    position: relative;
}

#product-wrapper-grid {
    display: grid;
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

#product-filter {
    position: sticky;
    top: 120px;
}

.filter-container {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

#product-filter .pf-title {
    display: block;
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

#product-filter select,
#product-filter input,
.checkout-form input,
.coupon-box input,
.cart-table input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font: inherit;
    background: #fff;
}

#product-filter select,
#product-filter input {
    margin-bottom: 16px;
}

#product-filter .filter-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

#product-filter .reset-btn {
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
}

#product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgb(15 23 42 / 14%);
}

.gl-product-page {
    padding: 60px 0;
}

.gl-product-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 40px;
    align-items: start;
}

.gl-product-page-media img {
    display: block;
    width: 100%;
    border-radius: 24px;
    background: #fff;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.gl-product-page-content {
    display: grid;
    gap: 20px;
}

.gl-product-page-title,
.gl-product-page-price {
    margin: 0;
}

.gl-product-page-price {
    color: var(--brand-blue);
    font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2.1rem);
    font-weight: 700;
}

.gl-product-page-meta {
    display: grid;
    gap: 8px;
}

.gl-product-page-meta p,
.gl-product-page-note {
    margin: 0;
}

.gl-product-page-stock {
    margin: 0;
    font-weight: 700;
}

.gl-product-page-stock.is-in-stock {
    color: #15803d;
}

.gl-product-page-stock.is-out-of-stock {
    color: #b91c1c;
}

.gl-product-page-description {
    margin-top: 30px;
}

.gl-product-page-description > h2 {
    margin: 0;
}

.gl-product-page-description > :first-child {
    margin-top: 0;
}

.gl-product-page-description > :last-child {
    margin-bottom: 0;
}

.gl-product-page-purchase {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
}

.gl-product-purchase-form,
.gl-product-options {
    display: grid;
    gap: 18px;
}

.gl-product-option {
    display: grid;
    gap: 8px;
}

.gl-product-option label,
.gl-product-quantity label {
    font-weight: 600;
}

.gl-product-option select,
.gl-product-option input,
.gl-product-quantity input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    font: inherit;
}

.gl-product-purchase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
}

.gl-product-quantity {
    display: grid;
    gap: 8px;
    min-width: 120px;
}

.pc-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #edf1f7;
}

.pc-content {
    padding: 18px;
}

.p-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.p-attribute {
    margin: 0 0 8px;
    color: var(--text-muted);
}

#gl-paginate {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#gl-paginate .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

#gl-paginate .pagination * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    font-size: 0.95rem;
}

#gl-paginate .pagination [class="page_current"] {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}

.cart-grid,
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 30px;
}

.cart-summary,
.checkout-summary,
.checkout-payment {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

.cart-actions,
.checkout-actions,
.coupon-box form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-actions,
.checkout-actions {
    margin-top: 18px;
}

.cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.coupon-box {
    margin-top: 22px;
}

.coupon-applied {
    margin: 0 0 10px;
    color: var(--brand-blue);
    font-weight: 700;
}

.coupon-clear {
    display: inline-block;
    margin-top: 10px;
    color: var(--text-muted);
}

.checkout-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

#orders-admin .container,
#cart-page .container,
#checkout-page .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

#gl-faqs {
    padding: 60px 0;
    background-repeat: no-repeat;
}

.gl-image-and-text {
    background-repeat: no-repeat;
}

.gl-image-and-text-layout {
    display: grid;
    gap: 30px;
    align-items: center;
}

.gl-image-and-text-media,
.gl-image-and-text-content {
    min-width: 0;
}

.gl-image-and-text-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.gl-image-and-text-title {
    margin-bottom: 18px;
}

.gl-image-and-text-body > :first-child {
    margin-top: 0;
}

.gl-image-and-text-body > :last-child {
    margin-bottom: 0;
}

.gl-image-and-text-button {
    margin-top: 24px;
}

.gl-image-and-text[data-image-position='left'] .gl-image-and-text-layout {
    grid-template-columns: minmax(0, var(--gl-iat-image-width, 40%)) minmax(0, 1fr);
}

.gl-image-and-text[data-image-position='right'] .gl-image-and-text-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--gl-iat-image-width, 40%));
}

.gl-image-and-text[data-image-position='right'] .gl-image-and-text-media {
    order: 2;
}

.gl-image-and-text[data-image-position='right'] .gl-image-and-text-content {
    order: 1;
}

.gl-image-and-text[data-image-position='above'] .gl-image-and-text-layout,
.gl-image-and-text[data-image-position='below'] .gl-image-and-text-layout,
.gl-image-and-text-no-image .gl-image-and-text-layout {
    grid-template-columns: minmax(0, 1fr);
}

.gl-image-and-text[data-image-position='below'] .gl-image-and-text-media {
    order: 2;
}

.gl-image-and-text[data-image-position='below'] .gl-image-and-text-content {
    order: 1;
}

.gl-video-and-text {
    background-repeat: no-repeat;
}

.gl-video-and-text-layout {
    display: grid;
    gap: 30px;
    align-items: center;
}

.gl-video-and-text-media,
.gl-video-and-text-content {
    min-width: 0;
}

.gl-video-and-text-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    box-shadow: var(--shadow);
    background: #0f172a;
}

.gl-video-and-text-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.gl-video-and-text-title {
    margin-bottom: 18px;
}

.gl-video-and-text-body > :first-child {
    margin-top: 0;
}

.gl-video-and-text-body > :last-child {
    margin-bottom: 0;
}

.gl-video-and-text-button {
    margin-top: 24px;
}

.gl-video-and-text[data-video-position='left'] .gl-video-and-text-layout {
    grid-template-columns: minmax(0, var(--gl-vat-video-width, 40%)) minmax(0, 1fr);
}

.gl-video-and-text[data-video-position='right'] .gl-video-and-text-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--gl-vat-video-width, 40%));
}

.gl-video-and-text[data-video-position='right'] .gl-video-and-text-media {
    order: 2;
}

.gl-video-and-text[data-video-position='right'] .gl-video-and-text-content {
    order: 1;
}

.gl-video-and-text[data-video-position='above'] .gl-video-and-text-layout,
.gl-video-and-text[data-video-position='below'] .gl-video-and-text-layout,
.gl-video-and-text-no-video .gl-video-and-text-layout {
    grid-template-columns: minmax(0, 1fr);
}

.gl-video-and-text[data-video-position='below'] .gl-video-and-text-media {
    order: 2;
}

.gl-video-and-text[data-video-position='below'] .gl-video-and-text-content {
    order: 1;
}

.gl-cta {
    background-repeat: no-repeat;
}

.gl-cta-content {
    display: grid;
    gap: 20px;
}

.gl-cta-title {
    margin: 0;
}

.gl-cta-body > :first-child {
    margin-top: 0;
}

.gl-cta-body > :last-child {
    margin-bottom: 0;
}

.gl-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gl-cta[data-title-align='center'] .gl-cta-content {
    margin-inline: auto;
    text-align: center;
}

.gl-cta[data-title-align='center'] .gl-cta-buttons {
    justify-content: center;
}

.gl-cta[data-title-align='right'] .gl-cta-content {
    margin-left: auto;
    text-align: right;
}

.gl-cta[data-title-align='right'] .gl-cta-buttons {
    justify-content: flex-end;
}

.gl-cta[data-title-align='left'] .gl-cta-content {
    text-align: left;
}

.gl-text-section {
    background-repeat: no-repeat;
}

.gl-text-section-content {
    display: grid;
    gap: 20px;
}

.gl-text-section-title {
    margin: 0;
}

.gl-text-section-body > :first-child {
    margin-top: 0;
}

.gl-text-section-body > :last-child {
    margin-bottom: 0;
}

.gl-text-section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gl-text-section[data-title-align='center'] .gl-text-section-content {
    margin-inline: auto;
    text-align: center;
}

.gl-text-section[data-title-align='center'] .gl-text-section-buttons {
    justify-content: center;
}

.gl-text-section[data-title-align='right'] .gl-text-section-content {
    margin-left: auto;
    text-align: right;
}

.gl-text-section[data-title-align='right'] .gl-text-section-buttons {
    justify-content: flex-end;
}

.gl-text-section[data-title-align='left'] .gl-text-section-content {
    text-align: left;
}

.gl-our-team {
    background-repeat: no-repeat;
}

.gl-our-team-content {
    display: grid;
    gap: 28px;
}

.gl-our-team-title {
    margin: 0;
}

.gl-our-team-body > :first-child {
    margin-top: 0;
}

.gl-our-team-body > :last-child {
    margin-bottom: 0;
}

.gl-our-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gl-our-team-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
}

.gl-our-team-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gl-our-team-card-content {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.gl-our-team-card-title {
    margin: 0;
}

.gl-our-team-card-subtitle {
    margin: 0;
    color: var(--text-muted);
}

.gl-our-team-card-linkedin {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: #0a66c2;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.gl-our-team-card-linkedin:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgb(15 23 42 / 12%);
    background: #004182;
}

.gl-our-team[data-title-align='center'] .gl-our-team-content {
    text-align: center;
}

.gl-our-team[data-title-align='center'] .gl-our-team-grid {
    text-align: left;
}

.gl-our-team[data-title-align='right'] .gl-our-team-content {
    text-align: right;
}

.gl-our-team[data-title-align='right'] .gl-our-team-grid {
    text-align: left;
}

.gl-our-team[data-title-align='left'] .gl-our-team-content {
    text-align: left;
}

.gl-contact-form {
    background-repeat: no-repeat;
}

.gl-contact-form-content {
    display: grid;
    gap: 24px;
}

.gl-contact-form-title {
    margin: 0;
}

.gl-contact-form-body > :first-child {
    margin-top: 0;
}

.gl-contact-form-body > :last-child {
    margin-bottom: 0;
}

.gl-contact-form-form {
    display: grid;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
}

.gl-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-contact-form-field {
    display: grid;
    gap: 8px;
}

.gl-contact-form-field-full {
    grid-column: 1 / -1;
}

.gl-contact-form-field label,
.gl-contact-form-consent label {
    font-weight: 600;
}

.gl-contact-form-field input,
.gl-contact-form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    font: inherit;
    color: var(--text);
}

.gl-contact-form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.gl-contact-form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gl-contact-form-consent input {
    margin-top: 4px;
}

.gl-contact-form-actions {
    display: flex;
}

.gl-contact-form[data-title-align='center'] .gl-contact-form-content {
    margin-inline: auto;
    text-align: center;
}

.gl-contact-form[data-title-align='center'] .gl-contact-form-actions {
    justify-content: center;
}

.gl-contact-form[data-title-align='right'] .gl-contact-form-content {
    margin-left: auto;
    text-align: right;
}

.gl-contact-form[data-title-align='right'] .gl-contact-form-actions {
    justify-content: flex-end;
}

.gl-contact-form[data-title-align='left'] .gl-contact-form-content {
    text-align: left;
}

.gl-contact-form[data-title-align='center'] .gl-contact-form-form,
.gl-contact-form[data-title-align='right'] .gl-contact-form-form {
    text-align: left;
}

.gl-newsletter-signup {
    background-repeat: no-repeat;
}

.gl-newsletter-signup-content {
    display: grid;
    gap: 20px;
}

.gl-newsletter-signup-title {
    margin: 0;
}

.gl-newsletter-signup-body > :first-child {
    margin-top: 0;
}

.gl-newsletter-signup-body > :last-child {
    margin-bottom: 0;
}

.gl-newsletter-signup-form {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
}

.gl-newsletter-signup-field {
    display: grid;
    gap: 8px;
}

.gl-newsletter-signup-field label {
    font-weight: 600;
}

.gl-newsletter-signup-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.gl-newsletter-signup-input-row input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    font: inherit;
    color: var(--text);
}

.gl-newsletter-signup[data-title-align='center'] .gl-newsletter-signup-content {
    margin-inline: auto;
    text-align: center;
}

.gl-newsletter-signup[data-title-align='right'] .gl-newsletter-signup-content {
    margin-left: auto;
    text-align: right;
}

.gl-newsletter-signup[data-title-align='left'] .gl-newsletter-signup-content {
    text-align: left;
}

.gl-newsletter-signup[data-title-align='center'] .gl-newsletter-signup-form,
.gl-newsletter-signup[data-title-align='right'] .gl-newsletter-signup-form {
    text-align: left;
}

.gl-features {
    background-repeat: no-repeat;
}

.gl-features-content {
    display: grid;
    gap: 28px;
}

.gl-features-title {
    margin: 0;
}

.gl-features-body > :first-child {
    margin-top: 0;
}

.gl-features-body > :last-child {
    margin-bottom: 0;
}

.gl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gl-features-card {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
    text-align:center;
}

.gl-features-card-link {
    color: inherit;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.gl-features-card-link:hover {
    transform: translateY(-2px);
    border-color: rgb(37 99 235 / 25%);
    box-shadow: 0 16px 30px rgb(15 23 42 / 12%);
}

.gl-features-card-icon {
    text-align: center;
    margin: auto;
}

.gl-features-card-icon img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.gl-features-card-content {
    display: grid;
    gap: 10px;
}

.gl-features-card-title {
    margin: 0;
}

.gl-features-card-subtitle {
    margin: 0;
    color: var(--text-muted);
}

.gl-features[data-title-align='center'] .gl-features-content {
    text-align: center;
}

.gl-features[data-title-align='center'] .gl-features-grid {
    text-align: left;
}

.gl-features[data-title-align='right'] .gl-features-content {
    text-align: right;
}

.gl-features[data-title-align='right'] .gl-features-grid {
    text-align: left;
}

.gl-features[data-title-align='left'] .gl-features-content {
    text-align: left;
}

.gl-counters {
    background-repeat: no-repeat;
}

.gl-counters-content {
    display: grid;
    gap: 28px;
}

.gl-counters-title {
    margin: 0;
}

.gl-counters-body > :first-child {
    margin-top: 0;
}

.gl-counters-body > :last-child {
    margin-bottom: 0;
}

.gl-counters-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gl-counters-card {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
    text-align:center;
}

.gl-counters-card-link {
    color: inherit;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.gl-counters-card-link:hover {
    transform: translateY(-2px);
    border-color: rgb(37 99 235 / 25%);
    box-shadow: 0 16px 30px rgb(15 23 42 / 12%);
}

.gl-counters-card-icon {
    text-align: center;
    margin:auto;
}

.gl-counters-card-icon img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.gl-counters-card-content {
    display: grid;
    gap: 10px;
}

.gl-counters-card-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.gl-counters-card-title {
    margin: 0;
}

.gl-counters[data-title-align='center'] .gl-counters-content {
    text-align: center;
}

.gl-counters[data-title-align='center'] .gl-counters-grid {
    text-align: left;
}

.gl-counters[data-title-align='right'] .gl-counters-content {
    text-align: right;
}

.gl-counters[data-title-align='right'] .gl-counters-grid {
    text-align: left;
}

.gl-counters[data-title-align='left'] .gl-counters-content {
    text-align: left;
}

#gl-services-grid-section {
    position: relative;
}

#gl-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gl-services-card {
    display: block;
}

.gl-services-card-link {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
    color: inherit;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.gl-services-card-link:hover {
    transform: translateY(-2px);
    border-color: rgb(37 99 235 / 25%);
    box-shadow: 0 16px 30px rgb(15 23 42 / 12%);
}

.gl-services-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gl-services-card-content {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.gl-services-card-title {
    margin: 0;
}

.gl-services-card-text > :first-child {
    margin-top: 0;
}

.gl-services-card-text > :last-child {
    margin-bottom: 0;
}

.faq-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgb(255 255 255 / 92%);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    width: 100%;
    border: 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    cursor: pointer;
    background: #f5f7fb;
    font: inherit;
    text-align: left;
}

.faq-question.active {
    background: var(--brand-blue);
}

.faq-item span {
    color: var(--text);
}

.faq-question.active span {
    color: #fff;
}

.drop-icon {
    transition: transform 0.2s ease;
}

.faq-question.active .drop-icon {
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 20px;
}

.faq-answer[hidden] {
    display: none;
}

#gl-blog-grid-section {
    position: relative;
}

#gl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.gl-blog-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

.gl-blog-card-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.gl-blog-card-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.gl-blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.gl-blog-card-meta,
.gl-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.gl-blog-card-title,
.gl-blog-article-title {
    margin: 0;
}

.gl-blog-card-text > :first-child,
.gl-blog-article-body > :first-child {
    margin-top: 0;
}

.gl-blog-card-text > :last-child,
.gl-blog-article-body > :last-child {
    margin-bottom: 0;
}

.gl-blog-article-section {
    padding: 60px 0;
}

.gl-blog-article {
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

.gl-blog-article-header {
    margin-bottom: 30px;
}

.gl-blog-article-header > :last-child {
    margin-bottom: 0;
}

.gl-blog-article-tags {
    margin: 16px 0 0;
}

.gl-blog-article-image,
.gl-blog-article-video {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 24px;
}

.gl-blog-article-image img {
    width: 100%;
    display: block;
}

.gl-blog-article-video {
    aspect-ratio: 16 / 9;
    margin-top:60px;
}

.gl-blog-article-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

#gl-video-hub-grid-section {
    position: relative;
}

#gl-video-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.gl-video-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

.gl-video-card-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.gl-video-card-media,
.gl-video-article-media {
    aspect-ratio: 16 / 9;
}

.gl-video-card-media iframe,
.gl-video-article-media iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.gl-video-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.gl-video-card-meta,
.gl-video-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.gl-video-card-title,
.gl-video-article-title {
    margin: 0;
}

.gl-video-card-text > :first-child,
.gl-video-article-body > :first-child {
    margin-top: 0;
}

.gl-video-card-text > :last-child,
.gl-video-article-body > :last-child {
    margin-bottom: 0;
}

.gl-video-article-section {
    padding: 60px 0;
}

.gl-video-article {
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow);
}

.gl-video-article-header {
    margin-bottom: 30px;
}

.gl-video-article-header > :last-child {
    margin-bottom: 0;
}

.gl-video-article-tags {
    margin: 16px 0 0;
}

.gl-video-article-media {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 24px;
}

@media (width <= 1100px) {
    #product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #gl-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #gl-video-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (width <= 900px) {
    .cart-grid,
    .checkout-grid,
    #product-wrapper-grid,
    #gl-footer-grid-2,
    #glf2-1 {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    #product-filter {
        position: static;
    }

    #glht-grid,
    #glhb-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .gl-product-page-grid {
        grid-template-columns: 1fr;
    }

    .gl-image-and-text-layout,
    .gl-image-and-text[data-image-position='left'] .gl-image-and-text-layout,
    .gl-image-and-text[data-image-position='right'] .gl-image-and-text-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-image-and-text-media,
    .gl-image-and-text-content {
        order: initial;
    }

    .gl-video-and-text-layout,
    .gl-video-and-text[data-video-position='left'] .gl-video-and-text-layout,
    .gl-video-and-text[data-video-position='right'] .gl-video-and-text-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-video-and-text-media,
    .gl-video-and-text-content {
        order: initial;
    }

    .gl-our-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    #gl-services-grid {
        grid-template-columns: 1fr;
    }

    #gl-blog-grid {
        grid-template-columns: 1fr;
    }

    #gl-video-hub-grid {
        grid-template-columns: 1fr;
    }

    #glhb-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (width <= 700px) {
    .container {
        width: min(var(--container-width), calc(100% - 32px));
    }

    .gl-newsletter-signup-input-row {
        grid-template-columns: 1fr;
    }

    .gl-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .gl-contact-form-field-full {
        grid-column: auto;
    }

    .checkout-form .form-grid,
    #product-grid {
        grid-template-columns: 1fr;
    }

    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }

    #glht-cta-btns,
    #glht-socials {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gl-our-team-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-counters-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-blog-article {
        padding: 24px;
        border-radius: 22px;
    }

    .gl-video-article {
        padding: 24px;
        border-radius: 22px;
    }
}

@media (width <= 470px) {
    .gl-hide-on-mobile {
        display: none !important;
    }

    .gl-hide-on-desktop:not(#header-mobile-nav) {
        display: inherit !important;
    }

    .btn-1,
    .btn-2,
    .btn-white {
        width: 100%;
    }

    #gl-hero-image img,
    #gl-slider img {
        aspect-ratio: 16 / 7;
    }

    #gl-slider-prev,
    #gl-slider-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    #gl-slider-prev {
        left: 10px;
    }

    #gl-slider-next {
        right: 10px;
    }

    #glhb-grid {
	flex-direction: row;
	align-items: center;
    }

    #mobile-nav-trigger > span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 30px;
    }

    .glhb-nav-item {
	padding: 0 15px;
    }

    .glhb-nav-item-mobile {
	margin-bottom: 10px;
    }

    #glf-logo-wrapper {
	text-align: center;
	margin: auto;
    }

    #glf2-nav {
	justify-content: center;
	flex-direction: column;
	text-align: center;
    }

    #glf2-copyright {
	text-align: center;
    }

    
}

/* --- Delta Heavy bespoke shell + first home sections --- */
:root {
    --gl-dh-red: #eb2226;
    --gl-dh-charcoal: #020302;
    --gl-dh-dark: #2a2a2a;
    --gl-dh-copy: #3b3b3b;
    --gl-dh-soft: #f4f4f4;
    --gl-dh-border: rgba(255, 255, 255, 0.14);
    --gl-dh-shadow: 0 18px 40px rgb(0 0 0 / 18%);
    --gl-dh-radius: 16px;
}

body.gl-dh-site {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gl-dh-charcoal);
    background: #fff;
}

body.gl-dh-site h1,
body.gl-dh-site h2,
body.gl-dh-site h3,
body.gl-dh-site h4,
body.gl-dh-site h5,
body.gl-dh-site h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: inherit;
}

body.gl-dh-site .container {
    width: min(1620px, calc(100% - 200px));
}

body.gl-dh-site p {
    line-height: 1.55;
}

body.gl-dh-site .gl-hide-on-mobile {
    display: inherit;
}

body.gl-dh-site .gl-hide-on-desktop {
    display: none;
}

.gl-dh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 45px;
    padding: 12px 18px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gl-dh-btn:hover {
    transform: translateY(-1px);
}

.gl-dh-btn--primary {
    background: var(--gl-dh-btn-color, var(--gl-dh-red));
    color: #fff;
}

.gl-dh-btn--primary:hover,
.gl-dh-btn--primary:focus-visible {
    background: var(--gl-dh-btn-color, var(--gl-dh-red));
}

.gl-dh-btn--with-icon i {
    font-size: 15px;
}

.gl-dh-header {
    position: relative;
    z-index: 50;
}

.gl-dh-utility {
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.gl-dh-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 42px;
}

.gl-dh-utility__items,
.gl-dh-utility__socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gl-dh-utility-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gl-dh-charcoal);
    white-space: nowrap;
}

.gl-dh-utility-item i,
.gl-dh-social-item i,
.gl-dh-utility-action i {
    color: var(--gl-dh-red);
}

.gl-dh-social-item a,
.gl-dh-utility-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 15px;
}

.gl-dh-nav-shell {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(2, 3, 2, 0.96);
    box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
}

.gl-dh-nav-shell__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 122px;
}

.gl-dh-logo-wrapper img,
#glhb-logo-wrapper img {
    width: min(180px, 100%);
    max-height: 98px;
    object-fit: contain;
}

.gl-dh-nav {
    min-width: 0;
}

#glhb-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.glhb-nav-item {
    height: auto;
    text-align:center;
}

body.gl-dh-site .glhb-nav-link,
body.gl-dh-site .glhb-submenu-link,
body.gl-dh-site .glhb-nav-item > a,
body.gl-dh-site .glhb-nav-item-mobile > a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

body.gl-dh-site .glhb-nav-item > a.active-page span,
body.gl-dh-site .glhb-nav-item-mobile > a.active-page span,
body.gl-dh-site .glhb-submenu-link.active-page span {
    color: var(--gl-dh-red)!important;
}

body.gl-dh-site .drop-down-icon {
    color: inherit;
}

body.gl-dh-site .dropdown-menu-main-nav,
body.gl-dh-site .dropdown-menu-sub-nav {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(22, 22, 22, 0.98);
    box-shadow: var(--gl-dh-shadow);
}

body.gl-dh-site .dropdown-menu-main-nav {
    top: unset;
    margin-top:20px;
    left: -18px;
    min-width: 240px;
}

body.gl-dh-site .dropdown-menu-sub-nav {
    left: calc(100% + 18px);
}

body.gl-dh-site .dropdown-menu-main-nav a,
body.gl-dh-site .dropdown-menu-sub-nav a {
    color: #fff;
}

.gl-dh-nav-cta {
    display: flex;
    justify-content: flex-end;
}

body.gl-dh-site .nav-cart-count {
    background: #fff;
    color: var(--gl-dh-red) !important;
}

body.gl-dh-site #header-mobile-nav {
    margin-top: 0;
    padding: 18px 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.gl-dh-site .glhb-nav-item-mobile,
body.gl-dh-site .glhb-submenu-item-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.gl-dh-site .dropdown-menu-main-nav-mobile,
body.gl-dh-site .dropdown-menu-sub-nav-mobile {
    margin-top: 12px;
    margin-left: 16px;
    gap: 10px;
}

.gl-dh-mobile-cta-item {
    border-bottom: 0 !important;
    padding-top: 18px !important;
}

.gl-dh-footer {
    margin-top: 0;
}

.gl-dh-footer__main {
    background: var(--gl-dh-dark);
    color: #fff;
    padding: 30px 0 34px;
}

.gl-dh-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    gap: 42px;
    align-items: start;
}

.gl-dh-footer__heading-wrap {
    margin-bottom: 18px;
}

.gl-dh-footer__heading-wrap h3 {
    margin: 0 0 10px;
    color: var(--gl-dh-red)!important;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-footer__heading-line {
    display: block;
    width: 59px;
    height: 2px;
    background: var(--gl-dh-red);
}

.gl-dh-footer__links,
.gl-dh-footer__branch-items {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.gl-dh-footer__quick-link,
.gl-dh-footer__branch-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.gl-dh-footer__quick-link i,
.gl-dh-footer__branch-item i {
    margin-top: 4px;
    color: var(--gl-dh-red);
}

.gl-dh-footer__branch-item a, .gl-dh-footer__socials i {
    color: #fff;
}

.gl-dh-footer__branch-item span {
    white-space: pre-line;
}

.gl-dh-footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.gl-dh-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #fff;
}

.gl-dh-footer__meta {
    background: #fff;
    padding: 22px 0;
}

.gl-dh-footer__meta-inner {
    display: flex;
    justify-content: center;
    text-align: center;
}

.gl-dh-footer__policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    color: var(--gl-dh-dark);
    font-size: 18px;
}

.gl-dh-footer__policy-links a {
    position: relative;
}

.gl-dh-footer__policy-links a:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -13px;
    color: currentColor;
}

.gl-dh-footer__meta-text {
    color: var(--gl-dh-dark);
    font-size: 18px;
}

.gl-dh-home-hero {
    position: relative;
    min-height: 800px;
    overflow: hidden;
}

.gl-dh-home-hero__media,
.gl-dh-home-hero__media img,
.gl-dh-home-hero__overlay {
    position: absolute;
    inset: 0;
}

.gl-dh-home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-home-hero__overlay {
    background: rgba(2, 3, 2, 0.25);
}

.gl-dh-home-hero .container {
    position: relative;
}

.gl-dh-home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 100%) minmax(0, 560px);
    gap: 36px;
    align-items: center;
    min-height: 800px;
    padding: 36px 0;
}

.gl-dh-home-hero__copy {
    color: #fff;
}

.gl-dh-home-hero__copy h1 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 56px);
    font-weight: 700;
    line-height: 1.04;
    text-transform: uppercase;
    color: #fff;
}

.gl-dh-home-hero__body {
    font-size: 16px;
}

.gl-dh-home-hero__body p {
    margin: 0 0 14px;
}

.gl-dh-home-hero__support-line {
    margin: 26px 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    color: #fff;
}

.gl-dh-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gl-dh-home-hero__form-card {
    position: relative;
}

.gl-dh-home-hero__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 4px 6px 8.7px rgba(0, 0, 0, 0.21);
}

.gl-dh-home-hero__form h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gl-dh-charcoal);
}

.gl-dh-home-hero__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.gl-dh-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gl-dh-form-field--full {
    grid-column: 1 / -1;
}

.gl-dh-form-field label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gl-dh-charcoal);
}

.gl-dh-form-field label span {
    color: var(--gl-dh-red);
}

.gl-dh-form-field input,
.gl-dh-form-field select,
.gl-dh-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 0.5px solid #a5a5a5;
    border-radius: 10px;
    font: inherit;
    color: var(--gl-dh-charcoal);
    background: #fff;
}

.gl-dh-form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.gl-dh-form-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gl-dh-form-range__current {
    color: var(--gl-dh-charcoal);
    font-size: 14px;
    line-height: 1.3;
}

.gl-dh-form-range__current strong {
    color: var(--gl-dh-red);
    font-weight: 700;
}

.gl-dh-form-field input[type='range'] {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    accent-color: var(--gl-dh-red);
}

.gl-dh-form-range__labels {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #6c6d70;
    font-size: 13px;
    line-height: 1.2;
}

.gl-dh-home-hero__submit {
    width: 100%;
}

.gl-dh-home-intro {
    padding: 36px 0;
}

.gl-dh-home-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 508px);
    gap: 48px;
    align-items: center;
}

.gl-dh-section-title {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
    color: var(--gl-dh-dark);
}

.gl-dh-section-line {
    display: block;
    width: 344px;
    max-width: 100%;
    height: 2px;
    margin: 24px 0;
    background: var(--gl-dh-red);
}

.gl-dh-home-intro__body {
    color: #000;
    font-size: 16px;
}

.gl-dh-home-intro__body p {
    margin: 0 0 16px;
}

.gl-dh-home-intro__media img {
    width: 100%;
    height: 428px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .gl-dh-nav-shell__inner {
        grid-template-columns: auto 1fr;
    }

    .gl-dh-nav-cta {
        display: none;
    }

    #glhb-nav {
        gap: 22px;
    }

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

    .gl-dh-home-hero__inner,
    .gl-dh-home-intro__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-home-hero {
        min-height: auto;
    }

    .gl-dh-home-hero__inner {
        min-height: auto;
        padding: 72px 0;
    }
}

@media (max-width: 900px) {
    body.gl-dh-site .container {
        width: min(1620px, calc(100% - 32px));
    }

    .gl-dh-utility__inner {
        min-height: 42px;
    }

    .gl-dh-utility__socials {
        gap: 16px;
        margin-left: auto;
    }

    .gl-dh-nav-shell__inner {
        min-height: 90px;
        grid-template-columns: auto 1fr;
    }

    .gl-dh-nav {
        display: flex;
        justify-content: flex-end;
    }

    .gl-hide-on-mobile {
        display: none !important;
    }

    .gl-hide-on-desktop:not(#header-mobile-nav) {
        display: inherit !important;
    }

    #glhb-nav {
        justify-content: flex-end;
    }

    body.gl-dh-site #header-mobile-nav {
        padding-bottom: 20px;
    }

    .gl-dh-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gl-dh-footer__policy-links,
    .gl-dh-footer__meta-text {
        font-size: 15px;
    }

    .gl-dh-home-hero__copy h1 {
        font-size: clamp(2rem, 9vw, 42px);
    }

    .gl-dh-home-hero__support-line {
        font-size: 18px;
    }

    .gl-dh-home-hero__form-grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-form-field label {
        font-size: 18px;
    }

    .gl-dh-home-intro__media img {
        height: 320px;
    }
}

@media (max-width: 640px) {
    .gl-dh-utility {
        padding: 10px 0;
    }

    .gl-dh-utility__inner {
        justify-content: flex-end;
    }

    .gl-dh-social-item a,
    .gl-dh-utility-action a {
        width: 20px;
        height: 20px;
    }

    .gl-dh-nav-shell__inner {
        min-height: 78px;
    }

    .gl-dh-logo-wrapper img,
    #glhb-logo-wrapper img {
        width: 138px;
        max-height: 74px;
    }

    .gl-dh-home-hero__inner {
        padding: 54px 0;
    }

    .gl-dh-home-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .gl-dh-btn,
    .gl-dh-home-hero__submit,
    .gl-dh-home-hero__actions .gl-dh-btn,
    .gl-dh-home-intro .gl-dh-btn {
        width: 100%;
    }

    .gl-dh-section-line {
        width: 220px;
    }
}


/* --- Delta Heavy header/footer follow-up refinements --- */
.gl-dh-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    align-items: start;
}

.gl-dh-footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gl-dh-footer-item {
    color: #fff;
}

.gl-dh-footer-item.is-child .gl-dh-footer-link,
.gl-dh-footer-item .gl-dh-footer-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.gl-dh-footer-item .gl-dh-footer-link i {
    margin-top: 4px;
    color: var(--gl-dh-red);
}

.gl-dh-footer-item .gl-dh-footer-link > span {
    white-space: pre-line;
}

.gl-dh-footer-item.is-child .gl-dh-footer-link i {
    font-size: 13px;
}

.gl-dh-footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.gl-dh-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #fff;
}

@media (max-width: 1200px) {
    .gl-dh-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gl-dh-footer__columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


.gl-dh-home-core-services {
    position: relative;
    padding: 36px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(2, 3, 2, 0.7), rgba(2, 3, 2, 0.7)),
        url('../images/delta-heavy/home-hero.jpg') center / cover no-repeat;
}

.gl-dh-home-core-services__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 3, 2, 0.25);
}

.gl-dh-home-core-services .container {
    position: relative;
    z-index: 1;
}

.gl-dh-home-core-services__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.gl-dh-home-core-services__intro {
    max-width: 980px;
}

.gl-dh-home-core-services__kicker {
    margin: 0 0 4px;
    color: var(--gl-dh-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-home-core-services__title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-home-core-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gl-dh-service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-home-core-services__grid > .gl-dh-service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 780px;
    justify-self: center;
}

.gl-dh-service-card__media {
    padding: 24px 24px 0;
}

.gl-dh-service-card__media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.gl-dh-service-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 24px;
    text-align: center;
}

.gl-dh-service-card__body h3 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-service-card__copy {
    width: 100%;
    color: var(--gl-dh-copy);
    font-size: 16px;
}

.gl-dh-service-card__copy p {
    margin: 0 0 12px;
}

.gl-dh-service-card__copy p:last-child {
    margin-bottom: 0;
}

.gl-dh-service-card__button {
    margin-top: auto;
}

@media (max-width: 1200px) {
    .gl-dh-home-core-services__header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .gl-dh-home-core-services__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-home-core-services__grid > .gl-dh-service-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 640px) {
    .gl-dh-home-core-services__kicker {
        font-size: 20px;
    }

    .gl-dh-service-card__media {
        padding: 16px 16px 0;
    }

    .gl-dh-service-card__body {
        padding: 12px 16px 16px;
    }

    .gl-dh-service-card__media img {
        height: 220px;
    }
}


.gl-dh-home-how-it-works {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-home-how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.gl-dh-section-line--compact {
    width: 308px;
}

.gl-dh-home-how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gl-dh-how-it-works-step {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.gl-dh-how-it-works-step__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.gl-dh-how-it-works-step__label {
    color: var(--gl-dh-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-how-it-works-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--gl-dh-red);
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.gl-dh-how-it-works-step__content h3 {
    margin: 0 0 10px;
    color: var(--gl-dh-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-how-it-works-step__content p {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 16px;
}

.gl-dh-home-how-it-works__media img {
    width: 100%;
    min-height: 598px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .gl-dh-home-how-it-works__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gl-dh-how-it-works-step {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 18px;
        align-items: flex-start;
    }

    .gl-dh-how-it-works-step__label {
        font-size: 18px;
    }

    .gl-dh-how-it-works-step__number {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .gl-dh-home-how-it-works__media img {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .gl-dh-section-line--compact {
        width: 220px;
    }

    .gl-dh-how-it-works-step {
        grid-template-columns: 1fr;
    }

    .gl-dh-how-it-works-step__marker {
        align-items: flex-start;
    }
}


.gl-dh-home-problem-solution {
    position: relative;
    padding: 36px 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gl-dh-home-problem-solution__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 3, 2, 0.36);
}

.gl-dh-home-problem-solution .container {
    position: relative;
    z-index: 1;
}

.gl-dh-home-problem-solution__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    text-align: center;
}

.gl-dh-home-problem-solution__title {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-section-line--centered {
    width: 308px;
    margin: 0 auto;
}

.gl-dh-home-problem-solution__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gl-dh-problem-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    min-height: 100%;
    padding: 36px;
    border-bottom: 5px solid var(--gl-dh-red);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.gl-dh-problem-card h3 {
    margin: 0;
    color: var(--gl-dh-charcoal);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-problem-card__line {
    width: 119px;
    height: 2px;
    background: var(--gl-dh-red);
}

.gl-dh-problem-card p {
    margin: 0;
    color: var(--gl-dh-charcoal);
    font-size: 16px;
    line-height: 1.55;
}

.gl-dh-problem-card__outcome strong {
    color: var(--gl-dh-red);
}

@media (max-width: 900px) {
    .gl-dh-home-problem-solution__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-problem-card {
        padding: 24px;
    }

    .gl-dh-problem-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .gl-dh-section-line--centered {
        width: 220px;
    }
}


.gl-dh-home-why-choose {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-home-why-choose__header {
    max-width: 1180px;
    margin: 0 auto 28px;
    text-align: center;
}

.gl-dh-home-why-choose__title {
    margin: 0 0 10px;
    color: var(--gl-dh-charcoal);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.gl-dh-home-why-choose__intro {
    margin: 0 auto;
    max-width: 1070px;
    color: var(--gl-dh-charcoal);
    font-size: 16px;
    line-height: 1.55;
}

.gl-dh-home-why-choose__grid {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 850px);
    gap: 20px;
    align-items: start;
}

.gl-dh-home-why-choose__media img {
    width: 100%;
    /* min-height: 654px; */
    object-fit: cover;
    border-radius: 10px;
}

.gl-dh-home-why-choose__accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gl-dh-accordion-item {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid var(--gl-dh-red);
    overflow: hidden;
}

.gl-dh-accordion-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    padding: 24px;
    cursor: pointer;
}

.gl-dh-accordion-item summary::-webkit-details-marker {
    display: none;
}

.gl-dh-accordion-item summary span {
    color: var(--gl-dh-red);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-accordion-item summary::after {
    content: '>';
    flex: 0 0 auto;
    color: var(--gl-dh-red);
    font-size: 18px;
    transition: transform 0.18s ease;
}

.gl-dh-accordion-item[open] summary::after {
    transform: rotate(90deg);
}

.gl-dh-accordion-item__body {
    padding: 0 24px 24px;
}

.gl-dh-accordion-item__body p {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.55;
}

@media (max-width: 1200px) {
    .gl-dh-home-why-choose__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gl-dh-home-why-choose__media img {
        min-height: 380px;
    }

    .gl-dh-accordion-item summary,
    .gl-dh-accordion-item__body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .gl-dh-accordion-item summary span {
        font-size: 20px;
    }
}


.gl-dh-home-testimonials {
    padding: 36px 0;
    background: #f8f8f8;
}

.gl-dh-home-testimonials__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.gl-dh-home-testimonials__title {
    margin: 0;
    color: var(--gl-dh-charcoal);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-home-testimonials__view-all {
    background: var(--gl-dh-btn-color, #fff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    color: #6c6d70;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-home-testimonials__view-all i {
    color: #4472ba;
    font-size: 20px;
}

.gl-dh-home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gl-dh-home-testimonials__grid.slick-slider {
    display: block;
    margin: 0 -12px;
}

.gl-dh-home-testimonials__grid .slick-list {
    margin: 0;
}

.gl-dh-home-testimonials__grid .slick-track {
    display: flex;
}

.gl-dh-home-testimonials__grid .slick-slide {
    height: inherit;
    padding: 30px 12px;
}

.gl-dh-home-testimonials__grid .slick-slide > div {
    /* height: 100%; */
    padding:20px;
}

.gl-dh-home-testimonials__grid .slick-slide .gl-dh-testimonial-card {
    height: 100%;
}

.gl-dh-testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    margin:0 60px;
}

.gl-dh-testimonial-card__quote-mark {
    color: #4472ba;
    font-size: 111px;
    line-height: 0;
    padding: 30px 0 0!important;
}

.gl-dh-testimonial-card__quote {
    margin: 0;
    color: var(--gl-dh-charcoal);
    font-size: 16px;
    line-height: 1.55;
}

.gl-dh-testimonial-card__line {
    width: 250px;
    max-width: 100%;
    height: 1px;
    background: #4472ba;
    padding:0!important;
}

.gl-dh-testimonial-card__author {
    margin: 0;
    color: var(--gl-dh-charcoal);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.gl-dh-home-testimonials__dots {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.gl-dh-home-testimonials__dots .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-dh-home-testimonials__dots .slick-dots li {
    margin: 0;
    line-height: 0;
}

.gl-dh-home-testimonials__dots .slick-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    color: transparent;
    font-size: 0;
    cursor: pointer;
}

.gl-dh-home-testimonials__dots .slick-dots .slick-active button {
    background: #ee6f83;
}

@media (max-width: 900px) {
    .gl-dh-home-testimonials__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gl-dh-home-testimonials__grid {
        grid-template-columns: 1fr;
    }
}


.gl-dh-home-cta-strip {
    padding: 36px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gl-dh-home-cta-strip__inner {
    display: grid;
    grid-template-columns: 2px 140px minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    min-height: 184px;
}

.gl-dh-home-cta-strip__divider {
    width: 2px;
    height: 184px;
    background: var(--gl-dh-red);
}

.gl-dh-home-cta-strip__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gl-dh-red);
    font-size: 92px;
}

.gl-dh-home-cta-strip__content h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-home-cta-strip__body p {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.55;
}

.gl-dh-home-cta-strip__body p:last-child {
    margin-bottom: 0;
}

.gl-dh-home-cta-strip__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 1200px) {
    .gl-dh-home-cta-strip__inner {
        grid-template-columns: 2px 100px minmax(0, 1fr);
    }

    .gl-dh-home-cta-strip__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .gl-dh-home-cta-strip__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gl-dh-home-cta-strip__divider {
        display: none;
    }

    .gl-dh-home-cta-strip__icon {
        justify-content: flex-start;
        font-size: 72px;
    }

    .gl-dh-home-cta-strip__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .gl-dh-home-cta-strip__body p {
        font-size: 16px;
    }

    .gl-dh-home-cta-strip__actions,
    .gl-dh-home-cta-strip__actions .gl-dh-btn {
        width: 100%;
    }
}


.gl-dh-home-articles {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-home-articles__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.gl-dh-home-articles__intro {
    max-width: 1200px;
}

.gl-dh-home-articles__kicker {
    margin: 0 0 6px;
    color: var(--gl-dh-red);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-home-articles__title {
    margin: 0;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-home-articles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.gl-dh-article-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-article-card__media {
    margin-bottom: 12px;
}

.gl-dh-article-card__media img {
    width: 100%;
    height: 156px;
    object-fit: cover;
}

.gl-dh-article-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
}

.gl-dh-article-card__date {
    margin: 0;
    color: #a6a6a6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.gl-dh-article-card__body h3 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.gl-dh-article-card__excerpt {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 18px;
    line-height: 1.5;
}

.gl-dh-article-card__button {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .gl-dh-home-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gl-dh-home-articles__header {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .gl-dh-home-articles__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-home-articles__kicker {
        font-size: 20px;
    }

    .gl-dh-article-card {
        padding: 16px;
    }

    .gl-dh-article-card__media img {
        height: 180px;
    }

    .gl-dh-article-card__excerpt {
        font-size: 16px;
    }
}


.gl-dh-inner-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gl-dh-inner-hero__media,
.gl-dh-inner-hero__media img,
.gl-dh-inner-hero__overlay {
    position: absolute;
    inset: 0;
}

.gl-dh-inner-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-inner-hero__overlay {
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.7) 45%, rgba(17, 17, 17, 0.35) 100%);
}

.gl-dh-inner-hero .container {
    position: relative;
    z-index: 1;
}

.gl-dh-inner-hero__content {
    max-width: 100%;
    padding: 72px 0;
    color: #fff;
}

.gl-dh-inner-hero__content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.gl-dh-inner-hero__body p {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.6;
}

.gl-dh-inner-hero__body p:last-child {
    margin-bottom: 0;
}

.gl-dh-inner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.gl-dh-about-intro {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-about-intro__row {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: stretch;
}

.gl-dh-about-intro__row + .gl-dh-about-intro__row {
    margin-top: 36px;
}

.gl-dh-about-intro__row--reverse {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
}

.gl-dh-about-intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gl-dh-about-intro__copy h2,
.gl-dh-about-industries__content h2,
.gl-dh-about-exists__inner h2 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-about-intro__body p {
    margin: 0 0 12px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-about-intro__body p:last-child {
    margin-bottom: 0;
}

.gl-dh-about-intro__media {
    min-height: 296px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-about-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-about-industries {
    padding: 36px 0 36px;
    background: #fff;
}

.gl-dh-about-industries__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
    gap: 36px;
    align-items: stretch;
}

.gl-dh-about-industries__media {
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-about-industries__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-about-industries__content {
    padding: 36px;
    background: #f8f8f8;
    border-radius: 16px;
}

.gl-dh-about-industries__intro {
    margin: 0 0 18px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-about-industries__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-dh-about-industries__list li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 55, 122, 0.16);
}

.gl-dh-about-industries__item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gl-dh-about-industries__item:hover,
.gl-dh-about-industries__item:focus-visible {
    color: #4a72c7;
}

.gl-dh-about-industries__item--static {
    cursor: default;
}

.gl-dh-about-industries__item-icon {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a72c7;
}

.gl-dh-about-industries__item-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.gl-dh-about-industries__item-label {
    min-width: 0;
}

.gl-dh-about-industries__item-arrow {
    color: #4a72c7;
    font-size: 18px;
    line-height: 1;
}

.gl-dh-about-exists {
    position: relative;
    overflow: hidden;
}

.gl-dh-about-exists__media,
.gl-dh-about-exists__media img,
.gl-dh-about-exists__overlay {
    position: absolute;
    inset: 0;
}

.gl-dh-about-exists__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-about-exists__overlay {
    background: rgba(17, 17, 17, 0.78);
}

.gl-dh-about-exists .container {
    position: relative;
    z-index: 1;
}

.gl-dh-about-exists__inner {
    padding: 36px 0;
}

.gl-dh-about-exists__inner h2 {
    color: #fff;
    margin-bottom: 28px;
}

.gl-dh-about-exists__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-dh-about-exists__card {
    min-width: 0;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid red;
}

.gl-dh-about-exists__card h3 {
    margin: 0 0 10px;
    color: var(--gl-dh-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.gl-dh-about-exists__card p {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .gl-dh-about-intro__row,
    .gl-dh-about-intro__row--reverse,
    .gl-dh-about-industries__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-about-exists__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gl-dh-inner-hero {
        min-height: 360px;
    }

    .gl-dh-inner-hero__content {
        padding: 56px 0;
    }

    .gl-dh-about-industries__content,
    .gl-dh-about-exists__card {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .gl-dh-inner-hero__body p,
    .gl-dh-about-industries__intro,
    .gl-dh-about-industries__list li {
        font-size: 15px;
    }

    .gl-dh-about-intro__media,
    .gl-dh-about-industries__media {
        min-height: 240px;
    }

    .gl-dh-inner-hero__actions,
    .gl-dh-inner-hero__actions .gl-dh-btn {
        width: 100%;
    }
}


.gl-dh-home-hero--rentals .gl-dh-home-hero__copy h1 {

}

.gl-dh-rentals-intro {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-rentals-intro__grid,
.gl-dh-rentals-options__grid,
.gl-dh-rentals-available__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: stretch;
}

.gl-dh-rentals-intro__copy,
.gl-dh-rentals-options__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gl-dh-rentals-intro__copy h2,
.gl-dh-rentals-available__header h2,
.gl-dh-rentals-options__block h2,
.gl-dh-rentals-problem-fit__inner h2 {
    margin: 0 0 16px;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-rentals-intro__body p,
.gl-dh-rentals-options__body p,
.gl-dh-rentals-options__body li {
    margin: 0 0 12px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-rentals-options__body ul {
    margin: 0;
    padding-left: 20px;
}

.gl-dh-rentals-intro__media,
.gl-dh-rentals-options__media,
.gl-dh-rentals-available__media {
    min-height: 290px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-rentals-intro__media img,
.gl-dh-rentals-options__media img,
.gl-dh-rentals-available__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-rentals-problem-fit {
    position: relative;
    overflow: hidden;
}

.gl-dh-rentals-problem-fit__media,
.gl-dh-rentals-problem-fit__media img,
.gl-dh-rentals-problem-fit__overlay {
    position: absolute;
    inset: 0;
}

.gl-dh-rentals-problem-fit__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-rentals-problem-fit__overlay {
    background: rgba(17, 17, 17, 0.8);
}

.gl-dh-rentals-problem-fit .container {
    position: relative;
    z-index: 1;
}

.gl-dh-rentals-problem-fit__inner {
    padding: 36px 0;
}

.gl-dh-rentals-problem-fit__inner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}

.gl-dh-rentals-problem-fit__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-dh-rentals-problem-fit__card {
    padding: 22px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid red;
}

.gl-dh-rentals-problem-fit__card--featured {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
}

.gl-dh-rentals-problem-fit__card h3 {
    margin: 0 0 10px;
    color: var(--gl-dh-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.gl-dh-rentals-problem-fit__card p {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.6;
}

.gl-dh-rentals-available {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-rentals-available__header {
    margin-bottom: 28px;
}

.gl-dh-rentals-available__header .gl-dh-home-why-choose__title {
    margin-bottom: 0;
}

.gl-dh-rentals-available__accordion,
.gl-dh-used-available__accordion,
.gl-dh-forks-signs__accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gl-dh-rich-accordion__item {
    border: 0;
    border-bottom: 3px solid var(--gl-dh-red);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.gl-dh-rich-accordion__item summary {
    position: relative;
    display: block;
    padding: 24px 52px 24px 24px;
    cursor: pointer;
    list-style: none;
}

.gl-dh-rich-accordion__item summary::-webkit-details-marker {
    display: none;
}

.gl-dh-rich-accordion__item summary::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease;
}

.gl-dh-rich-accordion__item[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.gl-dh-rich-accordion__item summary span {
    display: block;
    color: inherit;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.gl-dh-rich-accordion__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px 24px;
    color: var(--gl-dh-copy);
}

.gl-dh-rich-accordion__copy,
.gl-dh-rich-accordion__copy p,
.gl-dh-rich-accordion__copy li {
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-rich-accordion__copy p {
    margin: 0 0 12px;
}

.gl-dh-rich-accordion__copy p:last-child {
    margin-bottom: 0;
}

.gl-dh-rich-accordion__copy ul,
.gl-dh-rich-accordion__copy ol {
    margin: 0;
    padding-left: 20px;
}

.gl-dh-rich-accordion__item--red {
    border-bottom-color: var(--gl-dh-red);
    color: var(--gl-dh-red);
}

.gl-dh-rich-accordion__item--blue {
    border-bottom-color: #2f66c5;
    color: #2f66c5;
}

.gl-dh-rich-accordion__item--olive {
    border-bottom-color: #7a7f32;
    color: #7a7f32;
}

.gl-dh-rich-accordion__item--orange {
    border-bottom-color: #d78516;
    color: #d78516;
}

.gl-dh-rich-accordion__item--dark {
    border-bottom-color: var(--gl-dh-dark);
    color: var(--gl-dh-dark);
}

.gl-dh-rentals-inline-cta {
    padding: 0 0 36px;
    background: #fff;
}

.gl-dh-rentals-inline-cta__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    background: #2a2a2a;
    border-radius: 10px;
}

.gl-dh-rentals-inline-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--gl-dh-red);
    color: var(--gl-dh-red);
    font-size: 24px;
}

.gl-dh-rentals-inline-cta__text {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-rentals-inline-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gl-dh-rentals-options {
    padding: 36px 0 36px;
    background: #fff;
}

.gl-dh-rentals-options__block + .gl-dh-rentals-options__block {
    margin-top: 28px;
}

@media (max-width: 1024px) {
    .gl-dh-rentals-intro__grid,
    .gl-dh-rentals-options__grid,
    .gl-dh-rentals-available__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-rentals-problem-fit__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-rentals-problem-fit__card--featured {
        max-width: none;
    }

    .gl-dh-rentals-inline-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gl-dh-rentals-inline-cta__icon,
    .gl-dh-rentals-inline-cta__actions {
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .gl-dh-rentals-inline-cta__text {
        font-size: 22px;
    }

    .gl-dh-rentals-inline-cta__actions,
    .gl-dh-rentals-inline-cta__actions .gl-dh-btn {
        width: 100%;
    }

    .gl-dh-rentals-intro__media,
    .gl-dh-rentals-options__media,
    .gl-dh-rentals-available__media {
        min-height: 240px;
    }

    .gl-dh-rentals-available__list li {
        font-size: 16px;
    }
}


.gl-dh-home-hero--used .gl-dh-home-hero__copy h1 {
    max-width: 620px;
}

.gl-dh-used-intro,
.gl-dh-used-comparison,
.gl-dh-used-available {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-used-intro__grid,
.gl-dh-used-comparison__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: stretch;
}

.gl-dh-used-intro__copy,
.gl-dh-used-comparison__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gl-dh-used-intro__copy h2,
.gl-dh-used-comparison__block h2,
.gl-dh-used-decision__inner h2 {
    margin: 0 0 16px;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-used-comparison__block h2 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 14px;
}

.gl-dh-used-comparison__block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 104px;
    height: 2px;
    background: var(--gl-dh-red);
}

.gl-dh-used-intro__body p,
.gl-dh-used-comparison__body p,
.gl-dh-used-comparison__body li {
    margin: 0 0 12px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-used-comparison__body ul {
    margin: 0;
    padding-left: 20px;
}

.gl-dh-used-intro__media,
.gl-dh-used-comparison__media {
    min-height: 290px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-used-intro__media img,
.gl-dh-used-comparison__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-used-decision {
    position: relative;
    overflow: hidden;
}

.gl_dh-used-decision__media,
.gl_dh-used-decision__media img,
.gl-dh-used-decision__overlay {
    position: absolute;
    inset: 0;
}

.gl_dh-used-decision__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-used-decision__overlay {
    background: rgba(17, 17, 17, 0.8);
}

.gl-dh-used-decision .container {
    position: relative;
    z-index: 1;
}

.gl-dh-used-decision__inner {
    padding: 36px 0;
}

.gl-dh-used-decision__inner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}

.gl-dh-used-decision__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-dh-used-decision__card {
    padding: 22px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-used-decision__card--featured {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
}

.gl-dh-used-decision__card h3 {
    margin: 0 0 10px;
    color: var(--gl-dh-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.gl-dh-used-decision__card p {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.6;
}

.gl-dh-used-available__header {
    margin-bottom: 28px;
}

.gl-dh-used-available__header .gl-dh-home-why-choose__title {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .gl-dh-used-intro__grid,
    .gl-dh-used-comparison__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-used-decision__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-used-decision__card--featured {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .gl-dh-used-intro__media,
    .gl-dh-used-comparison__media {
        min-height: 240px;
    }

    .gl-dh-rich-accordion__item summary span {
        font-size: 16px;
    }
}


.gl-dh-home-hero--forks .gl-dh-home-hero__copy h1 {
    max-width: 660px;
}

.gl-dh-forks-intro,
.gl-dh-forks-signs {
    padding: 36px 0;
    background: #fff;
}

.gl-dh-forks-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: stretch;
}

.gl-dh-forks-intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gl-dh-forks-intro__copy h2,
.gl-dh-forks-offerings__header h2 {
    margin: 0 0 16px;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.gl-dh-forks-intro__body p {
    margin: 0 0 12px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-forks-intro__media {
    min-height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-forks-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-forks-offerings {
    padding: 36px 0;
    background-position: center;
    background-size: cover;
}

.gl-dh-forks-offerings__header {
    margin-bottom: 28px;
    text-align: center;
}

.gl-dh-forks-offerings__header h2 {
    color: #fff;
    margin-bottom: 0;
}

.gl-dh-forks-offerings__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gl-dh-forks-offerings__card {
    min-width: 0;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-forks-offerings__card--featured {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
}

.gl-dh-forks-offerings__media {
    height: 240px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.gl-dh-forks-offerings__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-forks-offerings__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.gl-dh-forks-offerings__body h3 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.gl-dh-forks-offerings__copy p {
    margin: 0 0 10px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.6;
}

.gl-dh-forks-signs__header {
    margin-bottom: 28px;
}

.gl-dh-forks-signs__header .gl-dh-home-why-choose__title {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .gl-dh-forks-intro__grid,
    .gl-dh-forks-offerings__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-forks-offerings__card--featured {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .gl-dh-forks-signs__item span {
        font-size: 16px;
    }

    .gl-dh-forks-offerings__media {
        height: 200px;
    }
}


h2.gl-dh-home-core-services__title,
h2.gl-dh-home-problem-solution__title,
.gl-dh-home-cta-strip__content h2,
h2.gl-dh-home-core-services__title,
.gl-dh-about-exists__inner h2,
.gl-dh-used-decision__inner h2
{
    color: #fff!important;
}

.gl-dh-btn--outline {
    border: 2px solid var(--gl-dh-btn-color, var(--gl-dh-red));
    background: transparent;
    color: var(--gl-dh-btn-color, var(--gl-dh-red));
}

.gl-dh-btn--outline:hover,
.gl-dh-btn--outline:focus-visible {
    background: var(--gl-dh-btn-color, var(--gl-dh-red));
    color: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gl-dh-new-forklifts {
    padding: 56px 0 72px;
    background: #fff;
}

.gl-dh-new-forklifts__layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gl-dh-new-forklifts__filters {
    padding: 18px;
    border: 1px solid #d7d7d7;
    background: #fff;
}

.gl-dh-new-forklifts__filters h2 {
    margin: 0 0 18px;
    color: var(--gl-dh-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-new-forklifts__search {
    position: relative;
    margin-bottom: 18px;
}

.gl-dh-new-forklifts__search input {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    color: var(--gl-dh-copy);
    font-size: 15px;
}

.gl-dh-new-forklifts__search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #8d8d8d;
}

.gl-dh-new-forklifts__filter-group {
    padding: 18px 0;
    border-top: 1px solid #d7d7d7;
}

.gl-dh-new-forklifts__filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gl-dh-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-new-forklifts__filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.gl-dh-new-forklifts__filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gl-dh-copy);
    font-size: 15px;
}

.gl-dh-new-forklifts__filter-option input {
    margin: 0;
    accent-color: var(--gl-dh-red);
}

.gl-dh-new-forklifts__apply,
.gl-dh-new-forklifts__clear {
    width: 100%;
}

.gl-dh-new-forklifts__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: var(--gl-dh-copy);
    font-size: 15px;
}

.gl-dh-new-forklifts__header {
    margin-bottom: 24px;
}

.gl-dh-new-forklifts__header h1 {
    margin: 0 0 8px;
    color: var(--gl-dh-dark);
    font-size: clamp(2rem, 3vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.gl-dh-new-forklifts__header p,
.gl-dh-new-forklifts__count {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.5;
}

.gl-dh-new-forklifts__count {
    margin-top: 16px;
}

.gl-dh-new-forklifts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gl-dh-new-forklifts-card {
    min-width: 0;
    border: 1px solid #d7d7d7;
    background: #fff;
}

.gl-dh-new-forklifts-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.gl-dh-new-forklifts-card__image {
    aspect-ratio: 1 / 1;
    padding: 18px;
    background: #fff;
    max-height: 250px;
}

.gl-dh-new-forklifts-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gl-dh-new-forklifts-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 0 18px 18px;
}

.gl-dh-new-forklifts-card__body h2 {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 53, 58, 0.3);
    color: var(--gl-dh-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 80px;
}

.gl-dh-new-forklifts-card__meta,
.gl-dh-new-forklifts-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: var(--gl-dh-copy);
    font-size: 14px;
    line-height: 1.5;
}

.gl-dh-new-forklifts-card__meta span + span,
.gl-dh-new-forklifts-card__specs span + span {
    position: relative;
    padding-left: 14px;
}

.gl-dh-new-forklifts-card__meta span + span::before,
.gl-dh-new-forklifts-card__specs span + span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 16px;
    background: #cccccc;
    transform: translateY(-50%);
}

.gl-dh-new-forklifts-card__specs span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gl-dh-new-forklifts-card__specs i {
    color: var(--gl-dh-red);
}

.gl-dh-new-forklifts-card__excerpt {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.55;
}

.gl-dh-new-forklifts-card__button {
    margin-top: auto;
    align-self: flex-start;
}

.gl-dh-new-forklifts__empty {
    padding: 32px 24px;
    border: 1px solid #d7d7d7;
    text-align: center;
}

.gl-dh-new-forklifts__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.gl-dh-new-forklifts__pagination button,
.gl-dh-new-forklifts__pagination span {
    border: 0;
    background: transparent;
    color: #666666;
    font-size: 18px;
    font-weight: 600;
}

.gl-dh-new-forklifts__pagination button.is-active {
    color: #d99216;
}

.gl-dh-new-forklift-breadcrumbs {
    padding: 36px 0 0;
    background: #fff;
}

.gl-dh-new-forklift-breadcrumbs nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #909090;
    font-size: 13px;
}

.gl-dh-new-forklift-breadcrumbs a {
    color: #909090;
    text-decoration: none;
}

.gl-dh-new-forklift-summary {
    padding: 24px 0 40px;
    background: #fff;
}

.gl-dh-new-forklift-summary__top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

.gl-dh-new-forklift-gallery__main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.gl-dh-new-forklift-gallery__main img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.gl-dh-new-forklift-gallery__nav {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gl-dh-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
}

.gl-dh-new-forklift-gallery__nav--prev {
    left: 12px;
}

.gl-dh-new-forklift-gallery__nav--next {
    right: 12px;
}

.gl-dh-new-forklift-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.gl-dh-new-forklift-gallery__thumb {
    width: 68px;
    height: 68px;
    padding: 4px;
    border: 2px solid transparent;
    background: #fff;
}

.gl-dh-new-forklift-gallery__thumb.is-active {
    border-color: var(--gl-dh-red);
}

.gl-dh-new-forklift-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-new-forklift-summary__content h1 {
    margin: 0 0 14px;
    color: var(--gl-dh-dark);
    font-size: clamp(2.1rem, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.gl-dh-new-forklift-summary__subtitle {
    margin: 0 0 18px;
    color: #4d4d4d;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.gl-dh-new-forklift-summary__quick-specs,
.gl-dh-new-forklift-summary__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.gl-dh-new-forklift-summary__quick-specs {
    margin-bottom: 20px;
    color: var(--gl-dh-copy);
    font-size: 14px;
}

.gl-dh-new-forklift-summary__quick-specs span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gl-dh-new-forklift-summary__quick-specs i {
    color: var(--gl-dh-red);
}

.gl-dh-new-forklift-summary__intro,
.gl-dh-new-forklift-summary__note {
    margin: 0;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.6;
}

.gl-dh-new-forklift-summary__stats {
    margin: 24px 0 18px;
}

.gl-dh-new-forklift-summary__stats div {
    min-width: 150px;
}

.gl-dh-new-forklift-summary__stats strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gl-dh-dark);
    font-size: 22px;
    font-weight: 800;
}

.gl-dh-new-forklift-summary__stats span {
    color: #666666;
    font-size: 14px;
}

.gl-dh-new-forklift-summary__form-card {
    margin-top: 36px;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: max(800px);
    margin-left: auto;
    margin-right: auto;
}

.gl-dh-new-forklift-summary__form h2 {
    margin: 0 0 18px;
    color: var(--gl-dh-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-new-forklift-summary__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gl-dh-new-forklift-summary__form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.gl-dh-new-forklift-overview {
    padding: 34px 0;
    background: #f6f6f6;
}

.gl-dh-new-forklift-overview__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.gl-dh-new-forklift-overview__inner h2,
.gl-dh-new-forklift-faqs__content h2,
.gl-dh-new-forklift-details__card h2 {
    margin: 0 0 16px;
    color: var(--gl-dh-dark);
    font-size: clamp(1.9rem, 3vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.gl-dh-new-forklift-overview__body,
.gl-dh-new-forklift-overview__body p,
.gl-dh-new-forklift-details__body,
.gl-dh-new-forklift-details__body p {
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.65;
}

.gl-dh-new-forklift-specs {
    padding: 34px 0;
    background: #fff;
}

.gl-dh-new-forklift-specs__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d5d5;
}

.gl-dh-new-forklift-specs__tabs button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #bababa;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-new-forklift-specs__tabs button.is-active {
    color: var(--gl-dh-dark);
}

.gl-dh-new-forklift-specs__table {
    display: grid;
    gap: 12px;
}

.gl-dh-new-forklift-specs__table-head,
.gl-dh-new-forklift-specs__row {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 12px;
}

.gl-dh-new-forklift-specs__table-head {
    padding: 8px 14px;
    background: #b7b7b7;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-new-forklift-specs__row {
    padding: 12px 14px;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.55;
}

.gl-dh-new-forklift-specs__row strong {
    color: var(--gl-dh-dark);
    font-size: 15px;
    font-weight: 700;
}


.gl-dh-new-forklift-specs__scroller {
    overflow-x: auto;
}

.gl-dh-new-forklift-specs__grid {
    display: grid;
    grid-template-columns: repeat(var(--gl-dh-specs-cols, 3), minmax(180px, 1fr));
    gap: 16px;
    min-width: 100%;
}

.gl-dh-new-forklift-specs__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.gl-dh-new-forklift-specs__column-heading {
    padding: 10px 14px;
    background: #b7b7b7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gl-dh-new-forklift-specs__column-body,
.gl-dh-new-forklift-specs__column-body p,
.gl-dh-new-forklift-specs__column-body li {
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.65;
}

.gl-dh-new-forklift-specs__column-body p {
    margin: 0 0 12px;
}

.gl-dh-new-forklift-specs__column-body p:last-child {
    margin-bottom: 0;
}

.gl-dh-new-forklift-specs__column-body ul,
.gl-dh-new-forklift-specs__column-body ol {
    margin: 0;
    padding-left: 20px;
}

.gl-dh-new-forklift-specs__column-body strong {
    color: var(--gl-dh-dark);
}

.gl-dh-new-forklift-specs__footer-note {
    margin-top: 18px;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.65;
}

.gl-dh-new-forklift-specs__footer-note p {
    margin: 0 0 12px;
}

.gl-dh-new-forklift-specs__footer-note p:last-child {
    margin-bottom: 0;
}

.gl-dh-new-forklift-specs__footer-note strong {
    color: var(--gl-dh-red);
}

.gl-dh-new-forklift-details {
    padding: 10px 0 42px;
    background: #fff;
}

.gl-dh-new-forklift-details__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gl-dh-new-forklift-details__card {
    padding: 16px 0;
}

.gl-dh-new-forklift-faqs {
    padding: 24px 0 48px;
    background: #fff;
}

.gl-dh-new-forklift-faqs__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.gl-dh-new-forklift-faqs__media {
    border-radius: 12px;
    overflow: hidden;
}

.gl-dh-new-forklift-faqs__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-new-forklift-faqs__items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gl-dh-new-forklift-faqs__item {
    border-bottom: 2px solid var(--gl-dh-red);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gl-dh-new-forklift-faqs__question {
    justify-content: space-between;
    background: #fff;
    color: var(--gl-dh-red);
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-new-forklift-faqs__question.active {
    color: var(--gl-dh-dark);
}

.gl-dh-new-forklift-faqs__answer {
    padding: 0 18px 18px;
    color: var(--gl-dh-copy);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .gl-dh-new-forklifts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gl-dh-new-forklift-summary__top,
    .gl-dh-new-forklift-faqs__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .gl-dh-new-forklifts__layout,
    .gl-dh-new-forklift-details__grid,
    .gl-dh-new-forklift-summary__form-grid,
    .gl-dh-new-forklift-summary__form-actions,
    .gl-dh-new-forklift-specs__table-head,
    .gl-dh-new-forklift-specs__row {
        grid-template-columns: 1fr;
    }

    .gl-dh-new-forklifts__sidebar {
        position: static;
    }

    .gl-dh-new-forklift-gallery__main {
        min-height: 320px;
    }
}

@media (max-width: 720px) {
    .gl-dh-new-forklifts {
        padding: 36px 0 52px;
    }

    .gl-dh-new-forklifts__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-new-forklift-gallery__thumb {
        width: 56px;
        height: 56px;
    }

    .gl-dh-new-forklift-summary__content h1 {
        font-size: 34px;
    }
}

.gl-dh-evolution-richtext,
.gl-dh-evolution-richtext p,
.gl-dh-evolution-richtext li {
    color: #1d1d1d;
    font-size: 14px;
    line-height: 1.7;
}

.gl-dh-evolution-richtext ul,
.gl-dh-evolution-richtext ol {
    margin: 14px 0 0;
    padding-left: 18px;
}

.gl-dh-evolution-hero {
    position: relative;
    min-height: 420px;
    padding: 110px 0 96px;
    overflow: hidden;
    background: #101010;
}

.gl-dh-evolution-hero__media,
.gl-dh-evolution-hero__media img,
.gl-dh-evolution-band__media,
.gl-dh-evolution-band__media img,
.gl-dh-evolution-war__media-bg,
.gl-dh-evolution-war__media-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gl-dh-evolution-hero__media img,
.gl-dh-evolution-band__media img,
.gl-dh-evolution-war__media-bg img {
    object-fit: cover;
}

.gl-dh-evolution-hero__overlay,
.gl-dh-evolution-band__overlay,
.gl-dh-evolution-war__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.gl-dh-evolution-hero .container,
.gl-dh-evolution-band .container,
.gl-dh-evolution-war .container {
    position: relative;
    z-index: 1;
}

.gl-dh-evolution-hero__content {
    max-width: 760px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.gl-dh-evolution-hero__kicker,
.gl-dh-evolution-local__kicker,
.gl-dh-evolution-autonomy__kicker {
    margin: 0 0 10px;
    color: var(--gl-dh-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gl-dh-evolution-hero__title,
.gl-dh-evolution-autonomy__header h2,
.gl-dh-evolution-local__copy h2,
.gl-dh-evolution-intro__copy h2,
.gl-dh-evolution-split__copy h2,
.gl-dh-evolution-war__card h2,
.gl-dh-evolution-growth__copy h2,
.gl-dh-evolution-lithium__copy h2 {
    margin: 0;
    color: inherit;
    font-size: clamp(2rem, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
}

.gl-dh-evolution-hero__title span {
    display: block;
}

.gl-dh-evolution-hero__body {
    margin: 18px auto 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.7;
}

.gl-dh-evolution-intro,
.gl-dh-evolution-split,
.gl-dh-evolution-growth,
.gl-dh-evolution-autonomy,
.gl-dh-evolution-local {
    padding: 48px 0;
    background: #fff;
}

.gl-dh-evolution-intro__grid,
.gl-dh-evolution-growth__grid,
.gl-dh-evolution-local__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.gl-dh-evolution-intro__copy h2,
.gl-dh-evolution-growth__copy h2,
.gl-dh-evolution-local__copy h2,
.gl-dh-evolution-split__copy h2 {
    color: #111;
    font-size: clamp(1.9rem, 3vw, 36px);
}

.gl-dh-evolution-intro__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-dh-evolution-intro__card,
.gl-dh-evolution-growth__gallery img,
.gl-dh-evolution-autonomy__media,
.gl-dh-evolution-local__media,
.gl-dh-evolution-war__gallery figure,
.gl-dh-evolution-split__feature-media,
.gl-dh-evolution-split__media-pair img,
.gl-dh-evolution-lithium__media img {
    overflow: hidden;
    border-radius: 8px;
}

.gl-dh-evolution-intro__card {
    position: relative;
    background: #f3f3f3;
    min-height: 220px;
}

.gl-dh-evolution-intro__card img,
.gl-dh-evolution-growth__gallery img,
.gl-dh-evolution-autonomy__media img,
.gl-dh-evolution-local__media img,
.gl-dh-evolution-war__gallery img,
.gl-dh-evolution-split__feature-media img,
.gl-dh-evolution-split__media-pair img,
.gl-dh-evolution-lithium__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-dh-evolution-intro__card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 6px 10px;
    background: var(--gl-dh-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.gl-dh-evolution-band,
.gl-dh-evolution-war,
.gl-dh-evolution-lithium {
    position: relative;
    padding: 42px 0 52px;
    overflow: hidden;
    background: #111;
}

.gl-dh-evolution-band__section-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.gl-dh-evolution-band__card,
.gl-dh-evolution-war__card {
    max-width: 540px;
    padding: 24px;
    background: #fff;
    border-top: 3px solid var(--gl-dh-red);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.gl-dh-evolution-band__card h3,
.gl-dh-evolution-war__card h2,
.gl-dh-evolution-split__feature-card h3,
.gl-dh-evolution-autonomy__card h3,
.gl-dh-evolution-lithium__copy h2 {
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(1.35rem, 2vw, 28px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.gl-dh-evolution-milestones,
.gl-dh-evolution-war__highlights,
.gl-dh-evolution-growth__features,
.gl-dh-evolution-autonomy__stats {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.gl-dh-evolution-milestones__item,
.gl-dh-evolution-war__highlight,
.gl-dh-evolution-growth__feature,
.gl-dh-evolution-autonomy__stat {
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fff;
}

.gl-dh-evolution-milestones__item h4,
.gl-dh-evolution-war__highlight h3,
.gl-dh-evolution-growth__feature h3,
.gl-dh-evolution-autonomy__stat strong {
    margin: 0 0 6px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.gl-dh-evolution-milestones__item p,
.gl-dh-evolution-war__highlight p,
.gl-dh-evolution-growth__feature p,
.gl-dh-evolution-autonomy__stat span {
    margin: 0;
    color: #333;
    font-size: 13px;
    line-height: 1.6;
}

.gl-dh-evolution-split__top,
.gl-dh-evolution-split__bottom,
.gl-dh-evolution-war__grid,
.gl-dh-evolution-lithium__grid,
.gl-dh-evolution-autonomy__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.gl-dh-evolution-split__media-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gl-dh-evolution-split__feature-card,
.gl-dh-evolution-autonomy__card {
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.gl-dh-evolution-war__grid,
.gl-dh-evolution-lithium__grid {
    align-items: stretch;
}

.gl-dh-evolution-war__gallery,
.gl-dh-evolution-growth__gallery,
.gl-dh-evolution-lithium__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gl-dh-evolution-growth__gallery img,
.gl-dh-evolution-war__gallery figure,
.gl-dh-evolution-lithium__media img {
    min-height: 180px;
}

.gl-dh-evolution-autonomy {
    background: #fff;
}

.gl-dh-evolution-autonomy__header {
    margin-bottom: 24px;
    text-align: center;
}

.gl-dh-evolution-autonomy__header h2 {
    color: #111;
    font-size: clamp(1.9rem, 3vw, 36px);
}

.gl-dh-evolution-autonomy__left {
    display: grid;
    gap: 18px;
}

.gl-dh-evolution-lithium {
    background: #0f0f0f;
}

.gl-dh-evolution-lithium .gl-dh-evolution-richtext,
.gl-dh-evolution-lithium .gl-dh-evolution-richtext p,
.gl-dh-evolution-lithium .gl-dh-evolution-richtext li,
.gl-dh-evolution-lithium__copy h2 {
    color: #fff;
}

.gl-dh-evolution-lithium__table {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.gl-dh-evolution-lithium__table-head,
.gl-dh-evolution-lithium__table-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(110px, 0.8fr) minmax(110px, 0.8fr);
    gap: 10px;
    align-items: center;
}

.gl-dh-evolution-lithium__table-head {
    padding: 10px 12px;
    background: var(--gl-dh-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.gl-dh-evolution-lithium__table-row {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
}

.gl-dh-evolution-local {
    background: #0f0f0f;
}

.gl-dh-evolution-local__grid {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
    align-items: stretch;
}

.gl-dh-evolution-local__media {
    min-height: 320px;
    background: #fff;
}

.gl-dh-evolution-local__copy {
    padding: 28px;
    background: #fff;
    border-top: 4px solid var(--gl-dh-red);
}

.gl-dh-evolution-local__cta {
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .gl-dh-evolution-intro__grid,
    .gl-dh-evolution-growth__grid,
    .gl-dh-evolution-local__grid,
    .gl-dh-evolution-split__top,
    .gl-dh-evolution-split__bottom,
    .gl-dh-evolution-war__grid,
    .gl-dh-evolution-lithium__grid,
    .gl-dh-evolution-autonomy__layout {
        grid-template-columns: 1fr;
    }

    .gl-dh-evolution-band__card,
    .gl-dh-evolution-war__card {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .gl-dh-evolution-hero {
        min-height: 340px;
        padding: 92px 0 72px;
    }

    .gl-dh-evolution-hero__title {
        font-size: 34px;
    }

    .gl-dh-evolution-intro__cards,
    .gl-dh-evolution-split__media-pair,
    .gl-dh-evolution-growth__gallery,
    .gl-dh-evolution-war__gallery,
    .gl-dh-evolution-lithium__media {
        grid-template-columns: 1fr;
    }

    .gl-dh-evolution-band__card,
    .gl-dh-evolution-war__card,
    .gl-dh-evolution-autonomy__card,
    .gl-dh-evolution-local__copy {
        padding: 18px;
    }
}


.gl-dh-evolution-band__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.gl-dh-evolution-band__feature {
    min-height: 100%;
    border-top: 3px solid var(--gl-dh-red);
    overflow: hidden;
}

.gl-dh-evolution-band__feature img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.gl-dh-evolution-split {
    border-top: 2px solid var(--gl-dh-red);
    border-bottom: 2px solid var(--gl-dh-red);
}

.gl-dh-evolution-split__top {
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--gl-dh-red);
}

.gl-dh-evolution-split__copy h2 {
    margin-bottom: 18px;
}

.gl-dh-evolution-split__copy h2::after,
.gl-dh-evolution-local__copy h2::after {
    content: '';
    display: block;
    width: 84px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-evolution-split__bottom--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    padding-top: 24px;
}

.gl-dh-evolution-split__story-card,
.gl-dh-evolution-split__compare-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
}

.gl-dh-evolution-split__story-card {
    border-bottom: 3px solid var(--gl-dh-red);
    padding: 24px 24px 18px;
}

.gl-dh-evolution-split__story-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.gl-dh-evolution-split__story-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gl-dh-evolution-split__story-card h3,
.gl-dh-evolution-split__compare-card h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.gl-dh-evolution-split__compare-card {
    align-self: center;
    padding: 20px 18px 0;
    border-bottom: 3px solid var(--gl-dh-red);
}

.gl-dh-evolution-split__compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.gl-dh-evolution-split__compare-pill {
    padding: 12px 14px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.gl-dh-evolution-war__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.92fr);
    gap: 34px;
    align-items: center;
}

.gl-dh-evolution-war__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gl-dh-evolution-war__gallery figure:first-child {

}

.gl-dh-evolution-war__gallery figure {
    min-height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 0;
}

.gl-dh-evolution-war__card {
    padding: 28px 24px 24px;
    border-top: 3px solid var(--gl-dh-red);
}

.gl-dh-evolution-war__subheading {
    margin: 18px 0 12px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-evolution-war__highlights--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.gl-dh-evolution-war__highlight--row {
    padding: 0 0 10px 14px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    background: transparent;
    position: relative;
}

.gl-dh-evolution-war__highlight--row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--gl-dh-red);
}

.gl-dh-evolution-war__highlight--row h4 {
    margin: 0 0 4px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
}

.gl-dh-evolution-war__highlight--row p {
    font-size: 12px;
    line-height: 1.45;
}

.gl-dh-evolution-growth__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
    align-items: start;
    gap: 24px;
}

.gl-dh-evolution-growth__copy {
    max-width: 700px;
}

.gl-dh-evolution-growth__copy h2 {
    margin-bottom: 16px;
}

.gl-dh-evolution-growth__features {
    gap: 8px;
    margin-top: 16px;
}

.gl-dh-evolution-growth__feature {
    padding: 10px 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-left: 3px solid var(--gl-dh-red);
    background: #fff;
}

.gl-dh-evolution-growth__gallery {
    align-self: start;
    gap: 18px;
}

.gl-dh-evolution-growth__gallery img {
    min-height: 0;
    aspect-ratio: 1.1 / 0.82;
}

.gl-dh-evolution-autonomy__header {
    text-align: left;
    margin-bottom: 24px;
}

.gl-dh-evolution-autonomy__header h2 {
    font-size: clamp(2rem, 3vw, 38px);
}

.gl-dh-evolution-autonomy__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    align-items: start;
}

.gl-dh-evolution-autonomy__left {
    gap: 14px;
}

.gl-dh-evolution-autonomy__media {
    min-height: 290px;
    border-radius: 0;
    background: #f1f1f1;
}

.gl-dh-evolution-autonomy__media img {
    object-fit: contain;
    background: #fff;
}

.gl-dh-evolution-autonomy__body {
    max-width: 760px;
}

.gl-dh-evolution-autonomy__stats--tech {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.gl-dh-evolution-autonomy__tech-pill {
    padding: 10px 12px;
    background: #111;
    color: #fff;
    border-top: 2px solid var(--gl-dh-red);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: none;
}

.gl-dh-evolution-autonomy__tech-pill strong,
.gl-dh-evolution-autonomy__tech-pill span {
    color: inherit;
    display: block;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.gl-dh-evolution-autonomy__card {
    padding: 18px 18px 16px;
    border-top: 3px solid var(--gl-dh-red);
}

.gl-dh-evolution-autonomy__card-kicker {
    margin: 0 0 8px;
    color: var(--gl-dh-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gl-dh-evolution-lithium__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 26px;
    align-items: start;
}

.gl-dh-evolution-lithium__media {
    gap: 16px;
}

.gl-dh-evolution-lithium__media img {
    min-height: 0;
    aspect-ratio: 0.72 / 1;
    border-radius: 0;
}

.gl-dh-evolution-lithium__copy h2 {
    font-size: clamp(1.8rem, 2.6vw, 34px);
    margin-bottom: 18px;
}

.gl-dh-evolution-lithium__table-row {
    background: rgba(255, 255, 255, 0.12);
}

.gl-dh-evolution-local {
    padding-top: 34px;
}

.gl-dh-evolution-local__grid {
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
    gap: 28px;
}

.gl-dh-evolution-local__media {
    min-height: 320px;
    border-radius: 0;
    background: #1b1b1b;
}

.gl-dh-evolution-local__copy {
    padding: 26px 28px 28px;
    background: transparent;
    border-top: 3px solid var(--gl-dh-red);
}

.gl-dh-evolution-local__copy,
.gl-dh-evolution-local__copy h2,
.gl-dh-evolution-local .gl-dh-evolution-richtext,
.gl-dh-evolution-local .gl-dh-evolution-richtext p,
.gl-dh-evolution-local .gl-dh-evolution-richtext li {
    color: #fff;
}

.gl-dh-evolution-local__cta {
    margin-top: 22px;
    max-width: 540px;
    padding: 20px 22px;
    border-radius: 0;
    background: var(--gl-dh-red);
    box-shadow: none;
}

.gl-dh-evolution-local__cta h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-evolution-local__cta-copy,
.gl-dh-evolution-local__cta-copy p {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .gl-dh-evolution-band__layout,
    .gl-dh-evolution-split__bottom--cards,
    .gl-dh-evolution-war__grid,
    .gl-dh-evolution-autonomy__layout,
    .gl-dh-evolution-lithium__grid,
    .gl-dh-evolution-local__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-evolution-war__highlights--compact,
    .gl-dh-evolution-autonomy__stats--tech,
    .gl-dh-evolution-split__compare-grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-evolution-band__feature img {
        min-height: 280px;
    }
}

.gl-dh-evolution-autonomy__card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gl-dh-evolution-autonomy__card ul li {
    border: 1px solid;
    padding: 10px;
}



/* === Delta Heavy Load Testing Slice 1 === */
.gl-dh-home-hero--load-testing .gl-dh-home-hero__overlay {
    background: linear-gradient(90deg, rgba(9, 19, 35, 0.86) 0%, rgba(9, 19, 35, 0.68) 38%, rgba(9, 19, 35, 0.28) 100%);
}

.gl-dh-load-testing-intro {
    padding-top: 28px;
}

.gl-dh-load-testing-business-note {
    padding: 34px 0 8px;
}

.gl-dh-load-testing-business-note__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 30px;
    align-items: start;
}

.gl-dh-load-testing-business-note__copy {
    display: grid;
    gap: 28px;
}

.gl-dh-load-testing-business-note__block h2 {
    margin: 0 0 14px;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-load-testing-business-note__body,
.gl-dh-load-testing-business-note__body p,
.gl-dh-load-testing-business-note__body li {
    color: #161616;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-load-testing-business-note__body p:last-child {
    margin-bottom: 0;
}

.gl-dh-load-testing-business-note__media {
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.gl-dh-load-testing-business-note__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .gl-dh-load-testing-business-note__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-load-testing-business-note__media {
        order: -1;
    }

    .gl-dh-load-testing-business-note__media img {
        min-height: 300px;
    }
}


.gl-dh-load-testing-meaning {
    padding: 0 0 34px;
    background: #111;
}

.gl-dh-load-testing-meaning .container {
    position: relative;
}

.gl-dh-load-testing-meaning__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 26px;
    align-items: center;
    margin-top: -6px;
    padding-top:36px;
}

.gl-dh-load-testing-meaning__media {
    min-height: 320px;
    overflow: hidden;
}

.gl-dh-load-testing-meaning__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.gl-dh-load-testing-meaning__card {
    background: #fff;
    padding: 30px 34px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gl-dh-load-testing-meaning__card h2 {
    margin: 0 0 18px;
    color: #0f0f0f;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.9rem, 2.6vw, 2.9rem);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.gl-dh-load-testing-meaning__body,
.gl-dh-load-testing-meaning__body p,
.gl-dh-load-testing-meaning__body li,
.gl-dh-load-testing-meaning__example,
.gl-dh-load-testing-meaning__example p,
.gl-dh-load-testing-meaning__example li {
    color: #191919;
    font-size: 0.95rem;
    line-height: 1.7;
}

.gl-dh-load-testing-meaning__card h3 {
    margin: 20px 0 10px;
    color: var(--gl-dh-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-load-testing-meaning__body p:last-child,
.gl-dh-load-testing-meaning__example p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gl-dh-load-testing-meaning__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-load-testing-meaning__card {
        padding: 24px 22px;
    }
}


.gl-dh-load-testing-listing {
    padding: 34px 0;
}

.gl-dh-load-testing-listing__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.gl-dh-load-testing-listing__media {
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-load-testing-listing__media img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
    display: block;
}

.gl-dh-load-testing-listing__content h2,
.gl-dh-load-testing-checked__intro h2,
.gl-dh-load-testing-important-note h2 {
    margin: 0;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-load-testing-listing__content h2::after,
.gl-dh-load-testing-checked__intro h2::after,
.gl-dh-load-testing-important-note h2::after,
.gl-dh-load-testing-business-note__copy h2::after,
.gl-dh-rentals-intro__copy h2::after,
.gl-dh-driver-training-meaning__grid h2::after,
.gl-dh-driver-training-meaning__grid h3::after,
.gl-dh-rentals-problem-fit__grid h3::after,
.gl-dh-driver-training-business-note__copy h2::after
{
    content: '';
    display: block;
    width: 116px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-load-testing-listing__intro,
.gl-dh-load-testing-listing__intro p,
.gl-dh-load-testing-listing__intro li,
.gl-dh-load-testing-listing__outro,
.gl-dh-load-testing-checked__intro p,
.gl-dh-load-testing-important-note p {
    color: #181818;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-load-testing-listing__intro {
    margin-top: 18px;
}

.gl-dh-load-testing-listing__items {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.gl-dh-load-testing-listing__accordion {
    border-bottom: 1px solid #d7d7d7;
}

.gl-dh-load-testing-listing__summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    list-style: none;
    padding: 14px 0;
}

.gl-dh-load-testing-listing__summary::-webkit-details-marker {
    display: none;
}

.gl-dh-load-testing-listing__panel {
    padding: 0 0 18px 28px;
}

.gl-dh-load-testing-listing__panel p {
    margin: 0;
    color: #181818;
    font-size: 0.95rem;
    line-height: 1.75;
}

.gl-dh-load-testing-listing__dot {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-flex;
}

.gl-dh-load-testing-listing__dot::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 2px solid var(--gl-dh-red);
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

.gl-dh-load-testing-listing__label {
    color: #101010;
    font-weight: 500;
}

.gl-dh-load-testing-listing__arrow {
    color: var(--gl-dh-red);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.gl-dh-load-testing-listing__accordion[open] .gl-dh-load-testing-listing__arrow {
    transform: rotate(90deg);
}

.gl-dh-load-testing-listing__outro {
    margin: 20px 0 0;
}

.gl-dh-load-testing-checked {
    padding: 16px 0 34px;
}

.gl-dh-load-testing-checked__intro {
    max-width: 1060px;
    margin: 0 auto 30px;
    text-align: center;
}

.gl-dh-load-testing-checked__intro h2::after {
    margin-left: auto;
    margin-right: auto;
}

.gl-dh-load-testing-checked__intro p {
    margin: 18px auto 0;
    max-width: 1120px;
}

.gl-dh-load-testing-checked__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 36px;
    align-items: start;
}

.gl-dh-load-testing-checked__media {
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-load-testing-checked__media img {
    width: 100%;
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    display: block;
}

.gl-dh-accordion-item--load-testing {
    margin-bottom: 14px;
}

.gl-dh-accordion-item--load-testing:last-child {
    margin-bottom: 0;
}

.gl-dh-load-testing-important-note {
    padding: 10px 0 30px;
    text-align: center;
}

.gl-dh-load-testing-important-note .container {
    max-width: 1100px;
}

.gl-dh-load-testing-important-note h2::after {
    margin-left: auto;
    margin-right: auto;
}

.gl-dh-load-testing-important-note p {
    margin: 18px auto 0;
    max-width: 980px;
}

.gl-dh-load-testing-qualified {
    padding: 28px 0 34px;
    background: #fff;
}

.gl-dh-load-testing-qualified__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
    align-items: start;
}

.gl-dh-load-testing-qualified__block + .gl-dh-load-testing-qualified__block {
    margin-top: 78px;
}

.gl-dh-load-testing-qualified__block h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-load-testing-qualified__block h2::after {
    content: '';
    display: block;
    width: 196px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-load-testing-qualified__body,
.gl-dh-load-testing-qualified__body p,
.gl-dh-load-testing-qualified__body li {
    color: #181818;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-load-testing-qualified__body {
    margin-top: 16px;
}

.gl-dh-load-testing-qualified__media {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-load-testing-qualified__media img {
    width: 100%;
    height: 100%;
    min-height: 820px;
    object-fit: cover;
    display: block;
}

.gl-dh-load-testing-ask {
    padding: 34px 0 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gl-dh-load-testing-ask__header {
    margin: 0 auto 28px;
    max-width: 980px;
    text-align: center;
}

.gl-dh-load-testing-ask__header h2 {
    margin: 0;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-load-testing-ask__header h2::after {
    content: '';
    display: block;
    width: 176px;
    height: 3px;
    margin: 16px auto 0;
    background: var(--gl-dh-red);
}

.gl-dh-load-testing-ask__header p {
    margin: 14px auto 0;
    max-width: 880px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-load-testing-ask__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gl-dh-load-testing-ask__card {
    padding: 22px 22px 18px;
    border-radius: 16px;
    border-bottom: 4px solid var(--gl-dh-red);
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.gl-dh-load-testing-ask__card--last,
.gl-dh-load-testing-ask__grid > .gl-dh-load-testing-ask__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 720px;
    justify-self: center;
}

.gl-dh-load-testing-ask__card h3 {
    margin: 0;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-load-testing-ask__card h3::after {
    content: '';
    display: block;
    width: 132px;
    height: 3px;
    margin-top: 12px;
    background: var(--gl-dh-red);
}

.gl-dh-load-testing-ask__card p {
    margin: 12px 0 0;
    color: #181818;
    font-size: 0.95rem;
    line-height: 1.7;
}


.gl-dh-load-testing-help,
.gl-dh-load-testing-support,
.gl-dh-load-testing-industries {
    padding: 34px 0;
    background: #fff;
}

.gl-dh-load-testing-help {
    border-top: 2px solid var(--gl-dh-red);
}

.gl-dh-load-testing-help__grid,
.gl-dh-load-testing-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    gap: 36px;
    align-items: center;
}

.gl-dh-load-testing-support__grid {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.gl-dh-load-testing-help__content h2,
.gl-dh-load-testing-support__content h2 {
    margin: 0;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-load-testing-help__content h2::after,
.gl-dh-load-testing-support__content h2::after {
    content: '';
    display: block;
    width: 152px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-load-testing-help__intro,
.gl-dh-load-testing-support__intro,
.gl-dh-load-testing-industries__outro {
    margin: 18px 0 0;
    color: #1b1b1b;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-load-testing-help__panel,
.gl-dh-load-testing-support__panel {
    margin-top: 18px;
    padding: 16px 20px 18px;
    border: 1px solid #d9d9d9;
    border-left: 4px solid var(--gl-dh-red);
    background: #fff;
}

.gl-dh-load-testing-help__panel h3,
.gl-dh-load-testing-support__panel h3 {
    margin: 0;
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-load-testing-help__panel-body,
.gl-dh-load-testing-help__panel-body p,
.gl-dh-load-testing-help__panel-body li,
.gl-dh-load-testing-support__panel-body,
.gl-dh-load-testing-support__panel-body p,
.gl-dh-load-testing-support__panel-body li {
    color: #202020;
    font-size: 0.95rem;
    line-height: 1.75;
}

.gl-dh-load-testing-help__panel-body,
.gl-dh-load-testing-support__panel-body {
    margin-top: 12px;
}

.gl-dh-load-testing-help__panel-body ul,
.gl-dh-load-testing-support__panel-body ul {
    margin: 0;
    padding-left: 18px;
}

.gl-dh-load-testing-help__media,
.gl-dh-load-testing-support__media {
    overflow: hidden;
    border-radius: 10px;
}

.gl-dh-load-testing-help__media img,
.gl-dh-load-testing-support__media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.gl-dh-load-testing-industries__outro {
    margin-top: 16px;
}


.gl-dh-load-testing-how-it-works {
    padding-top: 12px;
}

.gl-dh-load-testing-why-choose .gl-dh-home-why-choose__header {
    margin-bottom: 36px;
}

.gl-dh-load-testing-more-support {
    background:
        linear-gradient(rgba(2, 3, 2, 0.78), rgba(2, 3, 2, 0.78)),
        url('../images/delta-heavy/home-hero.jpg') center / cover no-repeat;
}

.gl-dh-load-testing-more-support .gl-dh-home-core-services__header {
    align-items: flex-start;
}

.gl-dh-load-testing-more-support .gl-dh-home-core-services__intro {
    max-width: 900px;
}

.gl-dh-load-testing-more-support .gl-dh-home-core-services__kicker {
    max-width: 760px;
    color: var(--gl-dh-red);
    font-size: 24px;
    font-weight: 600;
}

.gl-dh-load-testing-more-support .gl-dh-home-core-services__title {
    color: #fff;
}

@media (max-width: 991px) {
    .gl-dh-load-testing-listing__grid,
    .gl-dh-load-testing-checked__grid,
    .gl-dh-load-testing-qualified__grid,
    .gl-dh-load-testing-ask__grid,
    .gl-dh-load-testing-help__grid,
    .gl-dh-load-testing-support__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-load-testing-listing__media,
    .gl-dh-load-testing-checked__media,
    .gl-dh-load-testing-qualified__media,
    .gl-dh-load-testing-help__media,
    .gl-dh-load-testing-support__media {
        order: -1;
    }

    .gl-dh-load-testing-listing__media img,
    .gl-dh-load-testing-checked__media img,
    .gl-dh-load-testing-qualified__media img,
    .gl-dh-load-testing-help__media img,
    .gl-dh-load-testing-support__media img {
        min-height: 300px;
    }

    .gl-dh-load-testing-qualified__block + .gl-dh-load-testing-qualified__block {
        margin-top: 42px;
    }

    .gl-dh-load-testing-ask__card--last {
        max-width: none;
    }
}

/* === Delta Heavy Driver Training Slice 1 === */
.gl-dh-home-hero--driver-training .gl-dh-home-hero__overlay {
    background: linear-gradient(90deg, rgba(9, 19, 35, 0.86) 0%, rgba(9, 19, 35, 0.68) 38%, rgba(9, 19, 35, 0.28) 100%);
}

.gl-dh-driver-training-intro {
    padding-top: 28px;
}

.gl-dh-driver-training-business-note {
    padding: 34px 0 8px;
}

.gl-dh-driver-training-business-note__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 30px;
    align-items: start;
}

.gl-dh-driver-training-business-note__copy {
    display: grid;
    gap: 28px;
}

.gl-dh-driver-training-business-note__block h2 {
    margin: 0 0 14px;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-driver-training-business-note__body,
.gl-dh-driver-training-business-note__body p,
.gl-dh-driver-training-business-note__body li {
    color: #161616;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-driver-training-business-note__body p:last-child {
    margin-bottom: 0;
}

.gl-dh-driver-training-business-note__media {
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.gl-dh-driver-training-business-note__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .gl-dh-driver-training-business-note__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-driver-training-business-note__media {
        order: -1;
    }

    .gl-dh-driver-training-business-note__media img {
        min-height: 300px;
    }
}


.gl-dh-driver-training-meaning {
    padding: 0 0 34px;
    background: #111;
}

.gl-dh-driver-training-meaning .container {
    position: relative;
}

.gl-dh-driver-training-meaning__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 26px;
    align-items: center;
    margin-top: -6px;
    padding-top:36px;
}

.gl-dh-driver-training-meaning__media {
    min-height: 320px;
    overflow: hidden;
}

.gl-dh-driver-training-meaning__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.gl-dh-driver-training-meaning__card {
    background: #fff;
    padding: 30px 34px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gl-dh-driver-training-meaning__card h2 {
    margin: 0 0 18px;
    color: #0f0f0f;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.9rem, 2.6vw, 2.9rem);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.gl-dh-driver-training-meaning__body,
.gl-dh-driver-training-meaning__body p,
.gl-dh-driver-training-meaning__body li,
.gl-dh-driver-training-meaning__example,
.gl-dh-driver-training-meaning__example p,
.gl-dh-driver-training-meaning__example li {
    color: #191919;
    font-size: 0.95rem;
    line-height: 1.7;
}

.gl-dh-driver-training-meaning__card h3 {
    margin: 20px 0 10px;
    color: var(--gl-dh-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-driver-training-meaning__body p:last-child,
.gl-dh-driver-training-meaning__example p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gl-dh-driver-training-meaning__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-driver-training-meaning__card {
        padding: 24px 22px;
    }
}


.gl-dh-driver-training-listing {
    padding: 34px 0;
}

.gl-dh-driver-training-listing__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.gl-dh-driver-training-listing__media {
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-driver-training-listing__media img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
    display: block;
}

.gl-dh-driver-training-listing__content h2,
.gl-dh-driver-training-checked__intro h2,
.gl-dh-driver-training-important-note h2 {
    margin: 0;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-driver-training-listing__content h2::after,
.gl-dh-driver-training-checked__intro h2::after,
.gl-dh-driver-training-important-note h2::after {
    content: '';
    display: block;
    width: 116px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-driver-training-listing__intro,
.gl-dh-driver-training-listing__intro p,
.gl-dh-driver-training-listing__intro li,
.gl-dh-driver-training-listing__outro,
.gl-dh-driver-training-checked__intro p,
.gl-dh-driver-training-important-note p {
    color: #181818;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-driver-training-listing__intro {
    margin-top: 18px;
}

.gl-dh-driver-training-listing__items {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.gl-dh-driver-training-listing__accordion {
    border-bottom: 1px solid #d7d7d7;
}

.gl-dh-driver-training-listing__summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    list-style: none;
    padding: 14px 0;
}

.gl-dh-driver-training-listing__summary::-webkit-details-marker {
    display: none;
}

.gl-dh-driver-training-listing__panel {
    padding: 0 0 18px 28px;
}

.gl-dh-driver-training-listing__panel p {
    margin: 0;
    color: #181818;
    font-size: 0.95rem;
    line-height: 1.75;
}

.gl-dh-driver-training-listing__dot {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-flex;
}

.gl-dh-driver-training-listing__dot::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 2px solid var(--gl-dh-red);
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

.gl-dh-driver-training-listing__label {
    color: #101010;
    font-weight: 500;
}

.gl-dh-driver-training-listing__arrow {
    color: var(--gl-dh-red);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.gl-dh-driver-training-listing__accordion[open] .gl-dh-driver-training-listing__arrow {
    transform: rotate(90deg);
}

.gl-dh-driver-training-listing__outro {
    margin: 20px 0 0;
}

.gl-dh-driver-training-checked {
    padding: 16px 0 34px;
}

.gl-dh-driver-training-checked__intro {
    max-width: 1060px;
    margin: 0 auto 30px;
    text-align: center;
}

.gl-dh-driver-training-checked__intro h2::after {
    margin-left: auto;
    margin-right: auto;
}

.gl-dh-driver-training-checked__intro p {
    margin: 18px auto 0;
    max-width: 1120px;
}

.gl-dh-driver-training-checked__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 36px;
    align-items: start;
}

.gl-dh-driver-training-checked__media {
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-driver-training-checked__media img {
    width: 100%;
    height: 100%;
    min-height: 780px;
    object-fit: cover;
    display: block;
}

.gl-dh-accordion-item--driver-training {
    margin-bottom: 14px;
}

.gl-dh-accordion-item--driver-training:last-child {
    margin-bottom: 0;
}

.gl-dh-driver-training-important-note {
    padding: 10px 0 30px;
    text-align: center;
}

.gl-dh-driver-training-important-note .container {
    max-width: 1100px;
}

.gl-dh-driver-training-important-note h2::after {
    margin-left: auto;
    margin-right: auto;
}

.gl-dh-driver-training-important-note p {
    margin: 18px auto 0;
    max-width: 980px;
}

.gl-dh-driver-training-qualified {
    padding: 28px 0 34px;
    background: #fff;
}

.gl-dh-driver-training-qualified__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
    align-items: start;
}

.gl-dh-driver-training-qualified__block + .gl-dh-driver-training-qualified__block {
    margin-top: 78px;
}

.gl-dh-driver-training-qualified__block h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-driver-training-qualified__block h2::after {
    content: '';
    display: block;
    width: 196px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-driver-training-qualified__body,
.gl-dh-driver-training-qualified__body p,
.gl-dh-driver-training-qualified__body li {
    color: #181818;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-driver-training-qualified__body {
    margin-top: 16px;
}

.gl-dh-driver-training-qualified__media {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gl-dh-driver-training-qualified__media img {
    width: 100%;
    height: 100%;
    min-height: 820px;
    object-fit: cover;
    display: block;
}

.gl-dh-driver-training-ask {
    padding: 34px 0 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gl-dh-driver-training-ask__header {
    margin: 0 auto 28px;
    max-width: 980px;
    text-align: center;
}

.gl-dh-driver-training-ask__header h2 {
    margin: 0;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-driver-training-ask__header h2::after {
    content: '';
    display: block;
    width: 176px;
    height: 3px;
    margin: 16px auto 0;
    background: var(--gl-dh-red);
}

.gl-dh-driver-training-ask__header p {
    margin: 14px auto 0;
    max-width: 880px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-driver-training-ask__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gl-dh-driver-training-ask__card {
    padding: 22px 22px 18px;
    border-radius: 16px;
    border-bottom: 4px solid var(--gl-dh-red);
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.gl-dh-driver-training-ask__card--last,
.gl-dh-driver-training-ask__grid > .gl-dh-driver-training-ask__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 720px;
    justify-self: center;
}

.gl-dh-driver-training-ask__card h3 {
    margin: 0;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-driver-training-ask__card h3::after {
    content: '';
    display: block;
    width: 132px;
    height: 3px;
    margin-top: 12px;
    background: var(--gl-dh-red);
}

.gl-dh-driver-training-ask__card p {
    margin: 12px 0 0;
    color: #181818;
    font-size: 0.95rem;
    line-height: 1.7;
}


.gl-dh-driver-training-help,
.gl-dh-driver-training-support,
.gl-dh-driver-training-industries {
    padding: 34px 0;
    background: #fff;
}

.gl-dh-driver-training-help {
    border-top: 2px solid var(--gl-dh-red);
}

.gl-dh-driver-training-help__grid,
.gl-dh-driver-training-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    gap: 36px;
    align-items: center;
}

.gl-dh-driver-training-support__grid {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.gl-dh-driver-training-help__content h2,
.gl-dh-driver-training-support__content h2 {
    margin: 0;
    color: #111;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.gl-dh-driver-training-help__content h2::after,
.gl-dh-driver-training-support__content h2::after {
    content: '';
    display: block;
    width: 152px;
    height: 3px;
    margin-top: 14px;
    background: var(--gl-dh-red);
}

.gl-dh-driver-training-help__intro,
.gl-dh-driver-training-support__intro,
.gl-dh-driver-training-industries__outro {
    margin: 18px 0 0;
    color: #1b1b1b;
    font-size: 0.98rem;
    line-height: 1.8;
}

.gl-dh-driver-training-help__panel,
.gl-dh-driver-training-support__panel {
    margin-top: 18px;
    padding: 16px 20px 18px;
    border: 1px solid #d9d9d9;
    border-left: 4px solid var(--gl-dh-red);
    background: #fff;
}

.gl-dh-driver-training-help__panel h3,
.gl-dh-driver-training-support__panel h3 {
    margin: 0;
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.gl-dh-driver-training-help__panel-body,
.gl-dh-driver-training-help__panel-body p,
.gl-dh-driver-training-help__panel-body li,
.gl-dh-driver-training-support__panel-body,
.gl-dh-driver-training-support__panel-body p,
.gl-dh-driver-training-support__panel-body li {
    color: #202020;
    font-size: 0.95rem;
    line-height: 1.75;
}

.gl-dh-driver-training-help__panel-body,
.gl-dh-driver-training-support__panel-body {
    margin-top: 12px;
}

.gl-dh-driver-training-help__panel-body ul,
.gl-dh-driver-training-support__panel-body ul {
    margin: 0;
    padding-left: 18px;
}

.gl-dh-driver-training-help__media,
.gl-dh-driver-training-support__media {
    overflow: hidden;
    border-radius: 10px;
}

.gl-dh-driver-training-help__media img,
.gl-dh-driver-training-support__media img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.gl-dh-driver-training-industries__outro {
    margin-top: 16px;
}


.gl-dh-driver-training-how-it-works {
    padding-top: 12px;
}

.gl-dh-driver-training-why-choose .gl-dh-home-why-choose__header {
    margin-bottom: 36px;
}

.gl-dh-driver-training-more-support {
    background:
        linear-gradient(rgba(2, 3, 2, 0.78), rgba(2, 3, 2, 0.78)),
        url('../images/delta-heavy/home-hero.jpg') center / cover no-repeat;
}

.gl-dh-driver-training-more-support .gl-dh-home-core-services__header {
    align-items: flex-start;
}

.gl-dh-driver-training-more-support .gl-dh-home-core-services__intro {
    max-width: 900px;
}

.gl-dh-driver-training-more-support .gl-dh-home-core-services__kicker {
    max-width: 760px;
    color: var(--gl-dh-red);
    font-size: 24px;
    font-weight: 600;
}

.gl-dh-driver-training-more-support .gl-dh-home-core-services__title {
    color: #fff;
}

@media (max-width: 991px) {
    .gl-dh-driver-training-listing__grid,
    .gl-dh-driver-training-checked__grid,
    .gl-dh-driver-training-qualified__grid,
    .gl-dh-driver-training-ask__grid,
    .gl-dh-driver-training-help__grid,
    .gl-dh-driver-training-support__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gl-dh-driver-training-listing__media,
    .gl-dh-driver-training-checked__media,
    .gl-dh-driver-training-qualified__media,
    .gl-dh-driver-training-help__media,
    .gl-dh-driver-training-support__media {
        order: -1;
    }

    .gl-dh-driver-training-listing__media img,
    .gl-dh-driver-training-checked__media img,
    .gl-dh-driver-training-qualified__media img,
    .gl-dh-driver-training-help__media img,
    .gl-dh-driver-training-support__media img {
        min-height: 300px;
    }

    .gl-dh-driver-training-qualified__block + .gl-dh-driver-training-qualified__block {
        margin-top: 42px;
    }

    .gl-dh-driver-training-ask__card--last {
        max-width: none;
    }
}



/* Delta Heavy Blog */
.gl-dh-blog-listing {
    padding: 24px 0 64px;
    background: #fff;
}

.gl-dh-blog-listing__layout {
    display: grid;
    grid-template-columns: minmax(240px, 296px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gl-dh-blog-listing__sidebar {
    position: sticky;
    top: 24px;
}

.gl-dh-blog-listing__filters {
    padding: 22px 20px 24px;
    border: 1px solid #d4d4d4;
    background: #fff;
}

.gl-dh-blog-listing__filters h2,
.gl-dh-blog-listing__header h1,
.gl-dh-blog-card__body h2,
.gl-dh-blog-article__header h1 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-blog-listing__filters h2 {
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    line-height: 1.05;
}

.gl-dh-blog-listing__search {
    position: relative;
    margin-bottom: 18px;
}

.gl-dh-blog-listing__search input {
    width: 100%;
    padding: 13px 44px 13px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    color: #707070;
    font-size: 14px;
}

.gl-dh-blog-listing__search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #9b9b9b;
    pointer-events: none;
}

.gl-dh-blog-listing__filter-group {
    margin-bottom: 20px;
    padding: 18px 0 22px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.gl-dh-blog-listing__filter-heading {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gl-dh-dark);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: default;
}

.gl-dh-blog-listing__filter-options {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.gl-dh-blog-listing__filter-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3f3f3f;
    font-size: 14px;
    cursor: pointer;
}

.gl-dh-blog-listing__filter-option input {
    margin: 0;
    accent-color: var(--gl-dh-red);
}

.gl-dh-blog-listing__apply {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
}

.gl-dh-blog-listing__clear {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4b4b4b;
    font-size: 14px;
    cursor: pointer;
}

.gl-dh-blog-listing__clear i {
    color: var(--gl-dh-red);
}

.gl-dh-blog-listing__header {
    margin-bottom: 22px;
}

.gl-dh-blog-listing__header h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 0.96;
}

.gl-dh-blog-listing__header p {
    margin: 6px 0 18px;
    color: #656565;
    font-size: 18px;
}

.gl-dh-blog-listing__count {
    color: #6c6c6c;
    font-size: 16px;
}

.gl-dh-blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 18px;
}

.gl-dh-blog-card {
    border: 1px solid #d0d0d0;
    background: #fff;
}

.gl-dh-blog-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.gl-dh-blog-card__image img {
    width: 100%;
    height: 266px;
    object-fit: cover;
    display: block;
}

.gl-dh-blog-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 14px 14px;
}

.gl-dh-blog-card__body h2 {
    font-size: clamp(1.65rem, 2vw, 2rem);
    line-height: 1.02;
}

.gl-dh-blog-card__divider,
.gl-dh-blog-article__divider {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffb3b3;
}

.gl-dh-blog-card__excerpt {
    margin: 0;
    color: #3c3c3c;
    font-size: 17px;
    line-height: 1.28;
}

.gl-dh-blog-card__button {
    margin-top: auto;
}

.gl-dh-blog-listing__empty {
    padding: 28px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #3c3c3c;
}

.gl-dh-blog-listing__empty p {
    margin: 0;
}

.gl-dh-blog-listing__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.gl-dh-blog-listing__pagination button {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #7d7d7d;
    font-size: 18px;
    cursor: pointer;
}

.gl-dh-blog-listing__pagination button.is-active {
    color: #d39d2a;
    font-weight: 700;
}

.gl-dh-blog-article {
    padding: 28px 0 56px;
    background: #fff;
}

.gl-dh-blog-article__container {
    max-width: 1120px;
}

.gl-dh-blog-article__back {
    display: inline-block;
    margin-bottom: 18px;
    color: #8e8e8e;
    font-size: 14px;
    text-decoration: none;
}

.gl-dh-blog-article__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.gl-dh-blog-article__header h1 {
    font-size: clamp(2.6rem, 4vw, 3.75rem);
    line-height: 0.96;
}

.gl-dh-blog-article__header time {
    color: #b1b1b1;
    font-size: 16px;
    white-space: nowrap;
}

.gl-dh-blog-article__divider {
    margin: 18px 0 22px;
}

.gl-dh-blog-article__prose {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.45;
}

.gl-dh-blog-article__prose::after {
    content: '';
    display: block;
    clear: both;
}

.gl-dh-blog-article__image {
    float: left;
    width: min(100%, 352px);
    margin: 0 32px 16px 0;
}

.gl-dh-blog-article__image img {
    width: 100%;
    display: block;
}

.gl-dh-blog-article__body > :first-child {
    margin-top: 0;
}

.gl-dh-blog-article__body > :last-child {
    margin-bottom: 0;
}

.gl-dh-blog-article__video {
    margin-top: 36px;
    aspect-ratio: 16 / 9;
}

.gl-dh-blog-article__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1200px) {
    .gl-dh-blog-listing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .gl-dh-blog-listing__layout {
        grid-template-columns: 1fr;
    }

    .gl-dh-blog-listing__sidebar {
        position: static;
    }

    .gl-dh-blog-article__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .gl-dh-blog-listing__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-blog-card__image img {
        height: 220px;
    }

    .gl-dh-blog-article__image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .gl-dh-blog-article__prose {
        font-size: 17px;
    }
}
/* Delta Heavy Blog End */



/* Delta Heavy Video Hub */
.gl-dh-video-listing {
    padding: 24px 0 64px;
    background: #fff;
}

.gl-dh-video-listing__layout {
    display: grid;
    grid-template-columns: minmax(240px, 296px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gl-dh-video-listing__sidebar {
    position: sticky;
    top: 24px;
}

.gl-dh-video-listing__filters {
    padding: 22px 20px 24px;
    border: 1px solid #d4d4d4;
    background: #fff;
}

.gl-dh-video-listing__filters h2,
.gl-dh-video-listing__header h1,
.gl-dh-video-card__body h2,
.gl-dh-video-article__header h1 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-video-listing__filters h2 {
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    line-height: 1.05;
}

.gl-dh-video-listing__search {
    position: relative;
    margin-bottom: 18px;
}

.gl-dh-video-listing__search input {
    width: 100%;
    padding: 13px 44px 13px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    color: #707070;
    font-size: 14px;
}

.gl-dh-video-listing__search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #9b9b9b;
    pointer-events: none;
}

.gl-dh-video-listing__filter-group {
    margin-bottom: 20px;
    padding: 18px 0 22px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.gl-dh-video-listing__filter-heading {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gl-dh-dark);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: default;
}

.gl-dh-video-listing__filter-options {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.gl-dh-video-listing__filter-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3f3f3f;
    font-size: 14px;
    cursor: pointer;
}

.gl-dh-video-listing__filter-option input {
    margin: 0;
    accent-color: var(--gl-dh-red);
}

.gl-dh-video-listing__apply {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
}

.gl-dh-video-listing__clear {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4b4b4b;
    font-size: 14px;
    cursor: pointer;
}

.gl-dh-video-listing__clear i {
    color: var(--gl-dh-red);
}

.gl-dh-video-listing__header {
    margin-bottom: 22px;
}

.gl-dh-video-listing__header h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 0.96;
}

.gl-dh-video-listing__header p {
    margin: 6px 0 18px;
    color: #656565;
    font-size: 18px;
}

.gl-dh-video-listing__count {
    color: #6c6c6c;
    font-size: 16px;
}

.gl-dh-video-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 18px;
}

.gl-dh-video-card {
    border: 1px solid #d0d0d0;
    background: #fff;
}

.gl-dh-video-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.gl-dh-video-card__image img {
    width: 100%;
    height: 266px;
    object-fit: cover;
    display: block;
}

.gl-dh-video-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 14px 14px;
}

.gl-dh-video-card__body h2 {
    font-size: clamp(1.65rem, 2vw, 2rem);
    line-height: 1.02;
}

.gl-dh-video-card__divider,
.gl-dh-video-article__divider {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffb3b3;
}

.gl-dh-video-card__excerpt {
    margin: 0;
    color: #3c3c3c;
    font-size: 17px;
    line-height: 1.28;
}

.gl-dh-video-card__button {
    margin-top: auto;
}

.gl-dh-video-listing__empty {
    padding: 28px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #3c3c3c;
}

.gl-dh-video-listing__empty p {
    margin: 0;
}

.gl-dh-video-listing__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.gl-dh-video-listing__pagination button {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #7d7d7d;
    font-size: 18px;
    cursor: pointer;
}

.gl-dh-video-listing__pagination button.is-active {
    color: #d39d2a;
    font-weight: 700;
}

.gl-dh-video-article {
    padding: 28px 0 56px;
    background: #fff;
}

.gl-dh-video-article__container {
    max-width: 1120px;
}

.gl-dh-video-article__back {
    display: inline-block;
    margin-bottom: 18px;
    color: #8e8e8e;
    font-size: 14px;
    text-decoration: none;
}

.gl-dh-video-article__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.gl-dh-video-article__header h1 {
    font-size: clamp(2.6rem, 4vw, 3.75rem);
    line-height: 0.96;
}

.gl-dh-video-article__header time {
    color: #b1b1b1;
    font-size: 16px;
    white-space: nowrap;
}

.gl-dh-video-article__divider {
    margin: 18px 0 22px;
}

.gl-dh-video-article__image {
    margin: 0 0 22px;
}

.gl-dh-video-article__image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.gl-dh-video-article__body {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.45;
}

.gl-dh-video-article__body > :first-child {
    margin-top: 0;
}

.gl-dh-video-article__body > :last-child {
    margin-bottom: 0;
}

.gl-dh-video-article__video {
    margin-top: 36px;
    aspect-ratio: 16 / 9;
}

.gl-dh-video-article__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1200px) {
    .gl-dh-video-listing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .gl-dh-video-listing__layout {
        grid-template-columns: 1fr;
    }

    .gl-dh-video-listing__sidebar {
        position: static;
    }

    .gl-dh-video-article__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .gl-dh-video-listing__grid {
        grid-template-columns: 1fr;
    }

    .gl-dh-video-card__image img {
        height: 220px;
    }

    .gl-dh-video-article__body {
        font-size: 17px;
    }
}
/* Delta Heavy Video Hub End */



/* Delta Heavy Gallery */
.gl-dh-gallery-archive {
    padding: 22px 0 64px;
    background: #fff;
}

.gl-dh-gallery-archive__layout {
    display: grid;
    grid-template-columns: minmax(240px, 316px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.gl-dh-gallery-filter {
    position: sticky;
    top: 24px;
}

.gl-dh-gallery-filter__form {
    padding: 22px 20px 24px;
    border: 1px solid #d4d4d4;
    background: #fff;
}

.gl-dh-gallery-filter__title,
.gl-dh-gallery-listing__header h1,
.gl-dh-gallery-empty h2 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-gallery-filter__title {
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    line-height: 1.05;
}

.gl-dh-gallery-filter__divider {
    height: 1px;
    margin: 18px 0;
    background: #d7d7d7;
}

.gl-dh-gallery-filter__group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gl-dh-gallery-filter__group-header h3 {
    margin: 0;
    color: var(--gl-dh-dark);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.gl-dh-gallery-filter__options {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.gl-dh-gallery-filter__option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3f3f3f;
    font-size: 14px;
    cursor: pointer;
}

.gl-dh-gallery-filter__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gl-dh-gallery-filter__indicator {
    width: 12px;
    height: 12px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.gl-dh-gallery-filter__option input:checked + .gl-dh-gallery-filter__indicator {
    border-color: var(--gl-dh-red);
    background: var(--gl-dh-red);
}

.gl-dh-gallery-filter__submit {
    width: 100%;
    justify-content: center;
}

.gl-dh-gallery-filter__clear {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #4b4b4b;
    font-size: 14px;
    text-decoration: none;
}

.gl-dh-gallery-filter__clear i {
    color: var(--gl-dh-red);
}

.gl-dh-gallery-listing__header {
    margin-bottom: 18px;
}

.gl-dh-gallery-listing__header h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 0.96;
}

.gl-dh-gallery-listing__header p {
    margin: 6px 0 0;
    color: #656565;
    font-size: 18px;
}

.gl-dh-gallery-listing__count {
    margin: 0 0 18px;
    color: #6c6c6c;
    font-size: 16px;
}

.gl-dh-gallery-cards {
    display: grid;
    gap: 20px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gl-dh-gallery-card {
    overflow: hidden;
    background: #fff;
}

.gl-dh-gallery-card__button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gl-dh-gallery-card__button:focus-visible {
    outline: 2px solid var(--gl-dh-red);
    outline-offset: 2px;
}

.gl-dh-gallery-card__image {
    overflow: hidden;
    background: #dde6ef;
}

.gl-dh-gallery-card__image img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.gl-dh-gallery-card__button:hover .gl-dh-gallery-card__image img,
.gl-dh-gallery-card__button:focus-visible .gl-dh-gallery-card__image img {
    transform: scale(1.02);
}

.gl-dh-gallery-empty {
    padding: 28px;
    border: 1px solid #d0d0d0;
    background: #fff;
}

.gl-dh-gallery-empty p {
    margin: 12px 0 20px;
    color: #3c3c3c;
}

.gl-dh-gallery-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.gl-dh-gallery-pagination a,
.gl-dh-gallery-pagination span {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #7d7d7d;
    font-size: 18px;
    text-decoration: none;
}

.gl-dh-gallery-pagination .current {
    color: #d39d2a;
    font-weight: 700;
}

.gl-dh-gallery-modal[hidden] {
    display: none;
}

.gl-dh-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.gl-dh-gallery-modal__overlay {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.gl-dh-gallery-modal__dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(56px, 88px) minmax(0, 1fr) minmax(56px, 88px);
    align-items: center;
    gap: 26px;
    height: 100%;
    padding: 36px 32px;
}

.gl-dh-gallery-modal__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: min(1560px, 100%);
    max-height: calc(100vh - 72px);
    margin: 0 auto;
}

.gl-dh-gallery-modal__media img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 72px);
    height: auto;
    object-fit: contain;
}

.gl-dh-gallery-modal__close,
.gl-dh-gallery-modal__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--gl-dh-dark);
    font-size: 1.2rem;
    cursor: pointer;
}

.gl-dh-gallery-modal__close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
}

.gl-dh-gallery-modal__nav--prev {
    justify-self: start;
}

.gl-dh-gallery-modal__nav--next {
    justify-self: end;
}

body.gl-dh-gallery-modal-open,
html.gl-dh-gallery-modal-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .gl-dh-gallery-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .gl-dh-gallery-archive__layout {
        grid-template-columns: 1fr;
    }

    .gl-dh-gallery-filter {
        position: static;
    }

    .gl-dh-gallery-modal__dialog {
        gap: 18px;
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        padding: 28px 18px;
    }
}

@media (max-width: 767px) {
    .gl-dh-gallery-cards {
        grid-template-columns: 1fr;
    }

    .gl-dh-gallery-card__image img {
        height: 240px;
    }

    .gl-dh-gallery-modal__dialog {
        gap: 12px;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        padding: 18px 10px;
    }

    .gl-dh-gallery-modal__nav {
        width: 42px;
        height: 42px;
    }

    .gl-dh-gallery-modal__media,
    .gl-dh-gallery-modal__media img {
        max-height: calc(100vh - 110px);
    }
}
/* Delta Heavy Gallery End */


/* Delta Heavy Contact Page */
.gl-dh-contact {
    padding: 54px 0 78px;
    background: #ffffff;
}

.gl-dh-contact__branches {
    display: grid;
    gap: 0;
}

.gl-dh-contact__branch {
    padding: 42px 0;
}

.gl-dh-contact__branch + .gl-dh-contact__branch {
    border-top: 2px solid var(--gl-dh-red);
}

.gl-dh-contact__branch-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.34fr);
    gap: 42px;
    align-items: center;
}

.gl-dh-contact__branch:nth-child(even) .gl-dh-contact__branch-inner {
    grid-template-columns: minmax(420px, 1.34fr) minmax(280px, 0.86fr);
}

.gl-dh-contact__branch:nth-child(even) .gl-dh-contact__branch-map {
    order: -1;
}

.gl-dh-contact__branch-copy {
    max-width: 340px;
}

.gl-dh-contact__branch-copy h2 {
    margin: 0 0 18px;
    color: var(--gl-dh-red) !important;
    font-size: clamp(1.55rem, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.gl-dh-contact__branch-meta {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-dh-contact__branch-meta li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    color: var(--gl-dh-charcoal);
    font-size: 18px;
    line-height: 1.4;
}

.gl-dh-contact__branch-meta i {
    margin-top: 4px;
    color: var(--gl-dh-red);
    font-size: 18px;
}

.gl-dh-contact__branch-meta a {
    color: inherit;
}

.gl-dh-contact__branch-map {
    min-width: 0;
}

.gl-dh-contact__branch-map img,
.gl-dh-contact__branch-map iframe {
    display: block;
    width: 100%;
    aspect-ratio: 2.27 / 1;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.gl-dh-contact__quote {
    padding-top: 26px;
}

.gl-dh-contact__quote-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 18px 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.gl-dh-contact__quote-form h2 {
    margin: 0 0 16px;
    color: var(--gl-dh-dark);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.gl-dh-contact__quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.gl-dh-contact__quote-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.gl-dh-contact__quote-actions .gl-dh-btn {
    width: 100%;
}

@media (max-width: 1100px) {
    .gl-dh-contact__branch-inner,
    .gl-dh-contact__branch:nth-child(even) .gl-dh-contact__branch-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gl-dh-contact__branch:nth-child(even) .gl-dh-contact__branch-map {
        order: 0;
    }

    .gl-dh-contact__branch-copy {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .gl-dh-contact {
        padding: 36px 0 56px;
    }

    .gl-dh-contact__branch {
        padding: 28px 0;
    }

    .gl-dh-contact__branch-copy h2 {
        font-size: 26px;
    }

    .gl-dh-contact__branch-meta li {
        font-size: 17px;
    }

    .gl-dh-contact__quote-card {
        padding: 18px 14px;
    }

    .gl-dh-contact__quote-grid,
    .gl-dh-contact__quote-actions {
        grid-template-columns: 1fr;
    }
}

.gl-dh-about-exists__inner h2 {
    text-align: center;
}
.gl-dh-about-exists__inner span.gl-dh-section-line.gl-dh-section-line--compact {
    text-align: center;
    margin: 20px auto;
}
.gl-dh-about-exists__card span.gl-dh-section-line.gl-dh-section-line--compact {
    margin: -5px 10px 5px 0;
    width: 100px;
}

.gl-dh-home-why-choose__header span.gl-dh-section-line.gl-dh-section-line--compact, .gl-dh-rentals-problem-fit__inner span.gl-dh-section-line.gl-dh-section-line--compact, .gl-dh-rentals-available span.gl-dh-section-line.gl-dh-section-line--compact, .gl-dh-used-decision__inner span.gl-dh-section-line.gl-dh-section-line--compact, .gl-dh-new-forklift-overview__inner span.gl-dh-section-line.gl-dh-section-line--compact, .gl-dh-forks-offerings__header span.gl-dh-section-line.gl-dh-section-line--compact {
    margin: 20px auto;
}

.gl-dh-rentals-intro__copy h2, .gl-dh-used-intro__copy h2,
div[class$="-intro__copy"] h2 {
    margin: 0;
}

.gl-dh-rentals-problem-fit__inner h2,
.gl-dh-load-testing-ask__header h2,
.gl-dh-driver-training-ask__header h2,
.gl-dh-evolution-band__section-title {
    color: #fff!important;
}

h1, h2 {
    font-size:30px!important;
}
h3{
    font-size:22px!important;
}

#mobile-nav-trigger i.fa-solid.fa-bars {
    color: #fff;
}

.gl-dh-service-card__copy li,
.gl-dh-forks-offerings__copy li {
    list-style-position: inside;
}
.gl-dh-utility-item i, .gl-dh-utility-item a {
    font-size: 16px;
}

.gl-dh-home-why-choose__media {
    max-height: 626px;
    overflow: hidden;
}

.gl-dh-used-decision__card .gl-dh-section-line--compact {
    text-align: left!important;
    margin: 20px 0!important;
}

/*temp hide filters on lifting equipment*/
.lifting-equipment-sidebar{
    display:none;
}
.lifting-equipment__layout{
    grid-template-columns:100%!important;
}

.gl-dh-evolution-lithium__copy h2 {
    color: #fff!important;
}

.gl-dh-home-testimonials__view-all[style] {
    color: #fff;
}

.gl-dh-home-testimonials__view-all[style] i {
    color: currentColor;
}

.gl-dh-service-card__body ul {
    text-align: left;
}

.gl-dh-new-forklifts-card__body h2 {
    font-size: 14px!important;
    min-height: 55px;
}

@media only screen and (max-width:1320px){
    .glhb-nav-link span {
	font-size: 14px;
    }
    div#glhb-nav {
	gap: 20px;
    }
}

.gl-dh-rentals-intro__copy span.gl-dh-section-line.gl-dh-section-line--compact {
    display: none !important;
}
p.gl-dh-article-card__date {
    display: none;
}
.gl-dh-nav-cta span {
    display: flex;
    flex-wrap: nowrap;
    min-width: 92px;
    font-size: 14px;
}

div#ats-grid {
    display: flex;
}
.ats-i-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
span.ats-i-line-1 {
    font-weight: 900;
    font-size: 20px;
    margin-top: -15px;
    text-align: center;
}
div#ats-grid {
    display: flex;
    padding: 0 30px 30px;
    background: var(--gl-dh-red);
    border-radius: 15px;
    flex-wrap: wrap;
    width:fit-content;
}
.ats-item {
    width: 200px;
}
span.ats-i-line-2 {
    max-width: 195px;
    font-size: 15px;
    text-align: center;
}
.gl-dh-home-hero--load-testing .gl-dh-home-hero__actions, .gl-dh-home-hero--driver-training .gl-dh-home-hero__actions{
    display: none;
}

.dropdown-menu-main-nav {
    text-align: left;
}
.gl-dh-forks-offerings__copy {
    text-align: left;
}

@media only screen and (max-width:600px){
    div#ats-grid {
	justify-content: center;
    }
    .gl-dh-utility__socials {
	margin: auto;
    }
}
