:root {
  --bg: #05070b;
  --bg-2: #0b1018;
  --surface: #111823;
  --surface-2: #171f2d;
  --text: #f5f7fb;
  --muted: #b9c2d0;
  --muted-2: #8d98aa;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d64037;
  --red-2: #ff5b4f;
  --blue: #61b7ff;
  --steel: #c8d2df;
  --gold: #d6a85c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1280px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(214, 64, 55, 0.18), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(97, 183, 255, 0.14), transparent 28rem),
    linear-gradient(135deg, #05070b 0%, #080c12 38%, #0d1118 100%);
  line-height: 1.6;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: white; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
::selection { background: var(--red); color: white; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 880px); }
.section { padding: clamp(3.5rem, 7vw, 6.75rem) 0; position: relative; }
.surface { background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); border-block: 1px solid var(--line); }
.skip-link { position: fixed; left: 1rem; top: 1rem; transform: translateY(-150%); z-index: 9999; background: white; color: #06111f; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }

.top-strip { background: #020407; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: .86rem; }
.top-strip-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.top-strip a { color: var(--steel); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(5, 7, 11, 0.86); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-shell { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; min-width: max-content; padding: .46rem .62rem; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 14px 38px rgba(0,0,0,.25); }
.brand:hover { color: inherit; transform: translateY(-1px); }
.brand-logo { width: clamp(184px, 18vw, 252px); height: auto; max-height: 66px; object-fit: contain; filter: none; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: .2rem; }
.nav-item { color: var(--muted); padding: .65rem .75rem; border-radius: 999px; font-size: .91rem; font-weight: 700; white-space: nowrap; }
.nav-item:hover, .nav-item.is-active { color: white; background: rgba(255,255,255,0.07); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; display: flex; align-items: center; gap: .25rem; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary > a { color: inherit; }
.dropdown-panel { position: absolute; left: 50%; top: calc(100% + .75rem); transform: translateX(-50%); width: min(88vw, 360px); display: grid; gap: .25rem; padding: .8rem; border: 1px solid var(--line); background: rgba(10, 15, 23, .98); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.dropdown-panel a { color: var(--muted); padding: .7rem .8rem; border-radius: .8rem; }
.dropdown-panel a:hover, .dropdown-panel a[aria-current="page"] { background: rgba(214,64,55,.16); color: white; }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.phone-chip { color: white; font-weight: 800; font-size: .9rem; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: .9rem; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: white; margin: 4px auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 44px; padding: .72rem 1.05rem; border-radius: 999px; border: 1px solid transparent; font-weight: 900; line-height: 1; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #a91e18); color: white; box-shadow: 0 16px 40px rgba(214,64,55,.24); }
.btn-primary:hover { color: white; background: linear-gradient(135deg, var(--red-2), var(--red)); }
.btn-ghost { border-color: var(--line); color: white; background: rgba(255,255,255,.045); }
.btn-ghost:hover { background: rgba(255,255,255,.085); }
.btn-large { min-height: 52px; padding-inline: 1.25rem; }
.btn-sm { min-height: 38px; padding: .55rem .85rem; font-size: .88rem; }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(214,64,55,.9), transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.2rem; padding: clamp(3rem, 7vw, 7rem) 0; align-items: center; }
.hero-home .hero-grid { min-height: 680px; }
.hero-copy h1 { margin: .4rem 0 1rem; font-size: clamp(2.65rem, 8vw, 6.4rem); line-height: .9; letter-spacing: -.06em; max-width: 900px; }
.hero-internal .hero-copy h1 { font-size: clamp(2.4rem, 7vw, 4.9rem); }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .18em; font-weight: 950; font-size: .78rem; margin: 0 0 .85rem; }
.hero-kicker { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 760px; margin: 0 0 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.3rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem; color: var(--steel); }
.trust-row span { padding: .45rem .7rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); font-size: .86rem; font-weight: 800; }
.hero-media { position: relative; border-radius: calc(var(--radius) + 8px); overflow: hidden; min-height: 360px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: var(--shadow); isolation: isolate; transform: translateZ(0); }
.hero-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(97,183,255,.20), transparent 22rem), linear-gradient(180deg, rgba(5,7,11,.03), rgba(5,7,11,.52)); z-index: 1; pointer-events: none; }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(115deg, transparent 0%, transparent 44%, rgba(255,255,255,.15) 48%, transparent 52%, transparent 100%); transform: translateX(-70%); transition: transform .7s ease; }
.hero-media:hover::after { transform: translateX(70%); }
.hero-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; filter: saturate(1.04) contrast(1.05); }
.hero-badge { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; background: rgba(5,7,11,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; padding: .85rem 1rem; backdrop-filter: blur(12px); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.hero-badge strong { display: block; font-size: 1.35rem; }
.hero-badge span { color: var(--muted); font-size: .83rem; }

.breadcrumbs { padding-top: 1.1rem; font-size: .88rem; color: var(--muted-2); }
.breadcrumbs ol { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: rgba(255,255,255,.3); }
.breadcrumbs a { color: var(--muted); }

.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading h2, .copy-block h2, .cta-inner h2, .tool-panel h2, .quote-intro h2 { margin: 0 0 .75rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -.04em; }
.section-heading p, .copy-block p, .tool-panel p, .quote-intro p { color: var(--muted); }
.copy-block { padding: clamp(1.2rem, 3vw, 2.1rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); margin-bottom: 1.25rem; box-shadow: 0 20px 70px rgba(0,0,0,.18); }
.copy-block h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.copy-block p { font-size: 1.02rem; }
.copy-block p:last-child { margin-bottom: 0; }

.card-grid, .product-grid, .industry-grid, .case-grid, .testimonial-grid, .download-grid, .gallery-grid { display: grid; gap: 1rem; }
.card-grid, .product-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.product-card, .resource-card, .industry-card, .case-card, .testimonial, .download-card, .contact-card, .faq { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032)); border-radius: var(--radius); box-shadow: 0 22px 80px rgba(0,0,0,.18); }
.product-card, .resource-card { position: relative; overflow: hidden; padding: .85rem; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.product-card::before, .resource-card::before { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(circle at 25% 0%, rgba(214,64,55,.22), transparent 18rem); transition: opacity .22s ease; }
.product-card:hover, .resource-card:hover { transform: translateY(-6px); border-color: rgba(214,64,55,.55); background: rgba(255,255,255,.07); }
.product-card:hover::before, .resource-card:hover::before { opacity: 1; }
.photo-wrap { position: relative; overflow: hidden; border-radius: calc(var(--radius) - 8px); background: #080c12; border: 1px solid rgba(255,255,255,.1); }
.photo-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(5,7,11,.48)); }
.card-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: calc(var(--radius) - 8px); background: var(--surface); transition: transform .3s ease; }
.product-card:hover .card-img, .resource-card:hover .card-img { transform: scale(1.045); }
.product-card h3, .resource-card h3 { margin: 1rem .35rem .35rem; font-size: 1.18rem; }
.product-card p, .resource-card p { margin: 0 .35rem .75rem; color: var(--muted); }
.card-arrow { position: absolute; top: 1.2rem; right: 1.2rem; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: rgba(5,7,11,.78); border: 1px solid rgba(255,255,255,.18); }

