:root {
    --primary: #163d72;
    --primary-dark: #0c2847;
    --secondary: #e65100;
    --secondary-dark: #bf360c;
    --text: #1a2332;
    --text-light: #5c6778;
    --bg: #ffffff;
    --bg-light: #eef2f7;
    --border: #d9e2ec;
    --shadow: 0 10px 36px rgba(12, 40, 71, 0.1);
    --shadow-sm: 0 2px 10px rgba(12, 40, 71, 0.06);
    --radius: 6px;
    --radius-lg: 10px;
    --header-h: 76px;
    --transition: 0.25s ease;
    --section-space: clamp(48px, 9vw, 88px);
    --heading-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --website-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--website-font-family);
    color: var(--text);
    background:
        radial-gradient(1200px 480px at 10% -10%, rgba(22, 61, 114, 0.06), transparent 60%),
        radial-gradient(900px 420px at 100% 0%, rgba(230, 81, 0, 0.04), transparent 55%),
        var(--bg);
    line-height: 1.65;
    font-size: var(--website-font-size, 16px);
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
h1, h2, h3,
.logo-title,
.slide-title,
.section-title h2,
.hero-inquiry-card__head h3,
.facility-card h4,
.footer-grid h4 {
    font-family: var(--heading-font-family);
    letter-spacing: 0.02em;
    font-weight: 600;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.page-alert-wrap { padding-top: 12px; }
.section-cta { text-align: center; margin-top: 32px; }
.about-copy p + p { margin-top: 14px; }
.about-copy .btn-primary { margin-top: 22px; }
.product-card-cat-link { color: var(--text-light); font-size: 12px; font-weight: 500; }
.product-card-cat-link:hover { color: var(--secondary); }

/* Top bar */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,.92); font-size: 13px; padding: 10px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-contact, .top-bar-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-link { color: #fff; display: inline-flex; align-items: center; gap: 6px; min-height: 36px; }
.top-bar-link:hover { color: #ffb74d; }
.top-bar i { color: var(--secondary); font-size: 12px; }
.top-bar-social { gap: 8px; flex-wrap: nowrap; }
.top-bar-social-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.top-bar-social-link:hover { color: #fff; background: var(--secondary); border-color: var(--secondary); }
.top-bar-social-link i { color: inherit; font-size: 14px; }
.btn-quote-header,
.btn-primary,
.btn-get-quote,
.btn-get-quote--card,
.cat-card .btn-get-quote {
    background: var(--button-bg, var(--secondary));
    color: var(--button-text-color, #fff);
    font-family: var(--button-font-family, var(--website-font-family));
    font-size: var(--button-font-size, 14px);
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    touch-action: manipulation;
    transition: background var(--transition), transform var(--transition);
}
.btn-quote-header:hover,
.btn-primary:hover,
.btn-get-quote:hover,
.cat-card .btn-get-quote:hover {
    background: var(--button-bg-hover, var(--secondary-dark));
    color: var(--button-text-color, #fff);
}
.btn-quote-header--sm { padding: 6px 14px; font-size: 12px; min-height: 36px; }

/* Header */
.main-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    isolation: isolate;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.main-header.header-scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    min-height: var(--header-h);
    position: relative;
}
.header-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 0 1 auto;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; text-decoration: none; }
.logo:hover { color: inherit; }
.logo-image { max-height: 48px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo--image { gap: 0; }
.logo-text { min-width: 0; }
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--radius);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.logo-title { font-size: 1.35rem; font-weight: 600; color: var(--primary-dark); line-height: 1.15; display: block; text-transform: uppercase; }
.logo-tagline { font-size: 11px; color: var(--text-light); display: block; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--website-font-family); }
.main-nav {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}
.main-nav ul { display: flex; list-style: none; gap: 2px; flex-wrap: wrap; justify-content: center; }
.main-nav a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0;
    min-height: 44px;
    position: relative;
    background: transparent;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { background: transparent; color: var(--primary-dark); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.header-cta { flex-shrink: 0; margin-left: 4px; white-space: nowrap; }
.header-icon-link,
.header-cart-link {
    position: relative;
    color: var(--primary-dark);
    font-size: 20px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--radius);
}
.header-icon-link:hover,
.header-cart-link:hover { color: var(--secondary); background: var(--bg-light); }
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border);
    font-size: 20px;
    cursor: pointer;
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    flex-shrink: 0;
}

