@font-face {
  font-family: "Vazirmatn";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/vazirmatn-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

/* Server-rendered SEO landing pages */
.seo-landing .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}
.seo-landing .article-content > section {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.seo-landing .article-sidebar {
  display: grid;
  gap: .75rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: #fff;
  position: sticky;
  top: 7rem;
}
.seo-landing .faq-section details {
  margin-top: .75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: var(--soft);
}
.seo-landing .faq-section summary { cursor: pointer; font-weight: 700; }
.landing-product-figure {
  margin: 0 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.landing-product-figure img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #fff;
}
.landing-product-figure figcaption {
  padding: .8rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}
.landing-fact-table { margin-top: 1rem; }
.landing-fact-table table { min-width: 620px; }
.landing-fact-table tbody th {
  color: var(--navy);
  background: var(--soft-blue);
}
.landing-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1.25rem;
  padding-inline-start: 1.25rem;
  margin-block: 1rem 1.25rem;
}
.landing-card-image {
  display: block;
  width: calc(100% + 2rem);
  height: 190px;
  margin: -1rem -1rem 1rem;
  object-fit: contain;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
@media (max-width: 720px) {
  .seo-landing .article-layout { grid-template-columns: 1fr; }
  .seo-landing .article-sidebar { position: static; }
  .landing-checklist ul { grid-template-columns: 1fr; }
  .landing-card-image { height: 170px; }
}

:root {
  --navy: #062a5f;
  --navy-deep: #031b3f;
  --blue: #087fd8;
  --blue-strong: #005eb8;
  --blue-light: #35a9f4;
  --graphite: #2a333d;
  --ink: #102033;
  --muted: #66727f;
  --line: #d7e2ec;
  --soft: #f5f8fb;
  --soft-blue: #e7f4fd;
  --white: #ffffff;
  --orange: #f5a400;
  --yellow: #f7c948;
  --green: #1f7a5f;
  --shadow: 0 18px 50px rgba(6, 42, 95, 0.14);
  --shadow-tight: 0 10px 26px rgba(6, 42, 95, 0.11);
  --shadow-card: 0 8px 22px rgba(6, 42, 95, 0.08);
  --font-fa: "Vazirmatn", "IRANSans", "Dana", "Segoe UI", Tahoma, sans-serif;
  --font-en: "IBM Plex Sans", Inter, "Segoe UI", Arial, sans-serif;
  --font-ui: "Vazirmatn", "IBM Plex Sans", "Segoe UI", Tahoma, sans-serif;
  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 127, 216, 0.08), transparent 32rem),
    linear-gradient(180deg, rgba(231, 244, 253, 0.76), rgba(255, 255, 255, 0) 520px),
    var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  font-family: var(--font-fa);
  font-weight: 450;
  font-feature-settings: "ss01" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--blue-strong);
}

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

p,
h1,
h2,
h3,
h4,
label,
td,
th {
  overflow-wrap: anywhere;
}

body[dir="ltr"] {
  font-family: var(--font-en);
  line-height: 1.65;
}

:lang(en),
body[dir="ltr"] * {
  font-family: var(--font-en);
}

:lang(fa),
body[dir="rtl"] * {
  font-family: var(--font-fa);
}

h1,
h2,
h3,
h4,
.brand strong,
.btn,
.lang-switch,
th,
dt,
.pill,
.eyebrow {
  font-family: inherit;
  font-weight: 850;
}

p,
li,
dd,
td,
input,
select,
textarea {
  font-weight: 450;
}

body[dir="ltr"] h1,
body[dir="ltr"] h2,
body[dir="ltr"] h3,
body[dir="ltr"] h4,
body[dir="ltr"] .btn,
body[dir="ltr"] .pill,
body[dir="ltr"] th {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: -5rem;
  z-index: 30;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.78);
  box-shadow: 0 8px 26px rgba(6, 42, 95, 0.08);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 14px 34px rgba(6, 42, 95, 0.12);
}

.topbar {
  display: flex;
  gap: 1.15rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.34rem 1rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(90deg, var(--navy-deep), var(--navy) 56%, var(--blue-strong));
}