.industry-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.industry-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 32%); gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.industry-card { padding: 1.4rem; scroll-snap-align: start; }
.industry-card h3 { margin: .35rem 0 .5rem; }
.industry-card p { color: var(--muted); margin: 0; }
.industry-icon { color: var(--red-2); }

.tool-panel { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: center; border: 1px solid rgba(214,64,55,.24); border-radius: calc(var(--radius) + 6px); padding: clamp(1.2rem, 3vw, 2rem); background: linear-gradient(135deg, rgba(214,64,55,.13), rgba(97,183,255,.08)); box-shadow: var(--shadow); }
.selector-ui { display: grid; gap: .9rem; }
label { color: var(--steel); font-weight: 800; }
input, select, textarea { width: 100%; margin-top: .35rem; color: var(--text); background: #090e15; border: 1px solid rgba(255,255,255,.16); border-radius: .85rem; padding: .85rem .95rem; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: #7c8798; }
.recommendation { display: grid; gap: .25rem; padding: 1rem; border: 1px solid rgba(97,183,255,.25); border-radius: var(--radius-sm); background: rgba(97,183,255,.08); }
.recommendation span { color: white; }

.estimator { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; align-items: end; padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.estimate-output { min-height: 58px; display: grid; place-items: center; padding: 1rem; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(214,64,55,.18), rgba(97,183,255,.12)); color: white; font-weight: 950; text-align: center; }

.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.gallery-item { position: relative; border: 0; padding: 0; background: transparent; border-radius: var(--radius); overflow: hidden; }
.gallery-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); transition: transform .25s ease, filter .25s ease; filter: contrast(1.03) saturate(1.04); background: #090e15; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-item span { position: absolute; right: .8rem; bottom: .8rem; padding: .4rem .7rem; border-radius: 999px; background: rgba(0,0,0,.72); color: white; font-weight: 800; font-size: .85rem; }
.image-modal { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.88); display: grid; place-items: center; padding: 2rem; }
.image-modal[hidden] { display: none; }
.image-modal img { max-height: 82vh; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.modal-close { position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.1); color: white; font-size: 2rem; }

