:root {
  --font-body: "Inter", "Roboto", "Segoe UI", sans-serif;
  --font-heading: "Poppins", "Inter", "Roboto", sans-serif;
  --bg: #f8f8fa;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-strong: #ffffff;
  --line: rgba(49, 61, 77, 0.12);
  --line-strong: rgba(49, 61, 77, 0.2);
  --text: #484f56;
  --text-soft: #6b737e;
  --brand: #313d4d;
  --brand-deep: #242f3f;
  --brand-soft: #bbced5;
  --accent: #fd8311;
  --accent-deep: #e57105;
  --shadow: 0 24px 60px rgba(49, 61, 77, 0.12);
  --shadow-soft: 0 14px 34px rgba(49, 61, 77, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: clip;
  background: var(--bg);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  margin-inline: auto;
}

.topbar {
  background: #fff;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(49, 61, 77, 0.08);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.1rem;
  padding: 0.45rem 0;
}

.topbar-note {
  opacity: 0.92;
}

.topbar-note::before {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.topbar-actions a {
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(49, 61, 77, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: none;
}

.brand-logo {
  width: 154px !important;
  max-width: none;
  height: auto !important;
  border-radius: 0;
  box-shadow: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.6rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

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

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

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(49, 61, 77, 0.08);
  color: var(--brand);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--brand);
  border-color: var(--brand);
}

.button.secondary {
  border-color: rgba(49, 61, 77, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  box-shadow: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
}

.button.ghost-light:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.button.small {
  min-height: 38px;
  padding-inline: 1rem;
  font-size: 0.8rem;
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1,
.page-hero-copy h1,
.split-copy h2,
.cta-card h2,
.dark-panel h2,
.value-stack h2,
.contact-copy h2,
.contact-form-shell h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-head h2,
.split-copy h2,
.cta-card h2,
.dark-panel h2,
.value-stack h2,
.contact-copy h2,
.contact-form-shell h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  text-wrap: balance;
}

.section-lead,
.hero-copy p,
.page-hero-copy p,
.split-copy p,
.cta-card p,
.dark-panel p,
.value-stack p,
.contact-copy p,
.contact-form-shell p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1.02rem;
}

.section-note {
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  background: rgba(245, 124, 28, 0.1);
  filter: blur(28px);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.contact-layout,
.product-highlight,
.value-grid,
.cta-grid,
.page-hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.split-grid,
.page-hero-grid,
.contact-layout,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.75rem);
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.stat-card {
  padding: 1.15rem 1rem 1.1rem;
  border: 1px solid rgba(20, 61, 131, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
}

.hero-stage,
.showcase-stage,
.contact-visual,
.page-hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(20, 61, 131, 0.09);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32)),
    linear-gradient(140deg, #f6ede3 0%, #fffefb 58%, #e9eef8 100%);
  box-shadow: var(--shadow);
}

.hero-stage::before,
.showcase-stage::before,
.contact-visual::before,
.page-hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 74%;
  height: 74%;
  border-radius: 999px;
  background: rgba(20, 61, 131, 0.09);
}

.hero-stage::after,
.page-hero-stage::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px dashed rgba(20, 61, 131, 0.12);
  border-radius: calc(var(--radius-lg) - 8px);
}

.stage-chip,
.hero-badge,
.floating-card,
.pill-list span,
.meta-pill,
.info-chip {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 61, 131, 0.11);
  box-shadow: var(--shadow-soft);
}

.stage-chip {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  padding: 0.6rem 1rem;
  max-width: calc(100% - 2.8rem);
  color: var(--brand);
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
}

.hero-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.92rem;
}

.hero-main-image,
.showcase-main,
.page-hero-main {
  position: absolute;
  right: 5%;
  bottom: 7%;
  width: min(78%, 460px);
  filter: drop-shadow(0 32px 40px rgba(18, 37, 67, 0.18));
}

.page-hero-main-photo {
  width: min(82%, 520px);
  aspect-ratio: 1151 / 768;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(18, 37, 67, 0.08);
  box-shadow: 0 26px 50px rgba(18, 37, 67, 0.2);
  filter: none;
}

.hero-float,
.showcase-float,
.page-hero-float {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(20, 61, 131, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-float img,
.showcase-float img,
.page-hero-float img {
  width: 100%;
  height: auto;
}

.hero-float.is-left,
.page-hero-float.is-left {
  left: 4%;
  bottom: 10%;
  width: min(38%, 190px);
  padding: 1rem;
}

.hero-float.is-top,
.page-hero-float.is-top {
  top: 14%;
  right: 8%;
  width: min(36%, 200px);
  padding: 1rem;
}

.floating-card {
  position: absolute;
  left: 7%;
  top: 18%;
  max-width: 15rem;
  padding: 1rem 1.1rem;
}

.floating-card strong {
  display: block;
  color: var(--brand);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.soft-panel,
.range-card,
.feature-card:not(.rack-photo-card),
.value-card,
.info-card,
.gallery-card,
.contact-card,
.contact-form-shell,
.mission-card,
.industry-card,
.process-card,
.detail-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.soft-panel {
  padding: 1.4rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.pill-list span,
.meta-pill,
.info-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
}

.range-grid,
.feature-grid,
.value-list,
.process-grid,
.gallery-grid,
.contact-card-grid,
.mission-grid,
.industry-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.range-card,
.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.range-card figure,
.gallery-card figure,
.showcase-frame {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  margin: 0;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(20, 61, 131, 0.04), rgba(245, 124, 28, 0.04)),
    linear-gradient(135deg, #f5eee6 0%, #fffdf9 100%);
}

.gallery-card figure {
  min-height: 220px;
}

.range-card img,
.gallery-card img,
.showcase-frame img {
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(18, 37, 67, 0.12));
}

.showcase-frame {
  min-height: 310px;
  border-radius: 28px;
  border: 1px solid rgba(20, 61, 131, 0.08);
  box-shadow: var(--shadow-soft);
}

.card-copy,
.gallery-copy,
.contact-card,
.info-card,
.mission-card,
.industry-card,
.process-card,
.detail-box {
  padding: 1.4rem;
}

.card-copy h3,
.gallery-copy h3,
.mission-card h3,
.value-card h3,
.contact-card h3,
.industry-card h3,
.process-card h3,
.detail-box h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.card-copy p,
.gallery-copy p,
.mission-card p,
.value-card p,
.contact-card p,
.industry-card p,
.process-card p,
.detail-box p,
.info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 600;
}

.dark-band {
  background:
    radial-gradient(circle at top right, rgba(245, 124, 28, 0.18), transparent 24%),
    linear-gradient(160deg, #0f2a5a 0%, #18376f 100%);
  color: #fff;
}

.dark-band .section-lead,
.dark-band .section-note,
.dark-band .process-card p,
.dark-band .industry-card p,
.dark-band .contact-card p,
.dark-band .cta-card p {
  color: rgba(230, 237, 247, 0.86);
}

.dark-band .process-card,
.dark-band .industry-card,
.dark-band .info-card,
.dark-band .cta-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.dark-band .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.split-copy .check-list,
.detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.check-item,
.detail-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.check-number,
.detail-box .step-number,
.process-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(245, 124, 28, 0.12);
  color: var(--accent-deep);
  font-weight: 600;
}

.split-visual {
  position: relative;
  min-height: 590px;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(20, 61, 131, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 61, 131, 0.03), rgba(245, 124, 28, 0.06)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.stack-card.large {
  inset: 6% 16% 8% 0;
  padding: 2rem 1.5rem 1.5rem;
}

.stack-card.tall {
  inset: 0 0 18% 52%;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(20, 61, 131, 0.03), rgba(255, 255, 255, 0.92)),
    #f9f6f1;
}

.stack-card.small {
  inset: auto 12% 0 6%;
  padding: 1.2rem 1.2rem 1.4rem;
  min-height: 165px;
}

.stack-card.large img,
.stack-card.tall img,
.stack-card.small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stack-card.small strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-size: 1.15rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.value-stack {
  max-width: 38rem;
}

.value-card {
  padding: 1.45rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.promo-banner,
.cta-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
}

.promo-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.promo-copy p {
  max-width: 31rem;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.promo-visual {
  position: relative;
  min-height: 320px;
}

.promo-visual img {
  position: absolute;
  inset: auto 2% 0 auto;
  width: min(92%, 360px);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.25));
}

.process-card,
.industry-card {
  padding: 1.5rem;
}

.process-number {
  margin-bottom: 1rem;
}

.cta-card {
  position: relative;
  padding: clamp(2rem, 5vw, 3.2rem);
  background:
    radial-gradient(circle at top right, rgba(245, 124, 28, 0.2), transparent 26%),
    linear-gradient(135deg, #fff5ea 0%, #fffdf9 100%);
  border-color: rgba(20, 61, 131, 0.08);
  box-shadow: var(--shadow);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(20, 61, 131, 0.08);
}

.cta-card .hero-actions,
.contact-copy .hero-actions {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.page-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.page-hero-copy .lead {
  max-width: 34rem;
  margin-top: 1.35rem;
}

.page-hero-stage {
  min-height: 520px;
}

.page-hero-main {
  width: min(74%, 390px);
}

.page-hero-main-photo {
  width: min(78%, 440px);
}

.page-hero-float.is-left {
  width: min(34%, 180px);
}

.page-hero-float.is-top {
  width: min(34%, 180px);
}

.page-hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.info-card {
  padding: 1.25rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-copy,
.contact-form-shell {
  padding: 2rem;
}

.contact-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 124, 28, 0.12), transparent 25%),
    rgba(255, 255, 255, 0.88);
}

.contact-visual {
  min-height: 280px;
  margin-top: 2rem;
}

.contact-visual img {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: min(70%, 300px);
  filter: drop-shadow(0 28px 34px rgba(18, 37, 67, 0.16));
}

.contact-visual .showcase-float {
  left: 8%;
  top: 14%;
  width: min(38%, 180px);
  padding: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(20, 61, 131, 0.12);
  border-radius: 18px;
  background: rgba(250, 246, 241, 0.86);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(245, 124, 28, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 124, 28, 0.12);
  background: #fff;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(245, 138, 31, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%);
  color: rgba(18, 43, 68, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  width: 230px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.footer-about p,
.footer-links a,
.footer-contact a,
.footer-meta {
  color: rgba(33, 52, 75, 0.76);
}

.footer-title {
  margin: 0 0 1rem;
  color: #15324d;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-divider {
  margin: 2rem 0 1.4rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  font-size: 0.88rem;
}

.hero-home {
  position: relative;
  min-height: clamp(560px, 78vh, 780px);
  padding: 0;
  background: #e9edf1;
}

.hero-home::before {
  display: none;
}

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

.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: -2%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  animation: heroFade 18s ease-in-out infinite;
}

.hero-slide.is-one {
  background-image: url("assets/images/rsy/hero-main-racks-wide.png");
  animation-delay: 0s;
}

.hero-slide.is-two {
  background-image: url("assets/images/rsy/image_3_transparent.png");
  animation-delay: 6s;
}

.hero-slide.is-three {
  background-image: url("assets/images/rsy/image_8_transparent.png");
  animation-delay: 12s;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 47, 63, 0.82) 0%, rgba(36, 47, 63, 0.72) 28%, rgba(36, 47, 63, 0.42) 54%, rgba(36, 47, 63, 0.16) 100%),
    linear-gradient(180deg, rgba(36, 47, 63, 0.12), rgba(36, 47, 63, 0.28));
  z-index: 1;
}