.topbar a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(250px, auto) minmax(0, 1fr) auto;
  gap: clamp(0.7rem, 1.5vw, 1.25rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.78rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(130px, 12vw, 190px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.primary-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.12rem, 0.5vw, 0.35rem);
  min-width: 0;
  color: var(--graphite);
  font-weight: 700;
  font-size: clamp(0.82rem, 0.9vw, 0.93rem);
}

.primary-menu a {
  position: relative;
  border-radius: 7px;
  padding: 0.44rem clamp(0.42rem, 0.75vw, 0.72rem);
  line-height: 1.35;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  transition: background 160ms ease, color 160ms ease;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  inset-inline: 0.72rem;
  inset-block-end: 0.18rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  background: rgba(231, 244, 253, 0.72);
  color: var(--blue);
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions,
.hero-actions,
.contact-methods {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.nav-actions {
  flex-wrap: nowrap;
}

.btn,
.lang-switch {
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover,
.lang-switch:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-tight);
}

.btn:focus-visible,
.lang-switch:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(8, 127, 216, 0.24);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(3, 27, 63, 0.18);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.lang-switch {
  background: linear-gradient(180deg, var(--white), #fbfdff);
  color: var(--blue);
  border-color: var(--line);
  box-shadow: 0 6px 14px rgba(6, 42, 95, 0.06);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--graphite);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 96px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../img/industrial-strapping-hero.png") center / cover no-repeat;
  background-image: image-set(
    url("../img/industrial-strapping-hero.webp") type("image/webp"),
    url("../img/industrial-strapping-hero.png") type("image/png")
  );
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 27, 63, 0.12), rgba(3, 27, 63, 0.76)),
    linear-gradient(90deg, rgba(3, 27, 63, 0.04), rgba(6, 42, 95, 0.72) 44%, rgba(3, 27, 63, 0.96));
}

body[dir="ltr"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 27, 63, 0.08), rgba(3, 27, 63, 0.72)),
    linear-gradient(90deg, rgba(3, 27, 63, 0.94), rgba(6, 42, 95, 0.76) 48%, rgba(3, 27, 63, 0.12));
}

.hero-content {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem 7rem;
  color: var(--white);
}

.hero-content > * {
  max-width: 760px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-light), var(--yellow));
}

.eyebrow {
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
  margin: 0 0 0.55rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.7vw, 4.65rem);
  line-height: 1.16;
  letter-spacing: 0;
  max-width: 860px;
}

.hero .eyebrow {
  color: var(--blue-light);
}

.hero p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.32rem);
  margin: 1.2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
  max-width: 850px;
}

.hero-specs span {
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-specs strong {
  font-size: 0.95rem;
  color: var(--white);
}

.hero-specs small {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--blue-strong));
  color: var(--white);
  border-top: 4px solid var(--blue);
}

.trust-strip span {
  text-align: center;
  padding: 1.05rem 0.75rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 750;
}

.route-section {
  padding-top: 2.7rem;
  padding-bottom: 3.1rem;
}

.route-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 0.65rem;
  align-items: stretch;
  border: 1px solid rgba(8, 127, 216, 0.16);
  border-radius: 8px;
  padding: 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.96)),
    var(--white);
  box-shadow: 0 18px 44px rgba(6, 42, 95, 0.12);
  overflow: hidden;
}

.route-intro {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 230px;
  border-radius: 7px;
  padding: clamp(1.35rem, 2vw, 2rem);
  border-inline-start: 5px solid var(--yellow);
  background:
    linear-gradient(135deg, rgba(3, 27, 63, 0.98), rgba(6, 42, 95, 0.94)),
    var(--navy);
}

.route-intro::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 34%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue-light));
}

.route-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.32;
}

.route-intro p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  background: transparent;
}

.route-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 230px;
  border: 1px solid rgba(8, 127, 216, 0.14);
  border-radius: 7px;
  padding: clamp(1.05rem, 1.5vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(231, 244, 253, 0.78), rgba(255, 255, 255, 0.96));
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.route-card::after {
  content: "";
  position: absolute;
  inset-inline: 1rem;
  inset-block-end: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(8, 127, 216, 0.58), transparent);
  opacity: 0;
  transition: opacity 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(8, 127, 216, 0.34);
  background: var(--white);
  box-shadow: var(--shadow-tight);
  transform: translateY(-2px);
}

.route-card:hover::after,
.route-card:focus-visible::after {
  opacity: 1;
}

.route-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(8, 127, 216, 0.2);
}