.faq-list { display: grid; gap: .8rem; }
.faq { padding: 1rem 1.15rem; }
.faq summary { font-weight: 900; cursor: pointer; }
.faq p { color: var(--muted); margin-bottom: 0; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.filter-bar button { border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.04); border-radius: 999px; padding: .6rem .9rem; font-weight: 800; }
.filter-bar button.is-active, .filter-bar button:hover { background: rgba(214,64,55,.18); color: white; border-color: rgba(214,64,55,.45); }
.case-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.case-card { overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.case-card:hover { transform: translateY(-5px); border-color: rgba(97,183,255,.42); }
.case-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: contrast(1.04) saturate(1.04); }
.case-card > div { padding: 1.15rem; }
.case-card p, .case-card li { color: var(--muted); }
.case-card ul { padding-left: 1.1rem; }
.pill { display: inline-flex; padding: .35rem .55rem; border-radius: 999px; background: rgba(214,64,55,.18); color: white; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.testimonial { padding: 1.5rem; margin: 0; }
.testimonial blockquote { margin: 0 0 1rem; color: var(--steel); font-size: 1.05rem; }
.testimonial figcaption { color: var(--blue); font-weight: 900; }
.proof-card span { color: var(--red-2); font-size: 1.25rem; }
.proof-card h3 { margin: .5rem 0 .55rem; }
.proof-card p { color: var(--muted); margin: 0; }
.download-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.download-card { padding: 1.3rem; transition: transform .2s ease, border-color .2s ease; }
.download-card:hover { transform: translateY(-4px); border-color: rgba(97,183,255,.45); }
.download-card span { color: var(--gold); font-size: 1.4rem; }
.download-card p { color: var(--muted); }
.text-link { color: var(--blue); font-weight: 900; margin: .35rem; display: inline-block; }

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: step; }
.timeline li { padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.timeline span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 999px; background: var(--red); font-weight: 950; margin-bottom: 1rem; }
.timeline p { color: var(--muted); }

