/* ==========================================================================
   Great Packaging World -- Main Stylesheet
   Built on Bootstrap 5. Mobile-first.

   1.  Design tokens
   2.  Base & typography
   3.  Buttons & utilities
   4.  Header (top bar + navbar)
   5.  Hero slider
   6.  Section headings
   7.  Cards (highlight, product, value, director, certificate)
   8.  Panels (vision/mission, policy)
   9.  Counters
   10. Global presence
   11. CTA band
   12. Page banner & breadcrumb
   13. Tables
   14. Tabs, filters & gallery
   15. Forms & contact
   16. Timeline
   17. Footer
   18. Back to top, lightbox, scroll reveal
   19. Error pages
   20. Responsive refinements
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
    --gpw-primary: #0054a5;
    --gpw-primary-600: #0a6cc9;
    --gpw-primary-700: #004385;
    --gpw-primary-dark: #00305f;
    --gpw-primary-soft: #e7f0fa;
    --gpw-accent: #00a652;
    --gpw-accent-dark: #008442;
    --gpw-accent-soft: #e6f6ee;
    --gpw-navy: #05203c;
    --gpw-heading: #0a2540;
    --gpw-body: #55677d;
    --gpw-muted: #66748a;
    --gpw-line: #e1e8f0;
    --gpw-tint: #f5f8fc;
    --gpw-white: #ffffff;

    --gpw-radius-sm: 8px;
    --gpw-radius: 14px;
    --gpw-radius-lg: 22px;

    --gpw-shadow-sm: 0 2px 10px rgba(5, 32, 60, .06);
    --gpw-shadow: 0 10px 30px rgba(5, 32, 60, .08);
    --gpw-shadow-lg: 0 22px 50px rgba(5, 32, 60, .13);

    --gpw-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --gpw-transition: .3s cubic-bezier(.25, .8, .35, 1);

    --gpw-header-h: 78px;
}

/* 2. Base & typography --------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--gpw-header-h) + 20px);
}

body {
    font-family: var(--gpw-font);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gpw-body);
    background: var(--gpw-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--gpw-font);
    color: var(--gpw-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
}

h1, .h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.65rem, 3.1vw, 2.4rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4, .h4 { font-size: 1.15rem; }
h5, .h5 { font-size: 1.03rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--gpw-primary);
    text-decoration: none;
    transition: color var(--gpw-transition);
}
a:hover { color: var(--gpw-accent-dark); }

img { max-width: 100%; height: auto; }

::selection { background: var(--gpw-primary); color: #fff; }

:focus-visible {
    outline: 3px solid rgba(0, 84, 165, .45);
    outline-offset: 2px;
    border-radius: 4px;
}

.section {
    padding: 64px 0;
}

.section-tint { background: var(--gpw-tint); }

.section-dark {
    background: linear-gradient(135deg, var(--gpw-navy) 0%, var(--gpw-primary-dark) 100%);
    color: rgba(255, 255, 255, .82);
}
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5 { color: #fff; }

.lead-text {
    font-size: 1.06rem;
    color: var(--gpw-body);
}

.text-primary-gpw { color: var(--gpw-primary) !important; }
.text-accent-gpw { color: var(--gpw-accent-dark) !important; }
.bg-tint { background: var(--gpw-tint) !important; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--gpw-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--gpw-radius-sm) 0;
}
.skip-link:focus {
    left: 0;
    color: #fff;
}

/* 3. Buttons & utilities ------------------------------------------------- */
.btn {
    font-weight: 600;
    border-radius: 50rem;
    padding: .72rem 1.7rem;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: all var(--gpw-transition);
    border-width: 2px;
}

.btn-gpw {
    background: var(--gpw-primary);
    border-color: var(--gpw-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 84, 165, .25);
}
.btn-gpw:hover, .btn-gpw:focus {
    background: var(--gpw-primary-700);
    border-color: var(--gpw-primary-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 84, 165, .32);
}

.btn-gpw-accent {
    /* accent-dark, not accent: white on #00a652 is only 3.19:1 */
    background: var(--gpw-accent-dark);
    border-color: var(--gpw-accent-dark);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 132, 66, .3);
}
.btn-gpw-accent:hover, .btn-gpw-accent:focus {
    background: #006c36;
    border-color: #006c36;
    color: #fff;
    transform: translateY(-2px);
}

