:root {
  --blue: #0b63b6;
  --blue-dark: #064780;
  --teal: #178f8b;
  --ink: #132338;
  --muted: #5d6b7c;
  --line: #dce5ee;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(19, 35, 56, 0.08);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(640px, 720px) minmax(210px, 1fr);
  justify-content: stretch;
  gap: clamp(16px, 2.6vw, 36px);
  align-items: center;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(11, 99, 182, 0.14);
  box-shadow: 0 8px 22px rgba(19, 35, 56, 0.05);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 99, 182, 0.08) 0%, rgba(11, 99, 182, 0.2) 45%, rgba(23, 143, 139, 0.2) 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: clamp(196px, 14vw, 248px);
  min-width: 196px;
  padding: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  justify-self: center;
  position: relative;
  width: min(100%, 700px);
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: rgba(11, 99, 182, 0.16);
}

.site-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  min-height: 48px;
  padding: 10px 16px 12px;
  border-radius: 0;
  color: #4f5d6f;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: 3px;
  left: 24%;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-width: 190px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(11, 99, 182, 0.16);
}

.header-cta:hover {
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
}

.site-nav .nav-request,
.bottom-cta,
.mobile-snapshot {
  display: none;
}

.site-nav .nav-request::after {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.home-hero {
  min-height: calc(100svh - 86px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.18) 68%),
    url("/assets/home-hero-clean-training-lab.png") center right / cover no-repeat;
}

.hero-copy,
.page-hero,
.section,
.cta-band,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
}

.home-hero .hero-copy {
  width: min(690px, 100%);
  margin: 0;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-body,
.page-hero p,
.section-heading p,
.split p,
.cta-band p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-band {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.home-hero .hero-actions .button {
  min-width: 188px;
  min-height: 52px;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--blue-dark);
  border-color: var(--line);
  background: var(--white);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel-line {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-line span,
.status {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-line strong {
  font-size: 28px;
  line-height: 1.15;
}

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

.panel-grid span {
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
}

.section {
  padding: clamp(52px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.product-card,
.note-panel,
.contact-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card {
  display: flex;
  flex-direction: column;
}

.category-entry-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border-color: #c9d9e7;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.82) 0%, rgba(255, 255, 255, 1) 48%),
    var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-card-media {
  position: relative;
  z-index: 1;
  margin: -30px -30px 24px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(11, 99, 182, 0.14);
  background: var(--soft);
}

.category-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-entry-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(11, 99, 182, 0.14), rgba(23, 143, 139, 0.12));
}

.category-entry-card:hover,
.category-entry-card:focus-within {
  border-color: rgba(11, 99, 182, 0.42);
  box-shadow: 0 20px 50px rgba(19, 35, 56, 0.11);
  transform: translateY(-2px);
}

.category-entry-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 24px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 13px;
  font-weight: 800;
}

.category-entry-card h3 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  font-size: clamp(22px, 2vw, 30px);
}

.category-entry-card p {
  position: relative;
  z-index: 1;
}

.category-entry-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 2px;
}

.category-entry-card a::after {
  content: ">";
  margin-left: 10px;
}

.info-card p,
.product-card p,
.contact-card p {
  color: var(--muted);
}

.info-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.compact {
  min-height: 180px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: start;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

.about-intro {
  max-width: 620px;
}

.about-intro h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 66px);
}

.about-intro p,
.mission-card p,
.values-layout p {
  color: var(--muted);
  font-size: 18px;
}

.about-intro p {
  margin-bottom: 24px;
}

.mission-vision-grid {
  display: grid;
  gap: 18px;
}

.mission-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.72) 0%, rgba(255, 255, 255, 1) 56%),
    var(--white);
}

.mission-card-media {
  margin: 0 0 clamp(22px, 2.4vw, 28px);
  aspect-ratio: 16 / 9;
  min-height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(11, 99, 182, 0.12);
  background: var(--soft);
}