.quote-layout { display: grid; gap: 1.5rem; align-items: start; }
.quote-intro { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.quote-photo { margin: 1.25rem 0 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: #080c12; }
.quote-photo-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.quote-photo figcaption { padding: .75rem .9rem; color: var(--muted); font-size: .86rem; }
.check-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.check-list li { color: var(--steel); }
.check-list li::before { content: "✓"; color: var(--red-2); margin-right: .55rem; font-weight: 950; }
.quote-form { border: 1px solid rgba(255,255,255,.16); border-radius: calc(var(--radius) + 6px); padding: clamp(1rem, 3vw, 1.5rem); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.span-2 { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.file-upload { display: grid; padding: 1rem; border: 1px dashed rgba(97,183,255,.38); border-radius: var(--radius-sm); background: rgba(97,183,255,.06); }
.file-upload input { margin-top: .7rem; }
.file-upload span { color: var(--muted); font-weight: 700; margin-top: .55rem; }
.checkbox { display: flex; align-items: flex-start; gap: .75rem; }
.checkbox input { width: auto; margin: .25rem 0 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.1rem; }
.form-note { color: var(--muted); }
.form-note a { color: var(--blue); font-weight: 900; }

.contact-cards { display: grid; gap: 1rem; }
.contact-card { padding: 1.5rem; }
.contact-card address { color: var(--muted); font-style: normal; }
.contact-card a { color: var(--blue); font-weight: 900; }
.map-frame { min-height: 360px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.25) contrast(1.05); }

.cta-band { padding: clamp(2.5rem, 6vw, 4rem) 0; background: linear-gradient(135deg, rgba(214,64,55,.18), rgba(97,183,255,.1)); border-top: 1px solid rgba(214,64,55,.24); }
.cta-inner { display: grid; gap: 1.25rem; align-items: center; }
.cta-inner h2 { max-width: 760px; }
.cta-inner p { color: var(--muted); margin: 0; max-width: 760px; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.flash { padding: .85rem 0; }
.flash-success { background: rgba(29, 185, 84, .16); border-bottom: 1px solid rgba(29,185,84,.3); }
.flash-error { background: rgba(214,64,55,.16); border-bottom: 1px solid rgba(214,64,55,.3); }
.flash p { margin: .2rem 0; font-weight: 800; }

.site-footer { background: #020407; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; gap: 2rem; }
.footer-logo { width: min(280px, 82vw); height: auto; margin-bottom: 1rem; padding: .75rem; border-radius: 18px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 18px 48px rgba(0,0,0,.24); }
.footer-brand h2 { margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-links a, .site-footer a { color: var(--muted); }
.footer-links a:hover, .site-footer a:hover { color: white; }
.site-footer address { font-style: normal; color: var(--muted); }
.cert-note { padding: .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); background: rgba(255,255,255,.04); font-size: .9rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; color: var(--muted-2); border-top: 1px solid var(--line); margin-top: 2.5rem; padding: 1.2rem 0; font-size: .9rem; }

.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2000; display: none; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { color: var(--muted); margin: 0; }
.cookie-banner div { display: flex; gap: .5rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
[data-tilt-card] { transform-style: preserve-3d; }
[data-portfolio] [hidden] { display: none !important; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); }
  .hero-media, .hero-img { min-height: 520px; }
  .tool-panel { grid-template-columns: 1fr minmax(300px, 420px); }
  .quote-layout { grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: minmax(260px, .55fr) 1fr; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr 1.1fr; }
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 117px 1rem auto 1rem; display: none; max-height: calc(100vh - 140px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.98); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .nav-item { width: 100%; border-radius: .9rem; }
  .nav-dropdown summary { justify-content: space-between; }
  .dropdown-panel { position: static; transform: none; width: 100%; box-shadow: none; margin-top: .5rem; }
  .header-actions { display: none; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 1.1rem, var(--container)); }
  .hide-sm { display: none; }
  .top-strip-inner { justify-content: center; flex-wrap: wrap; padding: .35rem 0; }
  .brand-logo { width: min(74vw, 230px); max-height: 58px; }
  .hero-home .hero-grid { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .industry-track { grid-auto-columns: 86%; }
  .cookie-banner { grid-template-columns: 1fr; }
}

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

/* === Real-image visual upgrade: current Superior product photography === */
.photo-story {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(180deg, rgba(5,7,11,.88), rgba(11,16,24,.95)),
    radial-gradient(circle at 16% 30%, rgba(214,64,55,.18), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(97,183,255,.12), transparent 22rem);
  border-bottom: 1px solid var(--line);
}
.photo-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background: linear-gradient(90deg, transparent, rgba(214,64,55,.36), transparent);
  height: 1px;
}
.photo-story-head { max-width: 860px; margin-bottom: 1.6rem; }
.photo-story-head h2 { margin: 0 0 .75rem; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1; letter-spacing: -.045em; }
.photo-story-head p:last-child { color: var(--muted); max-width: 760px; }
.photo-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.photo-story-card {
  position: relative;
  margin: 0;
  min-height: 325px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: #070b11;
  box-shadow: 0 26px 80px rgba(0,0,0,.34);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.photo-story-card:nth-child(1) { grid-column: span 2; }
.photo-story-card:hover { transform: translateY(-6px); border-color: rgba(214,64,55,.55); box-shadow: 0 32px 98px rgba(0,0,0,.48); }
.photo-story-img { width: 100%; height: 100%; min-height: 325px; object-fit: cover; filter: saturate(1.04) contrast(1.06); }
.photo-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.86));
  pointer-events: none;
}
.photo-story-card figcaption {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .85rem;
}
.photo-story-card figcaption strong { color: #fff; font-size: 1.05rem; line-height: 1.1; }
.photo-story-card figcaption span { color: var(--steel); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; text-align: right; }
.product-card .photo-wrap,
.resource-card .card-img,
.gallery-item,
.case-card { box-shadow: 0 18px 58px rgba(0,0,0,.22); }
.product-card .photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.35));
}
.case-card .case-img { min-height: 210px; }
@media (max-width: 980px) {
  .photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-story-card:nth-child(1) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-story-card, .photo-story-img { min-height: 270px; }
  .photo-story-card figcaption { align-items: start; flex-direction: column; }
  .photo-story-card figcaption span { text-align: left; }
}