.btn-gpw-outline {
    background: transparent;
    border-color: var(--gpw-primary);
    color: var(--gpw-primary);
}
.btn-gpw-outline:hover, .btn-gpw-outline:focus {
    background: var(--gpw-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-gpw-light {
    background: #fff;
    border-color: #fff;
    color: var(--gpw-primary);
}
.btn-gpw-light:hover, .btn-gpw-light:focus {
    background: var(--gpw-accent-dark);
    border-color: var(--gpw-accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-gpw-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
}
.btn-gpw-ghost:hover, .btn-gpw-ghost:focus {
    background: #fff;
    border-color: #fff;
    color: var(--gpw-primary);
    transform: translateY(-2px);
}

.btn-sm-pill {
    padding: .35rem 1rem;
    font-size: .8rem;
    border-width: 1px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .93rem;
}
.link-arrow i { transition: transform var(--gpw-transition); }
.link-arrow:hover i { transform: translateX(5px); }

/* 4. Header -------------------------------------------------------------- */
.topbar {
    background: var(--gpw-navy);
    color: rgba(255, 255, 255, .78);
    font-size: .83rem;
    padding: 8px 0;
}
.topbar a {
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.topbar a:hover { color: var(--gpw-accent); }
.topbar .topbar-divider {
    color: rgba(255, 255, 255, .22);
    margin: 0 .85rem;
}
.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    margin-left: .35rem;
    transition: all var(--gpw-transition);
}
.topbar-social a:hover {
    background: var(--gpw-accent);
    color: #fff;
    transform: translateY(-2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 0 var(--gpw-line);
    transition: box-shadow var(--gpw-transition);
}
.site-header.is-stuck {
    box-shadow: 0 6px 24px rgba(5, 32, 60, .1);
}
.site-header.is-stuck .navbar { padding-top: .35rem; padding-bottom: .35rem; }
.site-header.is-stuck .navbar-brand img { height: 28px; }

.navbar {
    padding: .7rem 0;
    transition: padding var(--gpw-transition);
}
.navbar-brand img {
    /* The wordmark is 8.6:1, so height drives a wide box -- cap the width too. */
    height: 34px;
    width: auto;
    max-width: 300px;
    transition: height var(--gpw-transition);
}

.navbar .nav-link {
    font-weight: 600;
    font-size: .93rem;
    color: var(--gpw-heading);
    padding: .55rem .9rem !important;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .25rem;
    height: 2px;
    background: var(--gpw-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--gpw-transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--gpw-primary); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar .dropdown-toggle::after {
    margin-left: .4rem;
    vertical-align: .15em;
    border-top-width: .35em;
}

.navbar .dropdown-menu {
    border: 0;
    border-radius: var(--gpw-radius);
    box-shadow: var(--gpw-shadow-lg);
    padding: .5rem;
    margin-top: .6rem;
    min-width: 290px;
    border-top: 3px solid var(--gpw-primary);
}
.navbar .dropdown-item {
    border-radius: var(--gpw-radius-sm);
    padding: .6rem .8rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gpw-heading);
    display: flex;
    align-items: center;
    gap: .7rem;
    white-space: normal;
}
.navbar .dropdown-item i {
    color: var(--gpw-primary);
    width: 20px;
    text-align: center;
    flex: 0 0 auto;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: var(--gpw-primary-soft);
    color: var(--gpw-primary);
}

.navbar-toggler {
    border: 0;
    padding: .35rem .5rem;
    font-size: 1.4rem;
    color: var(--gpw-primary);
    box-shadow: none !important;
}

/* 5. Hero slider --------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--gpw-navy);
}
.hero .carousel-item {
    height: clamp(460px, 78vh, 720px);
    position: relative;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease-out;
}
.hero .carousel-item.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 32, 60, .93) 0%, rgba(0, 67, 133, .80) 45%, rgba(10, 108, 201, .35) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 166, 82, .18);
    border: 1px solid rgba(0, 166, 82, .45);
    color: #b9ecd0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 50rem;
    margin-bottom: 1.25rem;
}
.hero-title {
    color: #fff;
    font-size: clamp(2.05rem, 5.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 1rem;
    max-width: 16ch;
}
.hero-title .accent { color: var(--gpw-accent); }
.hero-text {
    color: rgba(255, 255, 255, .85);
    font-size: 1.08rem;
    max-width: 56ch;
    margin-bottom: 1.9rem;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 56px;
    opacity: 0;
    transition: opacity var(--gpw-transition);
}
.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next { opacity: .85; }
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, .16);
    border-radius: 50%;
    background-size: 45%;
}

.hero .carousel-indicators {
    margin-bottom: 1.6rem;
    gap: .5rem;
}
.hero .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border-radius: 4px;
    border: 0;
    background: rgba(255, 255, 255, .35);
    opacity: 1;
    margin: 0;
}
.hero .carousel-indicators .active { background: var(--gpw-accent); }

.hero-anim > * {
    opacity: 0;
    transform: translateY(24px);
}
.carousel-item.active .hero-anim > * {
    animation: gpwHeroIn .8s forwards;
}
.carousel-item.active .hero-anim > *:nth-child(1) { animation-delay: .15s; }
.carousel-item.active .hero-anim > *:nth-child(2) { animation-delay: .3s; }
.carousel-item.active .hero-anim > *:nth-child(3) { animation-delay: .45s; }
.carousel-item.active .hero-anim > *:nth-child(4) { animation-delay: .6s; }

@keyframes gpwHeroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* 6. Section headings ---------------------------------------------------- */
.section-heading { margin-bottom: 2.6rem; }
.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gpw-primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}
.section-heading .eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--gpw-accent);
    display: inline-block;
}
.section-heading.text-center .eyebrow::before { display: none; }
.section-heading .title { margin-bottom: .85rem; }
.section-heading .subtitle {
    color: var(--gpw-body);
    font-size: 1.03rem;
    max-width: 68ch;
    margin-bottom: 0;
}
.section-heading.text-center .subtitle { margin-left: auto; margin-right: auto; }
.section-dark .section-heading .eyebrow { color: var(--gpw-accent); }
.section-dark .section-heading .subtitle { color: rgba(255, 255, 255, .8); }

/* 7. Cards --------------------------------------------------------------- */
.gpw-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    box-shadow: var(--gpw-shadow-sm);
    transition: transform var(--gpw-transition), box-shadow var(--gpw-transition), border-color var(--gpw-transition);
    height: 100%;
}
.gpw-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gpw-shadow-lg);
    border-color: rgba(0, 84, 165, .28);
}

