:root {
    --gml-navy: #221871;
    --gml-navy-2: #0a3f4d;
    --gml-teal: #221871;
    --gml-teal-dark: #221871;
    --gml-mint: #dff5ef;
    --gml-lime: #b9e36b;
    --gml-coral: #f18a63;
    --gml-ink: #12323d;
    --gml-muted: #62767d;
    --gml-border: #dce8e7;
    --gml-cloud: #f4f8f7;
    --gml-warm: #fbfaf6;
    --gml-white: #fff;
    --gml-shadow: 0 24px 64px rgba(6, 45, 58, .1);
    --gml-radius: 20px;
    --gml-container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gml-site {
    margin: 0;
    color: var(--gml-ink);
    background: var(--gml-white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.gml-lock { overflow: hidden; }
.gml-site img { display: block; max-width: 100%; }
.gml-site a { color: inherit; text-decoration: none; }
.gml-site button,
.gml-site input,
.gml-site select,
.gml-site textarea { font: inherit; }
.gml-site button { cursor: pointer; }
.gml-site h1,
.gml-site h2,
.gml-site h3,
.gml-site h4,
.gml-site h5,
.gml-site p { margin-top: 0; }
.gml-site h1,
.gml-site h2,
.gml-site h3,
.gml-site h4,
.gml-site h5 {
    color: var(--gml-navy);
    font-weight: 750;
    letter-spacing: -.025em;
    line-height: 1.14;
}
.gml-container { width: min(calc(100% - 48px), var(--gml-container)); margin-inline: auto; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.gml-skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    padding: 12px 18px;
    color: #fff;
    background: var(--gml-teal);
    border-radius: 8px;
}
.gml-skip-link:focus { top: 16px; }

/* Header */
.gml-header { position: relative; z-index: 900; }
.gml-header-utility { color: #d8e7e8; background: var(--gml-navy); font-size: 12px; }
.gml-utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gml-utility-inner p { margin: 0; }
.gml-utility-inner p i { margin-right: 7px; color: var(--gml-lime); }
.gml-utility-inner > div { display: flex; align-items: center; gap: 24px; }
.gml-utility-inner a { color: #fff; transition: color .2s; }
.gml-utility-inner a:hover { color: var(--gml-lime); }
.gml-utility-inner a i { margin-right: 6px; }
.gml-header-main {
    position: relative;
    border-bottom: 1px solid rgba(6, 45, 58, .1);
    background: rgba(255, 255, 255, .97);
    transition: box-shadow .25s;
}
.gml-header.is-scrolled .gml-header-main {
    position: fixed;
    inset: 0 0 auto;
    box-shadow: 0 12px 35px rgba(6, 45, 58, .1);
}
.gml-nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.gml-logo { flex: 0 0 auto; }
.gml-logo img { width: auto; height: 54px; max-width: 210px; object-fit: contain; }
.gml-desktop-nav { display: flex; align-items: stretch; gap: 6px; margin-left: auto; }
.gml-desktop-nav > a,
.gml-nav-group > button {
    position: relative;
    min-height: 84px;
    padding: 0 14px;
    border: 0;
    color: #183d48;
    background: transparent;
    font-size: 14px;
    font-weight: 680;
}
.gml-desktop-nav > a { display: flex; align-items: center; }
.gml-nav-group > button i { margin-left: 5px; font-size: 10px; }
.gml-desktop-nav > a::after,
.gml-nav-group > button::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 17px;
    left: 14px;
    height: 2px;
    background: var(--gml-teal);
    transform: scaleX(0);
    transition: transform .2s;
}
.gml-desktop-nav > a:hover::after,
.gml-desktop-nav > a.is-active::after,
.gml-nav-group:hover > button::after { transform: scaleX(1); }
.gml-nav-group { position: relative; }
.gml-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: -22px;
    width: 360px;
    padding: 16px;
    border: 1px solid var(--gml-border);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: var(--gml-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .22s ease;
}
.gml-nav-group:hover .gml-dropdown,
.gml-nav-group:focus-within .gml-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.gml-dropdown-label {
    display: block;
    padding: 3px 10px 11px;
    color: var(--gml-teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.gml-dropdown > a { display: flex; align-items: center; gap: 13px; padding: 11px 10px; border-radius: 10px; transition: background .2s; }
.gml-dropdown > a:hover { background: var(--gml-cloud); }
.gml-dropdown > a > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gml-teal);
    background: var(--gml-mint);
    border-radius: 9px;
}
.gml-dropdown b,
.gml-dropdown small { display: block; line-height: 1.3; }
.gml-dropdown b { color: var(--gml-navy); font-size: 13px; }
.gml-dropdown small { margin-top: 3px; color: var(--gml-muted); font-size: 11px; }
.gml-header-actions { display: flex; align-items: center; gap: 10px; }
.gml-icon-btn,
.gml-menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gml-border);
    border-radius: 50%;
    color: var(--gml-navy);
    background: #fff;
}
.gml-cart-icon { position: relative; }
.gml-cart-icon span { position: absolute; top: -5px; right: -4px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 10px; color: #fff; background: var(--gml-coral); font-size: 8px; font-weight: 800; }
.gml-header-cta,
.gml-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 21px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 750;
    transition: transform .2s, background .2s, box-shadow .2s;
}
.gml-header-cta,
.gml-btn-primary { color: #fff !important; background: var(--gml-teal); box-shadow: 0 10px 24px rgba(8, 127, 120, .18); }
.gml-header-cta:hover,
.gml-btn-primary:hover { background: var(--gml-teal-dark); transform: translateY(-2px); }
.gml-btn-secondary { color: var(--gml-navy) !important; border-color: var(--gml-border); background: #fff; }
.gml-btn-secondary:hover { border-color: var(--gml-teal); color: var(--gml-teal) !important; }
.gml-btn-light { color: var(--gml-navy) !important; background: #fff; }
.gml-btn-ghost { color: #fff !important; border-color: rgba(255,255,255,.35); }
.gml-menu-toggle { display: none; padding: 11px; border-radius: 9px; }
.gml-menu-toggle span { width: 18px; height: 2px; display: block; margin: 2px 0; background: var(--gml-navy); border-radius: 2px; }
.gml-search-panel {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1100;
    padding: 72px 0 60px;
    color: #fff;
    background: var(--gml-navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: .25s ease;
}
.gml-search-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.gml-search-panel [data-search-close] {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    background: transparent;
}
.gml-search-panel span { display: block; margin-bottom: 14px; color: var(--gml-lime); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gml-search-panel form { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.35); }
.gml-search-panel input {
    width: 100%;
    padding: 10px 0 18px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 650;
}
.gml-search-panel input::placeholder { color: rgba(255,255,255,.45); }
.gml-search-panel form button { padding: 15px 0 15px 24px; border: 0; color: #fff; background: transparent; font-weight: 700; white-space: nowrap; }
.gml-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(420px, 92vw);
    height: 100dvh;
    padding: 24px;
    background: #fff;
    box-shadow: -20px 0 50px rgba(6,45,58,.15);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .28s ease;
}
.gml-mobile-panel.is-open { transform: translateX(0); }
.gml-mobile-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--gml-border); }
.gml-mobile-panel-head img { max-width: 175px; max-height: 52px; }
.gml-mobile-panel-head button { width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--gml-cloud); }
.gml-mobile-panel nav { padding: 22px 0; }
.gml-mobile-panel nav > a,
.gml-mobile-panel summary { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #edf2f1; color: var(--gml-navy); font-weight: 700; list-style: none; }
.gml-mobile-panel details > a { display: block; padding: 10px 14px; color: var(--gml-muted); font-size: 14px; }
.gml-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(3, 27, 36, .58);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}
.gml-overlay.is-open { opacity: 1; visibility: visible; }

/* Shared */
.gml-section { padding: 100px 0; }
.gml-section-sm { padding: 72px 0; }
.gml-bg-cloud { background: var(--gml-cloud); }
.gml-bg-warm { background: var(--gml-warm); }
.gml-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--gml-teal);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.gml-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.gml-eyebrow-light { color: var(--gml-lime); }
.gml-section-heading { max-width: 760px; margin-bottom: 46px; }
.gml-section-heading.is-centered { margin-inline: auto; text-align: center; }
.gml-section-heading h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 54px); }
.gml-section-heading p { margin-bottom: 0; color: var(--gml-muted); font-size: 18px; }
.gml-title-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.gml-title-row .gml-section-heading { margin-bottom: 0; }
.gml-inline-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gml-teal) !important; font-size: 14px; font-weight: 750; white-space: nowrap; }
.gml-inline-link i { transition: transform .2s; }
.gml-inline-link:hover i { transform: translateX(4px); }
.gml-alert { margin-bottom: 22px; padding: 15px 18px; border-radius: 10px; font-size: 14px; }
.gml-alert-success { color: #145a46; background: #dff6ec; border: 1px solid #b9ead7; }
.gml-alert-error { color: #8c2f2f; background: #fff0ed; border: 1px solid #f5c5bb; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Home */
.gml-hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(185,227,107,.16), transparent 20%),
        radial-gradient(circle at 85% 80%, rgba(8,127,120,.22), transparent 30%),
        linear-gradient(125deg, #221871 0%, #083b48 54%, #0b5960 100%);
}
.gml-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.gml-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; padding: 88px 0; }
.gml-hero-copy h1 { max-width: 780px; margin-bottom: 24px; color: #fff; font-size: clamp(48px, 5.5vw, 78px); letter-spacing: -.045em; }
.gml-hero-copy h1 span { color: var(--gml-lime); }
.gml-hero-copy > p { max-width: 680px; margin-bottom: 34px; color: #cfdee0; font-size: 18px; }
.gml-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gml-hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; color: #d9e6e7; font-size: 13px; }
.gml-hero-trust span { display: flex; align-items: center; gap: 8px; }
.gml-hero-trust i { color: var(--gml-lime); }
.gml-hero-visual { position: relative; min-height: 500px; }
.gml-hero-orbit {
    position: absolute;
    inset: 25px 0 auto auto;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.gml-hero-orbit::before,
.gml-hero-orbit::after { content: ""; position: absolute; inset: 48px; border: 1px dashed rgba(185,227,107,.32); border-radius: 50%; }
.gml-hero-orbit::after { inset: 112px; border-style: solid; }
.gml-hero-product-stage {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.gml-hero-product-stage::before {
    content: "";
    position: absolute;
    bottom: 42px;
    width: 330px;
    height: 90px;
    background: radial-gradient(ellipse, rgba(0,0,0,.3), transparent 65%);
}
.gml-hero-product-stage img { position: relative; max-width: 390px; max-height: 440px; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0,0,0,.28)); transform: rotate(-2deg); }
.gml-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 190px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 13px;
    color: #fff;
    background: rgba(255,255,255,.12);
    box-shadow: 0 18px 38px rgba(0,0,0,.12);
    backdrop-filter: blur(14px);
}
.gml-float-card i { width: 36px; height: 36px; display: grid; place-items: center; color: var(--gml-navy); background: var(--gml-lime); border-radius: 9px; }
.gml-float-card b,
.gml-float-card small { display: block; line-height: 1.25; }
.gml-float-card small { color: #cee0e1; font-size: 10px; }
.gml-float-one { top: 54px; left: -5px; }
.gml-float-two { right: -12px; bottom: 70px; }
.gml-metric-strip { position: relative; z-index: 5; margin-top: -32px; }
.gml-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 16px; background: #fff; box-shadow: var(--gml-shadow); overflow: hidden; }
.gml-metric { padding: 25px 30px; border-right: 1px solid var(--gml-border); }
.gml-metric:last-child { border-right: 0; }
.gml-metric strong { display: block; color: var(--gml-navy); font-size: 27px; line-height: 1.2; }
.gml-metric span { color: var(--gml-muted); font-size: 12px; }
.gml-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gml-category-tile {
    position: relative;
    min-height: 305px;
    overflow: hidden;
    border-radius: var(--gml-radius);
    background: var(--gml-navy);
}
.gml-category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gml-category-tile:hover img { transform: scale(1.06); }
.gml-category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(6,45,58,.92)); }
.gml-category-tile-content { position: absolute; inset: auto 24px 23px; z-index: 1; color: #fff; }
.gml-category-tile-content small { display: block; margin-bottom: 5px; color: var(--gml-lime); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.gml-category-tile h3 { margin: 0; color: #fff; font-size: 21px; }
.gml-category-tile-content span { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12px; font-weight: 700; }
.gml-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.gml-about-visual { position: relative; padding: 0 42px 46px 0; }
.gml-about-main-image { height: 540px; overflow: hidden; border-radius: 10px 90px 10px 10px; }
.gml-about-main-image img { width: 100%; height: 100%; object-fit: cover; }
.gml-about-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    padding: 24px;
    border: 8px solid #fff;
    border-radius: 14px;
    color: #fff;
    background: var(--gml-teal);
}
.gml-about-accent strong { display: block; margin-bottom: 5px; font-size: 34px; }
.gml-about-accent span { font-size: 13px; }
.gml-about-copy h2 { margin-bottom: 22px; font-size: clamp(34px, 4vw, 56px); }
.gml-about-copy > p { color: var(--gml-muted); font-size: 17px; }
.gml-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 34px; }
.gml-feature-item { display: flex; gap: 12px; }
.gml-feature-item i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--gml-teal); background: var(--gml-mint); border-radius: 10px; }
.gml-feature-item b,
.gml-feature-item small { display: block; }
.gml-feature-item b { color: var(--gml-navy); font-size: 14px; }
.gml-feature-item small { color: var(--gml-muted); font-size: 12px; }
.gml-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gml-capability-card { padding: 32px; border: 1px solid var(--gml-border); border-radius: 16px; background: #fff; transition: transform .25s, box-shadow .25s, border .25s; }
.gml-capability-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--gml-shadow); }
.gml-capability-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 26px; color: var(--gml-teal); background: var(--gml-mint); border-radius: 14px; font-size: 21px; }
.gml-capability-card h3 { margin-bottom: 12px; font-size: 22px; }
.gml-capability-card p { min-height: 76px; margin-bottom: 20px; color: var(--gml-muted); font-size: 14px; }
.gml-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gml-product-card { position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--gml-border); border-radius: 16px; background: #fff; transition: transform .25s, box-shadow .25s; }
.gml-product-card:hover { transform: translateY(-5px); box-shadow: var(--gml-shadow); }
.gml-product-image { position: relative; height: 270px; display: grid; place-items: center; padding: 25px; background: linear-gradient(145deg, #f4f8f7, #fff); overflow: hidden; }
.gml-product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s; }
.gml-product-card:hover .gml-product-image img { transform: scale(1.04); }
.gml-product-badge { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 9px; border-radius: 6px; color: var(--gml-teal-dark); background: var(--gml-mint); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gml-product-body { display: flex; flex: 1; flex-direction: column; padding: 21px; }
.gml-product-meta { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; color: var(--gml-teal); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.gml-product-card h3 { margin-bottom: 8px; font-size: 19px; }
.gml-product-generic { min-height: 41px; margin-bottom: 16px; color: var(--gml-muted); font-size: 12px; }
.gml-product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: auto 0 18px; }
.gml-product-specs span { padding: 5px 8px; border-radius: 5px; color: #45616a; background: var(--gml-cloud); font-size: 10px; }
.gml-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gml-border); }
.gml-product-footer strong { color: var(--gml-navy); font-size: 14px; }
.gml-quality-banner { position: relative; overflow: hidden; color: #fff; background: var(--gml-navy); }
.gml-quality-banner::after { content: ""; position: absolute; right: -180px; bottom: -250px; width: 580px; height: 580px; border: 1px solid rgba(185,227,107,.25); border-radius: 50%; box-shadow: 0 0 0 70px rgba(185,227,107,.035), 0 0 0 140px rgba(185,227,107,.025); }
.gml-quality-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.gml-quality-copy h2 { margin-bottom: 20px; color: #fff; font-size: clamp(36px, 4.2vw, 58px); }
.gml-quality-copy p { color: #ccdcde; font-size: 17px; }
.gml-quality-points { display: grid; gap: 12px; }
.gml-quality-point { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.06); }
.gml-quality-point i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--gml-navy); background: var(--gml-lime); border-radius: 10px; }
.gml-quality-point b,
.gml-quality-point small { display: block; }
.gml-quality-point b { color: #fff; }
.gml-quality-point small { color: #bcd0d3; font-size: 12px; }
.gml-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 48px 56px; border-radius: 22px; color: #fff; background: linear-gradient(115deg, var(--gml-teal), #0a6768); box-shadow: 0 28px 70px rgba(8,127,120,.18); }
.gml-cta-card h2 { margin-bottom: 10px; color: #fff; font-size: clamp(28px, 3.5vw, 44px); }
.gml-cta-card p { max-width: 730px; margin-bottom: 0; color: #d8eeee; }
.gml-cta-card .gml-btn { flex: 0 0 auto; }

/* Page hero */
.gml-page-hero { position: relative; overflow: hidden; padding: 90px 0; color: #fff; background: linear-gradient(120deg, var(--gml-navy), #07555b); }
.gml-page-hero::after { content: ""; position: absolute; top: -180px; right: 5%; width: 450px; height: 450px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025); }
.gml-page-hero-inner { position: relative; z-index: 1; max-width: 850px; }
.gml-page-hero h1 { margin-bottom: 18px; color: #fff; font-size: clamp(40px, 5vw, 65px); }
.gml-page-hero p { max-width: 710px; margin: 0; color: #d0e1e2; font-size: 18px; }
.gml-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; color: #c1d6d8; font-size: 12px; }
.gml-breadcrumb a:hover { color: var(--gml-lime); }

/* Catalogue */
.gml-catalog-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); align-items: start; gap: 34px; }
.gml-filter-panel { position: sticky; top: 110px; border: 1px solid var(--gml-border); border-radius: 16px; background: #fff; overflow: hidden; }
.gml-filter-head { padding: 20px 22px; color: #fff; background: var(--gml-navy); }
.gml-filter-head h2 { margin: 0; color: #fff; font-size: 17px; }
.gml-filter-body { display: grid; gap: 18px; padding: 22px; }
.gml-field label { display: block; margin-bottom: 7px; color: var(--gml-navy); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.gml-field input,
.gml-field select,
.gml-field textarea {
    width: 100%;
    min-height: 45px;
    padding: 10px 12px;
    border: 1px solid var(--gml-border);
    border-radius: 8px;
    outline: 0;
    color: var(--gml-ink);
    background: #fff;
    font-size: 13px;
    transition: border .2s, box-shadow .2s;
}
.gml-field textarea { min-height: 125px; resize: vertical; }
.gml-field input:focus,
.gml-field select:focus,
.gml-field textarea:focus { border-color: var(--gml-teal); box-shadow: 0 0 0 3px rgba(8,127,120,.1); }
.gml-filter-actions { display: grid; gap: 8px; }
.gml-filter-actions .gml-btn { width: 100%; }
.gml-filter-clear { border: 0; color: var(--gml-muted); background: transparent; font-size: 12px; }
.gml-catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.gml-catalog-toolbar p { margin: 0; color: var(--gml-muted); font-size: 13px; }
.gml-catalog-toolbar strong { color: var(--gml-navy); }
.gml-sort { display: flex; align-items: center; gap: 10px; }
.gml-sort label { color: var(--gml-muted); font-size: 12px; }
.gml-sort select { min-width: 160px; padding: 8px 10px; border: 1px solid var(--gml-border); border-radius: 7px; background: #fff; font-size: 12px; }
.gml-catalog-layout .gml-product-grid { grid-template-columns: repeat(3, 1fr); }
.gml-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 42px; }
.gml-pagination a,
.gml-pagination span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--gml-border); border-radius: 8px; color: var(--gml-navy); background: #fff; font-size: 12px; font-weight: 700; }
.gml-pagination span { color: #fff; border-color: var(--gml-teal); background: var(--gml-teal); }
.gml-empty-state { grid-column: 1 / -1; padding: 70px 28px; border: 1px dashed #cbdcda; border-radius: 16px; text-align: center; background: var(--gml-cloud); }
.gml-empty-state i { margin-bottom: 18px; color: var(--gml-teal); font-size: 38px; }
.gml-empty-state h3 { margin-bottom: 8px; }
.gml-empty-state p { margin-bottom: 22px; color: var(--gml-muted); }

/* Product detail */
.gml-product-detail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: 70px; }
.gml-detail-media { position: sticky; top: 112px; }
.gml-detail-image { height: 570px; display: grid; place-items: center; padding: 55px; border-radius: 20px; background: linear-gradient(145deg, #edf6f4, #fff); border: 1px solid var(--gml-border); }
.gml-detail-image img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 28px 30px rgba(6,45,58,.14)); }
.gml-detail-certifications { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.gml-detail-certifications span { padding: 11px 8px; border: 1px solid var(--gml-border); border-radius: 8px; color: var(--gml-muted); background: #fff; font-size: 10px; text-align: center; }
.gml-detail-certifications i { display: block; margin-bottom: 4px; color: var(--gml-teal); font-size: 15px; }
.gml-detail-category { display: inline-flex; margin-bottom: 12px; padding: 6px 9px; border-radius: 5px; color: var(--gml-teal-dark); background: var(--gml-mint); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.gml-detail-copy h1 { margin-bottom: 13px; font-size: clamp(36px, 4.4vw, 58px); }
.gml-detail-generic { margin-bottom: 23px; color: var(--gml-teal); font-size: 17px; font-weight: 650; }
.gml-detail-intro { margin-bottom: 28px; color: var(--gml-muted); font-size: 16px; }
.gml-composition-box { margin-bottom: 25px; padding: 22px; border-left: 3px solid var(--gml-teal); border-radius: 0 10px 10px 0; background: var(--gml-cloud); }
.gml-composition-box small { display: block; margin-bottom: 6px; color: var(--gml-teal); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gml-composition-box p { margin: 0; color: var(--gml-navy); font-weight: 650; }
.gml-spec-table { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border-top: 1px solid var(--gml-border); border-left: 1px solid var(--gml-border); }
.gml-spec { min-height: 78px; padding: 14px 16px; border-right: 1px solid var(--gml-border); border-bottom: 1px solid var(--gml-border); }
.gml-spec small,
.gml-spec strong { display: block; }
.gml-spec small { margin-bottom: 4px; color: var(--gml-muted); font-size: 9px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.gml-spec strong { color: var(--gml-navy); font-size: 13px; }
.gml-rx-notice { display: flex; gap: 12px; margin-bottom: 26px; padding: 15px; border: 1px solid #f1d9b7; border-radius: 9px; color: #735529; background: #fff8ec; font-size: 12px; }
.gml-rx-notice i { margin-top: 3px; }
.gml-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gml-order-add { display: flex; gap: 7px; margin: 0; }
.gml-order-add input { width: 70px; min-height: 46px; padding: 8px; border: 1px solid var(--gml-border); border-radius: 8px; text-align: center; }
.gml-detail-content { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 50px; }
.gml-prose { color: #405961; }
.gml-prose h2,
.gml-prose h3 { margin: 30px 0 12px; }
.gml-prose h2 { font-size: 25px; }
.gml-prose h3 { font-size: 19px; }
.gml-prose p,
.gml-prose li { font-size: 14px; line-height: 1.8; }
.gml-prose table { width: 100% !important; border-collapse: collapse; }
.gml-prose td { padding: 8px; border: 1px solid var(--gml-border); }
.gml-detail-sidebar { padding: 24px; border-radius: 14px; color: #fff; background: var(--gml-navy); }
.gml-detail-sidebar h3 { color: #fff; font-size: 20px; }
.gml-detail-sidebar p { color: #c9dadd; font-size: 13px; }

/* Enquiry */
.gml-enquiry-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 70px; }
.gml-enquiry-info { position: sticky; top: 110px; }
.gml-enquiry-info h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 49px); }
.gml-enquiry-info > p { color: var(--gml-muted); font-size: 16px; }
.gml-contact-stack { display: grid; gap: 12px; margin-top: 30px; }
.gml-contact-card { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--gml-border); border-radius: 11px; }
.gml-contact-card i { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--gml-teal); background: var(--gml-mint); border-radius: 10px; }
.gml-contact-card small,
.gml-contact-card strong { display: block; }
.gml-contact-card small { color: var(--gml-muted); font-size: 10px; text-transform: uppercase; }
.gml-contact-card strong { color: var(--gml-navy); font-size: 13px; }
.gml-enquiry-form { padding: 36px; border: 1px solid var(--gml-border); border-radius: 18px; background: #fff; box-shadow: var(--gml-shadow); }
.gml-enquiry-form-head { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gml-border); }
.gml-enquiry-form-head h2 { margin-bottom: 6px; font-size: 25px; }
.gml-enquiry-form-head p { margin: 0; color: var(--gml-muted); font-size: 13px; }
.gml-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gml-form-grid .is-full { grid-column: 1 / -1; }
.gml-form-note { margin: 18px 0; color: var(--gml-muted); font-size: 11px; }
.gml-form-honeypot { position: absolute; left: -9999px; }
.gml-selected-product { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding: 13px; border: 1px solid var(--gml-border); border-radius: 10px; background: var(--gml-cloud); }
.gml-selected-product img { width: 54px; height: 54px; object-fit: contain; border-radius: 7px; background: #fff; }
.gml-selected-product b,
.gml-selected-product small { display: block; }
.gml-selected-product small { color: var(--gml-muted); font-size: 10px; }

/* Customer ordering */
.gml-auth-section { min-height: 680px; display: grid; place-items: center; padding: 85px 24px; background: radial-gradient(circle at 12% 12%, rgba(8,127,120,.1), transparent 25%), linear-gradient(145deg, #eff7f5, #fbfcfb); }
.gml-auth-card { width: min(530px, 100%); padding: 38px; border: 1px solid var(--gml-border); border-radius: 18px; background: #fff; box-shadow: var(--gml-shadow); }
.gml-auth-card-wide { width: min(820px, 100%); }
.gml-auth-head { margin-bottom: 27px; }
.gml-auth-head h1, .gml-auth-head h2 { margin-bottom: 9px; font-size: clamp(30px, 4vw, 43px); }
.gml-auth-head p { margin: 0; color: var(--gml-muted); font-size: 13px; }
.gml-auth-card > form > .gml-field { margin-bottom: 16px; }
.gml-auth-card > form > .gml-btn { width: 100%; margin-top: 8px; }
.gml-auth-switch { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--gml-border); color: var(--gml-muted); font-size: 12px; text-align: center; }
.gml-auth-switch a { color: var(--gml-teal); font-weight: 750; }
.gml-auth-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--gml-border); }
.gml-access-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 25px; }
.gml-access-grid .gml-auth-card { width: 100%; }
.gml-payment-option { position: relative; display: block; margin-bottom: 10px; cursor: pointer; }
.gml-payment-option input { position: absolute; opacity: 0; }
.gml-payment-option > span { display: grid; grid-template-columns: 42px 1fr; align-items: center; padding: 15px; border: 1px solid var(--gml-border); border-radius: 10px; transition: border .2s, background .2s; }
.gml-payment-option input:checked + span { border-color: var(--gml-teal); background: #f1faf7; box-shadow: 0 0 0 3px rgba(8,127,120,.08); }
.gml-payment-option i { grid-row: 1 / 3; color: var(--gml-teal); font-size: 19px; }
.gml-payment-option b, .gml-payment-option small { display: block; }
.gml-payment-option b { color: var(--gml-navy); font-size: 13px; }
.gml-payment-option small { color: var(--gml-muted); font-size: 10px; }
.gml-success-card { text-align: center; }
.gml-success-card > i { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; color: var(--gml-teal); background: var(--gml-mint); font-size: 32px; }
.gml-success-card h1 { font-size: 38px; }
.gml-success-card > p { color: var(--gml-muted); }
.gml-success-card .gml-auth-actions { justify-content: center; }
.gml-order-reference { display: inline-block; margin: 8px 0 12px; padding: 8px 12px; border-radius: 6px; color: var(--gml-teal-dark); background: var(--gml-mint); font-size: 11px; font-weight: 800; }
.gml-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 28px; }
.gml-cart-table-wrap { border: 1px solid var(--gml-border); border-radius: 15px; background: #fff; overflow-x: auto; }
.gml-cart-table { width: 100%; border-collapse: collapse; }
.gml-cart-table th { padding: 13px 16px; border-bottom: 1px solid var(--gml-border); color: var(--gml-muted); background: #f8faf9; font-size: 9px; letter-spacing: .07em; text-align: left; text-transform: uppercase; }
.gml-cart-table td { padding: 16px; border-bottom: 1px solid #edf2f1; color: #50666e; font-size: 12px; vertical-align: middle; }
.gml-cart-table tr:last-child td { border-bottom: 0; }
.gml-cart-product { min-width: 210px; display: flex; align-items: center; gap: 12px; }
.gml-cart-product img { width: 62px; height: 62px; object-fit: contain; border: 1px solid var(--gml-border); border-radius: 8px; }
.gml-cart-product strong, .gml-cart-product small { display: block; }
.gml-cart-product strong { color: var(--gml-navy); }
.gml-cart-product small { color: var(--gml-muted); font-size: 9px; }
.gml-cart-update { display: flex; margin: 0; }
.gml-cart-update input { width: 60px; height: 34px; padding: 5px; border: 1px solid var(--gml-border); border-radius: 6px 0 0 6px; }
.gml-cart-update button { width: 34px; border: 0; border-radius: 0 6px 6px 0; color: #fff; background: var(--gml-teal); }
.gml-cart-remove { width: 34px; height: 34px; border: 1px solid #f0ceca; border-radius: 7px; color: #b95247; background: #fff4f2; }
.gml-cart-summary { position: sticky; top: 110px; padding: 27px; border-radius: 15px; color: #d1e0e2; background: var(--gml-navy); }
.gml-cart-summary .gml-eyebrow { color: var(--gml-lime); }
.gml-cart-summary h2 { margin-bottom: 22px; color: #fff; font-size: 26px; }
.gml-cart-summary > div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.gml-cart-summary > div strong { color: #fff; }
.gml-cart-summary p { margin: 18px 0; color: #9eb8bc; font-size: 10px; }
.gml-cart-summary .gml-btn { width: 100%; }
.gml-cart-summary .gml-inline-link { display: flex; justify-content: center; margin-top: 15px; color: var(--gml-lime) !important; }

/* Corporate */
.gml-corporate-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.gml-corporate-intro h2 { font-size: clamp(34px, 4vw, 54px); }
.gml-corporate-intro-copy { color: var(--gml-muted); font-size: 17px; }
.gml-corporate-intro-copy p:first-child { color: var(--gml-ink); font-size: 20px; font-weight: 600; }
.gml-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gml-value-card { padding: 30px; border-top: 3px solid var(--gml-teal); border-radius: 0 0 14px 14px; background: #fff; box-shadow: 0 14px 40px rgba(6,45,58,.07); }
.gml-value-card span { color: var(--gml-teal); font-size: 28px; font-weight: 800; }
.gml-value-card h3 { margin: 14px 0 10px; font-size: 21px; }
.gml-value-card p { margin: 0; color: var(--gml-muted); font-size: 13px; }
.gml-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: steps; }
.gml-process-card { position: relative; padding: 26px; border: 1px solid var(--gml-border); border-radius: 14px; background: #fff; }
.gml-process-card::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 25px; color: var(--gml-teal); font-size: 13px; font-weight: 850; }
.gml-process-card h3 { font-size: 19px; }
.gml-process-card p { margin: 0; color: var(--gml-muted); font-size: 13px; }

/* Footer */
.gml-footer { padding-top: 75px; color: #c8d9db; background: #052732; }
.gml-footer-top { display: grid; grid-template-columns: 1.15fr 1.7fr 1fr; gap: 65px; padding-bottom: 58px; }
.gml-footer-intro img { max-width: 210px; max-height: 62px; margin-bottom: 20px; padding: 7px; border-radius: 7px; background: #fff; }
.gml-footer-intro p { max-width: 360px; color: #a9c1c4; font-size: 13px; }
.gml-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.gml-footer-badges span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 6px; font-size: 10px; }
.gml-footer-badges i { margin-right: 5px; color: var(--gml-lime); }
.gml-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.gml-footer h3 { margin-bottom: 18px; color: #fff; font-size: 15px; }
.gml-footer-links a { display: block; margin: 10px 0; color: #a9c1c4; font-size: 12px; transition: color .2s, transform .2s; }
.gml-footer-links a:hover { color: var(--gml-lime); transform: translateX(3px); }
.gml-footer-contact p { color: #a9c1c4; font-size: 12px; }
.gml-footer-contact > a { display: flex; align-items: center; gap: 11px; margin-top: 13px; }
.gml-footer-contact > a > i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--gml-navy); background: var(--gml-lime); border-radius: 8px; }
.gml-footer-contact small,
.gml-footer-contact span { display: block; }
.gml-footer-contact small { color: #89a8ad; font-size: 9px; text-transform: uppercase; }
.gml-footer-contact span { color: #fff; font-size: 12px; font-weight: 650; }
.gml-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); color: #86a4a9; font-size: 10px; }
.gml-footer-bottom p { margin: 0; }
.gml-footer-bottom div { display: flex; gap: 18px; }
.gml-floating-enquiry {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 30px;
    color: #fff !important;
    background: var(--gml-teal);
    box-shadow: 0 12px 30px rgba(6,45,58,.25);
    font-size: 12px;
    font-weight: 750;
}

@media (max-width: 1180px) {
    .gml-desktop-nav { display: none; }
    .gml-header-actions { margin-left: auto; }
    .gml-menu-toggle { display: block; }
    .gml-hero-grid { gap: 30px; }
    .gml-hero-product-stage img { max-width: 330px; }
    .gml-product-grid { grid-template-columns: repeat(3, 1fr); }
    .gml-catalog-layout .gml-product-grid { grid-template-columns: repeat(2, 1fr); }
    .gml-footer-top { grid-template-columns: 1fr 1.5fr; }
    .gml-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .gml-section { padding: 76px 0; }
    .gml-utility-inner > div { display: none; }
    .gml-utility-inner { justify-content: center; }
    .gml-header-cta { display: none; }
    .gml-hero { min-height: auto; }
    .gml-hero-grid { grid-template-columns: 1fr; padding: 70px 0 90px; }
    .gml-hero-copy { text-align: center; }
    .gml-hero-copy > p { margin-inline: auto; }
    .gml-hero-actions,
    .gml-hero-trust { justify-content: center; }
    .gml-hero-visual { min-height: 420px; }
    .gml-hero-orbit { right: 50%; width: 400px; height: 400px; transform: translateX(50%); }
    .gml-metric-grid { grid-template-columns: 1fr 1fr; }
    .gml-metric:nth-child(2) { border-right: 0; }
    .gml-metric:nth-child(-n+2) { border-bottom: 1px solid var(--gml-border); }
    .gml-category-grid { grid-template-columns: 1fr 1fr; }
    .gml-about-grid,
    .gml-quality-grid,
    .gml-product-detail,
    .gml-enquiry-layout,
    .gml-corporate-intro { grid-template-columns: 1fr; gap: 48px; }
    .gml-about-visual { max-width: 620px; }
    .gml-capability-grid,
    .gml-value-grid { grid-template-columns: 1fr 1fr; }
    .gml-product-grid { grid-template-columns: repeat(2, 1fr); }
    .gml-catalog-layout { grid-template-columns: 1fr; }
    .gml-filter-panel,
    .gml-detail-media,
    .gml-enquiry-info { position: static; }
    .gml-filter-body { grid-template-columns: 1fr 1fr; }
    .gml-filter-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
    .gml-detail-content { grid-template-columns: 1fr; }
    .gml-detail-sidebar { order: -1; }
    .gml-process-grid { grid-template-columns: 1fr 1fr; }
    .gml-access-grid, .gml-cart-layout { grid-template-columns: 1fr; }
    .gml-cart-summary { position: static; }
    .gml-footer-top { grid-template-columns: 1fr; }
    .gml-footer-contact { grid-column: auto; }
}

@media (max-width: 600px) {
    .gml-container { width: min(calc(100% - 30px), var(--gml-container)); }
    .gml-nav-wrap { min-height: 70px; }
    .gml-logo img { height: 45px; max-width: 175px; }
    .gml-header.is-scrolled .gml-header-main { position: fixed; }
    .gml-hero-copy h1 { font-size: 42px; }
    .gml-hero-copy > p { font-size: 15px; }
    .gml-hero-actions .gml-btn { width: 100%; }
    .gml-hero-trust { gap: 10px 18px; }
    .gml-hero-visual { min-height: 340px; }
    .gml-hero-orbit { top: 10px; width: 320px; height: 320px; }
    .gml-hero-product-stage img { max-width: 260px; max-height: 320px; }
    .gml-float-card { min-width: 155px; padding: 11px; font-size: 11px; }
    .gml-float-one { top: 10px; }
    .gml-float-two { right: 0; bottom: 22px; }
    .gml-metric { padding: 20px; }
    .gml-metric strong { font-size: 22px; }
    .gml-title-row { align-items: start; flex-direction: column; }
    .gml-section-heading h2 { font-size: 34px; }
    .gml-section-heading p { font-size: 15px; }
    .gml-category-grid,
    .gml-capability-grid,
    .gml-product-grid,
    .gml-catalog-layout .gml-product-grid,
    .gml-value-grid,
    .gml-process-grid { grid-template-columns: 1fr; }
    .gml-category-tile { min-height: 280px; }
    .gml-about-visual { padding: 0 22px 32px 0; }
    .gml-about-main-image { height: 420px; border-radius: 10px 65px 10px 10px; }
    .gml-about-accent { width: 190px; padding: 18px; }
    .gml-feature-list { grid-template-columns: 1fr; }
    .gml-capability-card p { min-height: auto; }
    .gml-cta-card { align-items: stretch; flex-direction: column; padding: 32px 25px; }
    .gml-page-hero { padding: 65px 0; }
    .gml-page-hero h1 { font-size: 38px; }
    .gml-filter-body { grid-template-columns: 1fr; }
    .gml-filter-actions { grid-column: auto; grid-template-columns: 1fr; }
    .gml-catalog-toolbar { align-items: start; flex-direction: column; }
    .gml-sort { width: 100%; }
    .gml-sort select { flex: 1; }
    .gml-detail-image { height: 410px; padding: 35px; }
    .gml-spec-table { grid-template-columns: 1fr; }
    .gml-detail-actions .gml-btn { width: 100%; }
    .gml-order-add { width: 100%; }
    .gml-order-add input { width: 72px; flex: 0 0 auto; }
    .gml-order-add .gml-btn { flex: 1; }
    .gml-enquiry-form { padding: 24px 18px; }
    .gml-form-grid { grid-template-columns: 1fr; }
    .gml-form-grid .is-full { grid-column: auto; }
    .gml-auth-card { padding: 28px 20px; }
    .gml-auth-actions { align-items: stretch; flex-direction: column-reverse; }
    .gml-auth-actions .gml-btn { width: 100%; }
    .gml-footer-links { grid-template-columns: 1fr 1fr; }
    .gml-footer-links > div:last-child { grid-column: 1 / -1; }
    .gml-footer-bottom { align-items: start; flex-direction: column; }
    .gml-floating-enquiry span { display: none; }
    .gml-floating-enquiry { width: 48px; height: 48px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

.gml-product-slider {
    position: relative;
    width: 100%;
    height: 460px;
}

.gml-product-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(60px) scale(.92);
    transition:
        opacity .7s ease,
        visibility .7s ease,
        transform .7s ease;
}

.gml-product-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.gml-product-slide a {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.gml-product-slide img {
    width: auto;
    max-width: 390px;
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .28));
    transition: transform .4s ease;
}

.gml-product-slide a:hover img {
    transform: scale(1.05);
}

.gml-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: #fff;
    background: rgba(34, 24, 113, .82);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: .25s ease;
}

.gml-slider-arrow:hover {
    background: #221871;
    transform: translateY(-50%) scale(1.08);
}

.gml-slider-prev {
    left: 0;
}

.gml-slider-next {
    right: 0;
}

.gml-slider-dots {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gml-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: .25s ease;
}

.gml-slider-dots button.is-active {
    width: 28px;
    border-radius: 20px;
    background: #fff;
}

.gml-no-product {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.gml-hero-copy,
.gml-hero-copy h1,
.gml-hero-copy h1 span,
.gml-hero-copy p,
.gml-hero-copy .gml-eyebrow,
.gml-hero-trust span,
.gml-float-card,
.gml-float-card small,
.gml-float-card b {
    color: #fff;
}

@media (max-width: 900px) {
    .gml-product-slider {
        height: 410px;
    }

    .gml-product-slide img {
        max-width: 330px;
        max-height: 390px;
    }

    .gml-slider-prev {
        left: 10px;
    }

    .gml-slider-next {
        right: 10px;
    }
}

@media (max-width: 600px) {
    .gml-product-slider {
        height: 330px;
    }

    .gml-product-slide img {
        max-width: 250px;
        max-height: 300px;
    }

    .gml-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .gml-slider-prev {
        left: 0;
    }

    .gml-slider-next {
        right: 0;
    }
}