/* === Refinement pass: image placement, header polish, and production-ready public details === */
:root { --container: 1340px; }

.btn,
.phone-chip,
.header-actions a,
.nav-item { white-space: nowrap; }
.btn { text-align: center; }
.header-actions { flex-shrink: 0; min-width: max-content; }
.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  line-height: 1;
  letter-spacing: -.01em;
}
.header-actions .btn-sm { min-width: 128px; padding-inline: 1rem; }
.brand { padding: .38rem .48rem; border-radius: 15px; }
.brand-logo { width: clamp(178px, 15.2vw, 230px); max-height: 58px; }
.nav-shell { min-height: 72px; gap: .85rem; }
.primary-nav { gap: .06rem; }
.nav-item { padding-inline: .64rem; font-size: .9rem; }
.top-strip-inner { min-height: 34px; }

.hero-grid { gap: clamp(2rem, 5vw, 4rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; }
.hero-media { display: grid; place-items: center; }
.hero-media::before {
  background:
    radial-gradient(circle at 70% 20%, rgba(97,183,255,.12), transparent 22rem),
    linear-gradient(180deg, rgba(5,7,11,.02), rgba(5,7,11,.36));
}
.hero-home .hero-grid { min-height: 640px; }
.hero-home .hero-media {
  aspect-ratio: 1400 / 960;
  min-height: 0;
  align-self: center;
}
.hero-home .hero-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: clamp(.35rem, .9vw, .75rem);
}
.hero-internal .hero-media {
  aspect-ratio: 16 / 10;
  min-height: 0;
}
.hero-internal .hero-img {
  height: 100%;
  min-height: 0;
}
.hero-badge { max-width: min(220px, calc(100% - 2rem)); }

.img-fit-contain { object-fit: contain !important; }
.img-focus-center { object-position: center center; }
.img-focus-right-center { object-position: 62% 50%; }
.img-focus-center-top { object-position: 50% 30%; }
.img-focus-center-lower { object-position: 50% 62%; }
.img-focus-left-center { object-position: 36% 50%; }

.card-img,
.case-img,
.gallery-img,
.quote-photo-img,
.photo-story-img {
  object-position: var(--image-x, 50%) var(--image-y, 50%);
}
.photo-wrap,
.resource-card .card-img,
.gallery-item,
.case-img,
.quote-photo-img {
  background: #090e15;
}
.product-card .card-img { min-height: 190px; }
.product-card h3 { line-height: 1.08; }
.product-card p { font-size: .96rem; }
.photo-story-card { min-height: 300px; }
.photo-story-img { min-height: 300px; }
.photo-story-card:nth-child(1) .photo-story-img { object-position: 52% 58%; }
.photo-story-card:nth-child(2) .photo-story-img { object-position: 62% 50%; }
.photo-story-card:nth-child(3) .photo-story-img { object-position: 50% 50%; }
.photo-story-card:nth-child(4) .photo-story-img { object-position: 50% 50%; }

.copy-block { width: 100%; }
.content-sections .narrow { max-width: 980px; }
.copy-block h2 { text-wrap: balance; }
.section-heading h2,
.hero-copy h1,
.cta-inner h2,
.quote-intro h2 { text-wrap: balance; }