/* Highlight strip */
.highlight-strip {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.highlight-card {
    background: #fff;
    border-radius: var(--gpw-radius);
    box-shadow: var(--gpw-shadow);
    padding: 1.9rem 1.5rem;
    height: 100%;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all var(--gpw-transition);
}
.highlight-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--gpw-accent);
    box-shadow: var(--gpw-shadow-lg);
}
.highlight-card .icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.1rem;
    border-radius: var(--gpw-radius);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--gpw-primary) 0%, var(--gpw-primary-600) 100%);
    transition: transform var(--gpw-transition);
}
.highlight-card:hover .icon { transform: rotate(-6deg) scale(1.06); }
.highlight-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.highlight-card p { font-size: .91rem; margin-bottom: 0; color: var(--gpw-body); }

/* Image with badge (about snapshot) */
.image-frame {
    position: relative;
    border-radius: var(--gpw-radius-lg);
    overflow: hidden;
    box-shadow: var(--gpw-shadow);
}
.image-frame img {
    width: 100%;
    display: block;
    transition: transform 1.2s ease;
}
.image-frame:hover img { transform: scale(1.05); }

.experience-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, var(--gpw-accent) 0%, var(--gpw-accent-dark) 100%);
    color: #fff;
    border-radius: var(--gpw-radius);
    padding: 1rem 1.3rem;
    text-align: center;
    box-shadow: var(--gpw-shadow);
    z-index: 2;
}
.experience-badge .num { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.experience-badge .txt { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .7rem;
    font-size: .96rem;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .28rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gpw-accent-soft);
    color: var(--gpw-accent-dark);
    font-size: .62rem;
    display: grid;
    place-items: center;
}
.section-dark .check-list li::before {
    background: rgba(0, 166, 82, .25);
    color: #9fe3c0;
}

/* Product category card */
.product-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--gpw-shadow-sm);
    transition: all var(--gpw-transition);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gpw-shadow-lg);
    border-color: rgba(0, 84, 165, .3);
}
.product-card .media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gpw-primary-soft);
}
.product-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.product-card:hover .media img { transform: scale(1.07); }
.product-card .media .cat-icon {
    position: absolute;
    left: 16px;
    bottom: -22px;
    width: 52px;
    height: 52px;
    border-radius: var(--gpw-radius-sm);
    background: #fff;
    color: var(--gpw-primary);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    box-shadow: var(--gpw-shadow);
    transition: all var(--gpw-transition);
}
.product-card:hover .media .cat-icon {
    background: var(--gpw-primary);
    color: #fff;
}
.product-card .body {
    padding: 2.1rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card .body h3 { font-size: 1.13rem; margin-bottom: .6rem; }
.product-card .body p { font-size: .91rem; margin-bottom: 1.1rem; }
.product-card .body .link-arrow { margin-top: auto; }

/* Value / icon card */
.value-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.7rem 1.4rem;
    height: 100%;
    transition: all var(--gpw-transition);
}
.value-card:hover {
    border-color: var(--gpw-primary);
    box-shadow: var(--gpw-shadow);
    transform: translateY(-4px);
}
.value-card .icon {
    width: 50px;
    height: 50px;
    border-radius: var(--gpw-radius-sm);
    background: var(--gpw-primary-soft);
    color: var(--gpw-primary);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all var(--gpw-transition);
}
.value-card:hover .icon { background: var(--gpw-primary); color: #fff; }
.value-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.value-card p { font-size: .9rem; margin-bottom: 0; }

/* Director card */
.director-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: var(--gpw-shadow-sm);
    transition: all var(--gpw-transition);
}
.director-card:hover { box-shadow: var(--gpw-shadow-lg); transform: translateY(-5px); }
.director-card .quote-mark {
    position: absolute;
    top: 1.4rem;
    right: 1.7rem;
    font-size: 3.2rem;
    color: var(--gpw-primary-soft);
    line-height: 1;
}
.director-card .head {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.3rem;
}
.director-card .head img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gpw-primary-soft);
    flex: 0 0 auto;
}
.director-card .head h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.director-card .head .role {
    color: var(--gpw-accent-dark);
    font-size: .85rem;
    font-weight: 600;
}
.director-card blockquote {
    margin: 0;
    font-size: .96rem;
    font-style: italic;
    color: var(--gpw-body);
    border-left: 3px solid var(--gpw-accent);
    padding-left: 1.1rem;
}