.route-card strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.5;
}

.route-card small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.75rem 1.25rem;
}

.section-muted {
  max-width: none;
  background:
    linear-gradient(180deg, var(--soft-blue), #f8fafc 68%);
}

.section-muted > * {
  max-width: 1240px;
  margin-inline: auto;
}

.section-compact {
  padding-block: 3.5rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.section-heading h2,
.split h2,
.rfq-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.28;
}

.section-heading p:not(.eyebrow),
.split p,
.rfq-section p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.finder-layout,
.split,
.rfq-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.finder,
.rfq-form,
.recommendation {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.finder,
.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.finder {
  position: relative;
  overflow: hidden;
  border-color: rgba(8, 127, 216, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.95)),
    var(--white);
}

.finder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.finder label {
  min-width: 0;
}

.finder select,
.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  background: linear-gradient(180deg, var(--white), #fbfdff);
}

label span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--graphite);
  font-weight: 750;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  line-height: 1.6;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(8, 127, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(8, 127, 216, 0.08);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 120px);
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid rgba(8, 127, 216, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(231, 244, 253, 0.82), rgba(255, 255, 255, 0.92)),
    var(--soft-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.captcha-field span {
  margin: 0;
  color: var(--navy);
}

.captcha-field span::before {
  content: "Anti-spam";
  display: inline-flex;
  margin-inline-end: 0.55rem;
  border-radius: 999px;
  padding: 0.1rem 0.52rem;
  color: var(--blue);
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
}

body[dir="rtl"] .captcha-field span::before {
  content: "ضد اسپم";
}

.captcha-field input {
  text-align: center;
  font-weight: 900;
}

.recommendation {
  padding: 1.5rem;
  min-height: 100%;
  border-top: 4px solid var(--yellow);
  background:
    linear-gradient(180deg, rgba(231, 244, 253, 0.58), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.result-kicker {
  display: inline-flex;
  color: var(--blue);
  font-weight: 850;
  margin-bottom: 0.5rem;
}

.recommendation h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.35;
}

.recommendation p {
  color: var(--muted);
}

.card-grid,
.resource-grid,
.product-list,
.service-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.card-grid.dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.resource,
.product-row,
.service-item,
.contact-grid > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98)),
    var(--white);
  border: 1px solid rgba(8, 127, 216, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card,
.product-row {
  position: relative;
  overflow: hidden;
}

.card::before,
.product-row::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), transparent 72%);
  opacity: 0.72;
}

.resource {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
}

.featured-resource {
  grid-column: span 2;
  border-color: rgba(8, 127, 216, 0.32);
  background:
    linear-gradient(135deg, rgba(231, 244, 253, 0.78), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.featured-resource::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--yellow));
}

.resource-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.resource-type,
.answer-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.18rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.5;
}

.resource-type {
  color: var(--blue);
  background: var(--soft-blue);
}

.answer-label {
  color: var(--green);
  background: rgba(31, 122, 95, 0.1);
}

.card:hover,
.resource:hover,
.product-row:hover,
.service-item:hover,
.contact-grid > div:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 216, 0.34);
  box-shadow: var(--shadow-tight);
}

.card h3,
.resource h3,
.service-item h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.32;
  font-size: 1.08rem;
}

.card h3,
.product-row h3 {
  letter-spacing: 0;
}

.featured-resource h3 {
  font-size: 1.28rem;
}

.card p,
.resource p,
.service-item p,
.product-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.card-meta,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.85rem;
  color: var(--blue);
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-inline-start: 0.38rem;
  border-block-start: 2px solid currentColor;
  border-inline-end: 2px solid currentColor;
  transform: rotate(-135deg);
}

body[dir="ltr"] .text-link::after {
  transform: rotate(45deg);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(8, 127, 216, 0.16);
  border-radius: 999px;
  padding: 0.18rem 0.65rem;
  color: var(--navy);
  background: linear-gradient(180deg, var(--soft-blue), var(--white));
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.5;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--white);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: start;
  vertical-align: top;
}

th {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: var(--white);
  font-weight: 800;
}

tbody tr:nth-child(even) td {
  background: #fbfdff;
}

tbody tr:hover td {
  background: var(--soft-blue);
}

.process-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 127, 216, 0.07), rgba(6, 42, 95, 0.05));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-steps article {
  border-inline-start: 4px solid var(--blue);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-tight);
}