.quote-intro p,
.copy-block p,
.case-card p,
.download-card p,
.product-card p,
.industry-card p { color: #c4ccd8; }
.quote-photo-img { object-position: 50% 47%; }
.form-note { max-width: 56ch; }
.cert-note strong { color: var(--steel); }
.footer-bottom p:last-child { max-width: 680px; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr); }
}

@media (max-width: 1240px) {
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: block; }
  .primary-nav { position: fixed; inset: 108px 1rem auto 1rem; display: none; max-height: calc(100vh - 130px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,7,11,.98); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .nav-item { width: 100%; border-radius: .9rem; white-space: normal; }
  .nav-dropdown summary { justify-content: space-between; }
  .dropdown-panel { position: static; transform: none; width: 100%; box-shadow: none; margin-top: .5rem; }
  .header-actions { display: none; }
}

@media (max-width: 760px) {
  .top-strip a { white-space: nowrap; }
  .brand { max-width: calc(100vw - 6rem); }
  .nav-shell { min-height: 78px; }
  .primary-nav { inset: 112px 1rem auto 1rem; }
  .hero-grid { padding: clamp(2.25rem, 9vw, 4rem) 0; gap: 2rem; }
  .hero-home .hero-grid { min-height: auto; }
  .hero-home .hero-media,
  .hero-internal .hero-media { aspect-ratio: 16 / 11; }
  .hero-copy h1 { letter-spacing: -.055em; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: auto; }
  .trust-row span { font-size: .84rem; }
  .photo-story-card,
  .photo-story-img { min-height: 250px; }
  .product-card .card-img { min-height: 180px; }
  .cta-actions .btn { flex: 1 1 100%; }
  .footer-logo { width: min(240px, 78vw); }
}

@media (max-width: 420px) {
  .top-strip-inner { justify-content: space-between; gap: .55rem; }
  .top-strip-inner span:first-child { max-width: 20ch; line-height: 1.15; }
  .brand-logo { width: min(61vw, 205px); }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .hero-kicker { font-size: 1.05rem; }
  .hero-actions { gap: .65rem; }
  .hero-badge { right: .75rem; bottom: .75rem; padding: .7rem .85rem; }
  .hero-badge strong { font-size: 1.15rem; }
  .section-heading h2,
  .photo-story-head h2 { font-size: clamp(1.85rem, 10vw, 2.55rem); }
}

/* Desktop photo strip: keep the hero product gallery balanced on one row. */
@media (min-width: 981px) {
  .photo-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .photo-story-card:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 420px) {
  .top-strip-inner span:first-child {
    max-width: none;
    white-space: nowrap;
    font-size: .78rem;
    letter-spacing: -.01em;
  }
  .top-strip-inner a { font-size: .82rem; }
}

/* === Final production QA pass: phone wrapping, real product thumbnails, image integrity === */
img { max-width: 100%; height: auto; display: block; }

/* The phone number uses non-breaking characters in PHP; these rules make the layout impossible to split. */
.top-strip-inner { flex-wrap: nowrap; }
.top-strip a,
.phone-chip,
.header-actions a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 154px;
  padding-inline: 1.02rem;
  line-height: 1;
  letter-spacing: -.01em;
  text-align: center;
}
.header-actions { min-width: max-content; flex: 0 0 auto; gap: .6rem; }
.header-actions .btn-sm { flex: 0 0 auto; min-width: 130px; }
.nav-shell { grid-template-columns: auto minmax(0, 1fr) auto; }
.primary-nav { min-width: 0; }

/* Make focal-point utility classes work with the later component rules by using CSS variables. */
.img-focus-center { --image-x: 50%; --image-y: 50%; }
.img-focus-right-center { --image-x: 62%; --image-y: 50%; }
.img-focus-center-top { --image-x: 50%; --image-y: 30%; }
.img-focus-center-lower { --image-x: 50%; --image-y: 62%; }
.img-focus-left-center { --image-x: 36%; --image-y: 50%; }
.img-fit-contain { object-fit: contain !important; }