.hero-home .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(560px, 78vh, 780px);
}

.hero-copy-panel {
  max-width: 31rem;
  padding: 1.8rem 1.85rem 1.9rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(3px);
}

.hero-home .hero-copy .eyebrow {
  color: rgba(244, 246, 249, 0.92);
}

.hero-home .hero-copy h1 {
  max-width: 7ch;
  color: #fff;
  font-size: clamp(3.3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.hero-home .hero-copy .lead {
  max-width: 28rem;
  margin-top: 1.25rem;
  color: rgba(244, 246, 249, 0.88);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-home .hero-actions {
  margin-top: 1.6rem;
}

.home-benefits {
  position: relative;
  margin-top: 0;
  z-index: 5;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  8%,
  27% {
    opacity: 1;
    transform: scale(1);
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(20, 61, 131, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
}

.benefit-card + .benefit-card {
  border-left: 1px solid rgba(20, 61, 131, 0.08);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(245, 124, 28, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-copy strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 1rem;
}

.benefit-copy span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.centered-head {
  justify-content: center;
  text-align: center;
}

.centered-head .section-note {
  max-width: 42rem;
  text-align: center;
}

.category-stage {
  position: relative;
  padding: 2rem;
  border-radius: 34px;
  background: linear-gradient(90deg, #f8f5f1 0%, #f8f5f1 30%, #dfeaf0 30%, #dfeaf0 100%);
  box-shadow: var(--shadow-soft);
}

.category-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 1rem;
}

.category-intro,
.category-tile,
.shelf-card,
.catalog-card,
.assist-card,
.testimonial-card,
.trust-chip {
  border: 1px solid rgba(20, 61, 131, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.category-intro {
  grid-row: span 2;
  padding: 2rem;
}

.category-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.category-intro p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 1.35rem;
}

.category-tile.large {
  grid-column: span 2;
  min-height: 258px;
}

.category-tile img {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  width: min(48%, 220px);
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(18, 37, 67, 0.12));
}

.category-tile.large img {
  width: min(56%, 290px);
}

.category-copy {
  position: relative;
  z-index: 1;
  max-width: 13rem;
}

.category-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.category-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(20, 61, 131, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 600;
}

.tone-cloud {
  background: linear-gradient(135deg, #f8f7f3 0%, #edf2f5 100%);
}

.tone-sand {
  background: linear-gradient(135deg, #fff5eb 0%, #f5eee4 100%);
}

.tone-steel {
  background: linear-gradient(135deg, #edf2f5 0%, #dfe9f0 100%);
}

.tone-peach {
  background: linear-gradient(135deg, #fff0e5 0%, #f8e8dc 100%);
}

.tone-ice {
  background: linear-gradient(135deg, #eef5f8 0%, #e4edf2 100%);
}

.shelf-grid,
.catalog-grid,
.testimonial-grid,
.trust-grid,
.assist-cards {
  display: grid;
  gap: 1.25rem;
}

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

.shelf-card {
  position: relative;
  padding: 1.25rem;
  text-align: center;
}

.sale-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
}

.shelf-media,
.catalog-media {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fbf7f2 0%, #eef3f6 100%);
}

.catalog-media {
  min-height: 186px;
}

.shelf-media img {
  max-height: 172px;
  object-fit: contain;
}

.catalog-media img {
  max-height: 148px;
  object-fit: contain;
}

.shelf-card h3,
.catalog-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.shelf-note,
.catalog-note {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.94rem;
}

.shelf-meta {
  margin-top: 0.8rem;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.mini-action {
  margin-top: 1rem;
}

.statement-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(17, 36, 66, 0.88) 0%, rgba(17, 36, 66, 0.74) 54%, rgba(17, 36, 66, 0.36) 100%),
    linear-gradient(135deg, #153563 0%, #244a7e 100%);
  box-shadow: var(--shadow);
}

.statement-banner img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48%, 500px);
  opacity: 0.76;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.3));
}

.statement-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2.6rem;
  text-align: center;
}

.statement-copy h2 {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.statement-copy p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(230, 237, 247, 0.86);
  line-height: 1.8;
}

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

.catalog-card {
  padding: 1rem;
}

.catalog-card .mini-action {
  margin-top: 0.8rem;
}

.assist-shell {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 2rem 7.2rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(13, 40, 87, 0.9), rgba(23, 53, 108, 0.84)),
    linear-gradient(135deg, #e4edf3 0%, #d4e1e9 100%);
  box-shadow: var(--shadow);
}

.assist-shell::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.assist-bg {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: min(34%, 340px);
  opacity: 0.2;
}

.assist-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.assist-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.assist-copy p {
  color: rgba(230, 237, 247, 0.85);
}

.assist-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -4rem;
}

.assist-card {
  position: relative;
  padding: 1.45rem;
  text-align: center;
}

.assist-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.assist-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.assist-card .benefit-icon {
  margin: 0 auto 0.9rem;
}

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

.testimonial-card {
  padding: 1.6rem;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.trust-band {
  background: #e8edf2;
}

.trust-stage {
  text-align: center;
}

.trust-stage h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.trust-stage p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.trust-chip {
  padding: 1.1rem 0.9rem;
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-row {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .range-grid,
  .benefit-strip,
  .category-mosaic,
  .shelf-grid,
  .feature-grid,
  .value-list,
  .process-grid,
  .catalog-grid,
  .gallery-grid,
  .industry-grid,
  .assist-cards,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-intro {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .page-hero-grid,
  .contact-layout,
  .cta-grid,
  .showcase-grid,
  .promo-banner,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .showcase-stage,
  .page-hero-stage {
    min-height: 520px;
  }

  .hero-home,
  .hero-home .hero-grid {
    min-height: 620px;
  }

  .hero-copy-panel {
    max-width: 28rem;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .split-visual {
    min-height: 520px;
    order: -1;
  }

  .statement-banner img,
  .assist-bg {
    width: min(48%, 300px);
  }

  .promo-visual {
    min-height: 280px;
  }

  .promo-visual img {
    left: 50%;
    right: auto;
    inset: auto auto 0 50%;
    transform: translateX(-50%);
    width: min(88%, 360px);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
  }

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.9rem);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem;
    border: 1px solid rgba(20, 61, 131, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .brand-logo {
    width: 150px !important;
  }

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

  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    border-top: 1px solid rgba(20, 61, 131, 0.08);
  }

  .benefit-card:nth-child(3) {
    border-left: 0;
  }

  .hero-stats,
  .feature-grid,
  .value-list,
  .process-grid,
  .catalog-grid,
  .gallery-grid,
  .industry-grid,
  .contact-card-grid,
  .assist-cards,
  .trust-grid,
  .range-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-form-shell {
    padding: 1.45rem;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 138px !important;
  }

  .header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    gap: 0.5rem 1rem;
  }

  .site-nav a {
    width: auto;
  }

  .topbar-inner,
  .header-row,
  .hero-actions,
  .promo-actions,
  .footer-meta {
    align-items: stretch;
  }

  .hero-grid,
  .split-grid,
  .page-hero-grid,
  .contact-layout,
  .cta-grid,
  .showcase-grid,
  .range-grid,
  .category-mosaic,
  .shelf-grid,
  .gallery-grid,
  .feature-grid,
  .value-list,
  .process-grid,
  .industry-grid,
  .contact-card-grid,
  .footer-grid {
    justify-items: center;
  }

  .hero,
  .page-hero {
    padding-top: 3.2rem;
  }

  .hero-home,
  .hero-home .hero-grid {
    min-height: auto;
  }

  .hero-home {
    padding: 3rem 0 2.25rem;
  }

  .hero-slide.is-two,
  .hero-slide.is-three {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(36, 47, 63, 0.72), rgba(36, 47, 63, 0.46));
  }

  .hero-copy-panel {
    padding: 1.35rem 1.25rem 1.4rem;
    background: rgba(36, 47, 63, 0.36);
    border-width: 2px;
  }

  .home-benefits {
    margin-top: 0;
  }

  .topbar {
    font-size: 0.74rem;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  .topbar-note {
    display: none;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 1.04;
    max-width: 18rem;
  }

  .section-head h2,
  .split-copy h2,
  .cta-card h2,
  .dark-panel h2,
  .value-stack h2,
  .contact-copy h2,
  .contact-form-shell h2 {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
    line-height: 1.08;
    max-width: 20rem;
  }

  .hero-copy .lead,
  .page-hero-copy .lead,
  .section-note {
    max-width: 19rem;
    font-size: 0.98rem;
  }

  .hero-copy,
  .page-hero-copy,
  .section-head,
  .hero-stage,
  .showcase-stage,
  .page-hero-stage,
  .range-card,
  .gallery-card,
  .stat-card,
  .contact-card,
  .feature-card,
  .value-card,
  .industry-card,
  .process-card,
  .cta-card,
  .contact-copy,
  .contact-form-shell,
  .soft-panel {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .category-stage {
    padding: 1rem;
  }

  .split-visual,
  .split-copy {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .category-intro,
  .category-tile,
  .shelf-card,
  .catalog-card,
  .assist-card,
  .testimonial-card,
  .trust-chip {
    max-width: 340px;
  }

  .category-tile.large {
    grid-column: auto;
    min-height: 228px;
  }

  .category-tile {
    min-height: 260px;
  }

  .category-copy {
    max-width: 10rem;
  }

  .category-tile img {
    right: 0.85rem;
    bottom: 0.85rem;
    width: min(34%, 110px);
    max-height: 110px;
  }

  .category-tile.large img {
    width: min(38%, 122px);
  }

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

  .benefit-card + .benefit-card,
  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(20, 61, 131, 0.08);
  }

  .statement-copy,
  .assist-shell {
    padding-inline: 1.25rem;
  }

  .promo-banner {
    padding: 1.35rem;
  }

  .promo-visual {
    min-height: auto;
  }

  .promo-visual img {
    position: static;
    display: block;
    width: min(100%, 260px);
    max-width: 260px;
    margin-inline: auto;
    transform: none;
  }

  .stage-chip {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .stage-chip,
  .hero-badge,
  .floating-card {
    display: none;
  }

  .statement-copy h2,
  .assist-copy h2,
  .trust-stage h2 {
    max-width: 12ch;
    margin-inline: auto;
  }

  .statement-banner img,
  .assist-bg {
    opacity: 0.16;
    width: min(58%, 220px);
  }

  .hero-stage,
  .showcase-stage,
  .contact-visual,
  .page-hero-stage,
  .split-visual {
    min-height: 430px;
  }

  .hero-main-image,
  .showcase-main,
  .page-hero-main {
    width: min(80%, 300px);
  }

  .page-hero-main-photo {
    width: min(88%, 320px);
  }

  .stage-chip,
  .hero-badge,
  .floating-card {
    position: static;
    margin: 1rem;
  }

  .hero-float.is-left,
  .hero-float.is-top,
  .page-hero-float.is-left,
  .page-hero-float.is-top,
  .contact-visual .showcase-float {
    width: min(40%, 140px);
    padding: 0.75rem;
  }

  .hero-float.is-left,
  .page-hero-float.is-left {
    left: 5%;
    bottom: 14%;
  }

  .hero-float.is-top,
  .page-hero-float.is-top {
    top: 20%;
    right: 8%;
  }

  .stack-card.large {
    inset: 12% 8% 14% 0;
  }

  .stack-card.tall {
    inset: 0 0 24% 48%;
  }

  .stack-card.small {
    inset: auto 0 0 8%;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
}

.brand-logo {
  width: 132px !important;
}

.header-cta {
  border-radius: 999px;
  box-shadow: none;
}

.hero-home {
  min-height: clamp(372px, 52vh, 470px);
  background: #efe7dd;
}

.hero-slide {
  inset: 0;
  opacity: 1;
  transform: none;
  animation: none;
  filter: saturate(0.96);
}

.hero-slide.is-one {
  background-image: url("assets/images/rsy/hero-main-racks-wide.png");
  background-position: right center;
  background-size: auto 100%;
  transform: none;
}

.hero-slide.is-two,
.hero-slide.is-three {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 236, 226, 0.96) 0%, rgba(244, 236, 226, 0.92) 30%, rgba(244, 236, 226, 0.58) 54%, rgba(244, 236, 226, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.hero-home .hero-grid {
  min-height: clamp(372px, 52vh, 470px);
  padding: 0.8rem 0 1.3rem;
}

.hero-copy {
  max-width: 30.5rem;
}

.hero-home .hero-copy h1 {
  max-width: 9.9ch;
  color: var(--brand);
  font-size: clamp(2.55rem, 4.5vw, 3.9rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-home .hero-copy .eyebrow {
  margin-bottom: 0.72rem;
  color: rgba(49, 61, 77, 0.72);
  font-size: 0.95rem;
}

.hero-home .hero-copy .lead {
  max-width: 26rem;
  margin-top: 0.7rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.56;
}

.hero-copy-motion {
  isolation: isolate;
}

.hero-copy-motion .hero-eyebrow {
  display: grid;
  gap: 0.38rem;
  max-width: min(100%, 31rem);
  margin-bottom: 1.05rem;
  color: rgba(49, 61, 77, 0.8);
  font-family: var(--font-heading);
  font-style: normal;
  text-transform: none;
}

.hero-copy-motion .hero-eyebrow::before {
  display: none;
}

.hero-copy-motion .hero-eyebrow span {
  position: relative;
  display: block;
}

.hero-copy-motion .hero-eyebrow-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-copy-motion .hero-eyebrow-kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(20, 61, 131, 0.55));
}

.hero-copy-motion .hero-eyebrow-kicker::after {
  content: "";
  flex: 1 1 auto;
  min-width: 52px;
  height: 1px;
  margin-top: 1px;
  background: rgba(49, 61, 77, 0.16);
}

.hero-copy-motion .hero-eyebrow-text {
  max-width: 30rem;
  padding-left: 3.15rem;
  color: rgba(49, 61, 77, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy-motion .hero-eyebrow-text::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 124, 28, 0.95), rgba(20, 61, 131, 0.22));
}

.hero-home .hero-copy.hero-copy-motion h1 {
  max-width: none;
}

.hero-copy-motion h1 {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}

.hero-copy-motion .hero-title-line {
  display: block;
  width: fit-content;
}

.hero-copy-motion .hero-title-accent {
  position: relative;
  padding-right: 0.1em;
}

.hero-copy-motion .hero-title-accent::after {
  content: "";
  position: absolute;
  left: -0.12em;
  right: -0.14em;
  bottom: 0.08em;
  height: 0.32em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 124, 28, 0.2), rgba(245, 124, 28, 0.42));
  transform: scaleX(0.2);
  transform-origin: left center;
  opacity: 0;
  z-index: -1;
}

.hero-copy-motion .hero-lead-copy {
  position: relative;
  padding-left: 1rem;
}

.hero-copy-motion .hero-lead-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(20, 61, 131, 0.24));
}

.hero-copy-motion .hero-eyebrow,
.hero-copy-motion .hero-title-line,
.hero-copy-motion .hero-lead-copy,
.hero-copy-motion .hero-actions .button {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.hero-copy-motion.is-visible .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.hero-copy-motion.is-visible .hero-title-line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

.hero-copy-motion.is-visible .hero-title-line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 310ms;
}

.hero-copy-motion.is-visible .hero-title-line:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}

.hero-copy-motion.is-visible .hero-title-accent::after {
  opacity: 1;
  animation: heroAccentSweep 900ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both;
}

.hero-copy-motion.is-visible .hero-lead-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 470ms;
}

.hero-copy-motion.is-visible .hero-actions .button:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 560ms;
}

.hero-copy-motion.is-visible .hero-actions .button:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 640ms;
}

@keyframes heroAccentSweep {
  0% {
    opacity: 0;
    transform: scaleX(0.18);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy-motion .hero-eyebrow,
  .hero-copy-motion .hero-title-line,
  .hero-copy-motion .hero-lead-copy,
  .hero-copy-motion .hero-actions .button {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy-motion .hero-title-accent::after {
    opacity: 1;
    transform: scaleX(1);
    animation: none;
  }
}

.hero-secondary {
  border-color: rgba(49, 61, 77, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
}

.hero-secondary:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.home-benefits {
  margin-top: -1.25rem;
}

.benefit-strip {
  border-radius: 12px;
  border-color: rgba(49, 61, 77, 0.08);
  box-shadow: 0 18px 38px rgba(49, 61, 77, 0.08);
}

.benefit-card {
  padding: 1.2rem 1.3rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.category-showcase {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.68fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(90deg, #f6f3ed 0%, #f6f3ed 28%, #dbe7ec 28%, #dbe7ec 100%);
  box-shadow: 0 18px 36px rgba(49, 61, 77, 0.07);
}

.category-aside {
  padding: 2.15rem 1.85rem;
  border: 1px solid rgba(49, 61, 77, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 243, 0.96));
  box-shadow: 0 16px 34px rgba(49, 61, 77, 0.06);
}

.category-aside .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-aside .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(20, 61, 131, 0.55));
}

.category-aside h2,
.promo-cover-copy h2,
.story-copy h2,
.support-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.category-aside h2 {
  max-width: 10.5ch;
  color: var(--brand);
  font-size: clamp(2rem, 3.3vw, 2.95rem);
  line-height: 1.04;
}

.category-aside p,
.promo-cover-copy p,
.story-copy p,
.support-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.category-aside > p:not(.eyebrow) {
  max-width: 29ch;
  color: rgba(49, 61, 77, 0.76);
  font-size: 0.95rem;
  line-height: 1.78;
}

.category-aside p + p,
.promo-cover-copy p + p,
.story-copy p + p,
.support-copy p + p {
  margin-top: 1rem;
}

.category-tiles,
.category-feature-row,
.category-small-row {
  display: grid;
  gap: 1rem;
}

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

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

.rack-photo-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 208px;
  padding: 1.15rem;
  border-radius: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.rack-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 27, 39, 0) 14%, rgba(18, 27, 39, 0.14) 48%, rgba(18, 27, 39, 0.78) 100%);
}