.mission-card-media img,
.values-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-card h2 {
  margin-bottom: 14px;
  padding: 0 clamp(24px, 3vw, 34px);
  color: var(--blue-dark);
  font-size: clamp(30px, 3vw, 44px);
}

.mission-card p {
  padding: 0 clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px);
  margin-bottom: 0;
}

.values-section {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 74px);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.values-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.values-copy h2 {
  margin-bottom: 0;
  color: var(--blue-dark);
}

.values-copy p {
  max-width: 760px;
  margin-top: clamp(12px, 1.8vw, 18px);
  margin-bottom: 0;
}

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

.audience-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
  font-weight: 800;
}

.focus-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--blue-dark);
  font-weight: 800;
}

.cta-band {
  justify-content: space-between;
  margin-bottom: 70px;
  padding: 34px clamp(20px, 5vw, 42px);
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: clamp(50px, 7vw, 86px) clamp(20px, 5vw, 72px) clamp(30px, 5vw, 54px);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
}

.product-card {
  position: relative;
}

.product-listing-section {
  background: var(--soft);
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-list-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-list-image,
.product-main-image,
.product-thumbs span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border: 1px dashed #b8c9d8;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 99, 182, 0.08), rgba(23, 143, 139, 0.08)),
    var(--white);
}

.product-list-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-meta-list,
.product-field-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 8px 0 18px;
}

.product-meta-list div,
.product-field-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-meta-list dt,
.product-field-list dt {
  color: var(--blue-dark);
  font-weight: 800;
}

.product-meta-list dd,
.product-field-list dd {
  margin: 0;
  color: var(--muted);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #97a7b7;
}

.breadcrumb span {
  color: var(--ink);
}

.category-hero {
  padding: clamp(36px, 5vw, 58px) clamp(20px, 5vw, 72px) clamp(46px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(245, 249, 252, 0.9) 0%, rgba(255, 255, 255, 0.96) 58%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-top: 28px;
}

.category-hero h1 {
  max-width: 850px;
}

.category-hero p {
  max-width: 780px;
}

.category-summary-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-summary-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 20px;
}

.category-summary-panel dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.category-summary-panel div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.category-summary-panel dt {
  color: var(--blue-dark);
  font-weight: 800;
}

.category-summary-panel dd {
  margin: 0;
  color: var(--muted);
}

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

.path-flow article,
.scenario-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.path-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
}

.category-scenario-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.scenario-grid {
  display: grid;
  gap: 12px;
}

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

.category-simple-hero {
  padding: 34px clamp(20px, 5vw, 72px) 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.category-simple-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(36px, 4.5vw, 54px);
}

.category-simple-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.cta-selection-hero {
  padding-bottom: 18px;
}

.cta-selection-hero h1 {
  margin-bottom: 0;
}

.simple-category-section {
  padding-top: 34px;
  padding-bottom: 46px;
}

.simple-category-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3.5vw, 54px);
  min-height: clamp(430px, 46vw, 560px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.66) 0%, rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.simple-category-intro,
.simple-category-actions {
  grid-column: 1 / -1;
}

.simple-category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.simple-category-intro h2 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(28px, 3vw, 38px);
}

.simple-category-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.simple-category-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.simple-category-column h2 {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #cfdbe6;
  color: #3f4e61;
  font-size: 20px;
}

.simple-category-column {
  scroll-margin-top: 112px;
  padding: 4px;
  border-radius: 8px;
}

.simple-category-column:target {
  background: #f2f8ff;
  box-shadow: 0 0 0 8px #f2f8ff;
}

.simple-category-column a {
  display: block;
  padding: 9px 0;
  color: #5c6876;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.simple-category-column a:hover {
  color: var(--blue);
}

.cta-selection-section {
  padding-top: 34px;
}

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

.cta-selection-card {
  display: grid;
  grid-template-rows: minmax(150px, auto) minmax(132px, auto) auto;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 249, 252, 0.78) 0%, rgba(255, 255, 255, 1) 42%),
    var(--white);
}

.cta-selection-card h2 {
  align-self: start;
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
}