.process-steps span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 850;
  margin-bottom: 0.4rem;
}

.process-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

.service-list {
  grid-template-columns: 1fr;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

.brand-row span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  font-weight: 850;
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(6, 42, 95, 0.04);
}

.product-list {
  grid-template-columns: 1fr;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1rem 1.15rem;
}

.product-row .btn,
.product-card .btn,
.industry-card .btn,
.article-card .btn {
  align-self: end;
}

.product-row .btn {
  min-width: 94px;
  box-shadow: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
}

.metrics div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.metrics dt {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
}

.metrics dd {
  margin: 0;
  color: var(--muted);
}

.rfq-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(3, 27, 63, 0.98), rgba(6, 42, 95, 0.96) 56%, rgba(8, 127, 216, 0.9)),
    radial-gradient(circle at 16% 4%, rgba(53, 169, 244, 0.32), transparent 26rem);
  color: var(--white);
  grid-template-columns: minmax(0, 600px) minmax(310px, 560px);
  justify-content: center;
  align-items: stretch;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  padding-block: clamp(4rem, 7vw, 5.5rem);
}

.rfq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.22;
}

.rfq-section > * {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

.rfq-section > div:first-child {
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.15rem, 2.6vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.rfq-section h2 {
  color: var(--white);
}

.rfq-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  margin-top: 1.25rem;
}

.rfq-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.rfq-proof-grid div {
  display: grid;
  gap: 0.32rem;
  min-height: 116px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rfq-proof-grid strong {
  color: var(--white);
  font-size: 0.98rem;
}

.rfq-proof-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.contact-methods a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  padding: 0.55rem 0.8rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-methods a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.rfq-form {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.98));
  box-shadow: 0 24px 70px rgba(0, 18, 48, 0.28);
}

.form-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: rgba(31, 122, 95, 0.1);
  color: var(--green);
  font-weight: 800;
}

.form-note:empty {
  display: none;
}

.form-note[data-status="error"] {
  background: #fef2f2;
  color: #991b1b;
}

.contact-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 132px;
  border-top: 4px solid var(--blue);
}

.contact-grid strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.contact-grid a,
.contact-grid span {
  color: var(--muted);
}

.contact-grid span {
  font-size: 0.93rem;
  line-height: 1.75;
}

.contact-grid a {
  color: var(--blue);
  font-weight: 850;
}

.contact-section {
  padding-bottom: 3.25rem;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer {
  padding: 2.2rem 1.25rem;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--graphite));
  color: var(--white);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
  line-height: 1.3;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.hero-actions .btn {
  white-space: normal;
  text-align: center;
  min-width: clamp(150px, 18vw, 220px);
}

.hero-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-actions .btn-ghost {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-methods a,
.nav-actions .btn {
  white-space: nowrap;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(53, 169, 244, 0.24), transparent 28rem),
    radial-gradient(circle at 94% 12%, rgba(246, 193, 42, 0.14), transparent 22rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, var(--blue-strong));
  color: var(--white);
  padding: 3.8rem 1.25rem 4.4rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--yellow), var(--blue-strong));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 2rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.2;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  margin: 1rem 0 0;
}

.page-hero .eyebrow {
  color: var(--blue-light);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 750;
}

.hero-panel,
.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 1.15rem;
  box-shadow: 0 18px 42px rgba(0, 18, 48, 0.18);
}

.hero-panel strong,
.quote-panel strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.hero-panel ul,
.quote-panel ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel li,
.quote-panel li {
  list-style: none;
  position: relative;
  padding-inline-start: 1.15rem;
  margin: 0;
  line-height: 1.75;
}

.hero-panel li::before,
.quote-panel li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.page-nav {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.page-nav a,
.filter-chip,
.mode-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.45rem 0.72rem;
  background: var(--white);
  color: var(--graphite);
  font-weight: 800;
}

.page-nav a {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.page-proof-section {
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

.page-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.page-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(8, 127, 216, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.96)),
    var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.page-proof-grid article::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.page-proof-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 216, 0.32);
  box-shadow: var(--shadow-tight);
}

.page-proof-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-strong));
  font-weight: 900;
}

.page-proof-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.4;
}

.page-proof-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.25rem;
  align-items: start;
}