.feature-card {
  min-height: 246px;
}

.rack-photo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
  max-width: min(100%, 16rem);
  padding: 0;
  color: #fff;
  text-shadow: 0 2px 12px rgba(10, 18, 29, 0.4);
}

.rack-photo-copy h3 {
  margin: 0;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.rack-photo-copy p {
  margin: 0;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-card .rack-photo-copy {
  max-width: min(100%, 17rem);
}

.feature-card .rack-photo-copy h3 {
  font-size: clamp(1.24rem, 1.9vw, 1.42rem);
}

.feature-card .rack-photo-copy p {
  max-width: 24ch;
  font-size: 0.82rem;
}

.category-small-row .rack-photo-copy {
  max-width: min(100%, 10.5rem);
}

.category-small-row .rack-photo-copy h3 {
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
}

.category-small-row .rack-photo-copy p {
  max-width: 17ch;
  font-size: 0.74rem;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}

.category-link {
  gap: 0.35rem;
  min-height: auto;
  margin-top: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: none;
  backdrop-filter: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.category-link::after {
  content: "\2197";
  font-size: 0.75rem;
  line-height: 1;
}

.category-link:hover,
.category-link:focus-visible {
  color: #fff;
  opacity: 0.86;
}

.pallet-photo {
  background-image:
    linear-gradient(180deg, rgba(26, 42, 67, 0.06), rgba(26, 42, 67, 0.62)),
    url("assets/images/rsy/pallet-racks-warehouse.jpg");
}

.photo-range-card figure {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 61, 131, 0.04), rgba(245, 124, 28, 0.04)),
    linear-gradient(135deg, #f5eee6 0%, #fffdf9 100%);
}

.photo-range-card img {
  width: 100%;
  height: 240px;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.photo-shelf-media {
  padding: 0;
  overflow: hidden;
}

.photo-shelf-media img {
  width: 100%;
  height: 210px;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.photo-catalog-media {
  display: block;
  padding: 0;
  overflow: hidden;
}

.photo-catalog-media img {
  width: 100%;
  height: 186px;
  max-height: none;
  object-fit: cover;
  filter: none;
  display: block;
}

.photo-float-card {
  padding: 0;
  overflow: hidden;
}

.photo-float-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.portrait-float-card img {
  aspect-ratio: 2 / 3;
}

.heavy-photo {
  background-image:
    linear-gradient(180deg, rgba(26, 42, 67, 0.08), rgba(26, 42, 67, 0.64)),
    url("assets/images/rsy/heavy-duty-racks-warehouse.jpg");
}

.retail-photo {
  background-image:
    linear-gradient(180deg, rgba(26, 42, 67, 0.08), rgba(26, 42, 67, 0.56)),
    url("assets/images/rsy/supermarket-racks-aisle.png");
}

.display-photo {
  background-image:
    linear-gradient(180deg, rgba(18, 24, 33, 0.12), rgba(18, 24, 33, 0.66)),
    url("assets/images/rsy/display-racks-premium.png");
}

.slotted-photo {
  background-image:
    linear-gradient(180deg, rgba(36, 47, 63, 0.1), rgba(36, 47, 63, 0.58)),
    url("assets/images/rsy/slotted-angle-racks-storage.png");
}

.cantilever-photo {
  background-image:
    linear-gradient(180deg, rgba(26, 42, 67, 0.08), rgba(26, 42, 67, 0.64)),
    url("assets/images/rsy/cantilever-racks-warehouse.png");
}

.cutout-card {
  align-items: stretch;
  background: linear-gradient(135deg, #fbf6ef 0%, #ffffff 100%);
}

.cutout-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.cutout-card img {
  position: absolute;
  right: 0.9rem;
  bottom: 0.75rem;
  width: min(42%, 138px);
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(18, 37, 67, 0.15));
}

.warm-card {
  background: linear-gradient(135deg, #fff2e6 0%, #fffaf4 100%);
}

.dark-copy {
  color: var(--brand);
}

.dark-copy p {
  color: var(--text-soft);
}

.promo-cover,
.statement-cover,
.support-cover {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.promo-cover {
  min-height: 400px;
  padding: 3.25rem;
  background:
    linear-gradient(90deg, rgba(19, 24, 33, 0.7) 0%, rgba(19, 24, 33, 0.56) 34%, rgba(19, 24, 33, 0.18) 100%),
    url("assets/images/rsy/practical-project-support-dark-shelves.jpg") center/cover no-repeat;
}

.promo-cover-copy {
  max-width: 33rem;
}

.promo-cover-copy h2,
.statement-copy h2,
.support-copy h2 {
  color: #fff;
}

.promo-cover-copy p,
.statement-copy p,
.support-copy p {
  color: rgba(236, 242, 247, 0.88);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 1.9rem 0.3rem 0.9rem 0.9rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 239, 246, 0.94) 100%);
  box-shadow: 0 28px 64px rgba(15, 36, 56, 0.1);
  z-index: 0;
}

.story-frame {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  width: 124px;
  height: 124px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(21, 51, 79, 0.12) 0%, rgba(21, 51, 79, 0.02) 100%);
  z-index: 1;
}

.story-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 38, 59, 0.08);
  box-shadow: 0 24px 48px rgba(15, 36, 56, 0.16);
  z-index: 2;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-photo {
  inset: 3.15rem auto auto 1.85rem;
  width: min(72%, 430px);
  height: 360px;
}

.secondary-photo {
  inset: auto 0.95rem 5.15rem auto;
  width: min(46%, 272px);
  height: 220px;
}

.experience-badge {
  position: absolute;
  left: 1.85rem;
  bottom: 1rem;
  max-width: 292px;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 32, 51, 0.95) 0%, rgba(20, 49, 74, 0.95) 100%);
  box-shadow: 0 20px 44px rgba(11, 30, 48, 0.24);
  z-index: 3;
}

