:root {
    --navy: #061d3d;
    --navy-2: #082852;
    --navy-3: #0b376b;
    --red: #d40d19;
    --red-dark: #a80912;
    --ink: #071b38;
    --body: #162238;
    --muted: #5c6b7f;
    --line: #d9e1eb;
    --soft: #f4f7fb;
    --white: #fff;
    --blue: #005da8;
    --green: #138744;
    --orange: #e78313;
    --max: 1220px;
}

* { box-sizing: border-box; }

html {
    color: var(--body);
    font-family: "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
    line-height: 1.35;
}

body { margin: 0; background: var(--white); }
a { color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.container { width: calc(100% - 56px); max-width: var(--max); margin-inline: auto; }
.skip-link { position: absolute; top: -80px; left: 16px; z-index: 20; background: var(--red); color: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header { position: relative; z-index: 10; background: var(--white); box-shadow: 0 3px 12px rgba(0,0,0,.22); }
.topbar-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; width: min(280px, 42vw); }
.brand img { width: 100%; height: auto; display: block; }
.top-actions { display: flex; align-items: center; gap: 28px; margin-left: auto; color: var(--navy); }
.made-usa { display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 800; line-height: 1.12; }
.flag { width: 36px; height: 23px; display: inline-block; border: 1px solid #ccd4df; background: repeating-linear-gradient(180deg,#c91d2e 0 2px,#fff 2px 4px); position: relative; }
.flag::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 15px; height: 12px; background: var(--navy-3); }
.phone-link { font-size: 1.45rem; font-weight: 950; text-decoration: none; letter-spacing: 0; white-space: nowrap; }
.phone-link::before { content: ""; display: inline-block; width: 18px; height: 18px; margin-right: 9px; border: 4px solid var(--navy); border-top-color: transparent; border-left-color: transparent; border-radius: 50%; transform: rotate(-15deg); }
.buy-button { min-height: 52px; display: inline-flex; flex-direction: column; justify-content: center; border-radius: 6px; background: var(--red); color: var(--white); padding: 10px 18px; font-size: .95rem; font-weight: 950; text-transform: uppercase; text-decoration: none; box-shadow: inset 0 -2px 0 rgba(0,0,0,.18); }
.buy-button span { font-size: .72rem; font-weight: 800; text-transform: none; }

.nav-shell { background: var(--navy); color: var(--white); }
.nav-inner { min-height: 48px; display: flex; align-items: center; justify-content: flex-end; }
.primary-nav { display: flex; align-items: stretch; justify-content: flex-end; gap: 0; width: 100%; }
.nav-item { position: relative; }
.nav-link, .search-button { min-height: 48px; display: inline-flex; align-items: center; padding: 0 24px; border: 0; background: transparent; color: var(--white); font-size: .86rem; font-weight: 950; text-transform: uppercase; text-decoration: none; }
.nav-item .nav-link::after { content: ""; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.nav-contact { margin-left: auto; }
.search-button { width: 48px; justify-content: center; padding: 0; cursor: pointer; }
.site-search { display: flex; align-items: center; min-height: 48px; margin-left: 10px; }
.site-search input { width: 220px; height: 36px; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: var(--white); }
.site-search input::placeholder { color: rgba(255,255,255,.78); }
.site-search .search-button { flex: 0 0 48px; }
.search-button span { width: 18px; height: 18px; border: 3px solid var(--white); border-radius: 50%; position: relative; display: block; }
.search-button span::after { content: ""; width: 9px; height: 3px; background: var(--white); position: absolute; right: -7px; bottom: -4px; transform: rotate(45deg); }
.mega-menu { position: absolute; left: 0; top: 100%; width: 330px; padding: 12px; background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 14px 32px rgba(6,29,61,.24); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s ease; }
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { display: block; padding: 11px 12px; border-radius: 4px; text-decoration: none; }
.mega-menu a:hover { background: var(--soft); }
.mega-menu strong { display: block; color: var(--navy); font-size: .96rem; text-transform: uppercase; }
.mega-menu span { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.nav-toggle-line { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); }

.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 5px; padding: 11px 18px; cursor: pointer; font-size: .86rem; font-weight: 950; text-transform: uppercase; text-decoration: none; }
.button::after, .product-card em::after, .application-card em::after, .industry-card em::after, .category-tile em::after, .catalog-area-card em::after, .support-card em::after {
    content: "";
    width: .42rem;
    height: .42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
}
.button-primary { background: var(--red); color: var(--white); box-shadow: inset 0 -2px 0 rgba(0,0,0,.18); }
.button-primary:hover { background: var(--red-dark); }
.button-blue { background: var(--blue); color: var(--white); }
.button-outline { border: 2px solid rgba(255,255,255,.82); color: var(--white); background: rgba(0,0,0,.18); }
.button-light { border: 2px solid var(--navy); color: var(--navy); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero { color: var(--white); background-color: var(--navy); overflow: hidden; }
.hero-home { min-height: 510px; background-image: linear-gradient(90deg, rgba(3,14,32,.94), rgba(6,29,61,.78) 42%, rgba(6,29,61,.18)), url("/assets/images/home/home-hero.jpg"); background-size: cover; background-position: center right; position: relative; }
.hero-home::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,14,32,.18), rgba(3,14,32,.38)); pointer-events: none; }
.hero-inner { min-height: inherit; display: flex; align-items: center; }
.hero-copy { width: min(590px, 100%); padding: 70px 0 86px; position: relative; z-index: 1; }
.hero h1, .page-hero h1 { margin: 0; color: var(--white); font-size: clamp(2.5rem, 7vw, 4.6rem); line-height: .95; text-transform: uppercase; letter-spacing: 0; font-weight: 950; }
.hero h1 span { display: block; }
.hero p { max-width: 670px; font-size: 1.28rem; margin: 20px 0 28px; }

