: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(--accent);
    background: transparent;
    border: 2px solid var(--accent);
}

.btn-2 {
    color: #fff;
    background: var(--accent);
    border: 2px solid 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 {
        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% - 48px));
}

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-red);
    color: #fff;
}

.gl-dh-btn--primary:hover {
    background: #d51c20;
}

.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;
}

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: calc(100% + 18px);
    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, 834px) minmax(0, 660px);
    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 {
    max-width: 720px;
    font-size: 16px;
}

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

.gl-dh-home-hero__support-line {
    max-width: 760px;
    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: 20px;
    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-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 {
        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: minmax(0, 1.08fr) minmax(420px, 811px);
    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 {
    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-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);
}

.gl-dh-testimonial-card__quote-mark {
    color: #4472ba;
    font-size: 54px;
    line-height: 0.8;
}

.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;
}

.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;
    gap: 10px;
    margin-top: 28px;
}

.gl-dh-home-testimonials__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cfcfcf;
}

.gl-dh-home-testimonials__dots span.is-active {
    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: 720px;
    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 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-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: 0 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;
    display: grid;
    gap: 12px;
}

.gl-dh-about-industries__list li {
    position: relative;
    padding-left: 18px;
    color: var(--gl-dh-copy);
    font-size: 16px;
    line-height: 1.5;
}

.gl-dh-about-industries__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: var(--gl-dh-red);
    transform: rotate(45deg);
}

.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);
}

.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 {
    max-width: 560px;
}

.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);
}

.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 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gl-dh-rentals-available__item {
    position: relative;
    padding: 24px 52px 24px 24px;
    border-bottom: 3px solid var(--gl-dh-red);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-rentals-available__item::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--gl-dh-red);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.gl-dh-rentals-available__item span {
    display: block;
    color: var(--gl-dh-red);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.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: 0 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-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;
}

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

.gl-dh-used-available__item {
    position: relative;
    padding: 24px 52px 24px 24px;
    border-bottom: 3px solid var(--gl-dh-red);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-used-available__item::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--gl-dh-red);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.gl-dh-used-available__item span {
    display: block;
    color: var(--gl-dh-red);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

@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-used-available__item 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;
}

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

.gl-dh-forks-signs__item {
    position: relative;
    padding: 24px 52px 24px 24px;
    border-bottom: 3px solid var(--gl-dh-red);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.gl-dh-forks-signs__item::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--gl-dh-red);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.gl-dh-forks-signs__item span {
    display: block;
    color: var(--gl-dh-red);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

@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;
    }
}
