:root {
  --navy: #123b6d;
  --blue: #0066cc;
  --steel: #5f7488;
  --ink: #1f2a33;
  --muted: #66737f;
  --line: #d8e0e7;
  --panel: #f5f8fb;
  --white: #ffffff;
  --heat: #e66a2c;
  --cyan: #00a6c8;
  --shadow: 0 18px 50px rgba(18, 59, 109, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
}

a {
  color: inherit;
}

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

.top-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--heat);
  font-size: 14px;
  font-weight: 800;
}

.top-contact-bar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

.brand strong,
h1,
h2 {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  display: none;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--navy);
  border-radius: 6px;
}

.nav-menu a:hover {
  background: var(--panel);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  display: block;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding: 88px clamp(20px, 6vw, 92px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(8, 32, 60, 0.98) 0%, rgba(18, 59, 109, 0.94) 48%, rgba(0, 102, 204, 0.72) 100%),
    radial-gradient(circle at 76% 16%, rgba(230, 106, 44, 0.44), transparent 28%),
    radial-gradient(circle at 98% 92%, rgba(156, 236, 255, 0.22), transparent 34%),
    #123b6d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 116px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.11));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

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

.hero .eyebrow {
  color: #9cecff;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(156, 236, 255, 0.35);
  border-radius: 999px;
  color: #d9f7ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--white);
  color: var(--navy);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding: 15px 16px;
  background: rgba(8, 32, 60, 0.28);
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.factory-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.gear {
  position: absolute;
  border: 24px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.gear-large {
  right: 8%;
  top: 16%;
  width: 320px;
  height: 320px;
}

.gear-small {
  right: 24%;
  bottom: 12%;
  width: 160px;
  height: 160px;
  border-width: 14px;
}

.heat-ring {
  position: absolute;
  right: 13%;
  bottom: 24%;
  width: 260px;
  height: 260px;
  border: 26px solid rgba(230, 106, 44, 0.55);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.lab-line {
  position: absolute;
  right: 0;
  top: 42%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(156, 236, 255, 0.78), transparent);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 8% -8% 20% 16%;
  border: 34px solid rgba(230, 106, 44, 0.36);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.hero-image-card,
.hero-product-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.hero-image-card {
  padding: 22px;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
}

.hero-image-card span {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: #e8f4ff;
  font-size: 13px;
  font-weight: 800;
}

.hero-product-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hero-product-strip article {
  padding: 16px;
}

.split-induction-card {
  min-height: 500px;
}

.hero-product-strip img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.hero-product-strip > article > img {
  height: 266px;
  padding: 8px;
}

.induction-equipment-grid {
  position: relative;
  min-height: 408px;
}

.induction-equipment-grid .induction-unit {
  display: block;
  position: absolute;
  width: 64%;
  height: 292px;
  padding: 8px;
  border: 1px solid #dce8f3;
  border-radius: 7px;
  background-color: #f7fbff;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.induction-equipment-grid .unit-a {
  left: -1%;
  top: 0;
}

.induction-equipment-grid .unit-d {
  right: -1%;
  bottom: 0;
  width: 62%;
  height: 302px;
}

.hero-product-strip strong,
.hero-product-strip span {
  display: block;
}

.hero-product-strip strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 15px;
}

.hero-product-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

section {
  padding: 84px clamp(20px, 6vw, 92px);
}

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

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.challenge-section,
.testing-section,
.resources-section {
  background: var(--panel);
}

.portfolio-section {
  background: var(--white);
}

.products-section {
  background: var(--white);
}

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

.challenge-grid article,
.testing-grid article,
.resource-row article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testing-grid article {
  overflow: hidden;
  padding: 0;
}

.testing-grid article img {
  width: 100%;
  height: 220px;
  padding: 14px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
  border-bottom: 1px solid var(--line);
}

.testing-grid article h3,
.testing-grid article p {
  padding-left: 22px;
  padding-right: 22px;
}

.testing-grid article h3 {
  padding-top: 22px;
}

.testing-grid article p {
  padding-bottom: 22px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.spec-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #0f2e53;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.spec-panel img {
  width: 100%;
  height: 300px;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 8px;
  background: var(--white);
  border-radius: 6px;
}

.spec-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.spec-panel div:last-child {
  border-bottom: 0;
}

.spec-panel strong {
  color: var(--white);
}

.spec-panel span {
  color: #b8d8f6;
}

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

.industry-list span {
  padding: 18px 20px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--heat);
  border-radius: 6px;
  font-weight: 800;
}

.inline-image {
  margin: 28px 0 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inline-image img {
  width: 100%;
  height: 300px;
  padding: 12px;
  object-fit: contain;
  background: #ffffff;
}

.inline-image figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.portfolio-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portfolio-card.large {
  grid-column: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 270px;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
  border-bottom: 1px solid var(--line);
}

.portfolio-card.large img {
  height: 320px;
}

.portfolio-card div {
  padding: 22px;
}

.portfolio-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.product-stack {
  display: grid;
  gap: 30px;
}

.product-group {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-group.reverse .product-copy {
  order: 2;
}

.product-group.reverse .product-gallery {
  order: 1;
}

.product-copy {
  position: relative;
}

.product-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-weight: 800;
}

.product-copy h3 {
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.mini-cards span {
  padding: 8px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.application-fold {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--heat);
  border-radius: 6px;
}

.application-fold summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.application-fold p {
  margin: 10px 0 0;
  font-size: 15px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.product-gallery img {
  width: 100%;
  height: 190px;
  padding: 12px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-gallery .gallery-main {
  grid-row: span 2;
  height: 392px;
}

.product-gallery.two-up {
  grid-template-columns: 1fr;
}

.product-gallery.two-up img,
.product-gallery.two-up .gallery-main {
  height: 285px;
}

.induction-product-group {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.85fr);
  align-items: start;
}

.induction-detail-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.induction-detail-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.induction-detail-gallery img {
  width: 100%;
  height: 285px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.induction-detail-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.induction-detail-gallery .process-card {
  grid-column: span 2;
}

.induction-detail-gallery .process-card img {
  height: 260px;
}

.contact-people {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-people article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-people span {
  display: block;
  margin-bottom: 8px;
  color: #9cecff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-people h3 {
  color: var(--white);
}

.contact-people p {
  margin: 5px 0;
  font-size: 15px;
}

.about-section {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #eef6fc 44%, #eef6fc 100%);
}

.about-intro,
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro {
  padding-right: clamp(20px, 4vw, 54px);
}

.about-intro h2 {
  max-width: 680px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.04;
}

.about-facts {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 30px;
}

.about-facts span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  color: var(--navy);
  background: var(--panel);
  border-left: 4px solid var(--heat);
  font-weight: 800;
}

.about-facts strong {
  min-width: 58px;
  color: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
}

.about-copy {
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.74);
  border-left: 1px solid var(--line);
}

.about-copy p {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: 18px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-points span {
  padding: 10px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--heat);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

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

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

.resource-label {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--heat);
  border-radius: 6px;
  font-weight: 800;
}

.page-nav {
  flex-wrap: wrap;
}

.page-hero {
  padding-top: 96px;
  padding-bottom: 72px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(8, 32, 60, 0.98), rgba(18, 59, 109, 0.92)),
    radial-gradient(circle at 82% 28%, rgba(230, 106, 44, 0.38), transparent 28%),
    #123b6d;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 68px);
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
}

.page-content {
  background: var(--white);
}

.article-grid,
.case-grid,
.download-list {
  display: grid;
  gap: 18px;
}

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

.article-grid article,
.download-list article,
.case-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-grid article,
.download-list article {
  padding: 26px;
}

.article-grid span,
.case-grid span,
.download-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-grid h2,
.case-grid h2,
.download-list h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.case-grid article {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
}

.case-grid img {
  width: 100%;
  height: 240px;
  padding: 14px;
  object-fit: contain;
  background: var(--panel);
}

.case-grid div {
  padding: 26px 26px 26px 0;
}

.download-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download-button {
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 20px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(34px, 6vw, 80px);
  background: var(--navy);
}

.contact-section h2,
.contact-section p,
.contact-section a {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

button[type="submit"] {
  min-height: 48px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 92px);
  color: var(--white);
  background: #0b2544;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 78px 20px auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-menu {
    position: static;
    display: grid;
    margin-top: 8px;
    box-shadow: none;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    max-width: 680px;
  }

  .hero-image-card img {
    height: 280px;
  }

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

  .challenge-grid,
  .testing-grid,
  .resource-row,
  .resource-hub,
  .article-grid,
  .case-grid article,
  .portfolio-grid,
  .product-group,
  .industry-list,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portfolio-card.large {
    grid-column: auto;
  }

  .product-group.reverse .product-copy,
  .product-group.reverse .product-gallery {
    order: initial;
  }

  .product-gallery,
  .product-gallery.two-up,
  .induction-detail-gallery {
    grid-template-columns: 1fr;
  }

  .induction-detail-gallery .process-card {
    grid-column: auto;
  }

  .product-gallery .gallery-main,
  .product-gallery img,
  .product-gallery.two-up img,
  .product-gallery.two-up .gallery-main,
  .induction-detail-gallery img,
  .induction-detail-gallery .process-card img {
    height: 260px;
  }

  .case-grid div {
    padding: 24px;
  }

  .download-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-section {
    background: var(--white);
  }

  .about-intro {
    padding-right: 0;
  }

  .about-copy {
    padding: 0;
    background: transparent;
    border-left: 0;
  }

  .testing-grid article img,
  .portfolio-card img,
  .portfolio-card.large img,
  .spec-panel img,
  .inline-image img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .top-contact-bar {
    gap: 8px;
    padding: 9px 16px;
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .solution-pills {
    gap: 8px;
  }

  .solution-pills span {
    width: 100%;
    text-align: center;
  }

  .hero-metrics,
  .hero-product-strip {
    grid-template-columns: 1fr;
  }

  .hero-image-card img,
  .hero-product-strip img {
    height: 210px;
  }

  .induction-equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .induction-equipment-grid .induction-unit,
  .induction-equipment-grid .unit-a,
  .induction-equipment-grid .unit-d {
    position: static;
    width: 100%;
    height: 280px;
  }

  .split-induction-card {
    min-height: auto;
  }

  .hero-product-strip > article > img {
    height: 246px;
  }

  .button {
    width: 100%;
  }

  .spec-panel div {
    flex-direction: column;
    gap: 4px;
  }

  .testing-grid article img,
  .portfolio-card img,
  .portfolio-card.large img,
  .spec-panel img,
  .inline-image img,
  .product-gallery .gallery-main,
  .product-gallery img,
  .product-gallery.two-up img,
  .product-gallery.two-up .gallery-main,
  .induction-detail-gallery img,
  .induction-detail-gallery .process-card img {
    height: 220px;
    padding: 10px;
  }
}