/* Product family cards: larger, intentional, full-subject thumbnails instead of narrow crop slivers. */
.product-grid {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: .95rem;
}
.product-card .photo-wrap {
  aspect-ratio: 3 / 2;
  min-height: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 18%, rgba(214,64,55,.18), transparent 20rem),
    radial-gradient(circle at 80% 10%, rgba(97,183,255,.14), transparent 18rem),
    #070b11;
}
.product-card .card-img {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: var(--image-x, 50%) var(--image-y, 50%);
  border-radius: 20px;
  padding: 0;
}
.product-card h3 { margin-top: 1rem; font-size: clamp(1.14rem, 1.35vw, 1.34rem); line-height: 1.08; }
.product-card p { margin-top: .45rem; margin-bottom: 0; }
.product-card .card-arrow { top: 1.35rem; right: 1.35rem; }

/* Fix fixed-height HTML image attributes everywhere an image is meant to fill a framed component. */
.gallery-item { aspect-ratio: 3 / 2; }
.gallery-img,
.case-img,
.photo-story-img,
.hero-img {
  object-position: var(--image-x, 50%) var(--image-y, 50%);
}
.gallery-img {
  height: 100% !important;
  min-height: 0 !important;
}
.case-img {
  height: clamp(210px, 19vw, 285px) !important;
  min-height: 0 !important;
}
.quote-photo-img {
  height: auto !important;
  aspect-ratio: 16 / 10;
}

@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1241px) and (max-width: 1410px) {
  .brand-logo { width: clamp(174px, 14vw, 204px); }
  .nav-item { font-size: .84rem; padding-inline: .5rem; }
  .phone-chip { min-width: 148px; font-size: .86rem; padding-inline: .86rem; }
  .header-actions .btn-sm { min-width: 120px; padding-inline: .85rem; }
  .nav-shell { gap: .65rem; }
}
@media (max-width: 520px) {
  .top-strip-inner { gap: .45rem; }
  .top-strip a { font-size: .82rem; }
  .product-card .photo-wrap { border-radius: 17px; }
  .product-card .card-img { border-radius: 17px; }
}
@media (max-width: 360px) {
  .top-strip-inner span:first-child { font-size: .72rem; }
  .top-strip a { font-size: .78rem; }
}

/* === Critical visual QA pass: image integrity, product-card polish, and no-wrap phone CTAs === */
img { max-width: 100%; height: auto; display: block; }

.top-strip-inner { flex-wrap: nowrap; overflow: hidden; }
.top-strip-inner span,
.top-strip-inner a { min-width: 0; }
.top-strip-inner span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-strip a,
.phone-chip,
.phone-cta,
.cta-actions .btn,
.header-actions .btn { white-space: nowrap !important; word-break: keep-all !important; overflow-wrap: normal !important; }
.phone-chip {
  flex: 0 0 auto;
  min-width: 10.25rem;
  padding-inline: 1.05rem;
  text-align: center;
}
.header-actions { flex: 0 0 auto; }

/* Product family cards: show the actual tool/photo instead of an accidental tall crop. */
.product-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.35rem);
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(.9rem, 1.4vw, 1.1rem);
}
.product-card .photo-wrap {
  aspect-ratio: 70 / 46;
  width: 100%;
  height: auto;
  min-height: 0;
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(135deg, #070b11, #111925);
}
.product-card .photo-wrap::after {
  background: linear-gradient(180deg, transparent 68%, rgba(5,7,11,.18));
}
.product-card .card-img {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.03);
}
.product-card h3 { margin-top: 1.05rem; font-size: clamp(1.18rem, 1.45vw, 1.38rem); }
.product-card p { margin-bottom: .2rem; max-width: 58ch; }
.card-arrow { top: 1.45rem; right: 1.45rem; }

.resource-card .card-img,
.gallery-img,
.case-img,
.quote-photo-img {
  height: auto;
  min-height: 0 !important;
}
.resource-card .card-img { aspect-ratio: 16 / 10; object-fit: cover; }
.gallery-item { aspect-ratio: 16 / 10; }
.gallery-img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.case-img { aspect-ratio: 16 / 9; object-fit: cover; }
.quote-photo-img { aspect-ratio: 16 / 10; object-fit: cover; }
.hero-img { height: 100%; }
.photo-story-card { height: clamp(280px, 23vw, 350px); min-height: 0; }
.photo-story-img { height: 100%; min-height: 0; }
.image-modal img { width: auto; height: auto; max-width: 92vw; max-height: 82vh; }

.cookie-banner {
  left: auto;
  width: min(620px, calc(100vw - 2rem));
  grid-template-columns: 1fr auto;
}