/* Leadership card */
.leader-card { text-align: center; }
.leader-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--gpw-radius);
    margin-bottom: 1rem;
    box-shadow: var(--gpw-shadow-sm);
    transition: all var(--gpw-transition);
}
.leader-card:hover img { box-shadow: var(--gpw-shadow); transform: translateY(-4px); }
.leader-card h3 { font-size: 1.02rem; margin-bottom: .1rem; }
.leader-card span { font-size: .85rem; color: var(--gpw-accent-dark); font-weight: 600; }

/* Certificate card */
.cert-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--gpw-shadow-sm);
    transition: all var(--gpw-transition);
}
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gpw-shadow-lg);
    border-color: rgba(0, 84, 165, .3);
}
.cert-card .thumb {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--gpw-tint);
    overflow: hidden;
    cursor: zoom-in;
}
.cert-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.cert-card:hover .thumb img { transform: scale(1.05); }
.cert-card .thumb .zoom {
    position: absolute;
    inset: 0;
    background: rgba(5, 32, 60, .55);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity var(--gpw-transition);
}
.cert-card:hover .thumb .zoom { opacity: 1; }
.cert-card .body { padding: 1.1rem 1.2rem 1.3rem; }
.cert-card .body h3 { font-size: 1rem; margin-bottom: .2rem; }
.cert-card .body .issuer { font-size: .82rem; color: var(--gpw-accent-dark); font-weight: 600; display: block; margin-bottom: .5rem; }
.cert-card .body p { font-size: .86rem; margin-bottom: 0; }

/* Certification ribbon */
.cert-ribbon {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.2rem;
    box-shadow: var(--gpw-shadow-sm);
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .3rem;
    font-size: .87rem;
    font-weight: 600;
    color: var(--gpw-heading);
    justify-content: center;
    text-align: left;
}
.cert-badge i {
    color: var(--gpw-accent-dark);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

/* Industry pill */
.industry-pill {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.3rem .8rem;
    text-align: center;
    height: 100%;
    transition: all var(--gpw-transition);
}
.industry-pill:hover {
    border-color: var(--gpw-primary);
    transform: translateY(-4px);
    box-shadow: var(--gpw-shadow-sm);
}
.industry-pill i {
    font-size: 1.6rem;
    color: var(--gpw-primary);
    display: block;
    margin-bottom: .6rem;
}
.industry-pill span { font-size: .88rem; font-weight: 600; color: var(--gpw-heading); }

/* 8. Panels -------------------------------------------------------------- */
.vm-panel {
    background: #fff;
    border-radius: var(--gpw-radius-lg);
    padding: 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--gpw-shadow-sm);
    border: 1px solid var(--gpw-line);
    transition: all var(--gpw-transition);
}
.vm-panel:hover { box-shadow: var(--gpw-shadow-lg); transform: translateY(-5px); }
.vm-panel::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--gpw-primary-soft);
    opacity: .6;
}
.vm-panel.accent::after { background: var(--gpw-accent-soft); }
.vm-panel .icon {
    width: 64px;
    height: 64px;
    border-radius: var(--gpw-radius);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, var(--gpw-primary) 0%, var(--gpw-primary-600) 100%);
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 2;
}
.vm-panel.accent .icon {
    background: linear-gradient(135deg, var(--gpw-accent) 0%, var(--gpw-accent-dark) 100%);
}
.vm-panel h3 { font-size: 1.35rem; margin-bottom: .8rem; position: relative; z-index: 2; }
.vm-panel .content { position: relative; z-index: 2; }

.policy-panel {
    background: #fff;
    border-radius: var(--gpw-radius);
    border: 1px solid var(--gpw-line);
    border-top: 4px solid var(--gpw-primary);
    padding: 2rem 1.8rem;
    height: 100%;
    box-shadow: var(--gpw-shadow-sm);
}
.policy-panel.safety { border-top-color: var(--gpw-accent); }
.policy-panel .head {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.3rem;
}
.policy-panel .head i {
    width: 46px;
    height: 46px;
    border-radius: var(--gpw-radius-sm);
    background: var(--gpw-primary-soft);
    color: var(--gpw-primary);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
}
.policy-panel.safety .head i { background: var(--gpw-accent-soft); color: var(--gpw-accent-dark); }
.policy-panel .head h3 { margin-bottom: 0; font-size: 1.22rem; }