.cta-selection-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-selection-card .button {
  align-self: end;
  width: max-content;
}

.mega-category-section {
  padding-top: 0;
  background: #ffffff;
}

.mega-category-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(19, 35, 56, 0.1);
}

.mega-category-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 clamp(18px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.mega-tab-row {
  display: flex;
  align-items: stretch;
  gap: 4px;
  min-height: 68px;
}

.mega-tab-row span,
.mega-tab-row strong {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.mega-tab-row strong {
  color: var(--blue-dark);
  background: #eaf6fb;
}

.mega-tab-row strong::after,
.mega-tab-row span::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.mega-category-bar > a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.mega-category-panel {
  padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 44px) clamp(34px, 5vw, 62px);
}

.mega-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.mega-panel-heading h2 {
  margin-bottom: 0;
}

.mega-panel-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.mega-category-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}

.mega-category-column h3 {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccd8e3;
  color: #3f4e61;
  font-size: 20px;
}

.mega-category-column a {
  display: block;
  padding: 10px 0;
  color: #5c6876;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.mega-category-column a:hover {
  color: var(--blue);
}

.product-landing-hero {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(245, 249, 252, 0.82) 0%, rgba(255, 255, 255, 0.96) 54%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}

.product-hero-media {
  display: grid;
  gap: 14px;
}

.product-image-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: clamp(360px, 42vw, 560px);
  padding: 24px;
  border: 1px solid rgba(11, 99, 182, 0.18);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 99, 182, 0.08), rgba(23, 143, 139, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.product-image-label {
  color: var(--blue-dark);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}

.product-image-stage small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.product-thumb-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
}

.product-hero-content {
  max-width: 660px;
}

.product-lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.product-key-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 26px;
}

.product-key-points span {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  color: #394b60;
  font-weight: 800;
  background: var(--white);
}

.product-section-nav {
  position: sticky;
  top: 86px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.product-section-nav a {
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.product-section-nav a:hover {
  color: var(--blue);
  background: var(--soft);
}

.product-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.application-panel {
  display: grid;
  gap: 12px;
}

.application-panel div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.application-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 18px;
}

.application-panel span {
  color: var(--muted);
}

.product-feature-section {
  background: var(--soft);
}

.product-feature-grid,
.resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-feature-card,
.resource-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.spec-table {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 8px 0 0;
}

.spec-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--blue-dark);
  font-weight: 800;
}

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

.sku-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(42px, 5vw, 68px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.sku-gallery,
.sku-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sku-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.sku-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: clamp(320px, 38vw, 500px);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 99, 182, 0.08), rgba(23, 143, 139, 0.1)),
    #fafdff;
}

.sku-main-image span {
  color: var(--blue-dark);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
}

.sku-main-image small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.sku-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sku-thumb-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: var(--soft);
}

.sku-summary {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
}

.sku-summary h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.sku-intro {
  color: var(--muted);
  font-size: 18px;
}