@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1241px) and (max-width: 1320px) {
  .brand-logo { width: 198px; }
  .nav-item { padding-inline: .54rem; font-size: .86rem; }
  .header-actions .btn-sm { min-width: 118px; padding-inline: .86rem; }
  .phone-chip { min-width: 9.7rem; padding-inline: .85rem; font-size: .86rem; }
}

@media (max-width: 760px) {
  .cookie-banner { grid-template-columns: 1fr; }
  .top-strip-inner { gap: .7rem; }
  .top-strip a { flex: 0 0 auto; }
  .product-card .photo-wrap { aspect-ratio: 4 / 3; }
}

@media (max-width: 420px) {
  .top-strip-inner span:first-child { max-width: calc(100vw - 142px); }
  .top-strip a { font-size: .78rem; }
}

section,
[id] { scroll-margin-top: 126px; }

/* === VISUAL QA PASS 3: no-crop product family system + desktop header lockup ===
   This section intentionally uses new class names so older product-card CSS cannot
   force portrait crops. Product images are contained, not cropped. */
.product-family-section { overflow: clip; }
.product-family-heading { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.product-family-layout { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important; gap: clamp(1rem, 1.8vw, 1.4rem) !important; }
.product-family-tile {
  position: relative;
  isolation: isolate;
  min-width: 0;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.product-family-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 18% 0%, rgba(214,64,55,.22), transparent 17rem);
  transition: opacity .22s ease;
}
.product-family-tile:hover,
.product-family-tile:focus-visible { transform: translateY(-6px); border-color: rgba(214,64,55,.52) !important; }
.product-family-tile:hover::before,
.product-family-tile:focus-visible::before { opacity: 1; }
.product-family-visual {
  min-height: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 58px rgba(0,0,0,.22);
}
.product-family-img {
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: contrast(1.05) saturate(1.04);
  transform-origin: center center;
  transition: transform .25s ease, filter .25s ease;
}
.product-family-tile:hover .product-family-img { transform: scale(1.025); filter: contrast(1.08) saturate(1.06); }
.product-family-body { min-width: 0; }
.product-family-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .35rem;
  color: var(--red-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
}
.product-family-index::after {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: rgba(214,64,55,.55);
}
.product-family-body h3 {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.14rem, 1.45vw, 1.38rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.product-family-body h3 span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(5,7,11,.72);
  color: var(--steel);
  font-size: 1rem;
}
.product-family-body p { margin: 0; color: var(--muted); line-height: 1.55; }

/* Header: keep phone and quote CTAs as one-line actions; hide the extra call CTA before it can squeeze the nav. */
.header-actions,
.header-call,
.header-call span,
.header-quote,
.top-strip a[href^="tel:"] {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}
.header-actions { min-width: max-content; flex: 0 0 auto; gap: .72rem; }
.header-call { font-size: clamp(.82rem, .82vw, .92rem); }
.header-quote { padding-inline: 1.05rem !important; }
.nav-shell { grid-template-columns: auto minmax(0, 1fr) auto; }
.primary-nav { min-width: 0; }
@media (min-width: 1321px) {
  .nav-shell { gap: clamp(.75rem, 1.1vw, 1.25rem); }
}
@media (max-width: 1480px) {
  .brand-logo { width: clamp(190px, 14vw, 224px); }
  .nav-item { padding-inline: .55rem; font-size: .86rem; }
  .header-call { padding-inline: .78rem !important; font-size: .82rem; }
  .header-quote { padding-inline: .86rem !important; }
}
@media (max-width: 1360px) {
  .header-call { display: none !important; }
  .brand-logo { width: clamp(184px, 16vw, 216px); }
}
@media (max-width: 1120px) {
  .primary-nav { justify-content: flex-start; }
}
@media (max-width: 980px) {
  .product-family-layout { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .product-family-visual { aspect-ratio: 4 / 3 !important; }
}
@media (max-width: 640px) {
  .product-family-layout { grid-template-columns: 1fr !important; }
  .product-family-tile { border-radius: 20px !important; }
  .product-family-visual { border-radius: 16px !important; padding: .55rem !important; }
  .product-family-body h3 { font-size: 1.18rem; }
}