/* 9. Counters ------------------------------------------------------------ */
.counter-strip {
    background: linear-gradient(120deg, var(--gpw-primary-dark) 0%, var(--gpw-primary) 55%, var(--gpw-primary-600) 100%);
    position: relative;
    overflow: hidden;
}
.counter-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .09) 1.5px, transparent 1.6px);
    background-size: 26px 26px;
}
.counter-item {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: .5rem;
}
.counter-item i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: .7rem;
    display: block;
}
.counter-item .num {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}
.counter-item .num .suffix { color: var(--gpw-accent); }
.counter-item .label {
    display: block;
    margin-top: .5rem;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    font-weight: 500;
}

/* 10. Global presence ---------------------------------------------------- */
.world-map-wrap {
    position: relative;
    border-radius: var(--gpw-radius-lg);
    overflow: hidden;
}
.world-map-wrap img { width: 100%; display: block; }

.region-item {
    display: flex;
    gap: .9rem;
    padding: .85rem 0;
    border-bottom: 1px dashed var(--gpw-line);
}
.region-item:last-child { border-bottom: 0; }
.region-item i { color: var(--gpw-accent); margin-top: .35rem; }
.region-item strong { display: block; color: var(--gpw-heading); font-size: .96rem; }
.region-item span { font-size: .87rem; color: var(--gpw-body); }
.section-dark .region-item { border-bottom-color: rgba(255, 255, 255, .12); }
.section-dark .region-item strong { color: #fff; }
.section-dark .region-item span { color: rgba(255, 255, 255, .72); }

/* 11. CTA band ----------------------------------------------------------- */
.cta-band {
    background: linear-gradient(115deg, var(--gpw-navy) 0%, var(--gpw-primary-dark) 60%, var(--gpw-primary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 54px 0;
}
.cta-band::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 166, 82, .16);
}
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .82); margin-bottom: 0; }

/* 12. Page banner -------------------------------------------------------- */
.page-banner {
    position: relative;
    padding: 78px 0 72px;
    background: var(--gpw-navy);
    overflow: hidden;
}
.page-banner .banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .38;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 32, 60, .93) 0%, rgba(0, 67, 133, .82) 55%, rgba(10, 108, 201, .55) 100%);
}
.page-banner .banner-inner { position: relative; z-index: 3; }
.page-banner h1 { color: #fff; margin-bottom: .7rem; }
.page-banner p {
    color: rgba(255, 255, 255, .82);
    max-width: 62ch;
    margin-bottom: 0;
}
.page-banner .breadcrumb {
    margin: 1.1rem 0 0;
    font-size: .88rem;
}
.page-banner .breadcrumb a { color: rgba(255, 255, 255, .8); }
.page-banner .breadcrumb a:hover { color: var(--gpw-accent); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .45); }
.page-banner .breadcrumb .active { color: var(--gpw-accent); }

/* 13. Tables ------------------------------------------------------------- */
.table-wrap {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    overflow: hidden;
    box-shadow: var(--gpw-shadow-sm);
}
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.gpw-table {
    margin-bottom: 0;
    min-width: 720px;
    font-size: .93rem;
}
.gpw-table thead th {
    background: var(--gpw-primary);
    color: #fff;
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 0;
    padding: .95rem 1rem;
    white-space: nowrap;
}
.gpw-table tbody td {
    padding: .85rem 1rem;
    vertical-align: middle;
    border-color: var(--gpw-line);
    color: var(--gpw-body);
}
.gpw-table tbody tr { transition: background var(--gpw-transition); }
.gpw-table tbody tr:hover { background: var(--gpw-primary-soft); }
.gpw-table tbody td.product-name {
    font-weight: 600;
    color: var(--gpw-heading);
}
.gpw-table .col-sr { width: 70px; }
.gpw-table .col-action { width: 130px; text-align: right; }

.table-hint {
    display: none;
    font-size: .8rem;
    color: var(--gpw-muted);
    padding: .5rem 1rem;
    background: var(--gpw-tint);
    border-top: 1px solid var(--gpw-line);
}

.spec-table th {
    width: 38%;
    font-weight: 600;
    color: var(--gpw-heading);
    background: var(--gpw-tint);
}
.spec-table th, .spec-table td {
    padding: .8rem 1rem;
    border-color: var(--gpw-line);
    font-size: .93rem;
}