.experience-badge::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f58a1f 0%, #ffd089 100%);
}

.experience-badge strong {
  display: block;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-badge span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(236, 242, 247, 0.82);
  line-height: 1.55;
}

.story-copy {
  max-width: 38rem;
}

.story-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.story-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.story-point h3 {
  margin: 0 0 0.35rem;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.story-point p {
  margin: 0;
}

.story-point-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(253, 131, 17, 0.12);
  color: var(--accent-deep);
  font-weight: 600;
}

.shelf-card,
.catalog-card,
.assist-card,
.testimonial-card,
.trust-chip {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(49, 61, 77, 0.06);
}

.shelf-card,
.catalog-card {
  background: #fff;
}

.shelf-media,
.catalog-media {
  border-radius: 10px;
  background: linear-gradient(135deg, #fcfaf7 0%, #eef2f5 100%);
}

.statement-cover {
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(36, 47, 63, 0.48) 0%, rgba(36, 47, 63, 0.62) 100%),
    url("assets/images/rsy/built-for-scalable-operations-warehouse.jpg") center/cover no-repeat;
}

.statement-copy {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4.3rem 2rem;
}

.support-section {
  padding-top: clamp(4rem, 7vw, 5.5rem);
}

.support-cover {
  min-height: 380px;
  padding: 3.2rem 2rem 7.4rem;
  background:
    linear-gradient(180deg, rgba(36, 47, 63, 0.44) 0%, rgba(36, 47, 63, 0.66) 100%),
    url("assets/images/rsy/project-assistance-store-aisle.png") center/cover no-repeat;
}

.support-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.assist-cards {
  margin-top: -4rem;
}

.assist-card {
  background: rgba(255, 255, 255, 0.98);
}

.testimonial-card {
  padding: 1.7rem;
}

.trust-band {
  background: #edf2f6;
}

.trust-chip {
  padding: 1rem 0.9rem;
  border-radius: 8px;
  box-shadow: none;
}

.cta-card {
  border-radius: 14px;
}