.content-main,
.sidebar-card,
.copy-card,
.decision-card,
.faq-item,
.product-card,
.industry-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-main,
.sidebar-card,
.copy-card,
.decision-card {
  padding: 1.35rem;
}

.sidebar-stack {
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.1rem;
  box-shadow: var(--shadow-tight);
}

.sidebar-card h2,
.sidebar-card h3,
.copy-card h2,
.decision-card h2 {
  color: var(--navy);
  margin: 0 0 0.7rem;
  line-height: 1.3;
}

.sidebar-card p,
.copy-card p,
.decision-card p {
  color: var(--muted);
  margin: 0.55rem 0;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.filter-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.filter-chip {
  background: var(--soft);
}

.filter-chip:not([aria-pressed="true"]):hover,
.mode-button:not([aria-pressed="true"]):hover {
  border-color: rgba(8, 127, 216, 0.42);
  color: var(--blue);
  background: #fbfdff;
}

.filter-chip[aria-pressed="true"],
.mode-button[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--soft-blue);
}

.product-card,
.industry-card,
.article-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.75rem;
  padding: 1.15rem;
  min-height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover,
.industry-card:hover,
.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 127, 216, 0.34);
  box-shadow: var(--shadow-tight);
}

.media-card {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), #fbfdff),
    var(--white);
}

.card-image,
.product-image,
.detail-image {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.card-image {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 12%, rgba(8, 127, 216, 0.1), transparent 52%),
    linear-gradient(180deg, var(--soft), var(--white));
}

.product-card .card-image,
.industry-card .card-image,
.article-card .card-image {
  border: 1px solid var(--line);
  border-radius: 7px;
}

.product-image {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.85rem;
  border: 1px solid rgba(8, 127, 216, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 10%, rgba(8, 127, 216, 0.1), transparent 52%),
    linear-gradient(180deg, var(--soft), var(--white));
}

.media-card-body {
  padding: 1.15rem;
}

.request-steps,
.quality-strip {
  display: grid;
  gap: 0.75rem;
}

.request-steps {
  counter-reset: request-step;
}

.request-steps li {
  counter-increment: request-step;
  list-style: none;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
}

.request-steps li::before {
  content: counter(request-step);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.quality-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quality-strip div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--soft));
  padding: 1rem;
}

.quality-strip strong {
  display: block;
  color: var(--navy);
}

.quality-strip span {
  color: var(--muted);
}

.seo-intent-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(8, 127, 216, 0.06), rgba(6, 42, 95, 0.04));
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.intent-grid a {
  display: grid;
  gap: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.intent-grid strong {
  color: var(--navy);
}

.intent-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-action-bar {
  display: none;
}

input[type="file"] {
  padding: 0.58rem;
  background: var(--soft);
}

.detail-image {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.media-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.product-card header,
.industry-card header,
.article-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}

.product-card h2,
.industry-card h2,
.article-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.35;
}

.product-card p,
.industry-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.16rem 0.58rem;
  color: var(--green);
  background: rgba(31, 122, 95, 0.1);
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
}

.spec-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: end;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.decision-card {
  border-top: 4px solid var(--blue);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: start;
  padding: 1rem;
  cursor: pointer;
  font-weight: 850;
}

