:root {
  --ink: #102033;
  --muted: #5c6877;
  --line: #d8e0ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --navy: #0b3d68;
  --blue: #0d66b3;
  --teal: #0f766e;
  --amber: #d9921e;
  --charcoal: #18212d;
  --shadow: 0 18px 55px rgba(16, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(16, 32, 51, 0.08);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 8px 24px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.88rem;
}

.topbar a:hover {
  text-decoration: underline;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 0;
  color: var(--navy);
  line-height: 1;
  font-weight: 800;
}

.brand span {
  font-size: 2rem;
}

.brand small {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-image {
  display: flex;
  align-items: center;
}

.brand-image img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 12px 0;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px !important;
  color: #ffffff !important;
  background: var(--blue);
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 26, 44, 0.88), rgba(8, 26, 44, 0.58) 46%, rgba(8, 26, 44, 0.14)),
    linear-gradient(0deg, rgba(8, 26, 44, 0.34), rgba(8, 26, 44, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(13, 102, 179, 0.26);
}

.button-primary:hover {
  background: #075a9f;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  color: var(--blue);
  border-color: rgba(13, 102, 179, 0.3);
  background: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 18px;
  margin: 54px 0 0;
}

.hero-stats div {
  padding-left: 18px;
  border-left: 3px solid var(--amber);
}

.hero-stats dt {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px max(24px, calc((100% - 1180px) / 2));
  background: var(--charcoal);
  color: #ffffff;
}

.quote-band div {
  display: grid;
  gap: 4px;
}

.quote-band span {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 5px;
  white-space: nowrap;
}

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -26px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  min-height: 104px;
  align-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1.04rem;
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.quality-copy h2,
.market-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p:last-child,
.quality-copy p,
.market-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.product-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.product-visual figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.spec-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--muted);
  font-weight: 700;
}

.spec-table td {
  color: var(--ink);
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.applications-section {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.application-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.application-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #eef3f7;
}

.application-card div {
  padding: 20px;
}

.application-card h3,
.media-item h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.application-card p,
.media-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.media-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: #ffffff;
}

.media-item.large {
  grid-row: span 2;
}

.media-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.78;
}

.media-item div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: linear-gradient(0deg, rgba(12, 25, 39, 0.88), rgba(12, 25, 39, 0));
}

.media-item h3 {
  color: #ffffff;
}

.media-item p {
  color: rgba(255, 255, 255, 0.78);
}

.quality-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.quality-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-visual img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.company-section {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: #eef4f8;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 18px;
  align-items: stretch;
}

.company-grid > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.company-facts {
  display: grid;
  gap: 12px;
}

.company-facts div {
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 4px solid var(--amber);
}

.company-facts strong {
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.1;
}

.company-facts span {
  color: var(--muted);
  margin-top: 6px;
}

.market-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.buyer-path-section {
  padding-top: 42px;
}

.buyer-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.buyer-path-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.buyer-path-grid span {
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.buyer-path-grid h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.22;
}

.buyer-path-grid p {
  margin: 0;
  color: var(--muted);
}

.question-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
  background: var(--charcoal);
  color: #ffffff;
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: #ffffff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(217, 146, 30, 0.8);
  text-underline-offset: 5px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.inquiry-form label:nth-child(4),
.inquiry-form label:nth-child(5),
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  outline: 2px solid rgba(13, 102, 179, 0.18);
  border-color: var(--blue);
}

.inquiry-form textarea {
  resize: vertical;
}

.seo-inquiry-form {
  padding: 0;
  border-radius: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #0d1420;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer strong,
.site-footer a {
  color: #ffffff;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: none;
  width: min(420px, calc(100% - 28px));
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.24);
}

.sticky-contact a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}

.sticky-contact a:first-child {
  background: var(--teal);
}

.seo-page .site-header {
  position: sticky;
}

.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.seo-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.seo-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.seo-hero p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.content-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
}

.content-main {
  display: grid;
  gap: 34px;
}

.legal-layout {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.legal-page .seo-hero,
.error-page .seo-hero {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.content-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.content-block h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.2;
}

.content-block h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.content-block p {
  margin: 0 0 14px;
  color: var(--muted);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-block li + li {
  margin-top: 8px;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-table th {
  width: 34%;
  color: var(--ink);
  background: var(--soft);
}

.content-table tr:last-child th,
.content-table tr:last-child td {
  border-bottom: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.link-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.link-card strong {
  color: var(--blue);
}

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

.sidebar-card {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--charcoal);
}

.sidebar-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.sidebar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.sidebar-card a:not(.button) {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 5px;
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-footer-cta {
  width: 100%;
  padding: 70px max(20px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.seo-footer-cta h2 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.15;
}

.seo-footer-cta p {
  max-width: 720px;
  margin: 14px 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1040px) {
  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

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

  .company-grid,
  .quality-section,
  .market-section,
  .buyer-path-grid,
  .contact-section,
  .seo-hero,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .company-grid {
    grid-template-columns: 1fr 1fr;
  }

  .company-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    justify-content: center;
    overflow: hidden;
    gap: 14px;
    padding: 7px 20px;
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .topbar a:nth-child(2) {
    display: none;
  }

  .navbar {
    width: calc(100% - 32px);
    min-height: 68px;
  }

  .brand span {
    font-size: 1.55rem;
  }

  .menu-toggle {
    display: inline-flex;
    border-color: var(--blue);
    background: var(--blue);
  }

  .menu-toggle span {
    background: #ffffff;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(16, 32, 51, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 26, 44, 0.88), rgba(8, 26, 44, 0.52)),
      linear-gradient(0deg, rgba(8, 26, 44, 0.45), rgba(8, 26, 44, 0.08));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 76px 0 88px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .quote-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div {
    min-height: 92px;
  }

  .section {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .section-heading h2,
  .quality-copy h2,
  .market-copy h2,
  .contact-copy h2,
  .seo-footer-cta h2 {
    font-size: 1.9rem;
  }

  .seo-hero {
    padding: 56px 0 36px;
  }

  .seo-hero h1 {
    font-size: 2.25rem;
  }

  .seo-hero-image img {
    height: 320px;
  }

  .content-layout {
    padding-top: 36px;
  }

  .product-layout,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .product-visual img,
  .quality-visual img {
    height: 380px;
  }

  .media-grid {
    grid-template-rows: none;
  }

  .media-item,
  .media-item img {
    min-height: 280px;
  }

  .company-grid,
  .company-facts,
  .buyer-path-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .company-facts {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 1.88rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .topbar a:nth-child(3) {
    display: none;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-badges li {
    border-radius: 6px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .product-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .spec-panel,
  .inquiry-form,
  .content-block {
    padding: 20px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .company-grid > img {
    height: 260px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .sticky-contact.is-visible {
    display: flex;
  }
}