.sku-facts {
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.sku-facts div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sku-facts dt {
  color: var(--blue-dark);
  font-weight: 800;
}

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

.sku-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.sku-actions .button {
  width: 100%;
}

.sku-section-tabs {
  position: sticky;
  top: 86px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.sku-section-tabs a {
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.sku-section-tabs a:hover {
  color: var(--blue);
  background: var(--soft);
}

.sku-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.sku-content-main,
.sku-side-note,
.sku-feature-panel,
.sku-spec-strip {
  border-top: 1px solid var(--line);
}

.sku-side-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.sku-feature-panel {
  background: var(--soft);
}

.sku-accordion-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.sku-accordion-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sku-accordion-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 800;
}

.sku-accordion-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.sku-spec-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(50px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.product-detail-copy {
  max-width: 700px;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-main-image {
  min-height: 390px;
}

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

.product-thumbs span {
  min-height: 92px;
  padding: 12px;
  font-size: 13px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.product-info-panel,
.missing-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.missing-state {
  margin-bottom: 16px;
  background: var(--soft);
}

.missing-state span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.safe-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safe-list li {
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
}

.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7f6;
}

.status.muted {
  color: var(--muted);
  background: var(--soft);
}

.status.active {
  color: var(--blue);
  background: #eaf3ff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 800;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.pending-note,
.inquiry-form .button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #c9d6e2;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.pending-note {
  margin-bottom: 0;
  color: var(--muted);
}

.pending-note.is-success {
  color: var(--blue-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.maintenance-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(245, 249, 252, 0.84) 100%),
    url("/assets/home-hero-clean-training-lab.png") center right / cover no-repeat;
}

.maintenance-shell {
  display: grid;
  min-height: 100svh;
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
}

.maintenance-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(11, 99, 182, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.maintenance-logo {
  display: block;
  width: min(260px, 62vw);
  height: auto;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.maintenance-card h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
}

.maintenance-message {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand {
    width: 170px;
    min-width: 160px;
    min-height: 48px;
    padding: 4px 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav {
    width: min(100%, 580px);
    min-height: 48px;
    padding: 0;
  }

  .site-nav a,
  .header-cta {
    min-height: 42px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .header-cta {
    min-width: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    gap: 14px;
    min-height: 66px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(19, 35, 56, 0.06);
  }

  .site-header::after {
    height: 1px;
    background: var(--line);
  }

  .brand {
    width: 150px;
    min-width: 150px;
    min-height: 44px;
    padding: 4px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--blue-dark);
    background: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-dark);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 8px;
    min-height: auto;
    padding: 10px 0 4px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav.is-open::before {
    display: none;
  }

  .site-nav.is-open a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .site-nav.is-open .nav-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
  }

  .hero,
  .split,
  .about-overview,
  .values-layout,
  .contact-layout,
  .product-list-card,
  .category-hero-grid,
  .category-scenario-section,
  .product-landing-hero,
  .product-story-section,
  .product-spec-layout,
  .sku-hero,
  .sku-content-grid,
  .sku-spec-strip,
  .product-detail-hero,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid,
  .resource-list,
  .path-flow,
  .mega-panel-heading,
  .mega-category-columns,
  .simple-category-intro,
  .simple-category-panel,
  .cta-selection-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .about-overview {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .about-intro h1 {
    font-size: 36px;
  }

  .mission-card {
    padding: 0;
  }

  .mission-card-media {
    min-height: 190px;
    margin-bottom: 20px;
  }

  .values-section {
    padding-bottom: 46px;
  }

  .values-layout {
    gap: 18px;
    padding-top: 24px;
  }

  .values-media {
    min-height: 210px;
  }

  .cta-selection-card {
    grid-template-rows: auto;
    min-height: 0;
    gap: 18px;
  }

  .cta-selection-card .button {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 66px);
    align-content: start;
    gap: 18px;
    padding: 22px 16px 28px;
  }

  .home-hero {
    padding-bottom: 300px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.16) 78%),
      url("/assets/home-hero-clean-training-lab.png") 68% bottom / auto 52% no-repeat;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  h1,
  .page-hero h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-body,
  .page-hero p,
  .section-heading p,
  .split p,
  .cta-band p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
    max-width: 560px;
    padding: 14px;
    box-shadow: none;
  }

  .panel-line {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .panel-line strong {
    font-size: 21px;
  }

  .panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .panel-grid span {
    min-height: 46px;
    padding: 10px;
    font-size: 13px;
  }

  .section {
    padding: 38px 16px;
  }

  .category-hero {
    padding: 24px 16px 34px;
  }

  .category-simple-hero {
    padding: 22px 16px 20px;
  }

  .category-simple-hero h1 {
    font-size: 32px;
  }

  .category-simple-hero p:last-child {
    font-size: 16px;
  }

  .simple-category-section {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .simple-category-panel {
    gap: 18px;
    min-height: auto;
    padding: 18px;
  }

  .simple-category-intro {
    gap: 8px;
    padding-bottom: 14px;
  }

  .simple-category-intro h2 {
    font-size: 24px;
  }

  .simple-category-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .simple-category-actions .button {
    width: 100%;
  }

  .simple-category-column h2 {
    margin-bottom: 8px;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .simple-category-column a {
    padding: 7px 0;
    font-size: 16px;
  }

  .category-hero-grid {
    gap: 18px;
    margin-top: 20px;
  }

  .category-summary-panel {
    padding: 18px;
    box-shadow: none;
  }

  .category-summary-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-category-section {
    padding-top: 0;
  }

  .mega-category-shell {
    box-shadow: none;
  }

  .mega-category-bar {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .mega-tab-row {
    overflow-x: auto;
    min-height: 54px;
  }

  .mega-tab-row span,
  .mega-tab-row strong {
    flex: 0 0 auto;
    padding: 0 14px;
    font-size: 14px;
  }

  .mega-category-bar > a {
    padding: 12px 16px;
    border-top: 1px solid var(--line);
  }

  .mega-category-panel {
    padding: 24px 16px 30px;
  }

  .mega-panel-heading {
    gap: 8px;
    margin-bottom: 22px;
  }

  .mega-category-columns {
    gap: 18px;
  }

  .mega-category-column h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .mega-category-column a {
    padding: 8px 0;
    font-size: 16px;
  }

  .section:first-of-type {
    padding-top: 32px;
  }

  .info-card,
  .product-card,
  .note-panel,
  .contact-card,
  .product-info-panel {
    min-height: auto;
    padding: 18px;
  }

  .product-list-card {
    gap: 18px;
    padding: 18px;
  }

  .product-list-image,
  .product-main-image {
    min-height: 260px;
  }

  .product-detail-hero {
    padding: 30px 16px 34px;
  }

  .product-landing-hero {
    gap: 22px;
    padding: 28px 16px 34px;
  }

  .product-image-stage {
    min-height: 280px;
    box-shadow: none;
  }

  .product-thumb-row,
  .product-key-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section-nav {
    top: 66px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 16px;
  }

  .product-section-nav a {
    flex: 0 0 auto;
  }

  .sku-hero {
    gap: 18px;
    padding: 28px 16px 34px;
  }

  .sku-gallery,
  .sku-summary {
    padding: 16px;
    box-shadow: none;
  }

  .sku-main-image {
    min-height: 260px;
  }

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

  .sku-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sku-section-tabs {
    top: 66px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 16px;
  }

  .sku-section-tabs a {
    flex: 0 0 auto;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .product-thumbs span {
    min-height: 58px;
  }

  .product-card {
    min-height: 178px;
  }

  .audience-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audience-list li {
    padding: 11px 13px;
    border-left-width: 3px;
    font-size: 14px;
  }

  .mobile-snapshot {
    display: block;
    padding-top: 28px;
    padding-bottom: 30px;
    background: var(--soft);
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    margin: 0 16px 86px;
    padding: 24px 18px;
  }

  .page-hero {
    padding: 30px 16px 24px;
  }

  .contact-layout {
    gap: 16px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .form-group {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .form-group:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .bottom-cta {
    position: fixed;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 6px;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    background: var(--blue);
    box-shadow: 0 12px 26px rgba(6, 71, 128, 0.22);
  }

  .bottom-cta.is-hidden {
    pointer-events: none;
    transform: translateY(80px);
    opacity: 0;
  }

  .site-footer {
    padding: 28px 16px 92px;
  }

  .site-footer strong {
    font-size: 20px;
  }

  .footer-nav {
    gap: 10px 14px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 132px;
    min-width: 132px;
  }

  .panel-grid,
  .inquiry-form,
  .form-group {
    grid-template-columns: 1fr;
  }

  .product-meta-list div,
  .product-field-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-row.full,
  .pending-note,
  .inquiry-form .button {
    grid-column: auto;
  }

  h1,
  .page-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .home-hero {
    padding-bottom: 280px;
  }

  .hero-panel {
    margin-top: 2px;
  }

  .button {
    min-height: 44px;
  }
}