.faq-item button::after {
  content: "+";
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[data-open="true"] button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item[data-open="true"] .faq-answer {
  display: block;
}

.form-mode {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.request-panel[hidden] {
  display: none;
}

.input-hint {
  display: block;
  color: var(--muted);
  margin-top: 0.28rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.article-body {
  display: grid;
  gap: 1rem;
}

.article-answer {
  border-inline-start: 4px solid var(--blue);
  background: var(--soft-blue);
  border-radius: 8px;
  padding: 1rem;
  color: var(--navy);
  font-weight: 750;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--blue-strong));
  color: var(--white);
  padding: 1.2rem;
}

.cta-band p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band .btn-secondary {
  background: var(--white);
  color: var(--blue);
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .primary-menu {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
    padding-block: 0.35rem;
    scrollbar-width: thin;
    width: 100%;
  }

  .nav-actions {
    justify-content: end;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 4rem);
  }

  .card-grid.dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .primary-menu {
    display: none;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    padding-top: 0.75rem;
  }

  .primary-menu[data-open="true"] {
    display: flex;
  }

  .finder-layout,
  .split,
  .rfq-section,
  .route-band {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .resource-grid,
  .card-grid.dense,
  .contact-grid,
  .page-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-row,
  .trust-strip,
  .process-steps,
  .hero-specs,
  .decision-grid,
  .quality-strip,
  .intent-grid,
  .page-hero-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
  }

  .topbar {
    justify-content: start;
    gap: 0.55rem 0.8rem;
    font-size: 0.78rem;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .brand-logo {
    width: 150px;
  }

  .brand span {
    display: none;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1 1 auto;
  }

  .lang-switch {
    flex: 0 0 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-content {
    padding: 4.5rem 1rem 4rem;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-compact {
    padding-block: 3rem;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .finder,
  .rfq-form,
  .recommendation,
  .card,
  .resource,
  .product-row,
  .service-item,
  .contact-grid > div,
  .process-steps article {
    box-shadow: none;
  }

  .table-wrap {
    margin-inline: -1rem;
    border-inline: 0;
    border-radius: 0;
  }

  table {
    min-width: 680px;
  }
}

@media (max-width: 720px) {
  .card-grid,
  .resource-grid,
  .card-grid.dense,
  .contact-grid,
  .route-grid,
  .brand-row,
  .metrics,
  .process-steps,
  .decision-grid,
  .quality-strip,
  .intent-grid,
  .hero-specs,
  .trust-strip,
  .rfq-proof-grid,
  .page-proof-grid,
  .finder,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .featured-resource {
    grid-column: auto;
  }

  .captcha-field {
    grid-template-columns: 1fr;
  }

  .quick-action-bar {
    position: fixed;
    inset-inline: 0.65rem;
    bottom: 0.65rem;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(3, 27, 63, 0.98), rgba(6, 42, 95, 0.98));
    box-shadow: 0 -10px 30px rgba(3, 27, 63, 0.24), 0 10px 28px rgba(6, 42, 95, 0.16);
  }

  .quick-action-bar a {
    display: grid;
    place-items: center;
    min-height: 52px;
    color: var(--white);
    font-weight: 850;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-action-bar a:last-child {
    background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  }

  body {
    padding-bottom: 72px;
  }

  .finder,
  .rfq-form {
    padding: 1rem;
  }

  .finder-layout,
  .split,
  .rfq-section {
    gap: 1rem;
  }

  .route-card {
    min-height: 0;
  }

  .hero-actions,
  .contact-methods {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-methods a,
  .rfq-form .btn,
  .finder .btn {
    width: 100%;
  }

  .brand-row span {
    min-height: 58px;
  }

  .metrics dt {
    font-size: 1.65rem;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .listing-toolbar,
  .product-card header,
  .industry-card header,
  .article-card header,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .topbar span {
    display: none;
  }

  .nav-shell {
    padding-inline: 0.85rem;
  }

  .brand-logo {
    width: 132px;
  }

  .nav-toggle,
  .lang-switch {
    min-height: 40px;
  }

  .hero-content {
    padding: 3.5rem 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-specs span,
  .rfq-proof-grid div,
  .route-intro,
  .route-card,
  .card,
  .resource,
  .product-row,
  .service-item,
  .contact-grid > div,
  .recommendation,
  .finder,
  .rfq-form,
  .process-steps article {
    padding: 1rem;
  }

  .section {
    padding: 3.25rem 0.85rem;
  }

  .btn,
  .lang-switch {
    padding-inline: 0.82rem;
  }

  .trust-strip span {
    padding: 0.85rem;
  }

  table {
    min-width: 620px;
  }

  .page-hero {
    padding: 2.8rem 0.85rem 3.2rem;
  }

  .content-main,
  .sidebar-card,
  .copy-card,
  .decision-card,
  .product-card,
  .industry-card,
  .article-card {
    padding: 1rem;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 118px;
  }

  .nav-actions {
    flex-direction: column;
  }

  .lang-switch,
  .nav-actions .btn {
    width: 100%;
  }
}

.mp-wp-page {
  min-height: 64vh;
}

.mp-wp-page .section-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.22;
}

.mp-wp-page .rfq-form {
  margin-top: 1.5rem;
}

.form-message {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.form-message.success {
  border: 1px solid #8fd8bd;
  background: #e8f7f1;
  color: #146c52;
}

.form-message.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