/* 14. Tabs, filters & gallery -------------------------------------------- */
.gpw-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 2.2rem;
}
.gpw-tabs button {
    border: 1px solid var(--gpw-line);
    background: #fff;
    color: var(--gpw-heading);
    border-radius: 50rem;
    padding: .55rem 1.25rem;
    font-size: .89rem;
    font-weight: 600;
    transition: all var(--gpw-transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.gpw-tabs button i { color: var(--gpw-primary); transition: color var(--gpw-transition); }
.gpw-tabs button:hover {
    border-color: var(--gpw-primary);
    color: var(--gpw-primary);
}
.gpw-tabs button.active {
    background: var(--gpw-primary);
    border-color: var(--gpw-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 84, 165, .25);
}
.gpw-tabs button.active i { color: #fff; }

.gallery-item { margin-bottom: 1.5rem; }
.gallery-item .inner {
    position: relative;
    border-radius: var(--gpw-radius);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: var(--gpw-shadow-sm);
    display: block;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .9s ease;
}
.gallery-item .inner:hover img { transform: scale(1.08); }
.gallery-item .caption {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(to top, rgba(5, 32, 60, .92), transparent);
    color: #fff;
    padding: 2rem 1rem .95rem;
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.gallery-item .caption i { color: var(--gpw-accent); }

.gallery-item.is-hidden { display: none; }

/* Anchored side nav on products page */
.side-nav {
    position: sticky;
    top: calc(var(--gpw-header-h) + 20px);
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.1rem;
    box-shadow: var(--gpw-shadow-sm);
}
.side-nav h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gpw-muted);
    margin-bottom: .9rem;
}
/* Scoped with :not(.btn) so it styles only the category jump links. Without
   that, ".side-nav a" (0,1,1) outranks ".btn-gpw" (0,1,0) and hijacks any
   button placed in the panel -- which left the Full Catalogue button with
   navy text and a primary-coloured icon on a primary background. */
.side-nav a:not(.btn) {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem .8rem;
    border-radius: var(--gpw-radius-sm);
    font-size: .89rem;
    font-weight: 600;
    color: var(--gpw-heading);
    margin-bottom: .25rem;
    transition: all var(--gpw-transition);
}
.side-nav a:not(.btn) i { color: var(--gpw-primary); width: 18px; text-align: center; }
.side-nav a:not(.btn):hover, .side-nav a:not(.btn).active {
    background: var(--gpw-primary-soft);
    color: var(--gpw-primary);
}

/* 15. Forms & contact ---------------------------------------------------- */
.contact-card {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.9rem 1.6rem;
    height: 100%;
    box-shadow: var(--gpw-shadow-sm);
    transition: all var(--gpw-transition);
}
.contact-card:hover {
    box-shadow: var(--gpw-shadow);
    transform: translateY(-4px);
    border-color: rgba(0, 84, 165, .28);
}
.contact-card .icon {
    width: 54px;
    height: 54px;
    border-radius: var(--gpw-radius-sm);
    background: linear-gradient(135deg, var(--gpw-primary) 0%, var(--gpw-primary-600) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}
.contact-card h3 { font-size: 1.08rem; margin-bottom: .7rem; }
.contact-card address {
    font-size: .92rem;
    margin-bottom: 1rem;
    color: var(--gpw-body);
    font-style: normal;
}
.contact-card .meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    margin-bottom: .4rem;
}
.contact-card .meta i { color: var(--gpw-accent-dark); width: 16px; }

.email-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    padding: 1.15rem 1.25rem;
    height: 100%;
    transition: all var(--gpw-transition);
}
.email-card:hover {
    border-color: var(--gpw-primary);
    box-shadow: var(--gpw-shadow-sm);
    transform: translateY(-3px);
}
.email-card i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gpw-primary-soft);
    color: var(--gpw-primary);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}
.email-card .label { font-size: .78rem; color: var(--gpw-muted); text-transform: uppercase; letter-spacing: .08em; display: block; }
.email-card .value { font-weight: 600; color: var(--gpw-heading); font-size: .93rem; word-break: break-all; }

