/* ==========================================================================
   supertran — site stylesheet

   Contents
   1.  Fonts
   2.  Design tokens
   3.  Reset
   4.  Base elements
   5.  Layout & shared utilities
   6.  Buttons & links
   7.  Icons
   8.  Header, utility bar & navigation
   9.  Footer
   10. Shared page blocks (page hero, breadcrumb, CTA band)
   11. Home page
   12. Equipment catalog & product cards
   13. Product detail pages
   14. Spec table
   15. Accordion
   16. Inquiry form
   17. Contact page
   18. Services page
   19. About page
   20. FAQ page
   21. Insights & articles
   22. Featured stock unit
   23. Legal pages
   24. 404 page
   25. Responsive: ≥1600px, ≤1100px, ≤1000px, ≤760px, ≤380px
   26. Reduced motion
   ========================================================================== */

/* 1. Fonts
   ========================================================================== */
@font-face {
  font-family: Telegraf;
  src: url("../fonts/telegraf-regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Telegraf;
  src: url("../fonts/telegraf-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* 2. Design tokens
   ========================================================================== */
:root {
  --blue: #0366fd;
  --lime: #d1f801;
  --ink: #1f1f1f;
  --border: #d6d9e5;
}
/* Color roles
   Colors below are written as var(--role, original-color). The roles are not
   set here, so the site uses the original colors. A theme (see themes.css)
   restyles the site by setting some or all of these roles:

   Page        --page-bg --text --text-muted --text-subtle --eyebrow --line
               --surface-alt --surface-alt-strong --surface-soft --card --table-hover
   Header      --utility-bg --utility-text --header-bg --header-logo
   Footer      --footer-bg --footer-logo
   Actions     --primary --on-primary        (blue buttons, product arrows)
               --highlight --on-highlight --on-highlight-muted
                                             (lime buttons, industry band, stock callout)
   Accent      --accent --accent-ring --accent-ring-soft   (links, icons, numbers, focus)
   Bands       --band --on-band --on-band-muted --band-glow --band-line
               --band-button --on-band-button            (CTA band, brand statement)
   Dark areas  --dark --on-dark --on-dark-muted --dark-glow --dark-raised --dark-line
   Hero        --hero --hero-shade --hero-shade-mobile --hero-card --banner-shade
   Other       --note-bg --note-text                     (contact page note) */

/* 3. Reset
   ========================================================================== */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
b,
strong {
  font-weight: bolder;
}
ol,
ul {
  list-style: none;
}
img,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  opacity: 1;
}
::placeholder {
  opacity: 1;
  color: color-mix(in oklab, currentcolor 50%, transparent);
}
textarea {
  resize: vertical;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
summary {
  display: list-item;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
::-webkit-date-and-time-value {
  min-height: 1lh;
  text-align: inherit;
}
::-webkit-datetime-edit {
  display: inline-flex;
  padding-block: 0;
}
::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
::-webkit-calendar-picker-indicator {
  line-height: 1;
}
[hidden] {
  display: none !important;
}

/* 4. Base elements
   ========================================================================== */
body {
  background: var(--page-bg, white);
  color: var(--text, var(--ink));
  font-family: Telegraf, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}
h3 {
  font-size: 32px;
}
:focus-visible {
  outline: 3px solid var(--accent, var(--blue));
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--highlight, var(--lime));
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}

/* 5. Layout & shared utilities
   ========================================================================== */
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin: auto;
}
.section {
  padding: 100px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p {
  max-width: 420px;
  font-size: 17px;
  color: var(--text-muted, #66707e);
  line-height: 1.65;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--eyebrow, #5e6672);
}
.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.small-note {
  font-size: 12px;
  color: var(--text-muted, #66707e);
  line-height: 1.6;
  display: block;
}
.body-copy {
  color: var(--text-muted, #66707e);
  font-size: 17px;
  line-height: 1.8;
  margin: 25px 0;
}

/* 6. Buttons & links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 19px 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.small {
  padding: 14px 18px;
  gap: 25px;
}
.btn.outline {
  background: transparent;
  border-color: var(--line, #ccd1dc);
  outline: 1px solid;
}
.btn.outline:focus-visible {
  outline: 3px solid var(--accent, var(--blue));
}
.blue {
  background: var(--primary, var(--blue));
  color: var(--on-primary, white);
}
.lime {
  background: var(--highlight, var(--lime));
  color: var(--on-highlight, var(--ink));
}
.dark {
  background: var(--dark, var(--ink));
  color: var(--on-dark, white);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}
.text-link:hover {
  text-decoration: underline;
}

/* 7. Icons — inline SVGs that reference the sprite at the top of each page
   ========================================================================== */
.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 8. Header, utility bar & navigation
   ========================================================================== */
.utility {
  background: var(--utility-bg, var(--ink));
  color: var(--utility-text, #eceef3);
  font-size: 12px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}
.utility a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.utility b {
  font-weight: 400;
  margin-left: 8px;
}
.header {
  background: var(--header-bg, white);
  color: var(--text, var(--ink));
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line, #e9ebf0);
}
.header .logo {
  filter: var(--header-logo, none);
}
.header-inner {
  display: flex;
  height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  width: 188px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
}
.desktop-nav a {
  padding: 32px 0;
  position: relative;
}
/* Add class="active" to a nav link to underline the current section */
.desktop-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, var(--blue));
}
.mobile-menu {
  display: none;
}
.menu-toggle {
  display: none;
  list-style: none;
}
.menu-toggle::-webkit-details-marker {
  display: none;
}
.menu-close-icon {
  display: none;
}
.mobile-menu[open] .menu-open-icon {
  display: none;
}
.mobile-menu[open] .menu-close-icon {
  display: block;
}
.mobile-nav {
  padding: 0 25px 25px;
  display: grid;
}
.mobile-nav a {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line, var(--border));
}

/* 9. Footer
   ========================================================================== */
.footer {
  background: var(--footer-bg, #f1f2f6);
  color: var(--text, var(--ink));
  padding: 65px 0 22px;
}
.footer .logo {
  filter: var(--footer-logo, none);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 60px;
}
.footer-top p {
  color: var(--text-muted, #66707e);
  font-size: 15px;
  margin-top: 20px;
}
.footer-top .eyebrow {
  display: block;
  margin-bottom: 22px;
}
.footer-top a {
  display: block;
  font-size: 15px;
  margin: 10px 0;
}
.footer-top a:hover {
  color: var(--accent, var(--blue));
}
.footer-top .footer-phone {
  font-size: 23px;
  letter-spacing: -0.04em;
}
.footer-bottom {
  border-top: 1px solid var(--line, #d6d9e5);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted, #66707e);
  font-size: 12px;
}

/* 10. Shared page blocks
   ========================================================================== */
.page-hero {
  padding: 80px 0 70px;
}
.page-hero h1 {
  max-width: 930px;
  font-size: clamp(46px, 5.6vw, 78px);
  margin: 25px 0;
}
.page-hero > p:last-child {
  max-width: 650px;
  color: var(--text-muted, #66707e);
  font-size: 19px;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  color: var(--text-muted, #7a818e);
  font-size: 12px;
  padding: 28px 0;
}
.breadcrumb a {
  color: var(--accent, var(--blue));
}
.cta-band {
  background: var(--band, var(--blue));
  color: var(--on-band, white);
  padding: 72px 0;
}
.cta-band > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-band h2 {
  font-size: clamp(35px, 4vw, 56px);
  max-width: 800px;
  margin: 20px 0;
}
.cta-band .eyebrow {
  color: var(--band-glow, var(--lime));
}
.cta-band p:not(.eyebrow) {
  max-width: 650px;
  color: var(--on-band-muted, #d2e4ff);
  font-size: 17px;
}
.cta-band .btn.lime {
  background: var(--band-button, var(--highlight, var(--lime)));
  color: var(--on-band-button, var(--on-highlight, var(--ink)));
}
.cta-band .btn {
  white-space: nowrap;
}

/* 11. Home page
   ========================================================================== */
/* Hero */
.hero {
  height: 660px;
  min-height: 580px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--hero, #142032);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: -3;
}
/* Full-width photo: darken the left side (behind the text) and the bottom edge
   (behind the captions), leaving the transformer on the right clear */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(
    --hero-shade,
    linear-gradient(
      90deg,
      #142032e6 0%,
      #142032c7 40%,
      #14203259 60%,
      #14203200 78%
    ),
    linear-gradient(0deg, #142032b3 0%, #14203200 30%)
  );
}
.hero-content {
  padding-top: 88px;
}
.hero .eyebrow {
  color: var(--dark-glow, var(--lime));
}
.hero h1 {
  font-size: clamp(58px, 6.9vw, 100px);
  margin: 24px 0;
}
.hero-intro {
  max-width: 470px;
  font-size: 18px;
  color: #d8dde5;
  line-height: 1.65;
}
.hero-caption {
  position: absolute;
  bottom: 34px;
  right: 56px;
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hero-index {
  position: absolute;
  bottom: 34px;
  left: 56px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #aebbd0;
}
/* Hero: lead-time card (floats right on desktop, stacks on phones) */
.hero-leadtimes {
  position: absolute;
  top: 88px;
  right: max(56px, calc((100% - 1320px) / 2));
  width: 330px;
  padding: 26px 28px;
  background: var(--hero-card, #142032b8);
  border: 1px solid #ffffff24;
  backdrop-filter: blur(8px);
}
.hero-leadtimes dl {
  margin-top: 10px;
}
.hero-leadtimes dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ffffff24;
}
.hero-leadtimes dt {
  font-size: 15px;
  color: #d8dde5;
}
.hero-leadtimes dd {
  font-size: 24px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hero-leadtimes > p:last-child {
  margin-top: 14px;
  font-size: 12px;
  color: #aebbd0;
}
/* Metrics strip */
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 40px 0;
  border-bottom: 1px solid var(--line, var(--border));
}
.metrics > div {
  padding-left: 30px;
  border-left: 1px solid var(--line, var(--border));
}
.metrics > div:first-child {
  padding-left: 0;
  border: 0;
}
.metrics strong {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.metrics strong span {
  font-size: 24px;
  letter-spacing: -0.03em;
}
.metrics p {
  color: var(--text-muted, #66707e);
  margin-top: 10px;
  font-size: 14px;
}
/* Equipment / services path cards */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.path-card {
  padding: 38px 42px;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.path-card:hover {
  transform: translateY(-4px);
}
/* The two home cards follow the band and dark-area colors */
.path-card.blue {
  background: var(--band, var(--blue));
  color: var(--on-band, white);
  --card-glow: var(--band-glow, var(--lime));
  --card-line: var(--band-line, #ffffff40);
  --card-line-soft: var(--band-line, #ffffff26);
}
.path-card.dark {
  background: var(--dark, var(--ink));
  color: var(--on-dark, white);
  --card-glow: var(--dark-glow, var(--lime));
  --card-line: var(--dark-line, #ffffff40);
  --card-line-soft: var(--dark-line, #ffffff26);
}
.path-card .eyebrow {
  color: inherit;
  opacity: 0.75;
}
.path-card h3 {
  font-size: 53px;
  margin: 28px 0 20px;
}
.path-card p {
  font-size: 17px;
  max-width: 340px;
  opacity: 0.85;
  line-height: 1.6;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-line, #ffffff40);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 15px;
}
.path-card .card-bottom svg {
  color: var(--card-glow, var(--lime));
}
.path-card .card-bottom {
  margin-top: auto;
}
.path-list {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.5;
}
.path-list li {
  padding: 10px 0;
  border-top: 1px solid var(--card-line-soft, #ffffff26);
  opacity: 0.9;
}
.path-card .path-featured {
  max-width: none;
  margin: 22px 0 32px;
  padding-left: 16px;
  border-left: 3px solid var(--card-glow, var(--lime));
  font-size: 15px;
  opacity: 1;
}
.path-featured span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--card-glow, var(--lime));
}
/* Featured equipment */
.equipment-section {
  background: var(--surface-alt, #f1f2f6);
}
.equipment-section .product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.equipment-section .product-card-copy > div {
  display: block;
}
.equipment-section .product-card-copy > div span {
  display: block;
}
/* Expert split */
.expert-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark, #1f1f1f);
  color: var(--on-dark, white);
}
.expert-image {
  min-height: 600px;
}
.expert-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.expert-copy {
  padding: 80px clamp(40px, 6vw, 100px);
}
.expert-copy .eyebrow {
  color: var(--on-dark-muted, #b4bcc8);
}
.expert-copy h2 {
  margin: 26px 0;
  font-size: clamp(42px, 5.2vw, 72px);
}
.expert-copy h2 span {
  color: var(--dark-glow, var(--lime));
}
.expert-copy > p:last-of-type {
  color: var(--on-dark-muted, #b5becb);
  max-width: 410px;
  font-size: 17px;
  line-height: 1.75;
}
.expert-copy .text-link {
  margin-top: 30px;
  color: var(--on-dark, white);
}
/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-grid > div {
  border-top: 1px solid var(--line, #b5becb);
  padding-top: 20px;
}
.process-grid > div > span {
  color: var(--accent, var(--blue));
  font-size: 14px;
}
.process-grid h3 {
  font-size: 29px;
  margin: 33px 0 15px;
}
.process-grid p {
  font-size: 15px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  max-width: 260px;
}
/* Industries band */
.industry-band {
  padding: 35px 0;
  background: var(--highlight, var(--lime));
  color: var(--on-highlight, var(--ink));
}
.industry-band .wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}
.industry-band .eyebrow {
  font-size: 10px;
  max-width: 100px;
  color: var(--on-highlight-muted, #3b4602);
}
.industry-band .wrap > div {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 18px;
  letter-spacing: -0.03em;
}

/* 12. Equipment catalog & product cards
   ========================================================================== */
.catalog {
  padding-bottom: 95px;
}
.catalog-label {
  border-top: 1px solid var(--line, var(--border));
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted, #66707e);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}
.product-card {
  min-width: 0;
}
.product-image {
  aspect-ratio: 1.13;
  position: relative;
  overflow: hidden;
  background: #e4e6ee;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.045);
}
.product-number {
  position: absolute;
  left: 16px;
  top: 15px;
  color: white;
  font-size: 12px;
  background: #1f1f1f8a;
  padding: 4px 8px;
}
.product-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, var(--blue));
  color: var(--on-primary, #fff);
}
.product-card-copy {
  padding: 23px 0 0;
}
.product-card-copy .eyebrow {
  font-size: 10px;
}
.product-card h3 {
  font-size: 26px;
  margin: 10px 0 17px;
}
.product-card-copy > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line, var(--border));
  padding-top: 13px;
  color: var(--text-muted, #66707e);
  font-size: 14px;
}
.stock-callout {
  margin-top: 60px;
  padding: 32px 36px;
  background: var(--highlight, var(--lime));
  color: var(--on-highlight, var(--ink));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.stock-callout .eyebrow {
  color: var(--on-highlight-muted, #5e6672);
}
.stock-callout h3 {
  font-size: 30px;
  margin: 9px 0;
}
.stock-callout p {
  font-size: 15px;
}
.stock-callout > span {
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
}

/* 13. Product detail pages
   ========================================================================== */
.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 25px 0 65px;
}
.product-hero h1 {
  font-size: clamp(42px, 4.4vw, 66px);
  margin: 20px 0;
}
.product-hero > div > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted, #66707e);
  max-width: 520px;
}
.product-hero-image {
  position: relative;
  aspect-ratio: 1.1;
  background: #eee;
  overflow: hidden;
}
.product-hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-image > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 17px 23px;
  background: #1f1f1fcc;
  color: white;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.product-hero-ratings {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}
.product-hero-ratings > div {
  padding-right: 25px;
  border-right: 1px solid var(--line, var(--border));
  max-width: 50%;
}
.product-hero-ratings > div:last-child {
  border: 0;
  padding: 0;
}
.product-hero-ratings strong {
  font-size: 24px;
  font-weight: 400;
  display: block;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.product-hero-ratings span {
  font-size: 10px;
  letter-spacing: 0.09em;
  color: var(--text-muted, #66707e);
  margin-top: 9px;
  display: block;
}
.anchor-nav {
  border-top: 1px solid var(--line, var(--border));
  border-bottom: 1px solid var(--line, var(--border));
  background: var(--surface-soft, #fafbfc);
}
.anchor-nav > .wrap {
  display: flex;
  gap: 40px;
  padding: 19px 0;
  font-size: 14px;
}
.anchor-nav a:hover {
  color: var(--accent, var(--blue));
}
.product-details {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: start;
}
/* Let wide tables scroll inside their column instead of widening the page */
.product-details > *,
.k-rating-layout > * {
  min-width: 0;
}
.product-details h3 {
  font-size: 30px;
  margin: 15px 0 25px;
}
.product-details .small-note {
  margin-top: 18px;
}
.detail-side h2 {
  font-size: 48px;
  margin: 23px 0;
}
.detail-side > p:not(.eyebrow) {
  font-size: 17px;
  color: var(--text-muted, #66707e);
  line-height: 1.8;
}
.assurance-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  font-size: 14px;
}
.assurance-list span {
  display: flex;
  gap: 12px;
  align-items: center;
}
.assurance-list svg {
  color: var(--accent, var(--blue));
  flex-shrink: 0;
}
.options-section {
  margin-top: 60px;
}

/* Hero: quote button with standards logos */
.product-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 30px;
}
.standards-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--eyebrow, #5e6672);
}
.standards-badges span {
  margin-left: 2px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-muted, #66707e);
}

/* Hero: photo gallery (thumbnails swap the main photo) */
.product-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.product-thumb {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e4e6ee;
  border: 2px solid transparent;
  opacity: 0.7;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}
.product-thumb:hover,
.product-thumb[aria-current="true"] {
  opacity: 1;
}
.product-thumb[aria-current="true"] {
  border-color: var(--accent, var(--blue));
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overview: highlight callout (key numbers + short explanation) */
.callout {
  margin-top: 32px;
  padding: 26px 28px;
  background: var(--surface-alt, #f1f2f6);
}
.callout-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 16px;
}
.callout-stats > div {
  display: grid;
  gap: 2px;
}
.callout-stats span {
  font-size: 12px;
  color: var(--text-muted, #66707e);
}
.callout-stats strong {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-subtle, #8a919b);
}
.callout-stats > div:last-child strong,
.callout-stats.equal strong {
  color: var(--accent, var(--blue));
}
.callout-stats.equal {
  gap: 12px 40px;
}
.callout-stats svg {
  margin-top: 16px;
  color: var(--text-subtle, #8a919b);
}
.callout > p:not(.eyebrow) {
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #66707e);
}
.callout .text-link {
  color: var(--accent, var(--blue));
}

/* Options accordion: standard vs. option tables and feature lists */
.option-table {
  width: 100%;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text, var(--ink));
}
.option-table th {
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--line, var(--border));
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eyebrow, #5e6672);
}
.option-table td {
  width: 50%;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line, #e4e6ee);
  vertical-align: top;
}
.option-table td + td,
.option-table th + th {
  padding-left: 16px;
}
.option-table td + td {
  border-left: 1px solid var(--line, #e4e6ee);
}
.option-table tr:last-child td {
  border-bottom: 0;
}
.option-table td span,
.feature-list li span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted, #66707e);
}
.option-table a {
  color: var(--accent, var(--blue));
  text-decoration: underline;
}
/* Standard features with no alternative */
.option-table td.none {
  color: var(--text-subtle, #b5becb);
}
.feature-list {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text, var(--ink));
}
.feature-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line, #e4e6ee);
}
.feature-list li:first-child {
  padding-top: 0;
}
.feature-list li:last-child {
  border-bottom: 0;
}

/* K rating reference */
.k-rating {
  background: var(--surface-alt, #f1f2f6);
  padding: 90px 0;
}
.k-rating-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: start;
}
.k-rating h2 {
  font-size: 48px;
  margin: 23px 0;
}
.k-rating-layout > div > p:not(.eyebrow):not(.small-note) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted, #66707e);
}
.k-rating .small-note {
  margin: 20px 0 28px;
}
.k-rating .text-link {
  color: var(--accent, var(--blue));
}
.k-rating .spec-table th {
  background: var(--surface-alt-strong, #e1e4eb);
}
.k-rating .spec-table .table-group th {
  padding-top: 22px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text, var(--ink));
}

/* 14. Spec table
   ========================================================================== */
.table-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
.spec-table {
  width: 100%;
  caption-side: bottom;
  font-size: 14px;
  line-height: 1.4286;
}
.spec-table tr {
  border-bottom: 1px solid;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.spec-table tbody tr:last-child {
  border-bottom: 0;
}
.spec-table th {
  height: 40px;
  padding: 13px 16px;
  text-align: left;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-muted, #66707e);
  background: var(--surface-alt, #f1f2f6);
}
.spec-table td {
  padding: 17px 16px;
  vertical-align: top;
  line-height: 1.6;
}
.spec-table td:first-child {
  color: var(--text-muted, #66707e);
  width: 42%;
}
/* Multi-column ratings (e.g. breakers by voltage class) */
.ratings-table td,
.ratings-table th {
  white-space: nowrap;
}
.ratings-table td:first-child {
  width: auto;
  color: var(--text, var(--ink));
}
@media (hover: hover) {
  .spec-table tr:hover {
    background-color: var(--table-hover, #f1f2f680);
  }
}

/* 15. Accordion — <details> elements enhanced by main.js (one open at a time)
   ========================================================================== */
.accordion-item {
  border-bottom: 1px solid;
}
.accordion-item:last-child {
  border-bottom: 0;
}
.accordion-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 17px;
  line-height: 1.04;
  letter-spacing: -1.44px;
  text-align: left;
  list-style: none;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-trigger::-webkit-details-marker {
  display: none;
}
.accordion-trigger:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-ring, #0366fd80);
}
@media (hover: hover) {
  .accordion-trigger:hover {
    text-decoration: underline;
  }
}
.accordion-icon {
  flex-shrink: 0;
  translate: 0 2px;
  color: var(--text-muted, #646b77);
  pointer-events: none;
  transition: rotate 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item[open] > .accordion-trigger .accordion-icon {
  rotate: 180deg;
}
.accordion-item.is-closing > .accordion-trigger .accordion-icon {
  rotate: 0deg;
}
.accordion-content {
  overflow: hidden;
  font-size: 16px;
  color: var(--text-muted, #66707e);
  line-height: 1.8;
}
.accordion-content > div {
  padding: 0 20px 24px 0;
}
/* Accordions on product pages sit inside .product-details, which spaces them like its sub-headings */
.product-details .accordion-trigger {
  margin: 15px 0 25px;
  letter-spacing: -1.35px;
}

/* 16. Inquiry form
   ========================================================================== */
.inquiry-section,
.quote-section {
  background: var(--surface-soft, #f7f8fa);
  padding: 90px 0;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 90px;
  align-items: start;
}
.inquiry-copy .eyebrow {
  margin-bottom: 25px;
}
.inquiry-copy > p:not(.eyebrow) {
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  max-width: 360px;
  font-size: 17px;
  margin: 25px 0;
}
.inquiry-copy .text-link {
  display: flex;
  margin-top: 35px;
}
.inquiry-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 27px;
  letter-spacing: -0.03em;
  margin: 35px 0 8px;
}
.inquiry-form {
  background: var(--card, white);
  padding: 38px;
  border: 1px solid var(--line, #e4e6ee);
  box-shadow: 0 10px 45px #1f1f1f03;
}
.form-intro {
  margin-bottom: 30px;
}
.form-intro h3 {
  font-size: 29px;
}
.form-intro p {
  margin-top: 8px;
  color: var(--text-muted, #66707e);
  font-size: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
}
.form-grid > * {
  min-width: 0;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid label,
.form-field > label,
.form-field > .form-label {
  display: block;
  font-size: 14px;
}
.form-grid label > span {
  color: var(--accent, var(--blue));
}
/* Two inputs under one label, e.g. high / low voltage */
.input-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-grid input,
.form-grid textarea,
.form-select {
  width: 100%;
  border: 1px solid var(--line, #d6d9e5);
  background-color: var(--card, #fff);
  padding: 13px 14px;
  margin-top: 9px;
  outline: 0;
  transition: border-color 0.2s;
  line-height: 1.5;
  color: var(--text, #1f1f1f);
  font-size: 15px;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  min-height: 50px;
}
.form-grid textarea {
  resize: vertical;
  min-height: 100px;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-select:focus {
  border-color: var(--accent, var(--blue));
  box-shadow: 0 0 0 2px var(--accent-ring-soft, #0366fd24);
}
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--text-subtle, #8a919b);
}
.form-select {
  display: block;
  appearance: none;
  padding-right: 38px;
  cursor: pointer;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23646b77' stroke-opacity='.5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.form-bottom {
  margin-top: 25px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.form-bottom p {
  font-size: 11px;
  color: var(--text-muted, #77808f);
  max-width: 240px;
  line-height: 1.6;
}
.form-bottom p a {
  text-decoration: underline;
}
.form-bottom .btn {
  white-space: nowrap;
  padding: 15px 20px;
  gap: 20px;
}
.form-bottom button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.honey {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}
.form-error {
  margin-top: 20px;
  background: #fff0ed;
  color: #9f2717;
  border-left: 3px solid #b42318;
  padding: 14px;
  font-size: 14px;
}
.form-error a {
  text-decoration: underline;
}
.form-success {
  background: var(--card, #fff);
  border: 1px solid var(--line, var(--border));
  padding: 45px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}
.form-success > svg {
  color: var(--accent, var(--blue));
}
.form-success h3 {
  font-size: 34px;
}
.form-success p {
  color: var(--text-muted, #66707e);
}
.form-success button {
  border: 0;
  background: none;
  padding: 0;
}

/* 17. Contact page
   ========================================================================== */
.contact-page {
  background: var(--surface-soft, #f5f6f8);
  padding: 80px 0 100px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-copy h1 {
  font-size: clamp(55px, 6vw, 84px);
  margin: 25px 0;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--text-muted, #66707e);
  max-width: 380px;
  line-height: 1.7;
}
.contact-info {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line, var(--border));
}
.contact-info > a {
  font-size: 27px;
  letter-spacing: -0.03em;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 15px 0;
}
.contact-info > p {
  font-size: 14px;
  color: var(--text-muted, #66707e);
  margin-top: 12px;
  line-height: 1.65;
}
.contact-info .address {
  font-size: 19px;
  display: flex;
  gap: 12px;
  color: var(--text, var(--ink));
  line-height: 1.5;
}
.address svg {
  margin-top: 6px;
}
.contact-note {
  padding: 23px;
  background: var(--note-bg, #e5edfc);
  font-size: 14px;
  color: var(--note-text, #385373);
  margin-top: 30px;
  line-height: 1.7;
}

/* 18. Services page
   ========================================================================== */
.service-hero {
  background: var(--dark, #1f1f1f);
  color: var(--on-dark, #fff);
  padding: 75px 0;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 100px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(54px, 6.3vw, 88px);
  margin: 24px 0;
}
.service-hero .eyebrow {
  color: var(--dark-glow, var(--lime));
}
.service-hero-inner > div > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--on-dark-muted, #bbc3ce);
  line-height: 1.7;
  max-width: 600px;
}
.engineer-feature {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 440px;
}
.engineer-feature > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1);
}
.engineer-feature > div {
  border-top: 3px solid var(--dark-glow, var(--lime));
  padding: 24px;
  background: var(--dark-raised, #2c2c2c);
}
.engineer-feature .eyebrow {
  font-size: 10px;
}
.engineer-feature h3 {
  margin: 13px 0 8px;
  font-size: 29px;
}
.engineer-feature p {
  font-size: 14px;
  color: var(--on-dark-muted, #c1c7d0);
}
.engineer-stat {
  font-size: 12px;
  display: block;
  color: var(--on-dark-muted, #a1aaba);
  margin-top: 15px;
}
.service-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-track {
  border: 1px solid var(--line, var(--border));
  padding: 38px;
  position: relative;
}
.track-no {
  position: absolute;
  right: 30px;
  top: 30px;
  color: var(--line, #d6d9e5);
  font-size: 48px;
  letter-spacing: -0.07em;
  line-height: 1;
}
.service-track .eyebrow {
  color: var(--accent, var(--blue));
  margin: 12px 0 30px;
}
.service-track h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.service-track > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  max-width: 420px;
}
.service-track ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  font-size: 14px;
}
.service-track li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line, #e4e6ee);
}
.service-track .text-link {
  color: var(--accent, var(--blue));
}
.consult-section {
  background: var(--surface-alt, #f1f2f6);
  padding: 90px 0;
}
.consult-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.consult-layout h2 {
  margin: 25px 0;
}
.consult-layout > div > p:not(.eyebrow) {
  color: var(--text-muted, #66707e);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 450px;
}
.consult-list > div {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line, #d6d9e5);
}
.consult-list > div > span {
  font-size: 14px;
  color: var(--accent, var(--blue));
}
.consult-list h3 {
  font-size: 28px;
}
.consult-list p {
  font-size: 16px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  margin-top: 12px;
}
.team-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 100px;
  align-items: center;
}
.team-row > img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}
.team-row h2 {
  margin: 23px 0;
}
.team-row p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted, #66707e);
  margin-top: 18px;
  max-width: 530px;
}
.person-label {
  margin-top: 28px;
  border-top: 1px solid var(--line, #d6d9e5);
  padding-top: 20px;
  display: grid;
  gap: 4px;
}
.person-label strong {
  font-weight: 400;
  font-size: 21px;
}
.person-label span {
  font-size: 14px;
  color: var(--text-muted, #66707e);
}
.coverage {
  background: var(--surface-alt, #f1f2f6);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.coverage-grid > div {
  border-top: 1px solid var(--line, #b9c0cc);
  padding-top: 20px;
}
.coverage-grid h3 {
  font-size: 25px;
  margin: 20px 0;
}
.coverage-grid p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #66707e);
}

/* Services: standards logos on the dark hero */
.service-hero .standards-badges {
  margin-top: 36px;
  color: var(--on-dark-muted, #8a919b);
}

/* People: short fact lists (lead engineer card, field specialist) */
.person-facts {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.person-facts li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid var(--line, #e4e6ee);
  color: var(--text-muted, #66707e);
}
.person-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  background: var(--accent, var(--blue));
}
.engineer-feature .person-facts li {
  border-color: var(--dark-line, #ffffff1f);
  color: var(--on-dark-muted, #c1c7d0);
}
.engineer-feature .person-facts li::before {
  background: var(--dark-glow, var(--lime));
}
.team-row .brands-line {
  margin-top: 22px;
  font-size: 14px;
}
.brands-line strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  color: var(--accent, var(--blue));
}

/* Service tracks: each service with a one-line description */
.service-track li {
  color: var(--text, var(--ink));
  font-size: 15px;
}
.service-track li span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted, #66707e);
}
.track-note {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle, #8a919b);
}

/* In-house welding */
.welding-section {
  background: var(--dark, #1f1f1f);
  color: var(--on-dark, white);
  padding: 90px 0;
}
.welding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.welding-section .eyebrow {
  color: var(--dark-glow, var(--lime));
}
.welding-section h2 {
  margin: 25px 0;
}
.welding-section h2 span {
  color: var(--dark-glow, var(--lime));
}
.welding-layout > div > p:not(.eyebrow) {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-dark-muted, #b5becb);
}
.welding-layout > div > .welding-note {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--dark-glow, var(--lime));
  color: var(--on-dark-muted, #d8dde5);
}
.weld-list {
  padding: 30px;
  border: 1px solid var(--dark-line, #ffffff26);
}
.weld-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  margin-top: 12px;
}
.weld-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--dark-line, #ffffff1f);
  font-size: 15px;
}

/* Consulting: key numbers and where the work happens */
.consult-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin-bottom: 32px;
}
.consult-stats div {
  display: grid;
  gap: 2px;
}
.consult-stats strong {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--accent, var(--blue));
}
.consult-stats span {
  font-size: 13px;
  color: var(--text-muted, #66707e);
}
.consult-list .feature-list {
  margin-top: 14px;
}
.consult-list .feature-list li:first-child {
  padding-top: 0;
}
.consult-list .consult-where {
  margin-top: 24px;
  font-size: 14px;
}

/* Service area: tier details tucked behind a toggle */
.coverage-more {
  margin-top: 16px;
}
.coverage-more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--accent, var(--blue));
}
.coverage-more summary::-webkit-details-marker {
  display: none;
}
.coverage-more[open] summary svg {
  rotate: 180deg;
}
.coverage-grid .coverage-more p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.coverage-more p strong {
  display: block;
  font-weight: 400;
  color: var(--text, var(--ink));
}

/* 19. About page
   ========================================================================== */
.about-banner {
  height: 420px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  color: #fff;
}
.about-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--banner-shade, linear-gradient(0deg, #152237e6, #15223700));
  z-index: -1;
}
.about-banner > .wrap {
  padding-bottom: 45px;
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.about-banner span {
  color: #c6d2e6;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about-story h2 {
  font-size: 45px;
  margin-top: 24px;
}
.about-story > div > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-muted, #66707e);
  margin-bottom: 23px;
}
.brand-statement {
  background: var(--band, var(--blue));
  color: var(--on-band, white);
  padding: 90px 0;
}
.brand-statement .eyebrow {
  color: var(--on-band-muted, #b9d4ff);
  margin-bottom: 30px;
}
.brand-statement h2 {
  font-size: clamp(40px, 5.4vw, 77px);
}
.brand-statement h2 span {
  color: var(--band-glow, var(--lime));
}
.brand-statement-copy {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid var(--band-line, #ffffff40);
}
.brand-statement-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-band-muted, #d2e4ff);
}
.brand-statement-copy .mission {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--on-band, white);
}
.mission span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--band-glow, var(--lime));
}
/* Company history timeline */
.timeline {
  margin: 6px 0 30px;
  border-left: 2px solid var(--line, var(--border));
}
.timeline li {
  position: relative;
  padding: 0 0 26px 28px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--page-bg, white);
  border: 2px solid var(--accent, var(--blue));
  border-radius: 50%;
}
.timeline strong {
  display: block;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--accent, var(--blue));
}
.timeline span {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #66707e);
}
/* Markets we support */
.markets-band {
  background: var(--surface-alt, #f1f2f6);
  padding: 70px 0;
}
.markets-band > .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.markets-band .wrap > div > p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted, #66707e);
}
.markets-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.markets-band li {
  padding: 10px 16px;
  background: var(--card, white);
  border: 1px solid var(--line, var(--border));
  font-size: 15px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}
.value-grid > div {
  border-top: 1px solid var(--line, #b9c0cc);
  padding-top: 20px;
}
.value-grid > div > span {
  color: var(--accent, var(--blue));
  font-size: 14px;
}
.value-grid h3 {
  font-size: 28px;
  margin: 30px 0 20px;
}
.value-grid p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #66707e);
}
.headquarters {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  border-top: 1px solid var(--line, #d6d9e5);
  padding: 60px 0 90px;
}
.headquarters h2 {
  font-size: 43px;
  margin-top: 20px;
}
.headquarters > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted, #66707e);
}
.headquarters > div:last-child {
  min-width: 300px;
  font-size: 20px;
}
.headquarters .text-link {
  color: var(--accent, var(--blue));
  margin-top: 20px;
}

/* 20. FAQ page
   ========================================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr;
  gap: 110px;
  padding: 10px 0 100px;
}
.faq-layout aside {
  background: var(--surface-alt, #f1f2f6);
  padding: 30px;
  align-self: start;
}
.faq-layout aside h3 {
  font-size: 27px;
}
.faq-layout aside p {
  font-size: 16px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  margin: 20px 0;
}
.faq-layout .btn {
  padding: 15px 18px;
  font-size: 14px;
}
.faq-layout .detail-accordion {
  border-top: 1px solid var(--line, #d6d9e5);
}

/* 21. Insights & articles
   ========================================================================== */
.resources-list {
  padding-bottom: 100px;
}
.resource-row {
  display: flex;
  gap: 50px;
  border-top: 1px solid var(--line, #d6d9e5);
  padding: 40px 0;
  align-items: center;
}
.resource-number {
  font-size: 24px;
  color: var(--accent, var(--blue));
  align-self: start;
}
.resource-row > div {
  flex: 1;
}
.resource-row h2 {
  font-size: 39px;
  margin: 14px 0;
}
.resource-row p:not(.eyebrow) {
  color: var(--text-muted, #66707e);
  font-size: 17px;
}
.resource-row > svg {
  color: var(--accent, var(--blue));
  transition: transform 0.2s;
}
.resource-row:hover > svg {
  transform: translate(3px, -3px);
}
.resource-help {
  background: var(--surface-alt, #f1f2f6);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.resource-help a {
  color: var(--accent, var(--blue));
}
.article {
  max-width: 1000px;
  padding: 40px 0 90px;
}
.article header {
  border-bottom: 1px solid var(--line, var(--border));
  padding-bottom: 40px;
}
.article h1 {
  font-size: clamp(45px, 5vw, 70px);
  margin: 25px 0;
}
.article-intro {
  font-size: 21px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
  max-width: 780px;
}
.article-body {
  max-width: 760px;
  margin: 45px auto 0;
}
.article-body section {
  margin: 35px 0 50px;
}
.article-body h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 16px 0;
}
.article-body p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-muted, #5e6876);
}

/* 22. Featured stock unit
   ========================================================================== */
.stock-hero {
  padding: 35px 0 85px;
}
.stock-hero h1 {
  font-size: clamp(50px, 6vw, 83px);
  margin: 25px 0;
}
.stock-hero > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 20px;
  color: var(--text-muted, #66707e);
  line-height: 1.7;
}
.stock-specs {
  background: var(--surface-alt, #f1f2f6);
}
.stock-specs .spec-table th {
  background: var(--surface-alt-strong, #e1e4eb);
}
.stock-specs h2 {
  margin-top: 20px;
}
.stock-capacity {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.stock-capacity strong {
  font-weight: 400;
  font-size: 34px;
  color: var(--accent, var(--blue));
  letter-spacing: -0.04em;
}
.stock-capacity strong span {
  font-size: 18px;
}
.stock-capacity p {
  width: 100%;
  font-size: 14px;
  color: var(--text-muted, #66707e);
}

/* 23. Legal pages
   ========================================================================== */
.legal-content {
  max-width: 950px;
  padding-bottom: 90px;
  line-height: 1.85;
  color: var(--text-muted, #616c7c);
}
.legal-content p {
  margin: 20px 0;
}
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  font-size: 28px;
  color: var(--text, var(--ink));
  margin: 38px 0 20px;
  letter-spacing: -0.03em;
}
.legal-content li {
  margin-bottom: 14px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 25px;
  list-style: revert;
}
.legal-content a {
  color: var(--accent, var(--blue));
}

/* 24. 404 page
   ========================================================================== */
.not-found h1 {
  font-size: clamp(45px, 6vw, 80px);
  margin: 25px 0;
}

/* 25. Responsive
   ========================================================================== */
@media (min-width: 1600px) {
  .hero {
    height: 730px;
  }
  .hero-content {
    padding-top: 115px;
  }
}

@media (max-width: 1100px) {
  /* Narrower screens crop the hero photo more; keep the transformer right of the text */
  .hero-photo {
    object-position: 35% center;
  }
  .metrics {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }
  .metrics > div:nth-child(4) {
    border: 0;
    padding-left: 0;
  }
  .inquiry-layout,
  .contact-layout {
    gap: 45px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .inquiry-form {
    padding: 28px;
  }
  .form-bottom {
    display: block;
  }
  .form-bottom .btn {
    width: 100%;
    margin-top: 18px;
  }
  .form-bottom p {
    max-width: none;
  }
  .product-details,
  .k-rating-layout {
    gap: 55px;
  }
  .product-hero {
    gap: 35px;
  }
  .product-card-copy > div {
    display: block;
  }
  .product-card-copy > div span {
    display: block;
  }
  .product-card h3 {
    font-size: 24px;
  }
  .equipment-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expert-image {
    min-height: 550px;
  }
  .industry-band .wrap {
    gap: 35px;
  }
  .industry-band .wrap > div {
    gap: 25px;
    font-size: 16px;
  }
  .service-hero-inner {
    gap: 55px;
  }
  .service-track {
    padding: 30px;
  }
  .track-no {
    font-size: 36px;
  }
  .service-track .eyebrow {
    font-size: 10px;
  }
  .consult-layout,
  .team-row,
  .about-story,
  .welding-layout {
    gap: 65px;
  }
  .coverage-grid,
  .value-grid {
    gap: 25px;
  }
  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .logo {
    width: 155px;
  }
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
    display: flex;
    gap: 30px;
    align-items: center;
  }
  .footer-top > div:last-child p,
  .footer-top > div:last-child .eyebrow {
    margin: 0;
  }
  .hero-caption {
    right: 28px;
  }
  .hero-index {
    left: 28px;
  }
  .metrics strong {
    font-size: 36px;
  }
  .metrics > div {
    padding-left: 20px;
  }
  .hero-leadtimes {
    right: 28px;
    width: 290px;
    padding: 22px;
  }
  .path-card {
    padding: 30px;
  }
  .path-card h3 {
    font-size: 45px;
  }
}

@media (max-width: 760px) {
  /* Layout & header */
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 65px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 23px;
    font-size: 16px;
  }
  .utility-inner {
    justify-content: center;
  }
  .utility-inner > span {
    display: none;
  }
  .header-inner {
    height: 76px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .logo {
    width: 164px;
  }
  .mobile-menu {
    display: block;
  }
  .menu-toggle {
    padding: 10px;
  }
  .mobile-menu .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .mobile-menu .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg, white);
    border-bottom: 1px solid var(--line, var(--border));
    box-shadow: 0 14px 22px #0000000a;
    max-height: calc(100dvh - 110px);
    overflow: auto;
  }
  /* Footer */
  .footer {
    padding-top: 45px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    display: block;
  }
  .footer-top > div:last-child .eyebrow {
    margin-bottom: 12px;
  }
  .footer-top > div:last-child p {
    margin-top: 14px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  /* Shared blocks */
  .page-hero {
    padding: 50px 0 45px;
  }
  .page-hero h1 {
    font-size: 49px;
    margin: 22px 0;
  }
  .page-hero > p:last-child {
    font-size: 17px;
  }
  .breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
    padding: 24px 0;
  }
  .cta-band {
    padding: 55px 0;
  }
  .cta-band > .wrap {
    display: block;
  }
  .cta-band .btn {
    margin-top: 30px;
  }
  .cta-band p:not(.eyebrow) {
    font-size: 16px;
  }
  /* Home */
  .hero {
    height: auto;
    min-height: 650px;
    padding-bottom: 80px;
  }
  .hero-leadtimes {
    position: static;
    width: auto;
    margin-top: 36px;
    padding: 20px;
  }
  .hero-photo {
    object-position: 72% center;
  }
  .hero-shade {
    background: var(
      --hero-shade-mobile,
      linear-gradient(90deg, #142032e6, #14203280),
      linear-gradient(0deg, #142032cc 0%, #14203200 40%)
    );
  }
  .hero-content {
    padding-top: 62px;
  }
  .hero h1 {
    font-size: clamp(51px, 14vw, 65px);
  }
  .hero-intro {
    font-size: 17px;
    max-width: 340px;
  }
  .hero .actions {
    align-items: start;
    gap: 25px;
  }
  .hero-caption {
    left: 20px;
    right: auto;
    bottom: 26px;
    font-size: 9px;
    gap: 16px;
  }
  .hero-index {
    display: none;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 30px 0;
  }
  .metrics > div {
    padding-left: 20px;
  }
  .metrics > div:nth-child(4) {
    border-left: 1px solid var(--line, var(--border));
    padding-left: 20px;
  }
  .metrics > div:nth-child(odd) {
    border: 0;
    padding-left: 0;
  }
  .metrics strong {
    font-size: 37px;
  }
  .metrics strong span {
    font-size: 21px;
  }
  .metrics p {
    font-size: 13px;
  }
  .path-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .path-card {
    min-height: 350px;
    padding: 30px;
  }
  .path-card h3 {
    font-size: 46px;
  }
  .expert-section {
    grid-template-columns: 1fr;
  }
  .expert-image {
    min-height: 0;
    height: 310px;
  }
  .expert-copy {
    padding: 45px 25px 55px;
  }
  .expert-copy h2 {
    font-size: 58px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 23px;
  }
  .process-grid h3 {
    font-size: 26px;
    margin-top: 23px;
  }
  .process-grid p {
    font-size: 14px;
  }
  .industry-band .wrap {
    display: block;
  }
  .industry-band .eyebrow {
    max-width: none;
    margin-bottom: 18px;
  }
  .industry-band .wrap > div {
    gap: 12px 23px;
    font-size: 16px;
  }
  /* Catalog & product cards */
  .catalog {
    padding-bottom: 60px;
  }
  .catalog-label {
    font-size: 9px;
    gap: 20px;
  }
  .product-grid,
  .equipment-section .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 16px;
  }
  .product-image {
    aspect-ratio: 1;
  }
  .product-number {
    top: 10px;
    left: 10px;
    font-size: 10px;
  }
  .product-arrow {
    width: 36px;
    height: 36px;
  }
  .product-card-copy {
    padding-top: 18px;
  }
  .product-card-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .product-card h3 {
    font-size: 24px;
    line-height: 1.08;
  }
  .product-card-copy > div {
    font-size: 13px;
  }
  .stock-callout {
    display: block;
    padding: 25px;
    margin-top: 40px;
  }
  .stock-callout h3 {
    font-size: 28px;
  }
  .stock-callout > span {
    margin-top: 25px;
    justify-content: space-between;
    font-size: 14px;
  }
  /* Product detail */
  .product-hero {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .product-hero > div {
    width: 100%;
  }
  .product-hero h1 {
    font-size: 48px;
  }
  .product-hero > div > p:not(.eyebrow) {
    font-size: 17px;
  }
  .product-hero-image {
    aspect-ratio: 1.15;
  }
  .product-hero-ratings strong {
    font-size: 22px;
  }
  .anchor-nav > .wrap {
    gap: 22px;
    overflow: auto;
    white-space: nowrap;
    font-size: 12px;
  }
  .product-details {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .product-details h3 {
    font-size: 28px;
  }
  .product-details .accordion-trigger {
    letter-spacing: -1.26px;
  }
  .detail-side h2 {
    font-size: 42px;
  }
  .detail-side > p:not(.eyebrow) {
    font-size: 16px;
  }
  .spec-table {
    font-size: 13px;
  }
  .spec-table td {
    padding: 15px 12px;
  }
  .ratings-table td,
  .ratings-table th {
    padding: 12px 8px;
    white-space: normal;
  }
  .product-thumbs {
    gap: 8px;
  }
  .callout {
    padding: 22px 20px;
  }
  .callout-stats {
    gap: 10px 14px;
  }
  .callout-stats strong {
    font-size: 26px;
  }
  .option-table,
  .feature-list {
    font-size: 14px;
  }
  .option-table td {
    padding: 12px 12px 12px 0;
  }
  .option-table td + td,
  .option-table th + th {
    padding-left: 12px;
  }
  .k-rating {
    padding: 60px 0;
  }
  .k-rating-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .k-rating h2 {
    font-size: 40px;
  }
  /* Inquiry form */
  .inquiry-section,
  .quote-section {
    padding: 60px 0;
  }
  .inquiry-layout,
  .contact-layout {
    display: block;
  }
  .inquiry-copy {
    margin-bottom: 35px;
  }
  .inquiry-copy h2 {
    font-size: 52px;
  }
  .inquiry-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .inquiry-form {
    padding: 25px 20px;
  }
  .form-intro h3 {
    font-size: 27px;
  }
  .form-grid {
    gap: 20px 16px;
  }
  .form-grid input,
  .form-grid textarea,
  .form-select {
    font-size: 16px;
    padding: 12px 10px;
    min-width: 0;
  }
  .form-select {
    padding-right: 34px;
    background-position: right 10px center;
  }
  .form-grid .form-select {
    font-size: 14px;
  }
  .form-success {
    padding: 30px;
  }
  .form-success h3 {
    font-size: 30px;
  }
  /* Contact */
  .contact-page {
    padding: 45px 0 60px;
  }
  .contact-copy {
    margin-bottom: 40px;
  }
  .contact-copy h1 {
    font-size: 66px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .contact-info > a {
    font-size: 25px;
  }
  .contact-note {
    margin-bottom: 30px;
  }
  /* Services */
  .service-hero {
    padding: 50px 0;
  }
  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .service-hero h1 {
    font-size: 65px;
  }
  .service-hero-inner > div > p:not(.eyebrow) {
    font-size: 17px;
  }
  .engineer-feature {
    max-width: none;
  }
  .engineer-feature > img {
    height: 320px;
    object-position: 50% 30%;
  }
  .service-track-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-track {
    padding: 28px;
  }
  .service-track .eyebrow {
    font-size: 11px;
    padding-right: 48px;
  }
  .coverage .coverage-grid {
    grid-template-columns: 1fr;
  }
  .service-track h3 {
    font-size: 34px;
  }
  .service-track li {
    font-size: 14px;
  }
  .welding-section {
    padding: 60px 0;
  }
  .welding-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .welding-layout > div > p:not(.eyebrow) {
    font-size: 16px;
  }
  .weld-list {
    padding: 22px 20px;
  }
  .weld-list ul {
    column-gap: 16px;
  }
  .weld-list li {
    font-size: 14px;
  }
  .consult-section {
    padding: 60px 0;
  }
  .consult-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .consult-list > div {
    gap: 25px;
  }
  .consult-list h3 {
    font-size: 27px;
  }
  .team-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-row > img {
    height: 360px;
    aspect-ratio: auto;
    object-position: center 30%;
  }
  .team-row p:not(.eyebrow) {
    font-size: 16px;
  }
  .coverage-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 23px;
  }
  .coverage-grid h3,
  .value-grid h3 {
    font-size: 25px;
  }
  .coverage-grid p,
  .value-grid p {
    font-size: 14px;
  }
  /* About */
  .about-banner {
    height: 340px;
  }
  .about-banner > .wrap {
    font-size: 28px;
    padding-bottom: 30px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-story h2 {
    font-size: 40px;
  }
  .about-story > div > p:not(.eyebrow) {
    font-size: 16px;
  }
  .brand-statement {
    padding: 60px 0;
  }
  .brand-statement h2 {
    font-size: 43px;
  }
  .brand-statement-copy {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 32px;
  }
  .brand-statement-copy p {
    font-size: 16px;
  }
  .brand-statement-copy .mission {
    font-size: 19px;
  }
  .timeline span {
    font-size: 15px;
  }
  .markets-band {
    padding: 50px 0;
  }
  .markets-band > .wrap {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .markets-band li {
    padding: 8px 12px;
    font-size: 14px;
  }
  .headquarters > div:first-child > p:not(.eyebrow) {
    font-size: 16px;
  }
  .headquarters {
    display: block;
    padding: 45px 0 60px;
  }
  .headquarters h2 {
    font-size: 36px;
  }
  .headquarters > div:last-child {
    margin-top: 30px;
  }
  /* FAQ */
  .faq-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding-bottom: 60px;
  }
  .faq-layout aside {
    width: 100%;
  }
  /* Insights & articles */
  .resources-list {
    padding-bottom: 60px;
  }
  .resource-row {
    gap: 20px;
    padding: 30px 0;
    align-items: start;
  }
  .resource-number {
    font-size: 16px;
  }
  .resource-row .eyebrow {
    font-size: 10px;
  }
  .resource-row h2 {
    font-size: 29px;
  }
  .resource-row p:not(.eyebrow) {
    font-size: 15px;
  }
  .resource-row > svg {
    width: 22px;
    flex-shrink: 0;
  }
  .resource-help {
    display: block;
    padding: 23px;
  }
  .resource-help a {
    margin-top: 15px;
  }
  .article {
    padding: 20px 0 55px;
  }
  .article h1 {
    font-size: 46px;
  }
  .article-intro {
    font-size: 19px;
  }
  .article-body h2 {
    font-size: 30px;
  }
  .article-body p {
    font-size: 17px;
  }
  /* Stock unit & legal */
  .stock-hero {
    padding: 20px 0 55px;
  }
  .stock-hero h1 {
    font-size: 51px;
  }
  .stock-hero > p:not(.eyebrow) {
    font-size: 18px;
  }
  .legal-content {
    padding-bottom: 55px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .hero .actions {
    gap: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .equipment-section .product-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .contact-copy h1 {
    font-size: 58px;
  }
}

/* 26. Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