/* Hero banner: slider left, inquiry form right */
.hero-banner {
    background: var(--primary-dark);
    border-bottom: 3px solid var(--secondary);
    position: relative;
}
.hero-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 380px);
    min-height: clamp(480px, 62vh, 640px);
    max-width: none;
    margin: 0;
}
.hero-banner__media {
    position: relative;
    min-height: inherit;
}
.hero-banner .hero-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: inherit;
}
.hero-banner .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
}
.hero-banner .slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.hero-banner .slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6.5s ease;
}
.hero-banner .slide.active .slide-media { transform: scale(1); }
.hero-banner .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 24, 44, 0.88) 0%, rgba(8, 24, 44, 0.55) 48%, rgba(8, 24, 44, 0.22) 100%);
}
.hero-banner__copy {
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
    max-width: 680px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.12s, transform 0.55s ease 0.12s;
}
.hero-banner .slide.active .hero-banner__copy {
    opacity: 1;
    transform: translateY(0);
}
.slide-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffb74d;
    margin-bottom: 14px;
    font-family: var(--website-font-family);
}
.slide-title {
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.slide-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: #ffcc80;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: var(--website-font-family);
}
.slide-desc {
    margin-bottom: 26px;
    opacity: 0.92;
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.6;
    max-width: 520px;
    font-family: var(--website-font-family);
}
.slide-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-primary { padding: 14px 28px; font-size: 15px; min-height: 48px; }
.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    padding: 12px 22px;
    display: inline-flex;
    border-radius: var(--radius);
    min-height: 48px;
    align-items: center;
    font-weight: 600;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }
.hero-banner .slider-dots {
    position: absolute;
    bottom: 22px;
    left: clamp(24px, 5vw, 56px);
    transform: none;
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-banner__form {
    background: linear-gradient(180deg, #f3f6fa 0%, #e8eef5 100%);
    border-left: 1px solid rgba(12, 40, 71, 0.08);
    display: flex;
    align-items: stretch;
    padding: clamp(20px, 3vw, 28px);
}
.hero-inquiry-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: none;
    padding: clamp(18px, 3vw, 24px);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(12, 40, 71, 0.1);
    backdrop-filter: blur(6px);
}
.hero-inquiry-card__head { margin-bottom: 16px; }
.hero-inquiry-card__head h3 {
    font-size: 1.45rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
}
.hero-inquiry-card__head p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    font-family: var(--website-font-family);
}
.inquiry-form-inner--hero .form-group { margin-bottom: 12px; }
.inquiry-form-inner--hero input,
.inquiry-form-inner--hero textarea {
    border-radius: 8px;
    padding: 11px 12px;
    border-color: #d5dde8;
}
.inquiry-form-inner--hero input:focus,
.inquiry-form-inner--hero textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 61, 114, 0.12);
}
.inquiry-form-inner--hero .form-row-2 { gap: 10px; }
.inquiry-form-submit { width: 100%; margin-top: 4px; font-weight: 600; }
.hero-inquiry-card__meta {
    list-style: none;
    margin: 14px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
}
.hero-inquiry-card__meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--text);
}
.hero-inquiry-card__meta li:last-child { margin-bottom: 0; }
.hero-inquiry-card__meta i { color: var(--secondary); width: 16px; text-align: center; }
.hero-inquiry-card__meta a { color: var(--primary); font-weight: 500; }