.form-panel {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius-lg);
    padding: 2.1rem;
    box-shadow: var(--gpw-shadow);
}
.form-label {
    font-size: .87rem;
    font-weight: 600;
    color: var(--gpw-heading);
    margin-bottom: .4rem;
}
.form-label .req { color: #dc3545; }
.form-control, .form-select {
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius-sm);
    padding: .72rem .95rem;
    font-size: .94rem;
    background: var(--gpw-tint);
    transition: all var(--gpw-transition);
}
.form-control:focus, .form-select:focus {
    background: #fff;
    border-color: var(--gpw-primary);
    box-shadow: 0 0 0 .2rem rgba(0, 84, 165, .12);
}
.form-control.is-invalid, .form-select.is-invalid { border-color: #dc3545; background: #fff; }
.invalid-feedback { font-size: .82rem; }

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.alert-gpw-success {
    background: var(--gpw-accent-soft);
    border: 1px solid rgba(0, 166, 82, .35);
    border-left: 4px solid var(--gpw-accent);
    color: #0a6b3c;
    border-radius: var(--gpw-radius-sm);
}
.alert-gpw-error {
    background: #fdeaea;
    border: 1px solid rgba(220, 53, 69, .3);
    border-left: 4px solid #dc3545;
    color: #9b1f2b;
    border-radius: var(--gpw-radius-sm);
}

.map-embed {
    border: 0;
    width: 100%;
    height: 420px;
    display: block;
    border-radius: var(--gpw-radius);
    filter: grayscale(.25);
    transition: filter var(--gpw-transition);
}
.map-embed:hover { filter: none; }

/* 16. Timeline ----------------------------------------------------------- */
.timeline { position: relative; padding-left: 0; list-style: none; margin: 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--gpw-line);
}
.timeline li {
    position: relative;
    padding-left: 2.6rem;
    padding-bottom: 1.6rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gpw-primary);
}
.timeline li .year {
    display: inline-block;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    background: var(--gpw-accent-dark);
    border-radius: 50rem;
    padding: .12rem .7rem;
    margin-bottom: .35rem;
}
.timeline li h4 { font-size: 1.03rem; margin-bottom: .25rem; }
.timeline li p { font-size: .91rem; margin-bottom: 0; }

/* 17. Footer ------------------------------------------------------------- */
.site-footer {
    background: var(--gpw-navy);
    color: rgba(255, 255, 255, .68);
    padding-top: 60px;
    font-size: .92rem;
}
.site-footer h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .7rem;
}
.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gpw-accent);
}
.site-footer .footer-logo-plate {
    display: inline-block;
    background: #fff;
    border-radius: var(--gpw-radius-sm);
    padding: 11px 16px;
    margin-bottom: 1.1rem;
}
.site-footer img.footer-logo { height: 30px; width: auto; display: block; }
.site-footer a { color: rgba(255, 255, 255, .68); }
.site-footer a:hover { color: var(--gpw-accent); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    transition: all var(--gpw-transition);
}
.footer-links a i { font-size: .65rem; color: var(--gpw-accent); }
.footer-links a:hover { transform: translateX(4px); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: .8rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--gpw-accent);
    margin-top: .3rem;
    flex: 0 0 auto;
    width: 16px;
}
/* Email addresses are long unbreakable strings; between lg and xl the footer
   column is only ~215px wide, so let them wrap instead of overflowing. */
.footer-contact li > span {
    min-width: 0;
    overflow-wrap: anywhere;
}
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact li strong { color: #fff; display: block; font-size: .85rem; font-weight: 600; }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .45rem;
    transition: all var(--gpw-transition);
}
.footer-social a:hover {
    background: var(--gpw-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    font-size: .87rem;
}
.footer-bottom a { margin-left: 1.2rem; }

/* 18. Back to top, lightbox, scroll reveal -------------------------------- */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gpw-primary);
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
    box-shadow: var(--gpw-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all var(--gpw-transition);
    z-index: 1040;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gpw-accent); }

.gpw-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 18, 34, .94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.gpw-lightbox.open { display: flex; }
.gpw-lightbox img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--gpw-radius);
    box-shadow: var(--gpw-shadow-lg);
    background: #fff;
}
.gpw-lightbox .lb-caption {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
}
.gpw-lightbox .lb-close,
.gpw-lightbox .lb-prev,
.gpw-lightbox .lb-next {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: 0;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background var(--gpw-transition);
}
.gpw-lightbox .lb-close:hover,
.gpw-lightbox .lb-prev:hover,
.gpw-lightbox .lb-next:hover { background: var(--gpw-accent); }
.gpw-lightbox .lb-close { top: 20px; right: 20px; }
.gpw-lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.gpw-lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Scoped to .js so that if JavaScript is disabled or fails to load the
   content stays visible instead of being hidden forever. The .js class is
   added by an inline script in the document head. */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}
.js [data-reveal].revealed { opacity: 1; transform: none; }

/* Product cards (image + specs) ------------------------------------------ */
.product-item {
    background: #fff;
    border: 1px solid var(--gpw-line);
    border-radius: var(--gpw-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--gpw-shadow-sm);
    transition: transform var(--gpw-transition), box-shadow var(--gpw-transition), border-color var(--gpw-transition);
}
.product-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--gpw-shadow-lg);
    border-color: rgba(0, 84, 165, .3);
}

.product-item .media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--gpw-tint);
    overflow: hidden;
    cursor: zoom-in;
}
.product-item .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.product-item:hover .media img { transform: scale(1.05); }
.product-item .media .zoom {
    position: absolute;
    inset: 0;
    background: rgba(5, 32, 60, .5);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity var(--gpw-transition);
}
.product-item .media:hover .zoom,
.product-item .media:focus-visible .zoom { opacity: 1; }