.section { padding: 44px 0; }
.tight-section { padding-top: 30px; }
.tight-top { padding-top: 0; }
.section-heading { text-align: center; color: var(--navy); margin-bottom: 26px; }
.section-heading h2 { margin: 0; font-size: clamp(1.55rem, 3.2vw, 2rem); line-height: 1; text-transform: uppercase; font-weight: 950; }
.section-heading p { margin: 5px 0 0; color: var(--ink); font-size: 1rem; }
.section-action { display: flex; justify-content: center; margin-top: 26px; }

.application-grid, .product-grid, .industry-grid, .category-grid, .catalog-area-grid { display: grid; gap: 24px; }
.application-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.featured-product-grid { grid-template-columns: repeat(4, 1fr); }
.industry-grid { grid-template-columns: repeat(4, 1fr); }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.catalog-area-grid { grid-template-columns: repeat(4, 1fr); }
.catalog-area-grid .catalog-area-card:nth-child(5):nth-last-child(3) { grid-column: 2; }

.application-card, .product-card, .industry-card, .category-tile, .catalog-area-card, .empty-state, .contact-card, .contact-form, .value-card {
    border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: 0 4px 14px rgba(6,29,61,.12); text-decoration: none;
}
.application-card { min-height: 300px; display: flex; flex-direction: column; padding: 0 22px 20px; overflow: hidden; }
.industry-card { min-height: 300px; display: flex; flex-direction: column; padding: 0 20px 20px; overflow: hidden; }
.application-card strong, .product-card strong, .industry-card strong { color: var(--navy); font-size: 1.16rem; line-height: 1.05; text-transform: uppercase; margin-top: 12px; font-weight: 950; }
.application-card small, .industry-card small { margin-top: 11px; white-space: normal; color: var(--body); font-size: .9rem; }
.application-card em, .product-card em, .industry-card em, .category-tile em { margin-top: auto; color: var(--red); font-style: normal; font-weight: 950; font-size: .82rem; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.line-icon { width: 38px; height: 38px; margin-top: 14px; border: 3px solid currentColor; border-radius: 4px; color: var(--blue); }
.theme-green { color: var(--green); } .theme-red { color: var(--red); } .theme-blue { color: var(--blue); }

.photo-block, .page-hero, .feature-panel, .surface-grid span { background-size: cover; background-position: center; }
.photo-field, .photo-spray { background-image: linear-gradient(135deg, rgba(6,29,61,.18), rgba(6,29,61,.45)), url("/assets/images/home/athletic-fields-card.jpg"); }
.photo-road, .photo-runway { background-image: linear-gradient(135deg, rgba(6,29,61,.18), rgba(6,29,61,.48)), url("/assets/images/home/roads-parking-airports-card.jpg"); }
.photo-plant { background-image: linear-gradient(135deg, rgba(6,29,61,.15), rgba(6,29,61,.58)), url("/assets/images/home/industrial-commercial-card.jpg"); }
.photo-concrete { background-image: linear-gradient(135deg, rgba(6,29,61,.1), rgba(6,29,61,.35)), url("/assets/images/home/concrete-asphalt-card.jpg"); }
.photo-golf { background-image: linear-gradient(135deg, rgba(6,29,61,.15), rgba(6,29,61,.45)), url("/assets/images/home/landscape-grounds-card.jpg"); }
.photo-facility { background-image: linear-gradient(135deg, rgba(6,29,61,.13), rgba(6,29,61,.35)), url("/assets/images/home/facility-floor-care-card.jpg"); }
.photo-company-facility { background-image: linear-gradient(90deg, rgba(6,29,61,.9), rgba(6,29,61,.5) 46%, rgba(6,29,61,.12)), url("/assets/images/home/facility-page.jpg"); background-position: center; }
.photo-robot { background-image: linear-gradient(135deg, rgba(6,29,61,.12), rgba(6,29,61,.48)), radial-gradient(circle at 70% 50%, #111 0 12%, transparent 13%), linear-gradient(180deg, #8bb661, #23662d); }
.photo-stencil { background-image: linear-gradient(90deg, rgba(6,29,61,.9), rgba(6,29,61,.45)), url("/assets/images/home/stencils-page.jpg"); }
.application-card .photo-block { height: 165px; margin: 0 -22px; }
.industry-card .photo-block { height: 155px; margin: 0 -20px; }

.product-card { min-height: 350px; display: flex; flex-direction: column; padding: 18px; transition: transform .16s ease, box-shadow .16s ease; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6,29,61,.16); }
.product-card small { margin-top: 7px; color: var(--body); font-size: .95rem; }
.product-card-badge { width: fit-content; border-left: 3px solid var(--red); padding-left: 8px; color: var(--navy) !important; font-weight: 950; text-transform: uppercase; font-size: .78rem !important; }
.product-art { background: linear-gradient(180deg, #f9fbfd, #eef3f8); border: 1px solid var(--line); color: var(--navy); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.product-card .product-art { height: 150px; border-radius: 6px; margin-bottom: 4px; }
.product-card-media { height: 150px; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 4px; display: flex; align-items: center; justify-content: center; background: var(--white); overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 10px; }
.product-art span { position: relative; z-index: 1; max-width: 80%; padding: 5px 12px; border-radius: 4px; background: rgba(255,255,255,.82); font-weight: 950; text-transform: uppercase; }
.product-art::before { content: ""; position: absolute; bottom: 14px; width: 42px; height: 72px; border-radius: 9px 9px 4px 4px; background: linear-gradient(90deg, var(--navy), #fff 28% 72%, var(--red)); box-shadow: 58px 10px 0 -5px rgba(6,29,61,.18), -58px 10px 0 -5px rgba(212,13,25,.16); }
.product-art-pail::before { width: 86px; height: 58px; border-radius: 8px 8px 18px 18px; background: linear-gradient(90deg, #d8dde3, #fff 35% 70%, #246bb5); }
.product-art-robot::before { width: 120px; height: 56px; border-radius: 8px; background: linear-gradient(90deg, #1a232d, #f2f4f7 38% 56%, #c01822); box-shadow: -45px 33px 0 -12px #151b22, 45px 33px 0 -12px #151b22; }
.product-art-stencil::before { width: 130px; height: 70px; border: 4px solid var(--red); border-radius: 50%; background: transparent; }
.no-image-state { background: linear-gradient(135deg, #f9fbfd, #eef3f8 58%, #e6edf5); }
.mini-swatches { display: flex; gap: 5px; margin-top: 11px; }
.mini-swatches i, .swatch-grid i { display: inline-block; width: 16px; height: 16px; border-radius: 50%; border: 1px solid #9ca8b5; background: var(--swatch); }

.feature-panels { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-panel { min-height: 330px; padding: 42px 48px; color: var(--white); text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.feature-panel h2 { margin: 0 0 4px; font-size: 1.85rem; line-height: 1; text-transform: uppercase; }
.feature-panel p { margin: 0 0 9px; font-size: 1.08rem; font-weight: 800; }
.feature-panel ul { columns: 2; padding-left: 18px; margin: 0 0 16px; }

.technical-strip { width: calc(100% - 56px); max-width: var(--max); margin: 36px auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: 0 4px 14px rgba(6,29,61,.1); }
.technical-item { min-height: 96px; padding: 16px; display: grid; grid-template-columns: 42px 1fr; column-gap: 12px; align-content: center; border-right: 1px solid var(--line); }
.technical-item:last-child { border-right: 0; }
.technical-item span:first-child { grid-row: span 2; width: 36px; height: 36px; border: 3px solid var(--navy); border-radius: 4px; }
.technical-item strong { color: var(--navy); text-transform: uppercase; font-size: .9rem; }
.technical-item small { color: var(--body); }

.home-support-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 46px; }
.learn-box, .support-cta { border: 1px solid var(--line); border-radius: 7px; padding: 22px; background: var(--white); box-shadow: 0 4px 14px rgba(6,29,61,.1); }
.support-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--navy); color: var(--white); }
.support-cta h2, .learn-box h2 { margin: 0 0 6px; text-transform: uppercase; }
.phone-large { display: inline-block; color: inherit; font-size: 1.55rem; font-weight: 950; text-decoration: none; }
.finder-form { display: grid; gap: 10px; }
label { display: grid; gap: 5px; color: var(--navy); font-weight: 850; font-size: .88rem; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 5px; padding: 10px 12px; font: inherit; background: var(--white); }

.breadcrumbs { display: flex; gap: 8px; align-items: center; padding: 18px 0; color: var(--navy); font-size: .86rem; font-weight: 800; }
.breadcrumbs a { text-decoration: none; }
.page-hero { min-height: 390px; display: flex; align-items: center; color: var(--white); position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,29,61,.96), rgba(6,29,61,.65) 44%, rgba(6,29,61,.16)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { margin: 0 0 8px; text-transform: uppercase; font-weight: 950; }
.page-hero span, .red-rule { display: block; width: 78px; height: 4px; background: var(--red); margin: 18px 0; }
.page-hero strong { display: block; max-width: 560px; font-size: 1.2rem; }
.category-tile { min-height: 126px; padding: 20px; display: flex; flex-direction: column; }
.category-tile strong { color: var(--navy); text-transform: uppercase; font-size: 1.1rem; }
.category-tile span { color: var(--muted); margin-top: 8px; font-size: .92rem; }
.empty-state { padding: 28px; text-align: center; }
.catalog-area-card { min-height: 360px; display: flex; flex-direction: column; padding: 0 28px 26px; overflow: hidden; }
.catalog-area-card .photo-block { height: 150px; margin: 0 -28px 20px; }
.catalog-area-card strong { color: var(--navy); font-size: 1.38rem; text-transform: uppercase; line-height: 1.05; }
.catalog-area-card small { color: var(--body); margin-top: 8px; font-size: .96rem; }
.catalog-area-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.catalog-area-links span { color: var(--navy); font-size: .86rem; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.catalog-area-card em { margin-top: auto; color: var(--red); font-style: normal; font-weight: 950; text-transform: uppercase; font-size: .82rem; display: inline-flex; align-items: center; gap: 8px; }
.search-page h1 { margin: 0; color: var(--navy); text-transform: uppercase; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.search-panel { margin: 0 auto 24px; max-width: 780px; border: 1px solid var(--line); border-radius: 7px; padding: 18px; background: var(--white); box-shadow: 0 4px 14px rgba(6,29,61,.1); }
.search-panel > div { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.search-summary { margin: 0 0 26px; color: var(--navy); font-size: 1.05rem; text-align: center; }
.search-results-group { margin-top: 32px; }
.search-results-group h2 { color: var(--navy); text-transform: uppercase; }
.search-result-list { display: grid; gap: 12px; }
.search-result-row { display: grid; grid-template-columns: auto 1fr; gap: 5px 14px; align-items: center; border: 1px solid var(--line); border-radius: 7px; padding: 14px 16px; background: var(--white); text-decoration: none; box-shadow: 0 3px 10px rgba(6,29,61,.08); }
.search-result-row:hover { box-shadow: 0 8px 18px rgba(6,29,61,.13); }
.search-result-row strong { color: var(--navy); text-transform: uppercase; line-height: 1.05; }
.search-result-row span:not(.result-type):not(.search-thumb) { color: var(--body); grid-column: 2; }
.search-result-row small { color: var(--muted); font-weight: 850; grid-column: 2; }
.result-type { grid-row: span 3; align-self: start; min-width: 86px; border-left: 4px solid var(--red); padding: 4px 8px; color: var(--navy); background: var(--soft); font-size: .76rem; font-weight: 950; text-transform: uppercase; }
.search-product-row { grid-template-columns: 74px auto 1fr; }
.search-product-row .result-type { grid-column: 2; }
.search-product-row strong, .search-product-row small, .search-product-row span:not(.result-type):not(.search-thumb) { grid-column: 3; }
.search-thumb { grid-row: span 4; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 5px; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.search-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }

.product-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 58px; padding-bottom: 34px; }
.product-hero-service { grid-template-columns: minmax(0, 820px); }
.product-hero-service .product-summary { max-width: 820px; }
.product-hero-no-media { grid-template-columns: minmax(0, 920px); justify-content: start; padding-top: 22px; }
.product-hero-no-media .product-summary { max-width: 920px; }
.gallery-main { min-height: 470px; border-radius: 6px; }
.product-media-frame { min-height: 470px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-media-img { width: 100%; height: 100%; max-height: 470px; object-fit: contain; display: block; padding: 22px; }
.gallery-main small { position: absolute; bottom: 18px; color: var(--muted); font-weight: 800; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumbs button { height: 94px; border-radius: 5px; cursor: pointer; }
.product-summary .eyebrow { margin: 10px 0 0; color: var(--red); font-weight: 950; text-transform: uppercase; }
.product-summary h1 { margin: 0; color: var(--navy); font-size: clamp(2.6rem, 6vw, 4.1rem); line-height: .95; text-transform: uppercase; }
.product-summary h2 { margin: 4px 0 0; color: #3e4650; font-size: 1.45rem; text-transform: uppercase; }
.category-content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.category-content-grid article { border-left: 4px solid var(--red); padding-left: 18px; }
.check-list, .plain-list { padding-left: 0; list-style: none; }
.check-list li { margin: 8px 0; padding-left: 28px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border: 2px solid var(--navy); border-radius: 50%; }
.check-list li::after { content: ""; position: absolute; left: 5px; top: 7px; width: 7px; height: 4px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(-45deg); }
.colors { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 18px; }
.colors h3 { margin: 0 0 10px; color: var(--navy); text-transform: uppercase; }
.swatch-grid { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.swatch-grid span { display: inline-flex; flex-direction: column; align-items: center; gap: 5px; font-size: .78rem; font-weight: 800; color: var(--navy); }
.swatch-grid i { width: 28px; height: 28px; }
.swatch-grid .multi { background: conic-gradient(#0a4da2, #c8102e, #f6c516, #19864b, #0a4da2); }
.product-tabs { display: flex; gap: 6px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 12px; padding: 8px 0; position: sticky; top: 0; background: rgba(255,255,255,.96); z-index: 4; }
.product-tabs a { padding: 12px 16px; color: var(--navy); font-weight: 950; text-transform: uppercase; text-decoration: none; border-radius: 4px; }
.product-tabs a:hover, .product-tabs a:first-child { background: var(--navy); color: var(--white); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 34px; padding: 34px 0; }
.product-detail-grid h2, .info-grid h2, .resource-tools h2 { color: var(--navy); text-transform: uppercase; margin: 0 0 12px; }
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.benefit-list li { display: grid; gap: 3px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.benefit-list strong { color: var(--navy); text-transform: uppercase; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 10px; vertical-align: top; text-align: left; }
.spec-table th { color: var(--navy); background: var(--soft); width: 36%; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; margin-bottom: 38px; }
.info-grid > div { border-top: 4px solid var(--red); padding: 24px 0 0; background: transparent; }
.surface-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.surface-grid span { min-height: 72px; display: flex; align-items: flex-end; justify-content: center; padding: 9px; border-radius: 5px; color: var(--white); font-weight: 950; text-transform: uppercase; font-size: .84rem; overflow: hidden; }
.compat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.compat-row span { min-height: 62px; display: flex; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--line); border-radius: 5px; color: var(--navy); font-weight: 950; text-transform: uppercase; background: var(--white); }
.resource-tools { margin-bottom: 24px; }
.resource-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-card-grid div, .resource-card-grid a { padding: 18px; border: 1px solid var(--line); border-radius: 7px; text-decoration: none; background: var(--white); }
.resource-card-grid div:last-child, .resource-card-grid a:last-child { border-right: 0; }
.resource-card-grid strong { display: block; color: var(--navy); text-transform: uppercase; }
.resource-card-grid span { color: var(--muted); }

.about-grid, .contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 0; }
.about-grid > div:first-child { grid-column: span 4; }
.value-card { min-height: 120px; padding: 20px; display: grid; align-content: center; }
.value-card strong { color: var(--navy); text-transform: uppercase; font-size: 1.1rem; }
.contact-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
.contact-card, .contact-form { padding: 24px; }
.contact-card h2 { color: var(--navy); text-transform: uppercase; margin-top: 0; }
.contact-card a { display: block; margin-top: 12px; color: var(--navy); font-weight: 950; }
.contact-form { display: grid; gap: 14px; }
.editorial-industry-grid { grid-template-columns: repeat(3, 1fr); }
.editorial-band { margin-top: 20px; margin-bottom: 34px; padding: 34px; border-top: 5px solid var(--red); background: linear-gradient(180deg, #fff, #f7f9fc); }
.editorial-band h2, .editorial-page h2, .support-card strong { color: var(--navy); text-transform: uppercase; }
.editorial-page { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 44px; padding: 40px 0; }
.editorial-main { font-size: 1.05rem; }
.editorial-main h2 { margin-top: 0; font-size: 1.8rem; }
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 30px; }
.legal-content p, .legal-content li { line-height: 1.72; }
.legal-content ul { margin: 10px 0 22px; padding-left: 22px; }
.editorial-aside { border-top: 5px solid var(--red); background: var(--soft); padding: 24px; }
.editorial-list { margin: 0; padding-left: 20px; }
.editorial-list li { margin: 10px 0; }
.solution-intro { display: grid; grid-template-columns: minmax(0, .85fr) minmax(300px, 1.15fr); gap: 28px; align-items: end; margin-bottom: 24px; color: var(--navy); }
.solution-intro .eyebrow { margin: 0 0 6px; color: var(--red); font-weight: 950; text-transform: uppercase; }
.solution-intro h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1; text-transform: uppercase; }
.solution-intro p:last-child { margin: 0; color: var(--body); font-size: 1.02rem; }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.support-card { min-height: 190px; display: flex; flex-direction: column; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: 0 4px 14px rgba(6,29,61,.1); text-decoration: none; }
.support-card span { color: var(--body); }
.support-card em { margin-top: auto; color: var(--red); font-style: normal; font-weight: 950; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.document-list { border: 1px solid var(--line); border-radius: 7px; overflow: hidden; background: var(--white); }
.document-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.document-row:last-child { border-bottom: 0; }
.document-row strong { display: block; color: var(--navy); text-transform: uppercase; }
.document-row span { color: var(--muted); }
.document-row a { color: var(--navy); font-weight: 950; text-decoration: none; }
.document-product-link strong { text-decoration: underline; text-underline-offset: 3px; }
.document-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.document-actions a { border: 1px solid var(--line); border-radius: 5px; padding: 9px 12px; background: var(--soft); }
.honeypot { position: absolute; left: -100vw; width: 1px; height: 1px; opacity: 0; }
.required { color: var(--red); font-size: .72rem; text-transform: uppercase; font-weight: 950; }
.form-message { border-radius: 5px; padding: 12px 14px; font-weight: 850; }
.form-message p { margin: 0; }
.form-message.success { background: #e8f6ee; color: #0d5f32; }
.form-message.error { background: #fdebed; color: var(--red-dark); }

.site-footer { background: var(--navy); color: var(--white); margin-top: 28px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr) 1.35fr; gap: 30px; padding: 34px 0; }
.footer-brand img { width: 205px; filter: brightness(0) invert(1); }
.footer-brand p, .site-footer address { color: #d9e3ef; font-style: normal; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a { color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.footer-group { border: 0; }
.footer-group summary { margin: 0 0 10px; font-size: .88rem; text-transform: uppercase; font-weight: 950; list-style: none; cursor: default; }
.footer-group summary::-webkit-details-marker { display: none; }
.site-footer a { display: block; color: #d9e3ef; text-decoration: none; font-size: .9rem; margin: 3px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); }
.footer-bottom .container { min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #d9e3ef; font-size: .86rem; }
.footer-bottom a { display: inline; margin-left: 18px; }

@media (max-width: 1050px) {
    .top-actions { gap: 16px; }
    .made-usa { display: none; }
    .phone-link { font-size: 1.18rem; }
    .nav-link { padding-inline: 14px; }
    .application-grid, .featured-product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid, .industry-grid, .category-grid, .catalog-area-grid, .support-grid, .editorial-industry-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-area-grid .catalog-area-card:nth-child(5):nth-last-child(3) { grid-column: auto; }
    .product-hero, .product-detail-grid, .info-grid, .feature-panels, .technical-strip, .footer-grid, .editorial-page, .solution-intro { grid-template-columns: repeat(2, 1fr); }
    .product-hero-no-media, .product-hero-service { grid-template-columns: minmax(0, 1fr); }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
    .container { width: calc(100% - 28px); max-width: var(--max); }
    .topbar-inner { min-height: 76px; }
    .top-actions { display: none; }
    .nav-toggle { display: block; }
    .nav-shell { display: none; }
    .site-header.nav-open .nav-shell { display: block; }
    .primary-nav { display: block; padding: 8px 0; }
    .nav-link, .search-button { width: 100%; justify-content: space-between; padding: 14px 0; }
    .site-search { display: grid; grid-template-columns: 1fr 48px; gap: 8px; margin: 8px 0; }
    .site-search input { width: 100%; color: var(--ink); background: var(--white); }
    .site-search .search-button { justify-content: center; background: rgba(255,255,255,.08); padding: 0; }
    .nav-contact { margin-left: 0; }
    .mega-menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; display: none; margin-bottom: 8px; }
    .nav-item:focus-within .mega-menu, .nav-item:hover .mega-menu { display: block; }
    .hero-home, .hero-inner { min-height: 330px; }
    .hero-copy { flex: 0 1 100%; width: 100%; min-width: 0; max-width: calc(100vw - 28px); padding: 34px 0 42px; }
    .hero h1, .page-hero h1 { font-size: 1.86rem; line-height: 1.04; overflow-wrap: anywhere; }
    .hero p, .page-hero strong { max-width: 340px; font-size: 1rem; overflow-wrap: anywhere; }
    .section-heading p { max-width: 290px; margin-inline: auto; font-size: 1rem; overflow-wrap: normal; }
    .hero .button-row { flex-direction: column; align-items: flex-start; }
    .section-heading h2 { font-size: 1.28rem; overflow-wrap: anywhere; }
    .product-hero, .product-detail-grid, .info-grid, .feature-panels, .technical-strip, .home-support-row, .about-grid, .contact-grid, .footer-grid, .resource-card-grid, .editorial-page, .support-grid, .solution-intro { grid-template-columns: 1fr; }
    .application-grid, .product-grid, .featured-product-grid, .industry-grid, .catalog-area-grid, .editorial-industry-grid { display: flex; gap: 14px; overflow-x: auto; padding: 0 14px 12px; margin-inline: -14px; scroll-snap-type: x mandatory; }
    .application-card, .product-card, .industry-card, .catalog-area-card { flex: 0 0 82%; scroll-snap-align: start; min-height: 0; }
    .search-panel > div { grid-template-columns: 1fr; }
    .search-result-row, .search-product-row { grid-template-columns: 1fr; }
    .search-product-row .result-type, .search-product-row strong, .search-product-row small, .search-product-row span:not(.result-type):not(.search-thumb), .search-result-row span:not(.result-type):not(.search-thumb) { grid-column: auto; }
    .result-type { grid-row: auto; width: fit-content; }
    .document-row { grid-template-columns: 1fr; }
    .document-actions { justify-content: flex-start; }
    .application-card .photo-block { height: 115px; }
    .product-card .product-art { height: 112px; }
    .category-grid { grid-template-columns: 1fr; }
    .about-grid > div:first-child, .footer-brand { grid-column: span 1; }
    .product-tabs { display: flex; overflow-x: auto; }
    .product-tabs a { min-width: 165px; }
    .gallery-main { min-height: 300px; }
    .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
    .technical-strip { width: calc(100% - 28px); max-width: var(--max); margin: 22px auto; }
    .technical-item { min-height: 72px; padding: 12px; }
    .feature-panel { min-height: 210px; padding: 24px; }
    .page-hero { min-height: 300px; }
    .footer-grid { gap: 0; }
    .footer-group { border-top: 1px solid rgba(255,255,255,.16); padding: 10px 0; }
    .footer-group summary { margin: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .footer-group summary::after { content: "+"; font-size: 1.2rem; }
    .footer-group[open] summary::after { content: "-"; }
    .footer-group a:first-of-type { margin-top: 10px; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; padding: 12px 0; }
}