/* Legacy full-width hero (other pages if reused) */
.hero-slider:not(.hero-banner .hero-slider) { position: relative; overflow: hidden; background: var(--primary-dark); }
.slide-inner { position: relative; z-index: 1; width: 100%; }
.slide-content { color: #fff; max-width: 640px; padding: clamp(32px, 6vw, 72px) 0; }
.slide-content h2 { font-size: clamp(1.5rem, 4.5vw, 2.25rem); font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.slider-dots button,
.slider-dots span {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    background: rgba(255,255,255,.45);
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
}
.slider-dots button.active,
.slider-dots span.active { background: var(--secondary); width: 28px; border-radius: 5px; }

/* Sections */
.section { padding: var(--section-space) 0; }
.section-compact { padding-top: clamp(24px, 5vw, 40px); }
.section-alt {
    background:
        linear-gradient(180deg, rgba(22, 61, 114, 0.035) 0%, rgba(22, 61, 114, 0.06) 100%),
        var(--bg-light);
}
.section-title { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.section-title--left { text-align: left; }
.section-title--left h2::after { left: 0; transform: none; }
.section-title h2 {
    font-size: clamp(1.6rem, 3.8vw, 2.15rem);
    color: var(--primary-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--secondary);
    border-radius: 0;
}
.section-title p {
    color: var(--text-light);
    margin-top: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
}
.section-title--left p { margin-left: 0; margin-right: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.about-info {
    background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.about-info table { width: 100%; font-size: 14px; }
.about-info td { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.about-info td:first-child { font-weight: 600; width: 45%; color: #ffb74d; font-family: var(--website-font-family); }

/* Products listing */
.products-layout { display: flex; gap: 28px; align-items: flex-start; }
.products-main { flex: 1; min-width: 0; }
.product-grid--listing { grid-template-columns: repeat(3, 1fr); }
.products-page .sidebar-title { color: var(--primary-dark); margin-bottom: 16px; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.sidebar-list { list-style: none; }
.sidebar-mobile-toggle {
    display: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    touch-action: manipulation;
}
.category-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.product-card-link { display: block; color: inherit; }
.product-card-link:hover { color: inherit; }
.product-card-cat { font-size: 12px; margin-bottom: 6px; color: var(--text-light); font-weight: 500; }
.btn-get-quote--card { display: inline-flex; margin-top: 0; padding: 8px 14px; font-size: 12px; min-height: 40px; }
.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    align-items: stretch;
}
.product-card-actions form { flex: 1 1 auto; min-width: 0; }
.product-card-actions .btn-add-cart,
.product-card-actions .btn-get-quote--card {
    width: 100%;
    margin: 0;
}
.btn-add-cart {
    background: var(--primary, #163d72);
    color: #fff;
    font-family: var(--button-font-family, var(--website-font-family));
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    touch-action: manipulation;
    transition: background var(--transition), transform var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark, #0c2847); color: #fff; }
.product-card-stock-out {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 4px;
}
.pagination-wrap { margin-top: 28px; }
.empty-state { grid-column: 1 / -1; padding: 24px; color: var(--text-light); }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-card {
    border: 1px solid transparent;
    background: #fff;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
@media (hover: hover) {
    .cat-card:hover {
        box-shadow: var(--shadow);
        border-color: rgba(22, 61, 114, 0.2);
        transform: translateY(-4px);
    }
}
.cat-card img { height: 200px; width: 100%; object-fit: cover; background: var(--bg-light); transition: transform 0.45s ease; }
@media (hover: hover) {
    .cat-card:hover img { transform: scale(1.04); }
}
.product-card img { background: var(--bg-light); }
.facility-card img { background: var(--bg-light); }
.gallery-item img { background: var(--bg-light); }
.blog-card img { background: var(--bg-light); }
.cat-card-body { padding: 22px; }
.cat-card h3 { font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 10px; text-transform: uppercase; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; justify-content: space-between; }
.cat-count { font-size: 11px; font-weight: 600; color: #fff; background: var(--secondary); padding: 3px 8px; border-radius: 3px; text-transform: none; letter-spacing: 0; white-space: nowrap; font-family: var(--website-font-family); }
.products-count-badge { color: var(--secondary); font-weight: 600; margin-top: 8px; font-size: 14px; }
.category-sidebar .category-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; color: var(--text); border-bottom: 1px solid var(--border); gap: 10px; }
.category-sidebar .category-link:hover, .category-sidebar .category-link.active { background: var(--bg-light); color: var(--primary); font-weight: 600; }
.category-sidebar .category-link .cat-count { flex-shrink: 0; }
.cat-card ul { list-style: none; font-size: 13px; color: var(--text-light); }
.cat-card ul li { padding: 5px 0; border-bottom: 1px dashed var(--border); }
.cat-card ul li::before { content: '›'; color: var(--secondary); margin-right: 6px; }
.cat-card .btn-get-quote { display: block; text-align: center; padding: 10px; margin-top: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
    border: 1px solid transparent;
    background: #fff;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (hover: hover) {
    .product-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
        border-color: rgba(22, 61, 114, 0.15);
    }
}
.product-card img { height: 210px; width: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.45s ease; }
@media (hover: hover) {
    .product-card:hover img { transform: scale(1.05); }
}
.product-card-body { padding: 18px; text-align: left; }
.product-card-body--actions { padding-top: 0; }
.product-card h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 8px; font-weight: 600; line-height: 1.3; text-transform: uppercase; }
.product-price { color: var(--secondary); font-weight: 700; font-size: 15px; font-family: var(--website-font-family); }

/* Why choose */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item {
    text-align: left;
    padding: 28px 22px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
    .why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    font-size: 20px;
}
.why-item h3 { font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* Facilities */
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.facility-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
    .facility-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.facility-card img { height: 170px; width: 100%; object-fit: cover; }
.facility-card h4 { padding: 14px 12px; background: var(--primary-dark); color: #fff; font-size: 0.95rem; text-align: center; text-transform: uppercase; letter-spacing: 0.04em; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { overflow: hidden; cursor: pointer; border-radius: var(--radius); }
.gallery-item img { height: 190px; width: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-item {
    text-align: center;
    padding: 24px 12px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
    .industry-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.industry-item i { font-size: 28px; color: var(--primary); margin-bottom: 12px; display: block; }
.industry-item span { font-size: 13px; font-weight: 600; color: var(--text); font-family: var(--heading-font-family); text-transform: uppercase; letter-spacing: 0.03em; }

/* Testimonials */
.testimonial-slider { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff;
    border-left: 3px solid var(--secondary);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
}
.testimonial-card .stars { color: var(--secondary); margin-bottom: 12px; }
.testimonial-card p { font-size: 1.02rem; line-height: 1.65; color: var(--text); }
.testimonial-card .author { margin-top: 18px; font-weight: 600; color: var(--primary-dark); font-family: var(--heading-font-family); text-transform: uppercase; letter-spacing: 0.03em; }

/* Inquiry / contact */
.inquiry-section { background: var(--primary-dark); color: #fff; }
.inquiry-section--contact { background: linear-gradient(180deg, #0a223c 0%, #0f3258 55%, #123a62 100%); padding: clamp(56px, 9vw, 88px) 0; }
.contact-page-grid { align-items: start; }
.contact-page-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.contact-page-info i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.contact-map-block { margin-top: 20px; }
.contact-map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    line-height: 0;
}
.contact-map-embed iframe {
    display: block;
    width: 100% !important;
    min-height: 260px;
    border: 0;
}
.contact-map-link-wrap { margin-top: 12px; }
.contact-map-link { display: inline-flex; align-items: center; gap: 8px; }
.inquiry-contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.inquiry-contact-panel__text h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 12px;
}
.inquiry-contact-panel__text p { opacity: 0.9; line-height: 1.6; }
.inquiry-contact-note { margin-top: 16px; font-size: 14px; opacity: 0.75; }
.inquiry-contact-list { list-style: none; margin: 0; padding: 0; }
.inquiry-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.inquiry-contact-list li:last-child { border-bottom: none; }
.inquiry-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}
.inquiry-contact-list strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: 4px; }
.inquiry-contact-list a, .inquiry-contact-list span { color: #fff; font-size: 15px; }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.inquiry-form { background: #fff; padding: 30px; color: var(--text); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); font-family: inherit; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 80px 1fr; gap: 10px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
    border: 1px solid transparent;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
@media (hover: hover) {
    .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
}
.blog-card img { height: 190px; width: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card h3 { font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px; text-transform: uppercase; }

/* Footer */
.main-footer {
    background:
        radial-gradient(800px 320px at 0% 0%, rgba(22, 61, 114, 0.45), transparent 60%),
        linear-gradient(180deg, #0c1a2c 0%, #081421 100%);
    color: #b8c2ce;
}
.footer-top { padding: clamp(48px, 9vw, 72px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { padding: 6px 0; font-size: 14px; }
.footer-grid a { color: #ccc; }
.footer-grid a:hover { color: var(--secondary); }
.footer-grid .cat-count { font-size: 10px; vertical-align: middle; margin-left: 4px; }
.main-footer .cat-count { display: inline-block; }
.footer-static-pages {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0 18px;
    background: rgba(0, 0, 0, 0.18);
}
.footer-static-pages__label {
    color: #fff;
    font-size: 15px;
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
}
.footer-static-pages__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-bottom: 10px;
}
.footer-static-pages__row:last-child { margin-bottom: 0; }
.footer-static-pages__row a {
    color: #ccc;
    font-size: 14px;
    white-space: nowrap;
}
.footer-static-pages__row a:hover { color: var(--secondary); }
.static-page-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 12px 0; }
.static-page-content h3 { color: var(--primary); margin: 24px 0 10px; font-size: 1.15rem; }
.static-page-content p, .static-page-content li { font-size: 15px; line-height: 1.65; }
.footer-bottom { background: rgba(0, 0, 0, 0.35); padding: 16px 0; text-align: center; font-size: 13px; }
.footer-bottom .site-credit-attribution {
    border: none;
    padding: 8px 0 0;
}
.footer-bottom .site-credit-attribution__by-gap {
    display: inline-block;
    width: 0.4em;
}

/* Floating: WhatsApp, Call, Back to top (+ tawk.to loads separately) */
.floating-widgets {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 9990;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}
.floating-widgets--tawk { bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px)); }
.floating-widget {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.22);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    font-size: 22px;
}
.floating-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.28);
    color: #fff !important;
}
.floating-widget__label {
    display: none;
}
.floating-widget--whatsapp { background: #25d366; }
.floating-widget--call { background: var(--secondary, #e65100); font-size: 20px; }
.floating-widget--top {
    background: var(--primary, #163d72);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}
.floating-widget--top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-widget--pending {
    opacity: 0.72;
    cursor: help;
    position: relative;
}
.floating-widget--pending::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc107;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.floating-widget--chat { background: #03a84e; }
.floating-widget.is-active { opacity: 1; }
.floating-widget-toast {
    position: fixed;
    right: 16px;
    bottom: max(200px, calc(env(safe-area-inset-bottom) + 180px));
    z-index: 9995;
    max-width: 280px;
    padding: 12px 14px;
    background: #1e293b;
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.45;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.floating-widget-toast[hidden] { display: none !important; }
.floating-widget-toast.is-show { display: block; animation: fw-toast-in .25s ease; }
@keyframes fw-toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 768px) {
    .floating-widget {
        width: auto;
        min-width: 52px;
        height: 52px;
        padding: 0 16px;
        border-radius: 26px;
    }
    .floating-widget__label {
        display: inline;
        font-size: 13px;
        font-weight: 600;
        margin-left: 8px;
    }
    .floating-widget--top .floating-widget__label { display: none; }
    .floating-widget--top { width: 52px; padding: 0; border-radius: 50%; }
}
@media (max-width: 480px) {
    .floating-widgets { right: 12px; }
    .floating-widgets--tawk { bottom: 80px; }
    .floating-widget { width: 48px; height: 48px; font-size: 20px; }
}

/* Product detail page */
.product-detail-page { padding: 30px 0 60px; background: var(--bg-light); }
.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    font-size: 13px;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.5;
}
.product-breadcrumb a { color: var(--primary); }
.product-breadcrumb__sep { margin: 0 8px; color: #ccc; flex-shrink: 0; }
.product-breadcrumb__current {
    color: var(--text, #1a2332);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.spec-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: 35px; align-items: start; }
.product-detail-main { background: #fff; border: 1px solid var(--border); padding: 25px; min-width: 0; }
.product-sidebar { min-width: 0; }
.product-gallery-wrap { margin-bottom: 25px; }
.product-gallery-main { position: relative; border: 1px solid var(--border); background: #f8f9fb; overflow: hidden; }
.product-gallery-main img { width: 100%; height: auto; aspect-ratio: 4 / 3; max-height: 480px; object-fit: cover; display: block; }
.product-badge-featured { position: absolute; top: 15px; left: 15px; background: var(--secondary); color: #fff; padding: 6px 14px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery-thumbs .thumb { padding: 0; border: 2px solid var(--border); background: none; cursor: pointer; width: 72px; height: 56px; overflow: hidden; }
.product-gallery-thumbs .thumb.active { border-color: var(--primary); }
.product-gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-header { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--border); }
.product-category-tag { display: inline-block; background: var(--primary); color: #fff; font-size: 11px; padding: 4px 10px; text-transform: uppercase; font-weight: 600; margin-right: 10px; }
.product-sku { font-size: 12px; color: var(--text-light); }
.product-detail-header h1 { font-size: 28px; color: var(--primary); margin: 12px 0; line-height: 1.3; }
.product-lead { font-size: 16px; color: var(--text-light); line-height: 1.6; }
.product-price-box { background: linear-gradient(135deg, #f0f4fa 0%, #fff 100%); border: 2px solid var(--primary); border-left: 5px solid var(--secondary); padding: 20px 25px; margin: 20px 0; }
.product-price-box--quote { border-color: var(--border); }
.product-price-box .price-label { font-size: 12px; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.product-price-box .price-amount { font-size: 26px; font-weight: 700; color: var(--secondary); margin: 8px 0; }
.product-price-box .price-note { font-size: 12px; color: var(--text-light); margin: 0; }
.product-trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.trust-badge { text-align: center; padding: 12px 8px; background: var(--bg-light); border: 1px solid var(--border); font-size: 11px; font-weight: 600; color: var(--primary); }
.trust-badge i { display: block; font-size: 20px; color: var(--secondary); margin-bottom: 6px; }
.product-tabs-enhanced { margin-top: 10px; }
.product-tabs-enhanced .tab-nav { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 2px solid var(--border); background: var(--bg-light); }
.product-tabs-enhanced .tab-nav button { padding: 14px 20px; background: none; border: none; cursor: pointer; font-weight: 600; color: var(--text-light); font-size: 13px; text-transform: uppercase; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.product-tabs-enhanced .tab-nav button i { margin-right: 6px; }
.product-tabs-enhanced .tab-nav button.active { color: var(--primary); background: #fff; border-bottom-color: var(--secondary); }
.product-tabs-enhanced .tab-panels { background: #fff; }
.product-tabs-enhanced .tab-panel-inner { padding: 25px; line-height: 1.7; }
.spec-table-enhanced td { padding: 12px 16px; }
.feature-list { list-style: none; }
.feature-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); display: flex; align-items: flex-start; gap: 10px; }
.feature-list li i { color: var(--secondary); margin-top: 3px; }
.faq-item { border: 1px solid var(--border); margin-bottom: 10px; }
.faq-item summary { padding: 14px 18px; font-weight: 600; color: var(--primary); cursor: pointer; background: var(--bg-light); }
.faq-item p { padding: 15px 18px; margin: 0; color: var(--text-light); }
.related-products-section { margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--border); }
.related-products-section h3 { color: var(--primary); margin-bottom: 20px; text-transform: uppercase; }
.related-grid { grid-template-columns: repeat(4, 1fr) !important; }
.enhanced-quote-box { border: 2px solid var(--secondary) !important; box-shadow: var(--shadow); }
.quote-box-header { text-align: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.quote-box-header i { font-size: 32px; color: var(--secondary); display: block; margin-bottom: 8px; }
.quote-box-header h3 { color: var(--primary); margin: 0; text-transform: uppercase; }
.enhanced-quote-box > p { font-size: 13px; color: var(--text-light); margin-bottom: 15px; text-align: center; }
.quote-contact-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }
.quote-phone, .quote-whatsapp { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; color: #fff !important; }
.quote-phone { background: var(--primary); }
.quote-whatsapp { background: #25d366; }

/* Product detail legacy */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-info h1 { font-size: 26px; color: var(--primary); margin-bottom: 10px; }
.product-tabs { margin-top: 40px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); }
.tab-nav button { padding: 12px 24px; background: none; border: none; cursor: pointer; font-weight: 600; color: var(--text-light); text-transform: uppercase; font-size: 13px; }
.tab-nav button.active { color: var(--primary); border-bottom: 2px solid var(--secondary); margin-bottom: -2px; }
.tab-content { padding: 20px 0; display: none; }
.tab-content.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 10px; border: 1px solid var(--border); }
.spec-table td:first-child { font-weight: 600; background: var(--bg-light); width: 35%; }
.sticky-quote { position: sticky; top: 100px; background: #fff; border: 2px solid var(--secondary); padding: 25px; }
.sticky-quote h3 { color: var(--primary); margin-bottom: 15px; text-align: center; text-transform: uppercase; }

/* Alerts */
.alert { padding: 12px 20px; margin-bottom: 20px; border-radius: 4px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 250px; background: var(--primary-dark); color: #fff; flex-shrink: 0; }
.admin-sidebar .brand { padding: 20px; background: var(--primary); font-weight: 700; }
.admin-sidebar nav a { display: block; padding: 12px 20px; color: rgba(255,255,255,.8); font-size: 14px; border-left: 3px solid transparent; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,.1); color: #fff; border-left-color: var(--secondary); }
.admin-main { flex: 1; background: var(--bg-light); }
.admin-header { background: #fff; padding: 15px 25px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-content { padding: 25px; }
.admin-card { background: #fff; border: 1px solid var(--border); padding: 20px; margin-bottom: 20px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
.stat-card { background: #fff; border: 1px solid var(--border); padding: 20px; border-left: 4px solid var(--primary); }
.stat-card.orange { border-left-color: var(--secondary); }
.stat-card h3 { font-size: 28px; color: var(--primary); }
.stat-card p { font-size: 13px; color: var(--text-light); text-transform: uppercase; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th, .admin-table td { padding: 10px 12px; border: 1px solid var(--border); text-align: left; font-size: 14px; }
.admin-table th { background: var(--bg-light); font-weight: 600; }
.btn-admin { background: var(--primary); color: #fff; padding: 8px 16px; border: none; cursor: pointer; font-size: 13px; display: inline-block; }
.btn-admin:hover { background: var(--primary-dark); color: #fff; }
.btn-admin-sm { padding: 5px 10px; font-size: 12px; }
.btn-danger { background: #dc3545; }

/* Responsive */
@media (max-width: 1100px) {
    .hero-banner__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-banner__media { min-height: clamp(380px, 62vw, 520px); }
    .hero-banner .hero-slider { min-height: clamp(380px, 62vw, 520px); }
    .hero-banner__form {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 20px 16px 28px;
    }
    .hero-inquiry-card { max-width: 520px; margin: 0 auto; }
    .inquiry-contact-panel { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 992px) {
    .cat-grid, .product-grid, .why-grid, .facility-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid--listing { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid, .inquiry-grid, .product-detail, .footer-grid, .products-layout { grid-template-columns: 1fr; flex-direction: column; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-layout { grid-template-columns: 1fr; }
    .product-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .category-sidebar { width: 100%; }

    /* Header collapses earlier so nav never overflows */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: min(75vh, 520px);
        background: #fff;
        box-shadow: 0 16px 32px rgba(15, 40, 71, 0.14);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 16px 20px;
        z-index: 1001;
        border-bottom: 1px solid var(--border);
        justify-content: flex-start;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
    .main-nav a {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 8px;
    }
    .main-nav a::after { display: none; }
    .mobile-toggle { display: inline-flex; }
}
@media (max-width: 768px) {
    .top-bar-email { display: none; }
    .top-bar { font-size: 12px; padding: 8px 0; }
    .logo-tagline { display: none; }
    .header-cta { padding: 8px 12px; font-size: 12px; min-height: 40px; }
    .sidebar-mobile-toggle { display: flex; }
    .category-sidebar { display: none; }
    .category-sidebar.open { display: block; }
    .cat-grid, .product-grid, .gallery-grid, .why-grid, .facility-grid, .blog-grid, .testimonial-slider, .product-grid--listing { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .product-trust-badges { grid-template-columns: 1fr 1fr; }
    .product-tabs-enhanced .tab-nav button { padding: 12px 14px; font-size: 12px; min-height: 44px; }
    .product-gallery-main img { height: auto; aspect-ratio: 4 / 3; max-height: 360px; }
    .sticky-quote { position: static; }
    .section { padding: 40px 0; }
    .form-row, .form-row-2 { grid-template-columns: 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .industry-grid { grid-template-columns: 1fr; }
    .quote-contact-quick { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero-banner .slide,
    .hero-banner .slide-media,
    .hero-banner__copy { transition: none !important; transform: none !important; }
    .hero-banner .slide { opacity: 0; }
    .hero-banner .slide.active { opacity: 1; }
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="left"].is-visible { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="right"].is-visible { transform: translateX(0); }

[data-reveal="right"].is-visible { transform: translateX(0); }