.product-item .body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-item .body h3 {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: .45rem;
}
.product-item .body .note {
    font-size: .87rem;
    color: var(--gpw-body);
    margin-bottom: .9rem;
}

.product-specs {
    margin: 0 0 1.1rem;
    border-top: 1px solid var(--gpw-line);
}
.product-specs > div {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding: .42rem 0;
    border-bottom: 1px dashed var(--gpw-line);
}
.product-specs dt {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gpw-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    flex: 0 0 auto;
}
.product-specs dd {
    font-size: .85rem;
    font-weight: 600;
    color: var(--gpw-heading);
    margin: 0;
    text-align: right;
}

[data-product-item].is-hidden { display: none; }

/* 19. Error pages -------------------------------------------------------- */
.error-page {
    min-height: 74vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 84, 165, .07), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 166, 82, .09), transparent 45%),
        var(--gpw-white);
    padding: 60px 0;
}
.error-code {
    font-size: clamp(5.5rem, 18vw, 10rem);
    font-weight: 800;
    line-height: .9;
    background: linear-gradient(135deg, var(--gpw-primary) 0%, var(--gpw-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .5rem;
}
.error-page .error-icon {
    font-size: 2.6rem;
    color: var(--gpw-primary);
    margin-bottom: 1rem;
}

/* 20. Responsive refinements --------------------------------------------- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: var(--gpw-radius);
        box-shadow: var(--gpw-shadow);
        margin-top: .8rem;
        padding: .8rem;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }
    .navbar .nav-link { padding: .7rem .8rem !important; }
    .navbar .nav-link::after { display: none; }
    .navbar .nav-link:hover, .navbar .nav-link.active {
        background: var(--gpw-primary-soft);
        border-radius: var(--gpw-radius-sm);
    }
    .navbar .dropdown-menu {
        box-shadow: none;
        border-top: 0;
        background: var(--gpw-tint);
        margin: .2rem 0 .5rem;
    }
    .navbar .navbar-cta { margin-top: .6rem; }
    .navbar .navbar-cta .btn { width: 100%; }

    .highlight-strip { margin-top: 0; }
    .table-hint { display: block; }
    .side-nav { position: static; margin-bottom: 2rem; }
}

@media (min-width: 992px) {
    /* From lg up the highlight strip is pulled 60px over the bottom of the
       hero, so lift the slide indicators clear of it or they cannot be
       clicked. Below lg the strip is not pulled up and no lift is needed. */
    .hero .carousel-indicators { margin-bottom: 6rem; }

    .section { padding: 92px 0; }
    .section-heading { margin-bottom: 3.2rem; }
    .cta-band { padding: 64px 0; }
    .page-banner { padding: 104px 0 96px; }

    /* Open dropdown on hover for desktop */
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: gpwDropIn .22s ease;
    }
}

/* Between lg and xl the container is only 960px wide. The 8.6:1 wordmark plus
   the full horizontal nav overflow it, so tighten both in that band. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand img { height: 27px; }
    .site-header.is-stuck .navbar-brand img { height: 24px; }

    .navbar .nav-link {
        padding: .55rem .58rem !important;
        font-size: .87rem;
    }
    .navbar .nav-link::after { left: .58rem; right: .58rem; }

    .navbar .navbar-cta { margin-left: .5rem !important; }
    .navbar .navbar-cta .btn { padding: .58rem 1.05rem; font-size: .85rem; }
}

@keyframes gpwDropIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767.98px) {
    body { font-size: .96rem; }
    .hero .carousel-item { height: auto; min-height: 520px; padding: 90px 0 70px; }
    .hero-content { position: static; }
    .hero-text { font-size: 1rem; }
    .form-panel { padding: 1.4rem; }
    .vm-panel, .policy-panel { padding: 1.6rem 1.35rem; }
    .director-card { padding: 1.5rem; }
    .director-card .head { flex-direction: column; align-items: flex-start; }
    .footer-bottom { text-align: center; }
    .footer-bottom a { margin: 0 .6rem; }
    .map-embed { height: 320px; }
}

@media (max-width: 767.98px) {
    /* Condensed utility bar: one line, centred, smaller type. */
    .topbar { font-size: .76rem; }
    .topbar .topbar-divider { margin: 0 .5rem; }
}

@media (max-width: 575.98px) {
    /* Below sm the .container is fluid with 12px padding, but a g-5 row pulls
       -24px negative margin, which pushes 12px past the viewport. Cap the
       gutter so wide-gutter rows stay inside the screen. */
    .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }

    .topbar { text-align: center; }
    .btn { padding: .65rem 1.35rem; font-size: .9rem; }
    .cert-card .thumb { aspect-ratio: 4 / 3; }
}

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

@media print {
    .site-header, .site-footer, .cta-band, .back-to-top, .topbar { display: none !important; }
    body { color: #000; }
}