@media (max-width: 1120px) {
  .category-showcase,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .story-copy {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .hero-home,
  .hero-home .hero-grid {
    min-height: 405px;
  }

  .hero-home .hero-grid {
    padding-bottom: 1.4rem;
  }

  .hero-home .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 6.5vw, 3.35rem);
  }

  .hero-copy-motion .hero-eyebrow {
    max-width: min(100%, 29rem);
  }

  .hero-copy-motion .hero-eyebrow-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-copy-motion .hero-eyebrow-text {
    padding-left: 2.85rem;
    font-size: 0.76rem;
  }

  .hero-slide.is-one {
    background-position: 72% center;
    background-size: auto 100%;
    transform: none;
  }

  .promo-cover,
  .statement-cover,
  .support-cover {
    min-height: auto;
  }

  .story-visual {
    min-height: 520px;
    max-width: 620px;
    margin: 0 auto;
  }
}

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

  .hero-home,
  .hero-home .hero-grid {
    min-height: 348px;
  }

  .hero-home {
    padding: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(244, 236, 226, 0.96) 0%, rgba(244, 236, 226, 0.88) 42%, rgba(244, 236, 226, 0.34) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
  }

  .hero-home .hero-grid {
    padding: 0.85rem 0 1.1rem;
  }

  .hero-home .hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(1.95rem, 9.2vw, 2.65rem);
    line-height: 0.95;
  }

  .hero-copy-motion .hero-eyebrow {
    gap: 0.34rem;
    max-width: 100%;
    margin-bottom: 0.8rem;
  }

  .hero-copy-motion .hero-eyebrow-kicker {
    gap: 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-copy-motion .hero-eyebrow-kicker::before {
    width: 28px;
  }

  .hero-copy-motion .hero-eyebrow-kicker::after {
    min-width: 28px;
  }

  .hero-copy-motion .hero-eyebrow-text {
    max-width: 16.8rem;
    padding-left: 2.15rem;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

  .hero-copy-motion .hero-title-accent::after {
    bottom: 0.04em;
    height: 0.28em;
  }

  .hero-copy-motion .hero-lead-copy {
    padding-left: 0.8rem;
  }

  .hero-slide.is-one {
    background-position: 66% center;
    background-size: auto 100%;
    transform: none;
  }

  .hero-home .hero-copy .lead {
    max-width: 100%;
    margin-top: 0.56rem;
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .home-benefits {
    margin-top: -0.55rem;
  }

  .category-showcase {
    padding: 1rem;
    background: linear-gradient(180deg, #f6f3ed 0%, #f6f3ed 32%, #dbe7ec 32%, #dbe7ec 100%);
  }

  .category-feature-row,
  .category-small-row {
    grid-template-columns: 1fr;
  }

  .rack-photo-card,
  .feature-card {
    min-height: 230px;
  }

  .category-aside,
  .rack-photo-card,
  .promo-cover,
  .statement-cover,
  .support-cover,
  .shelf-card,
  .catalog-card,
  .assist-card,
  .testimonial-card,
  .trust-chip,
  .cta-card {
    border-radius: 12px;
  }

  .cutout-card img {
    width: min(42%, 128px);
  }

  .promo-cover,
  .statement-copy,
  .support-cover {
    padding: 2.2rem 1.25rem;
  }

  .story-visual {
    min-height: 470px;
  }

  .story-frame {
    width: 76px;
    height: 76px;
    left: 0.55rem;
    border-radius: 18px;
  }

  .primary-photo {
    inset: 2.5rem auto auto 0.75rem;
    width: 72%;
    height: 255px;
  }

  .secondary-photo {
    inset: auto 0.5rem 4.65rem auto;
    width: 46%;
    height: 162px;
  }

  .experience-badge {
    left: 0.9rem;
    right: 0.9rem;
    max-width: none;
    bottom: 0.45rem;
    padding: 0.9rem 1rem;
  }

  .story-point {
    padding: 1rem;
  }

  .assist-cards {
    margin-top: 1.25rem;
  }

  .support-cover {
    padding-bottom: 2.2rem;
  }
}

/* 2026-04-18 corporate theme refinement */
:root {
  --bg: #edf2f7;
  --bg-soft: #f7fafc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-strong: #fdfefe;
  --line: rgba(18, 43, 68, 0.1);
  --line-strong: rgba(18, 43, 68, 0.18);
  --text: #4c5a67;
  --text-soft: #6b7885;
  --brand: #15324d;
  --brand-deep: #0e2235;
  --brand-soft: #d6e2ec;
  --accent: #f58a1f;
  --accent-deep: #db6d09;
  --shadow: 0 26px 60px rgba(18, 43, 68, 0.12);
  --shadow-soft: 0 16px 34px rgba(18, 43, 68, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

body {
  background:
    linear-gradient(180deg, #edf2f7 0%, #f7fafc 20%, #eef3f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 50, 77, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 50, 77, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}

.topbar {
  background: linear-gradient(90deg, #10263b 0%, #16324d 100%);
  color: rgba(233, 240, 247, 0.86);
  border-bottom: 0;
}

.topbar-note,
.topbar-actions a {
  color: rgba(233, 240, 247, 0.86);
}

.topbar-note::before {
  width: 0.42rem;
  height: 0.42rem;
  background: linear-gradient(135deg, #ffb25b, var(--accent));
  box-shadow: 0 0 0 4px rgba(245, 138, 31, 0.12);
}

.site-header {
  border-bottom: 1px solid rgba(18, 43, 68, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(18, 43, 68, 0.06);
}

.header-row {
  min-height: 78px;
}

.site-nav a {
  color: rgba(21, 50, 77, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

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

.site-nav a::after {
  bottom: -0.32rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.button {
  min-height: 46px;
  padding: 0.84rem 1.38rem;
  border-radius: 12px;
  border-color: rgba(245, 138, 31, 0.7);
  background: linear-gradient(135deg, #ff9d34 0%, #ef7817 100%);
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 30px rgba(239, 120, 23, 0.18);
}

.button:hover {
  box-shadow: 0 18px 34px rgba(18, 43, 68, 0.14);
}

.button.secondary {
  border-color: rgba(21, 50, 77, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  box-shadow: 0 12px 24px rgba(18, 43, 68, 0.08);
}

.section {
  padding: clamp(4.4rem, 7vw, 6.35rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(21, 50, 77, 0.5));
}

.section-head {
  margin-bottom: 2.35rem;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1,
.page-hero-copy h1,
.split-copy h2,
.cta-card h2,
.dark-panel h2,
.value-stack h2,
.contact-copy h2,
.contact-form-shell h2 {
  line-height: 1.02;
}

.section-note,
.section-lead,
.hero-copy p,
.page-hero-copy p,
.split-copy p,
.cta-card p,
.dark-panel p,
.value-stack p,
.contact-copy p,
.contact-form-shell p {
  color: var(--text-soft);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 27, 43, 0.84) 0%, rgba(12, 27, 43, 0.68) 30%, rgba(12, 27, 43, 0.28) 58%, rgba(12, 27, 43, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 27, 43, 0.16), rgba(12, 27, 43, 0.08));
}

.hero-home .hero-copy h1 {
  color: #fff;
  text-shadow: 0 18px 40px rgba(8, 20, 33, 0.32);
}

.hero-home .hero-copy .lead {
  color: rgba(237, 243, 249, 0.86);
}

.hero-home .hero-copy .hero-eyebrow-kicker {
  color: rgba(255, 255, 255, 0.92);
}

.hero-home .hero-copy .hero-eyebrow-kicker::after {
  background: rgba(255, 255, 255, 0.18);
}

.hero-home .hero-copy .hero-eyebrow-text {
  color: rgba(232, 239, 246, 0.8);
}

.hero-home .hero-copy .hero-eyebrow-text::before {
  background: linear-gradient(180deg, rgba(255, 181, 88, 0.98), rgba(255, 255, 255, 0.18));
}

.hero-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.benefit-strip {
  border-radius: 18px;
  border: 1px solid rgba(18, 43, 68, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(18, 43, 68, 0.08);
}

.benefit-card {
  padding: 1.22rem 1.3rem;
}

.benefit-copy strong {
  color: var(--brand);
  font-weight: 700;
}

.hero-stage,
.showcase-stage,
.contact-visual,
.page-hero-stage {
  border-radius: 24px;
  border: 1px solid rgba(18, 43, 68, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, #eef2f6 0%, #fafcfe 46%, #e4ebf4 100%);
  box-shadow: 0 28px 60px rgba(18, 43, 68, 0.12);
}

.hero-stage::after,
.page-hero-stage::after {
  border-color: rgba(18, 43, 68, 0.12);
}

.stage-chip,
.hero-badge,
.floating-card,
.pill-list span,
.meta-pill,
.info-chip {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 43, 68, 0.09);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.08);
}

.stage-chip {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-badge {
  border-radius: 14px;
  line-height: 1.7;
}

.soft-panel,
.range-card,
.feature-card:not(.rack-photo-card),
.value-card,
.info-card,
.gallery-card,
.contact-card,
.contact-form-shell,
.mission-card,
.industry-card,
.process-card,
.detail-box {
  border-radius: 18px;
  border: 1px solid rgba(18, 43, 68, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
  box-shadow: 0 18px 36px rgba(18, 43, 68, 0.07);
}

.range-card figure,
.gallery-card figure,
.showcase-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 239, 246, 0.82)),
    linear-gradient(135deg, #f1f5f9 0%, #fbfcfd 100%);
}

.showcase-frame {
  border-radius: 18px;
}

.card-copy h3,
.gallery-copy h3,
.mission-card h3,
.value-card h3,
.contact-card h3,
.industry-card h3,
.process-card h3,
.detail-box h3 {
  color: var(--brand);
  font-weight: 700;
}

.category-showcase {
  border: 1px solid rgba(18, 43, 68, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, #edf2f7 0%, #f7fafc 40%, #e7eef6 100%);
  box-shadow: 0 22px 46px rgba(18, 43, 68, 0.08);
}

.category-aside {
  position: relative;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 16px 32px rgba(18, 43, 68, 0.06);
}

.category-aside::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(21, 50, 77, 0.18));
}

.category-aside .eyebrow {
  color: var(--brand);
}

.category-aside h2 {
  color: var(--brand-deep);
}

.category-actions .button.small {
  min-height: 40px;
}

.rack-photo-card {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 43, 68, 0.12);
}

.rack-photo-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  pointer-events: none;
}

.shelf-card,
.catalog-card,
.assist-card,
.testimonial-card,
.trust-chip,
.promo-cover,
.statement-cover,
.support-cover,
.cta-card {
  border-radius: 20px;
}

.dark-band {
  background:
    radial-gradient(circle at top right, rgba(245, 138, 31, 0.14), transparent 24%),
    linear-gradient(145deg, #0d2033 0%, #14314a 55%, #0f2438 100%);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(245, 138, 31, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f7 100%);
}

.footer-divider {
  border-top-color: rgba(21, 50, 77, 0.1);
}

@media (max-width: 960px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 27, 43, 0.76) 0%, rgba(12, 27, 43, 0.56) 44%, rgba(12, 27, 43, 0.2) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  }
}

@media (max-width: 640px) {
  body::before {
    background-size: 48px 48px;
    opacity: 0.6;
  }

  .button {
    border-radius: 10px;
  }

  .hero-stage,
  .showcase-stage,
  .contact-visual,
  .page-hero-stage,
  .soft-panel,
  .range-card,
  .feature-card,
  .value-card,
  .info-card,
  .gallery-card,
  .contact-card,
  .contact-form-shell,
  .mission-card,
  .industry-card,
  .process-card,
  .detail-box,
  .category-showcase,
  .category-aside,
  .rack-photo-card,
  .shelf-card,
  .catalog-card,
  .assist-card,
  .testimonial-card,
  .trust-chip,
  .promo-cover,
  .statement-cover,
  .support-cover,
  .cta-card {
    border-radius: 16px;
  }

  .category-aside::after {
    top: 1.2rem;
    bottom: 1.2rem;
  }
}

/* 2026-04-18 typography refresh */
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.topbar,
.topbar-actions a {
  font-size: 0.71rem;
  letter-spacing: 0.02em;
}

.site-nav a,
.button,
.button.small,
.hero-copy-motion .hero-eyebrow-kicker,
.hero-copy-motion .hero-eyebrow-text,
.stage-chip,
.meta-pill,
.info-chip,
.category-aside .eyebrow {
  font-family: var(--font-heading);
}

.site-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.button {
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.button.small {
  font-size: 0.78rem;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1,
.page-hero-copy h1,
.split-copy h2,
.cta-card h2,
.dark-panel h2,
.value-stack h2,
.contact-copy h2,
.contact-form-shell h2,
.category-aside h2,
.promo-cover-copy h2,
.story-copy h2,
.support-copy h2,
.card-copy h3,
.gallery-copy h3,
.mission-card h3,
.value-card h3,
.contact-card h3,
.industry-card h3,
.process-card h3,
.detail-box h3,
.shelf-card h3,
.catalog-card h3,
.testimonial-card strong,
.assist-card strong,
.trust-stage h2,
.floating-card strong {
  font-family: var(--font-heading);
}

.section-head h2,
.split-copy h2,
.cta-card h2,
.dark-panel h2,
.value-stack h2,
.contact-copy h2,
.contact-form-shell h2 {
  font-size: clamp(2.05rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-home .hero-copy h1 {
  font-size: clamp(2.6rem, 4.7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero-copy h1 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-home .hero-copy .lead {
  max-width: 27rem;
  margin-top: 0.85rem;
  font-size: 0.96rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.section-lead,
.hero-copy p,
.page-hero-copy p,
.split-copy p,
.cta-card p,
.dark-panel p,
.value-stack p,
.contact-copy p,
.contact-form-shell p,
.section-note,
.card-copy p,
.gallery-copy p,
.mission-card p,
.value-card p,
.contact-card p,
.industry-card p,
.process-card p,
.detail-box p,
.info-card p,
.shelf-note,
.catalog-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.74;
  letter-spacing: -0.01em;
}

.hero-copy-motion .hero-eyebrow-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.hero-copy-motion .hero-eyebrow-text {
  font-size: 0.78rem;
  line-height: 1.58;
  letter-spacing: 0.03em;
}

.category-aside .eyebrow,
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.17em;
}

.category-aside h2 {
  font-size: clamp(2.05rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.category-aside > p:not(.eyebrow) {
  font-size: 0.94rem;
  line-height: 1.72;
}

.card-copy h3,
.gallery-copy h3,
.mission-card h3,
.value-card h3,
.contact-card h3,
.industry-card h3,
.process-card h3,
.detail-box h3,
.shelf-card h3,
.catalog-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.topbar-note,
.topbar-actions a,
.meta-pill,
.info-chip,
.stage-chip {
  line-height: 1.4;
}

@media (max-width: 960px) {
  .hero-home .hero-copy h1 {
    font-size: clamp(2.35rem, 6vw, 3.35rem);
  }

  .section-head h2,
  .split-copy h2,
  .cta-card h2,
  .dark-panel h2,
  .value-stack h2,
  .contact-copy h2,
  .contact-form-shell h2 {
    font-size: clamp(1.95rem, 5vw, 2.7rem);
  }
}

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

  .site-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero-home .hero-copy h1 {
    font-size: clamp(2rem, 8.7vw, 2.72rem);
    line-height: 1.02;
  }

  .hero-home .hero-copy .lead,
  .section-note,
  .card-copy p,
  .gallery-copy p,
  .mission-card p,
  .value-card p,
  .contact-card p,
  .industry-card p,
  .process-card p,
  .detail-box p,
  .info-card p,
  .shelf-note,
  .catalog-note {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .hero-copy-motion .hero-eyebrow-kicker {
    font-size: 0.58rem;
  }

  .hero-copy-motion .hero-eyebrow-text,
  .category-aside .eyebrow,
  .eyebrow {
    font-size: 0.66rem;
  }
}

.section-tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.metrics-shell {
  display: grid;
  gap: 1.35rem;
}

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

.recommendation-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(245, 138, 31, 0.12), transparent 22%),
    linear-gradient(135deg, #fffdf9 0%, #eef3f8 100%);
  box-shadow: 0 20px 38px rgba(18, 43, 68, 0.08);
}

.recommendation-copy {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.recommendation-note {
  margin-top: 1rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

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

.recommendation-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
  padding: 1.15rem;
  border: 1px solid rgba(21, 50, 77, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(18, 43, 68, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.recommendation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 138, 31, 0.32);
  box-shadow: 0 18px 34px rgba(18, 43, 68, 0.1);
}

.recommendation-card strong {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.recommendation-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.recommendation-card h3 {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.recommendation-label {
  margin: 0 0 0.45rem;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.75;
}

.recommendation-card em {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--brand);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.spec-pills-centered {
  justify-content: center;
}

.spec-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: #eef4fa;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.range-card .mini-action {
  margin-top: 1rem;
}

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

.project-gallery-card figure {
  padding: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-gallery-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.brochure-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(245, 138, 31, 0.14), transparent 24%),
    linear-gradient(135deg, #fff4e8 0%, #f7fbff 100%);
  box-shadow: 0 20px 38px rgba(18, 43, 68, 0.08);
}

.brochure-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.brochure-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

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

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-grid-strong {
  margin-top: 0.25rem;
}

.site-footer {
  padding-bottom: 7rem;
}

.footer-grid-upgraded {
  grid-template-columns: 1.35fr 0.8fr 0.95fr 1fr;
  align-items: start;
}


@media (min-width: 641px) {
  .footer-grid-upgraded .footer-panel:not(.footer-brand-panel) {
    display: flex;
    flex-direction: column;
    height: 19rem;
  }
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-brand-panel p {
  margin: 0;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #edf3f9;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-links a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-map-card:hover {
  color: var(--brand);
}

.footer-business-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.footer-business-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 148px;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 252, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(18, 43, 68, 0.07);
}

.footer-business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(245, 138, 31, 0.92), rgba(20, 61, 131, 0.56));
}

.footer-business-card strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.04rem;
  line-height: 1.35;
}

.footer-business-card span {
  color: rgba(33, 52, 75, 0.76);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-business-label {
  display: inline-block;
  margin-bottom: 0.15rem;
  color: var(--accent-deep) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-map-card {
  background:
    linear-gradient(135deg, rgba(255, 247, 236, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-map-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 138, 31, 0.26);
  box-shadow: 0 18px 34px rgba(18, 43, 68, 0.08);
}

.sticky-enquiry-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 65;
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(9, 23, 35, 0.9);
  box-shadow: 0 22px 48px rgba(9, 23, 35, 0.26);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.sticky-enquiry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.sticky-enquiry-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.sticky-enquiry-link.is-primary {
  background: var(--accent);
  color: #fff;
}

.sticky-enquiry-link.is-primary:hover {
  background: var(--accent-deep);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 210px;
  padding: 1.35rem 1.3rem 1.25rem;
}

.stat-label {
  margin: 0 0 0.15rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card strong {
  margin-bottom: 0.15rem;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.08;
}

.stat-card h3 {
  margin: 0 0 0.2rem;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.stat-card span {
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .metrics-grid,
  .use-case-grid,
  .footer-business-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .recommendation-strip,
  .brochure-cta {
    grid-template-columns: 1fr;
  }

  .project-gallery-grid,
  .timeline-grid,
  .footer-grid-upgraded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .metrics-grid,
  .recommendation-grid,
  .project-gallery-grid,
  .timeline-grid,
  .use-case-grid,
  .footer-grid-upgraded,
  .footer-business-strip {
    grid-template-columns: 1fr;
  }

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

  .sticky-enquiry-bar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-content: stretch;
    border-radius: 18px;
    transform: none;
  }

  .sticky-enquiry-link {
    flex: 1;
    min-width: 0;
    padding-inline: 0.7rem;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}

.story-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.story-visual {
  min-height: 0;
}

.story-visual-shell {
  position: relative;
  min-height: 540px;
  padding: 1.15rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(245, 138, 31, 0.08), transparent 22%),
    linear-gradient(145deg, #fbfcfe 0%, #eef3f8 100%);
  box-shadow: 0 22px 48px rgba(18, 43, 68, 0.08);
}

.story-frame,
.experience-badge {
  display: none;
}

.story-photo {
  border-radius: 18px;
  border: 1px solid rgba(18, 43, 68, 0.08);
  box-shadow: 0 18px 34px rgba(18, 43, 68, 0.12);
}

.primary-photo {
  inset: 1.15rem 1.15rem 8.4rem 1.15rem;
  width: auto;
  height: auto;
}

.secondary-photo {
  right: 1.15rem;
  bottom: 5.85rem;
  width: min(45%, 238px);
  height: 162px;
}

.story-summary-card {
  position: absolute;
  left: 1.15rem;
  right: 10.3rem;
  bottom: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 32, 51, 0.97), rgba(20, 49, 74, 0.95));
  box-shadow: 0 18px 36px rgba(11, 30, 48, 0.22);
}

.story-summary-label {
  margin: 0 0 0.45rem;
  color: rgba(255, 208, 137, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-summary-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.45;
}

.story-summary-card span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(236, 242, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.6;
}

.story-quickfacts {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  gap: 0.6rem;
  width: 128px;
}

.story-quickfact {
  padding: 0.8rem 0.75rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.06);
  text-align: left;
}

.story-quickfact strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
}

.story-quickfact span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.story-copy {
  padding-top: 0.2rem;
}

.story-copy h2 {
  max-width: 10.6ch;
}

.story-points {
  gap: 0.85rem;
}

.story-point {
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.05);
}

.story-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.story-point h3 {
  margin-bottom: 0.25rem;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.4;
}

.story-point p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .story-visual-shell {
    min-height: 500px;
  }

  .story-summary-card {
    right: 8.5rem;
  }

  .story-copy h2 {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .story-visual-shell {
    min-height: 480px;
  }

  .secondary-photo {
    width: min(44%, 220px);
    height: 148px;
  }
}

@media (max-width: 640px) {
  .story-visual-shell {
    min-height: 430px;
    padding: 0.85rem;
  }

  .primary-photo {
    inset: 0.85rem 0.85rem 9.1rem 0.85rem;
  }

  .secondary-photo {
    right: 0.85rem;
    bottom: 6.5rem;
    width: 42%;
    height: 112px;
  }

  .story-summary-card {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .story-quickfacts {
    display: none;
  }
}

.story-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 2.25rem;
  align-items: start;
}

.story-visual-shell.story-slider-shell {
  min-height: 0;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(21, 50, 77, 0.08);
  background:
    radial-gradient(circle at top right, rgba(245, 138, 31, 0.12), transparent 24%),
    linear-gradient(145deg, #fbfcfe 0%, #edf3f8 100%);
  box-shadow: 0 22px 48px rgba(18, 43, 68, 0.08);
}

.story-slider-stage {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe7ef;
}

.story-slider-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
  align-items: start;
}

.story-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease, transform 420ms ease;
  transform: scale(1.02);
}

.story-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.story-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 35, 0.08) 0%, rgba(8, 22, 35, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 22, 35, 0.64) 0%, rgba(8, 22, 35, 0.02) 42%);
}

.story-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide figcaption {
  position: absolute;
  left: 1.3rem;
  right: auto;
  bottom: 1rem;
  z-index: 2;
  display: block;
  width: fit-content;
  max-width: min(calc(100% - 2.6rem), 35rem);
  padding: 0.8rem 1rem 0.86rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 3px solid rgba(245, 138, 31, 0.98);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(9, 23, 35, 0.16);
  backdrop-filter: blur(10px);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.story-slider-summary {
  position: relative;
  max-width: none;
  z-index: auto;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(18, 43, 68, 0.07);
  backdrop-filter: none;
}

.story-slider-summary .story-summary-label {
  margin: 0 0 0.45rem;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-slider-summary strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.42;
}

.story-slider-summary span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(49, 61, 77, 0.8);
  font-size: 0.88rem;
  line-height: 1.58;
}

.story-slider-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

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

.story-slider-fact {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.story-slider-fact span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-slider-fact strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.3;
}

.story-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.08);
}

.story-slider-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-slider-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 138, 31, 0.28);
  background: #fff8f0;
}

.story-slider-arrow svg {
  width: 16px;
  height: 16px;
}

.story-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.story-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 50, 77, 0.16);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.story-slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.story-quickfacts {
  position: static;
  top: auto;
  right: auto;
  width: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.story-quickfact {
  min-height: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(21, 50, 77, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.05);
}

.story-copy {
  padding-top: 0.15rem;
}

.story-copy h2 {
  max-width: none;
  line-height: 1.02;
}

.story-copy h2 .line {
  display: block;
  white-space: nowrap;
}

.story-copy-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.story-copy-metric {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.story-copy-metric span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy-metric strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.45;
}

.story-points {
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.story-point {
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(18, 43, 68, 0.05);
}

.story-point-body {
  display: grid;
  gap: 0.2rem;
}

.story-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.84rem;
}

.story-point h3 {
  font-size: 0.98rem;
}

.story-point p {
  font-size: 0.91rem;
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .story-slider-details {
    grid-template-columns: 1fr;
  }

  .story-quickfacts {
    display: grid;
  }

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

  .story-slider-controls {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .story-slider-stage {
    min-height: 410px;
  }

  .story-quickfacts {
    grid-template-columns: 1fr;
  }

  .story-copy-metrics,
  .story-slider-facts {
    grid-template-columns: 1fr;
  }

  .story-copy h2 {
    max-width: none;
  }

  .story-copy h2 .line {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .story-slider-stage {
    min-height: 360px;
  }

  .story-slider-summary {
    max-width: none;
    padding: 0.9rem 0.95rem;
  }

  .story-slide figcaption {
    left: 0.85rem;
    right: auto;
    bottom: 0.85rem;
    max-width: calc(100% - 1.7rem);
    padding: 0.72rem 0.82rem 0.78rem 0.88rem;
    font-size: 0.81rem;
    line-height: 1.48;
  }

  .story-slider-controls {
    width: 100%;
    justify-content: space-between;
  }
}

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

.shelf-grid .sale-pill {
  display: none;
}

.shelf-grid .shelf-card {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  grid-template-areas:
    "media title"
    "media note"
    "media specs"
    "media meta"
    "media action";
  align-items: start;
  gap: 0.6rem 1rem;
  padding: 1rem;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(21, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(18, 43, 68, 0.05);
}

.shelf-grid .shelf-media {
  grid-area: media;
  min-height: 0;
  height: 100%;
  margin-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
}

.shelf-grid .photo-shelf-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.shelf-grid .shelf-card h3 {
  grid-area: title;
  margin: 0.15rem 0 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.shelf-grid .shelf-note {
  grid-area: note;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.shelf-grid .spec-pills {
  grid-area: specs;
  justify-content: flex-start;
  gap: 0.42rem;
  margin-top: 0.1rem;
}

.shelf-grid .spec-pills li {
  min-height: 28px;
  padding: 0.34rem 0.62rem;
  font-size: 0.74rem;
}

.shelf-grid .shelf-meta {
  grid-area: meta;
  margin-top: 0.15rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelf-grid .mini-action {
  grid-area: action;
  margin-top: 0.1rem;
}

.shelf-grid .mini-action .button.small {
  min-height: 40px;
  padding: 0.72rem 1rem;
}

@media (max-width: 960px) {
  .shelf-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shelf-grid .shelf-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "title"
      "note"
      "specs"
      "meta"
      "action";
  }

  .shelf-grid .shelf-media {
    min-height: 220px;
  }
}

.hero-home .hero-actions {
  margin-top: 1.25rem;
  padding-bottom: 0.9rem;
}

.home-benefits {
  margin-top: 0.45rem;
}

@media (max-width: 640px) {
  .hero-home .hero-actions {
    padding-bottom: 0.3rem;
  }

  .home-benefits {
    margin-top: 0.1rem;
  }
}

.home-page .section {
  padding: clamp(3.7rem, 5.8vw, 5.2rem) 0;
}

.home-page .section.section-tight {
  padding-top: 2.35rem;
  padding-bottom: 2.35rem;
}

.home-page .section-head {
  margin-bottom: 1.8rem;
}

.home-page .hero-home .hero-copy .lead {
  max-width: 24.5rem;
}

.home-page .benefit-copy span {
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-page .hero-actions .button,
.home-page .brochure-actions .button {
  min-width: 0;
}

@media (max-width: 960px) {
  .home-page .section {
    padding: 3rem 0;
  }

  .home-page .metrics-grid,
  .home-page .project-gallery-grid,
  .home-page .assist-cards,
  .home-page .timeline-grid,
  .home-page .use-case-grid {
    gap: 0.85rem;
  }
}

@media (max-width: 640px) {
  .home-page .section {
    padding: 2.15rem 0;
  }

  .home-page .section.section-tight {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  .home-page .section-head {
    margin-bottom: 1.2rem;
  }

  .home-page .hero-actions .button,
  .home-page .brochure-actions .button,
  .home-page .promo-actions .button,
  .home-page .mini-action .button.small {
    width: 100%;
  }

  .home-page .hero-home .hero-copy .lead {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .home-page .benefit-card {
    padding: 0.95rem 1rem;
  }

  .home-page .benefit-copy span {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .home-page .metrics-grid,
  .home-page .recommendation-grid,
  .home-page .project-gallery-grid,
  .home-page .timeline-grid,
  .home-page .use-case-grid,
  .home-page .story-copy-metrics,
  .home-page .story-slider-facts,
  .home-page .assist-cards {
    gap: 0.75rem;
  }

  .home-page .recommendation-card,
  .home-page .stat-card,
  .home-page .industry-card,
  .home-page .process-card,
  .home-page .assist-card {
    padding: 1rem;
  }

  .footer-business-card {
    min-height: 0;
    padding: 1rem 1rem 1.05rem;
  }
}

.about-page .about-hero {
  padding-top: 3.4rem;
}

.about-hero-grid,
.about-story-grid,
.about-process-grid {
  display: grid;
  gap: 1.4rem;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: start;
}

.about-hero-copy .lead {
  max-width: 61ch;
}

.about-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.about-point,
.about-principle-card,
.about-sector-card {
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.about-point {
  padding: 1rem 1.05rem 1.05rem;
}

.about-point strong,
.about-principle-card h3,
.about-sector-card h3,
.about-story-item h3,
.about-process-card h3 {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.3;
}

.about-point span,
.about-principle-card p,
.about-sector-card p,
.about-story-item p,
.about-process-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.66;
}

.about-hero-visual {
  display: grid;
  gap: 1rem;
}

.about-hero-image-shell,
.about-story-visual {
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid rgba(20, 61, 131, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.98));
  box-shadow: 0 28px 56px rgba(16, 24, 40, 0.1);
}

.about-hero-image,
.about-story-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.about-hero-image {
  aspect-ratio: 11 / 7;
}

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

.about-metric-card {
  min-height: 0;
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-metric-value {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
}

.about-metric-label,
.about-card-kicker {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-metric-card p {
  margin: 0.58rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-story-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.about-story-note,
.about-story-copy {
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.about-story-note {
  margin-top: 0.9rem;
  padding: 1rem 1.05rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.55;
}

.about-story-copy {
  padding: 1.5rem;
}

.about-story-list,
.about-process-list {
  display: grid;
  gap: 0.95rem;
}

.about-story-list {
  margin-top: 1.25rem;
}

.about-story-item,
.about-process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.about-principle-grid,
.about-sector-grid {
  display: grid;
  gap: 1rem;
}

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

.about-principle-card,
.about-sector-card {
  padding: 1.3rem 1.25rem;
}

.about-card-kicker {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.about-process-band {
  position: relative;
}

.about-process-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.about-process-copy {
  max-width: 34rem;
}

.about-process-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.about-process-band .process-number {
  width: 3rem;
  height: 3rem;
  margin: 0;
}

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

.about-page .hero-actions {
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1120px) {
  .about-hero-grid,
  .about-story-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-process-copy {
    max-width: none;
  }

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

@media (max-width: 860px) {
  .about-hero-points,
  .about-principle-grid,
  .about-hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-page .section {
    padding: 2.35rem 0;
  }

  .about-page .section.section-tight {
    padding-top: 1.95rem;
    padding-bottom: 1.95rem;
  }

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

  .about-page .about-hero {
    padding-top: 2.3rem;
  }

  .about-hero-points,
  .about-principle-grid,
  .about-hero-metrics,
  .about-sector-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image-shell,
  .about-story-visual,
  .about-story-copy {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .about-hero-image,
  .about-story-visual img {
    border-radius: 18px;
  }

  .about-point,
  .about-principle-card,
  .about-sector-card,
  .about-metric-card,
  .about-story-item,
  .about-process-card {
    padding: 0.95rem 1rem;
  }

  .about-point strong,
  .about-principle-card h3,
  .about-sector-card h3,
  .about-story-item h3,
  .about-process-card h3 {
    font-size: 0.98rem;
  }

  .about-story-item,
  .about-process-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .about-process-band .process-number,
  .about-story-item .step-number {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.about-clean-shell,
.about-profile-grid,
.about-clean-process-grid,
.about-clean-principles,
.about-clean-sectors,
.about-clean-stats {
  display: grid;
  gap: 1.15rem;
}

.about-clean-hero {
  padding-top: 3.1rem;
}

.about-clean-shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.about-clean-copy .lead {
  max-width: 62ch;
}

.about-clean-stage {
  position: relative;
  padding: 1rem;
  border-radius: 32px;
  border: 1px solid rgba(20, 61, 131, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.98));
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.1);
}

.about-clean-stage img,
.about-profile-panel-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-clean-stage img {
  border-radius: 24px;
  aspect-ratio: 11 / 7;
}

.about-clean-stage-note {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.86);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  line-height: 1.55;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
}

.about-clean-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.about-clean-stat,
.about-clean-card,
.about-clean-sector,
.about-profile-panel,
.about-profile-item,
.about-clean-process-card {
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.about-clean-stat {
  padding: 1.15rem 1.15rem 1.2rem;
}

.about-clean-stat-value {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
}

.about-clean-stat-label,
.about-clean-card-kicker {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-clean-stat p,
.about-clean-card p,
.about-clean-sector p,
.about-profile-item p,
.about-profile-point span,
.about-clean-process-card p {
  margin: 0.6rem 0 0;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.62;
}

.about-profile-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

.about-profile-list,
.about-profile-points {
  display: grid;
  gap: 0.9rem;
}

.about-profile-list {
  margin-top: 1.3rem;
}

.about-profile-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
}

.about-profile-panel {
  overflow: hidden;
}

.about-profile-panel-image {
  aspect-ratio: 11 / 7;
}

.about-profile-panel-copy {
  padding: 1.2rem 1.2rem 1.25rem;
}

.about-profile-panel-copy h3,
.about-clean-card h3,
.about-clean-sector h3,
.about-profile-item h3,
.about-profile-point strong,
.about-clean-process-card h3 {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.34;
}

.about-profile-panel-copy h3 {
  margin: 0.3rem 0 0.85rem;
}

.about-profile-point {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.about-profile-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-profile-point strong {
  display: block;
  margin-bottom: 0.3rem;
}

.about-profile-item h3,
.about-profile-point strong {
  color: var(--navy);
  font-weight: 800;
}

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

.about-clean-card,
.about-clean-sector {
  padding: 1.3rem 1.25rem;
}

.about-clean-card-kicker {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

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

.about-clean-process-card {
  padding: 1.2rem 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.about-clean-process-card .process-number {
  margin-bottom: 0.95rem;
}

.about-clean-process-card h3 {
  min-height: 2.75rem;
}

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

@media (max-width: 1140px) {
  .about-clean-shell,
  .about-profile-grid {
    grid-template-columns: 1fr;
  }

  .about-clean-stats,
  .about-clean-process-grid,
  .about-clean-sectors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-clean-principles,
  .about-clean-stats,
  .about-clean-process-grid,
  .about-clean-sectors {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-clean-hero {
    padding-top: 2.25rem;
  }

  .about-clean-stage {
    padding: 0.85rem;
    border-radius: 24px;
  }

  .about-clean-stage img {
    border-radius: 18px;
  }

  .about-clean-stage-note {
    position: static;
    margin-top: 0.8rem;
    padding: 0.9rem 0.95rem;
    border-radius: 16px;
  }

  .about-clean-stat,
  .about-clean-card,
  .about-clean-sector,
  .about-profile-item,
  .about-clean-process-card {
    padding: 1rem;
  }

  .about-profile-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .about-profile-panel-copy {
    padding: 1rem;
  }
}

.about-note-grid,
.about-gallery-grid,
.about-milestone-grid,
.about-credentials-grid {
  display: grid;
  gap: 1.1rem;
}

.about-note-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
}

.about-note-card,
.about-capability-card,
.about-gallery-card,
.about-milestone-card,
.about-credential-card,
.about-media-block {
  border-radius: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.about-note-card,
.about-capability-card {
  padding: 1.4rem 1.4rem 1.45rem;
}

.about-note-card h2,
.about-capability-card h2,
.about-media-copy h2,
.about-milestone-card h3,
.about-credential-card h3 {
  color: var(--navy);
}

.about-note-card p:last-child,
.about-note-card p,
.about-capability-item span,
.about-gallery-copy span,
.about-milestone-card p,
.about-credential-card p,
.about-media-copy p {
  color: var(--slate);
  line-height: 1.64;
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.about-capability-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.07);
}

.about-capability-item strong {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

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

.about-gallery-card {
  overflow: hidden;
}

.about-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-gallery-copy {
  padding: 1rem 1rem 1.05rem;
}

.about-gallery-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.32;
}

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

.about-milestone-card,
.about-credential-card {
  padding: 1.2rem 1.15rem 1.25rem;
}

.about-milestone-year {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-milestone-card h3,
.about-credential-card h3 {
  margin-bottom: 0.42rem;
  font-size: 1.02rem;
  line-height: 1.34;
}

.about-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.about-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 61, 131, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

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

.about-media-block {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: 1.3rem;
  padding: 1rem;
}

.about-media-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8f2e8, #ffffff);
}

.about-media-visual img {
  display: block;
  width: min(100%, 17rem);
  height: auto;
  object-fit: contain;
}

.about-media-copy {
  padding: 0.45rem 0.55rem 0.45rem 0;
}

.about-media-copy p {
  max-width: 58ch;
}

@media (max-width: 1140px) {
  .about-note-grid,
  .about-media-block {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid,
  .about-milestone-grid,
  .about-credentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-capability-grid,
  .about-gallery-grid,
  .about-milestone-grid,
  .about-credentials-grid {
    grid-template-columns: 1fr;
  }

  .about-note-card,
  .about-capability-card,
  .about-milestone-card,
  .about-credential-card {
    padding: 1.05rem 1rem 1.1rem;
  }

  .about-media-block {
    padding: 0.9rem;
  }

  .about-media-copy {
    padding: 0;
  }

  .about-trust-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .about-page .section {
    padding: 2rem 0;
  }

  .about-page .section.section-tight {
    padding-top: 1.55rem;
    padding-bottom: 1.55rem;
  }

  .about-page .section-head {
    margin-bottom: 1rem;
  }

  .about-page .section-head .section-note {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .about-clean-shell,
  .about-profile-grid,
  .about-note-grid,
  .about-clean-principles,
  .about-clean-process-grid,
  .about-clean-sectors,
  .about-clean-stats,
  .about-gallery-grid,
  .about-milestone-grid,
  .about-credentials-grid {
    gap: 0.8rem;
  }

  .about-clean-copy .lead,
  .about-profile-copy p,
  .about-note-card p,
  .about-media-copy p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .about-clean-stage,
  .about-note-card,
  .about-capability-card,
  .about-gallery-card,
  .about-milestone-card,
  .about-credential-card,
  .about-media-block,
  .about-profile-panel {
    border-radius: 22px;
  }

  .about-clean-stage,
  .about-media-block {
    padding: 0.8rem;
  }

  .about-clean-stage-note {
    margin-top: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .about-clean-stat,
  .about-clean-card,
  .about-clean-sector,
  .about-profile-item,
  .about-clean-process-card,
  .about-note-card,
  .about-capability-card,
  .about-milestone-card,
  .about-credential-card {
    padding: 0.92rem 0.95rem;
  }

  .about-profile-panel-copy,
  .about-gallery-copy {
    padding: 0.88rem 0.92rem 0.92rem;
  }

  .about-capability-grid,
  .about-profile-list,
  .about-profile-points {
    gap: 0.72rem;
  }

  .about-capability-item {
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
  }

  .about-capability-item strong,
  .about-gallery-copy strong,
  .about-milestone-card h3,
  .about-credential-card h3,
  .about-clean-card h3,
  .about-clean-sector h3,
  .about-clean-process-card h3,
  .about-profile-panel-copy h3,
  .about-profile-item h3,
  .about-profile-point strong {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .about-clean-process-card h3 {
    min-height: 0;
  }

  .about-gallery-card img {
    aspect-ratio: 16 / 10;
  }

  .about-trust-row {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .about-trust-chip {
    padding: 0.6rem 0.82rem;
    font-size: 0.78rem;
  }

  .about-media-visual {
    padding: 0.3rem;
    border-radius: 18px;
  }

  .about-media-visual img {
    width: min(100%, 13rem);
  }

  .about-page .cta-card {
    padding: 1rem;
  }

  .about-page .cta-card .hero-actions {
    gap: 0.7rem;
  }
}

.products-clean-shell,
.products-clean-stats,
.products-catalog-grid,
.products-selection-grid,
.products-reference-grid,
.products-use-grid,
.products-faq-list {
  display: grid;
  gap: 1.1rem;
}

.products-clean-hero {
  padding-top: 3.15rem;
}

.products-clean-shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.products-clean-copy .lead {
  max-width: 62ch;
}

.products-clean-stage,
.product-catalog-card,
.products-reference-card,
.products-use-card,
.products-clean-stat {
  border-radius: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.products-clean-stage {
  position: relative;
  padding: 1rem;
}

.products-clean-stage img,
.product-catalog-card figure img,
.products-reference-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products-clean-stage img {
  border-radius: 24px;
  aspect-ratio: 11 / 7;
}

.products-clean-stage-note {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.84);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
  line-height: 1.55;
}

.products-clean-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.products-clean-stat {
  padding: 1.1rem 1.1rem 1.15rem;
}

.products-clean-stat-value {
  display: block;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
}

.products-clean-stat-label,
.product-catalog-kicker {
  display: inline-flex;
  margin-top: 0.38rem;
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-clean-stat p,
.product-catalog-copy p,
.products-reference-copy span,
.products-use-card p,
.products-selection-card p {
  margin: 0.58rem 0 0;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.62;
}

.products-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}

.products-quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 61, 131, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

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

.product-catalog-card {
  overflow: hidden;
}

.product-catalog-card figure {
  margin: 0;
}

.product-catalog-card figure img {
  aspect-ratio: 16 / 10;
}

.product-catalog-copy {
  padding: 1.18rem 1.18rem 1.22rem;
}

.product-catalog-copy h3,
.products-reference-copy strong,
.products-use-card h3,
.products-selection-card h3 {
  color: var(--navy);
}

.product-catalog-copy h3 {
  margin: 0.34rem 0 0;
}

.product-catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.product-catalog-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(20, 61, 131, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.products-selection-band .section-note {
  max-width: 48rem;
  margin-inline: auto;
}

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

.products-selection-card {
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.products-selection-card .process-number {
  margin-bottom: 0.9rem;
}

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

.products-reference-card {
  overflow: hidden;
}

.products-reference-card img {
  aspect-ratio: 4 / 3;
}

.products-reference-copy {
  padding: 0.95rem 0.95rem 1rem;
}

.products-reference-copy strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
  line-height: 1.32;
}

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

.products-use-card {
  padding: 1.2rem 1.15rem 1.22rem;
}

.products-compare-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.products-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.products-compare-table th,
.products-compare-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.products-compare-table th {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(20, 61, 131, 0.04);
}

.products-compare-table td {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
}

.products-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.products-support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.products-support-strip span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 61, 131, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.products-faq-item {
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.products-faq-item summary {
  position: relative;
  padding: 1rem 3rem 1rem 1.05rem;
  list-style: none;
  cursor: pointer;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
}

.products-faq-item summary::-webkit-details-marker {
  display: none;
}

.products-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-deep);
  font-size: 1.35rem;
  font-weight: 700;
}

.products-faq-item[open] summary::after {
  content: "\2212";
}

.products-faq-item p {
  margin: 0;
  padding: 0 1.05rem 1rem;
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.62;
}

@media (max-width: 1140px) {
  .products-clean-shell,
  .products-catalog-grid,
  .products-selection-grid,
  .products-use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-reference-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .products-clean-shell,
  .products-clean-stats,
  .products-catalog-grid,
  .products-selection-grid,
  .products-reference-grid,
  .products-use-grid,
  .products-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .products-page .section {
    padding: 2.05rem 0;
  }

  .products-clean-hero {
    padding-top: 2.35rem;
  }

  .products-clean-shell,
  .products-clean-stats,
  .products-catalog-grid,
  .products-selection-grid,
  .products-reference-grid,
  .products-use-grid {
    gap: 0.8rem;
  }

  .products-page .hero-actions .button,
  .products-page .mini-action .button.small {
    width: 100%;
  }

  .products-clean-copy .lead,
  .product-catalog-copy p,
  .products-selection-card p,
  .products-use-card p,
  .products-reference-copy span {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .products-clean-stage,
  .products-clean-stat,
  .product-catalog-card,
  .products-reference-card,
  .products-use-card {
    border-radius: 22px;
  }

  .products-clean-stage {
    padding: 0.85rem;
  }

  .products-clean-stage img {
    border-radius: 18px;
  }

  .products-clean-stage-note {
    position: static;
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .products-clean-stat,
  .product-catalog-copy,
  .products-selection-card,
  .products-reference-copy,
  .products-use-card {
    padding: 0.95rem;
  }

  .product-catalog-meta {
    gap: 0.45rem;
  }

  .product-catalog-meta span {
    font-size: 0.75rem;
  }

  .products-quick-nav {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .products-quick-nav a {
    padding: 0.6rem 0.85rem;
    font-size: 0.78rem;
  }

  .products-compare-table {
    min-width: 640px;
  }

  .products-compare-table th,
  .products-compare-table td {
    padding: 0.8rem 0.85rem;
    font-size: 0.82rem;
  }

  .products-support-strip {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .products-support-strip span {
    padding: 0.58rem 0.78rem;
    font-size: 0.76rem;
  }

  .products-faq-item {
    border-radius: 18px;
  }

  .products-faq-item summary {
    padding: 0.92rem 2.6rem 0.92rem 0.9rem;
    font-size: 0.92rem;
  }

  .products-faq-item p {
    padding: 0 0.9rem 0.95rem;
    font-size: 0.84rem;
    line-height: 1.55;
  }
}

.contact-clean-shell,
.contact-clean-stats,
.contact-prep-grid,
.contact-business-grid {
  display: grid;
  gap: 1.1rem;
}

.contact-page .contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 1.15rem;
  align-items: start;
}

.contact-clean-hero {
  padding-top: 3.15rem;
}

.contact-clean-shell {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
}

.contact-clean-copy .lead {
  max-width: 62ch;
}

.contact-clean-stage,
.contact-clean-stat,
.contact-route-card,
.contact-prep-card,
.contact-business-card {
  border-radius: 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.contact-clean-stage {
  position: relative;
  padding: 1rem;
}

.contact-clean-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 11 / 7;
  object-fit: cover;
}

.contact-clean-stage-note {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.95rem 1.05rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.84);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-clean-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.contact-clean-stat {
  padding: 1.1rem 1.1rem 1.15rem;
}

.contact-clean-stat-label,
.contact-business-label {
  display: inline-flex;
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-clean-stat strong,
.contact-business-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.35;
}

.contact-clean-stat p,
.contact-business-card p,
.contact-business-card a,
.contact-route-card > p,
.contact-channel-item p,
.contact-brief-item p,
.contact-prep-card p {
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.62;
}

.contact-route-card {
  padding: 1.35rem;
}

.contact-route-card h2 {
  color: var(--navy);
}

.contact-channel-list,
.contact-brief-list {
  display: grid;
  gap: 0.9rem;
}

.contact-channel-list {
  margin-top: 1.1rem;
}

.contact-channel-item,
.contact-brief-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.contact-channel-item strong,
.contact-brief-item h3,
.contact-prep-card h3 {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.34;
}

.contact-channel-item strong {
  margin-bottom: 0.32rem;
}

.contact-channel-item a,
.contact-business-card a {
  color: var(--accent-deep);
  font-weight: 600;
}

.contact-brief-list {
  margin-top: 1rem;
}

.contact-brief-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.contact-brief-item h3 {
  margin-bottom: 0.32rem;
}

.contact-clean-form {
  border-radius: 26px;
}

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

.contact-prep-card {
  padding: 1.15rem 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-prep-card h3 {
  margin-bottom: 0.4rem;
}

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

.contact-business-card {
  padding: 1.18rem 1.12rem 1.22rem;
}

@media (max-width: 1140px) {
  .contact-clean-shell,
  .contact-clean-stats,
  .contact-prep-grid,
  .contact-business-grid,
  .contact-page .contact-main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-clean-shell,
  .contact-clean-stats,
  .contact-prep-grid,
  .contact-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page .section {
    padding: 2.05rem 0;
  }

  .contact-clean-hero {
    padding-top: 2.35rem;
  }

  .contact-clean-shell,
  .contact-clean-stats,
  .contact-prep-grid,
  .contact-business-grid {
    gap: 0.8rem;
  }

  .contact-clean-copy .lead,
  .contact-route-card > p,
  .contact-channel-item p,
  .contact-brief-item p,
  .contact-prep-card p,
  .contact-clean-stat p,
  .contact-business-card p,
  .contact-business-card a {
    font-size: 0.84rem;
    line-height: 1.55;
  }

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

  .contact-clean-stage,
  .contact-clean-stat,
  .contact-route-card,
  .contact-prep-card,
  .contact-business-card,
  .contact-clean-form {
    border-radius: 22px;
  }

  .contact-clean-stage {
    padding: 0.85rem;
  }

  .contact-clean-stage img {
    border-radius: 18px;
  }

  .contact-clean-stage-note {
    position: static;
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .contact-clean-stat,
  .contact-route-card,
  .contact-prep-card,
  .contact-business-card {
    padding: 0.95rem;
  }

  .contact-channel-item,
  .contact-brief-item {
    padding: 0.9rem 0.95rem;
  }

  .contact-brief-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .contact-channel-item strong,
  .contact-brief-item h3,
  .contact-prep-card h3,
  .contact-clean-stat strong,
  .contact-business-card strong {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}

