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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-locked {
  overflow: hidden;
}

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

svg {
  flex-shrink: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

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

button {
  cursor: pointer;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1100;
  background: var(--amber);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-6) 0;
}

.section--tight {
  padding: var(--space-5) 0;
}

.section--dim {
  background: var(--paper-dim);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--ink .section-title {
  color: var(--white);
}

.section--ink .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.section-title {
  font-size: var(--fs-h2);
  margin-top: var(--space-2);
  max-width: 34rem;
}

.section-sub {
  color: var(--slate);
  max-width: 34rem;
  margin-top: var(--space-2);
  font-size: 1.05rem;
}

.page-title {
  font-size: var(--fs-h1);
  color: var(--ink);
  margin-top: var(--space-2);
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

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

.grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

.split {
  align-items: center;
  gap: var(--space-5);
}

.split--start {
  align-items: start;
}

.article-layout {
  grid-template-columns: 1.4fr 0.6fr;
  align-items: start;
  gap: var(--space-5);
}

.eyebrow--center {
  justify-content: center;
  width: 100%;
}

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform var(--fast) var(--ease), background var(--fast), color var(--fast), border-color var(--fast), box-shadow var(--fast);
}

.btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--paper-line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: visible;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.7s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0f1419;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

body.is-in-hero .site-header:not(.is-scrolled):not(.is-nav-open) {
  box-shadow: 0 0 0 transparent;
}

body.is-in-hero .site-header:not(.is-scrolled):not(.is-nav-open)::before {
  opacity: 0;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: #7ec8f0;
}

.brand-sub {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}

.nav-cta {
  display: none;
  transition: transform 0.6s ease, background 0.6s ease, color 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: var(--space-3);
  max-height: calc(100vh - 100px);
  overflow: auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 0.7rem 0.8rem;
  color: var(--paper);
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.6s ease, background 0.6s ease, transform 0.6s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber);
  background: rgba(245, 184, 0, 0.08);
}

.has-dropdown {
  position: relative;
}

.dropdown-panel {
  padding: 0 0 0.4rem 0.8rem;
}

.dropdown-item {
  display: block;
  padding: 0.45rem 0.7rem;
  color: var(--slate-light);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: color 0.6s ease, background 0.6s ease, padding 0.6s ease;
}

.dropdown-item:hover {
  color: var(--amber);
  background: rgba(245, 184, 0, 0.08);
}

.dropdown-toggle {
  position: absolute;
  top: 0.15rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: none;
  color: var(--slate-light);
  cursor: pointer;
  transition: transform var(--fast), color var(--fast);
}

.dropdown-toggle svg {
  transform: rotate(180deg);
  transition: transform var(--fast);
}

.has-dropdown.is-open > .dropdown-toggle { color: var(--amber); }
.has-dropdown.is-open > .dropdown-toggle svg { transform: rotate(0deg); }

.hero {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(15, 20, 25, 0.94) 0%, rgba(15, 20, 25, 0.78) 42%, rgba(26, 61, 92, 0.62) 100%),
    url("../img/hero.jpg") center / cover no-repeat;
  padding-top: calc(var(--header-h) + 56px);
}

.hero-carousel {
  position: relative;
  height: 100vh;
  height: 100dvh;
  color: var(--paper);
}

.hero-carousel-pin {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: none;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  background: var(--ink-soft) center / cover no-repeat;
}

.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.55) 0%, transparent 22%),
    linear-gradient(115deg, rgba(15, 20, 25, 0.92) 0%, rgba(15, 20, 25, 0.62) 46%, rgba(26, 61, 92, 0.42) 100%);
}

.hero-slide-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 760px;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 7.5rem;
}

.hero-main {
  display: block;
  max-width: 720px;
  padding-bottom: var(--space-6);
}

.hero-carousel-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4rem;
  z-index: 4;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 var(--space-4);
}

.hero-carousel-nav button {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  padding: 0.75rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--fast), border-color var(--fast);
}

.hero-carousel-nav button.is-active,
.hero-carousel-nav button:hover {
  color: var(--white);
  border-bottom-color: var(--amber);
}

.hero-scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 2.35rem;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--amber), transparent);
  animation: hero-scroll-line 1.6s var(--ease) infinite;
}

@keyframes hero-scroll-line {
  0%,
  100% { transform: scaleY(0.45); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-title {
  font-size: var(--fs-hero);
  color: var(--white);
  max-width: 16ch;
}

.hero-slide-copy .hero-title {
  margin-top: var(--space-3);
  max-width: 18ch;
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  margin-top: var(--space-4);
  max-width: 34rem;
  color: var(--slate-light);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-stats {
  border-top: 1px solid rgba(245, 184, 0, 0.28);
  background: rgba(0, 0, 0, 0.28);
  padding: var(--space-5) 0;
}

.hero-stats--after {
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}

.stats-grid {
  --stat-count: 4;
  display: grid;
  grid-template-columns: repeat(var(--stat-count), minmax(0, 1fr));
  justify-content: center;
  gap: var(--space-4);
  width: 100%;
}

.stats-grid[data-stat-count="1"] {
  grid-template-columns: minmax(0, 20rem);
}

.stat-plate {
  border-top: 2px solid var(--amber);
  padding-top: var(--space-3);
  min-width: 0;
}

.stat-plate .value {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  color: var(--white);
}

.stat-plate .label {
  margin-top: var(--space-2);
  color: var(--slate-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.section--dim .stat-plate .value {
  color: var(--ink);
}

.section--dim .stat-plate .label {
  color: var(--slate);
}

.section--ink .stat-plate .value {
  color: var(--white);
}

.section--ink .stat-plate .label {
  color: var(--slate-light);
}

.section--leaders {
  background: var(--paper);
}

.section-head--center {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: var(--space-5);
}

.section-head--center .section-title {
  max-width: none;
}

.section-head--center .section-sub {
  max-width: 36rem;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.leader-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--paper-line);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 20, 25, 0.06);
}

.leader-photo {
  position: relative;
  height: 240px;
  background: var(--paper-dim);
  overflow: hidden;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--steel);
  background: linear-gradient(160deg, #e8eef3, #d5dde4);
}

.leader-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: var(--space-4);
  flex: 1;
}

.leader-body h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.leader-role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
}

.leader-meta span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.2rem;
}

.leader-meta p,
.leader-background {
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.95rem;
}

.leader-background {
  margin-top: 0.25rem;
}

.leader-in {
  margin-top: auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
}

.leader-in:hover {
  background: #084d92;
  color: #fff;
}

.leader-in svg {
  width: 16px;
  height: 16px;
}

.page-header {
  padding: calc(var(--header-h) + 48px) 0 var(--space-6);
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(15, 20, 25, 0.94) 0%, rgba(15, 20, 25, 0.8) 50%, rgba(26, 61, 92, 0.7) 100%),
    var(--page-header-image, url("../img/hero.jpg")) center / cover no-repeat;
}

.page-header .page-title {
  color: var(--white);
}

.page-header--light {
  color: var(--ink);
  background: var(--paper);
}

.page-header--light .page-title {
  color: var(--ink);
}

.page-header--light .breadcrumb-row {
  color: var(--slate);
}

.page-header--light .eyebrow--light {
  color: var(--orange);
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate-light);
}

.breadcrumb-row a:hover {
  color: var(--amber);
}

.tile {
  display: block;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-top: 3px solid var(--amber);
  padding: var(--space-4);
  color: inherit;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med);
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--amber);
}

.tile--static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--paper-line);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  background: var(--paper-dim);
  color: var(--steel);
  border-radius: var(--radius);
  transition: background var(--med), color var(--med);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.tile:hover .icon-wrap {
  background: var(--ink);
  color: var(--amber);
}

.tile h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2);
}

.tile p {
  color: var(--slate);
  font-size: 0.95rem;
}

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.tile-link svg {
  width: 14px;
  height: 14px;
}

.tile--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f7f7f5;
  background: var(--ink-soft);
  border-color: rgba(255, 255, 255, 0.12);
}

.tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform var(--med) var(--ease);
}

.tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.45) 0%, rgba(15, 20, 25, 0.92) 72%);
}

.tile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.tile.tile--photo h3 {
  color: #ffffff;
}

.tile.tile--photo p {
  color: rgba(255, 255, 255, 0.92);
}

.tile--photo .icon-wrap {
  background: rgba(247, 247, 245, 0.16);
  color: var(--amber);
}

.tile--photo:hover {
  border-color: var(--amber);
}

.tile--photo:hover .tile-media {
  transform: scale(1.08);
}

.tile--photo:hover .icon-wrap {
  background: rgba(15, 20, 25, 0.55);
  color: var(--amber);
}

.tile.tile--photo .tile-link {
  color: var(--amber);
  text-shadow: none;
}

.other-cat-grid {
  align-items: stretch;
}

.other-cat-card {
  min-height: 280px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 16px 36px rgba(15, 20, 25, 0.12);
  transition: transform var(--med) var(--ease), border-color var(--fast), box-shadow var(--med) var(--ease);
}

.other-cat-card .tile-copy {
  padding: 0;
  gap: 0.35rem;
  max-width: 36ch;
}

.other-cat-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(245, 184, 0, 0.45);
  background: rgba(15, 20, 25, 0.45);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: none;
}

.other-cat-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.other-cat-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.other-cat-card .tile-link {
  margin-top: 0.55rem;
}

.other-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px rgba(15, 20, 25, 0.2);
}

.other-cat-card .tile-link svg {
  transition: transform 0.35s var(--ease);
}

.other-cat-card:hover .tile-link svg {
  transform: translateX(5px);
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--paper-line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-num {
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 0.9rem;
  padding-top: 2px;
}

.feature-row h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.feature-row p {
  color: var(--slate);
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--paper-line);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate);
}

.badge svg {
  width: 14px;
  height: 14px;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.service-tab-btn {
  border: 1px solid var(--paper-line);
  background: transparent;
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.service-tab-btn.is-active,
.service-tab-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--amber);
}

.service-panel {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.service-panel.is-active {
  display: grid;
  animation: rise var(--med) var(--ease);
}

.service-visual {
  background: var(--steel);
  color: var(--white);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  border-left: 3px solid var(--amber);
}

.service-visual .icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber);
  margin-bottom: 0;
}

.service-visual h3 {
  color: var(--white);
}

.service-visual p {
  color: rgba(255, 255, 255, 0.75);
}

.service-panel-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.service-panel-points {
  width: 100%;
}

.service-panel-points li {
  display: flex;
  gap: var(--space-2);
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--paper-line);
  color: var(--ink);
}

.service-panel-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--orange);
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-top: 3px solid var(--amber);
}

.testimonial-media {
  height: 180px;
  overflow: hidden;
  background: var(--ink);
}

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

.testimonial-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-4);
}

.testimonial-quote {
  color: var(--paper);
  font-size: 1.02rem;
  line-height: 1.7;
}

.testimonial-quote::before {
  content: "\201C";
  display: block;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: var(--space-4);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-author .name {
  color: var(--white);
  font-weight: 600;
}

.testimonial-author .role {
  color: var(--slate-light);
  font-size: 0.85rem;
}

.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 52px;
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
}

.testimonial-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: marquee 32s linear infinite;
}

.client-track span {
  font-family: var(--font-mono);
  color: var(--slate);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--paper-line);
  overflow: hidden;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card-media {
  position: relative;
  display: block;
  height: 180px;
  overflow: hidden;
  background: var(--steel);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--med) var(--ease);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-date {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 1;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.blog-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}

.blog-card-body h3 {
  font-size: 1.05rem;
}

.blog-card-body h3 a:hover {
  color: var(--orange);
}

.blog-card-body p {
  color: var(--slate);
  font-size: 0.92rem;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
}

.blog-read-more svg {
  width: 14px;
  height: 14px;
}

.related-link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-2);
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--paper-line);
}

.related-link img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  background: var(--paper-dim);
}

.related-link strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.related-link:hover strong {
  color: var(--orange);
}

.media-frame {
  width: 100%;
  object-fit: cover;
  background: var(--steel);
  border-left: 3px solid var(--amber);
}

.media-frame--tall { height: 420px; }
.media-frame--article { height: 300px; margin: var(--space-4) 0; }

.section--flush {
  padding: 0;
}

.bulk-quote {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.bulk-quote-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.bulk-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease);
}

.bulk-quote.is-in .bulk-quote-media img,
.bulk-quote:hover .bulk-quote-media img {
  transform: scale(1.08);
}

.bulk-quote-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(15, 20, 25, 0.55) 100%),
    linear-gradient(0deg, rgba(15, 20, 25, 0.45), transparent 45%);
  pointer-events: none;
}

.bulk-quote-mark {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 0.55rem 0.85rem;
}

.bulk-quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(245, 184, 0, 0.16), transparent 45%),
    linear-gradient(160deg, var(--ink-soft), var(--ink));
  border-left: 1px solid var(--ink-line);
}

.bulk-quote-copy .section-title {
  color: var(--white);
  max-width: 14ch;
  margin-top: var(--space-2);
}

.bulk-quote-lead {
  margin-top: var(--space-3);
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bulk-quote-points {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.75rem;
}

.bulk-quote-points li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.45;
}

.bulk-quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--amber);
}

.bulk-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.bulk-quote-actions .btn-primary {
  animation: bulkPulse 2.8s var(--ease) infinite;
}

@keyframes bulkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(245, 184, 0, 0); }
}

@media (max-width: 991px) {
  .bulk-quote {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bulk-quote-media {
    height: 280px;
  }

  .bulk-quote-media-shade {
    background: linear-gradient(0deg, rgba(15, 20, 25, 0.55), transparent 50%);
  }

  .bulk-quote-copy {
    border-left: 0;
    border-top: 1px solid var(--ink-line);
  }

  .bulk-quote-copy .section-title {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bulk-quote-actions .btn-primary {
    animation: none;
  }

  .bulk-quote-media img {
    transition: none;
  }
}

.cta-banner {
  position: relative;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: var(--space-6) var(--space-4);
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(245, 184, 0, 0.07), rgba(245, 184, 0, 0.07) 12px, transparent 12px, transparent 24px);
}

.cta-banner-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner .section-title {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.75);
}

.form-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
}

.form-control.is-invalid {
  border-color: #c0392b;
  background: #fffafa;
}

.form-control:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.field-error-msg {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0392b;
}

.form-feedback {
  display: block;
  margin-top: var(--space-3);
  font-weight: 500;
}

.form-feedback.is-success { color: var(--success); }
.form-feedback.is-error { color: var(--orange); }

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

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

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

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--paper-line);
}

.contact-card .icon-wrap {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
}

.contact-card .icon-wrap svg {
  width: 20px;
  height: 20px;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-card p {
  color: var(--slate);
  font-size: 0.92rem;
}

.map-picker {
  background: var(--white);
}

.map-tabs-wrap {
  border-bottom: 1px solid var(--paper-line);
}

.map-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.map-tabs button {
  appearance: none;
  flex: 0 0 auto;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 0.9rem 1.05rem;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--fast), border-color var(--fast);
}

.map-tabs button:hover {
  color: var(--ink);
}

.map-tabs button.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.map-stage {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  background: var(--paper-dim);
  overflow: hidden;
}

.map-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--paper-dim);
}

.map-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

@media (max-width: 768px) {
  .map-stage {
    height: 360px;
    min-height: 360px;
  }

  .map-tabs button {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }
}

.article-body {
  color: var(--slate);
  line-height: 1.85;
}

.article-body p + p {
  margin-top: var(--space-3);
}

.article-body h2 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: var(--ink);
  font-size: 1.35rem;
}

.article-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-body a:hover {
  color: var(--ink);
}

.article-related h2 {
  color: var(--ink);
  font-size: 1.35rem;
}

.prose-wrap {
  max-width: 760px;
}

.hazard-rule {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(-45deg, var(--amber), var(--amber) 14px, var(--ink) 14px, var(--ink) 28px);
}

.site-footer {
  background: var(--ink);
  color: var(--slate-light);
  padding-top: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}

.footer-blurb {
  max-width: 320px;
  margin-top: var(--space-3);
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom--solo {
  border-top: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-3);
}

.social-row {
  display: flex;
  gap: var(--space-2);
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.social-row a:hover {
  transform: translateY(-2px);
}

.social-row a.social-facebook:hover {
  background: var(--brand-fb);
  border-color: var(--brand-fb);
  color: var(--white);
}

.social-row a.social-linkedin:hover {
  background: var(--brand-li);
  border-color: var(--brand-li);
  color: var(--white);
}

.social-row a.social-instagram:hover,
.social-row a.social-youtube:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

.whatsapp-fab,
.back-to-top {
  position: fixed;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  transition: transform var(--fast) var(--ease), opacity var(--fast);
}

.whatsapp-fab {
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  background: var(--brand-wa);
  color: var(--white);
  box-shadow: var(--shadow);
}

.whatsapp-fab:hover {
  transform: scale(1.06);
  background: var(--brand-wa-dark);
  color: var(--white);
}

body.is-in-hero .whatsapp-fab,
body.is-in-hero .back-to-top {
  opacity: 0;
  pointer-events: none;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

.back-to-top {
  left: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--amber);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 992px) {
  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: var(--space-4);
  }

  .has-dropdown {
    display: flex;
    align-items: center;
    align-self: stretch;
  }

  .nav-link {
    padding: 0.35rem 0;
    background: transparent;
    position: relative;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s ease;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: transparent;
    color: var(--amber);
    transform: translateY(-1px);
  }

  .nav-link.is-active {
    color: var(--amber);
  }

  .nav-link:hover::after,
  .nav-link.is-active::after {
    transform: scaleX(1);
  }

  .dropdown-toggle {
    display: none;
  }

  .dropdown-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    min-width: 240px;
    margin: 0;
    padding: 12px var(--space-2) var(--space-2);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .dropdown-panel::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    pointer-events: none;
  }

  .has-dropdown:hover .dropdown-panel,
  .has-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .dropdown-item {
    position: relative;
    z-index: 1;
    color: var(--paper);
    padding: 0.65rem 0.75rem;
  }

  .dropdown-item:hover {
    background: var(--ink-line);
    color: var(--amber);
  }
}

@media (max-width: 991px) {
  .hero-main,
  .service-panel.is-active,
  .footer-grid,
  .split,
  .article-layout,
  .catalog-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .has-dropdown .dropdown-panel {
    display: none;
  }

  .has-dropdown.is-open .dropdown-panel {
    display: block;
  }

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

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  }

  .stats-grid[data-stat-count="1"] {
    grid-template-columns: minmax(0, 20rem);
  }

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

@media (max-width: 640px) {
  .hero-carousel-nav button {
    padding: 0.65rem 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-slide-copy {
    padding-bottom: 6.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .tile--photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0.9rem 1rem 1rem;
  }

  .tile--photo .icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 0.45rem;
  }

  .tile--photo .tile-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .other-cat-card {
    min-height: 0;
  }

  .hero-title {
    max-width: none;
  }

  .brand-mark-wrap {
    width: 40px;
    height: 40px;
    padding: 3px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .media-frame--tall,
  .media-frame--article {
    height: 220px;
  }

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

  .product-stage {
    min-height: 240px;
  }
}

.page-header--slim {
  padding-bottom: var(--space-3);
}

.section--product {
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: var(--space-6);
}

.btn-wa {
  background: var(--brand-wa);
  color: var(--white);
  border-color: var(--brand-wa);
}

.btn-wa:hover {
  background: var(--brand-wa-dark);
  border-color: var(--brand-wa-dark);
  color: var(--white);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: var(--space-5);
  align-items: start;
}

.catalog-layout > * {
  min-width: 0;
}

.catalog-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--slate);
  max-width: 62ch;
}

.buyer-panel {
  padding: var(--space-4);
  background:
    linear-gradient(135deg, rgba(245, 184, 0, 0.12), transparent 55%),
    var(--white);
  border: 1px solid var(--paper-line);
  border-left: 4px solid var(--amber);
}

.buyer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.buyer-panel p {
  color: var(--slate);
  line-height: 1.7;
}

.section-title--sm {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.use-case-grid {
  display: grid;
  gap: var(--space-3);
}

.use-case {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 1px solid var(--paper-line);
  transition: border-color var(--fast), transform var(--med) var(--ease);
}

.use-case:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.use-case h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.use-case p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
}

.catalog-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.side-card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-top: 3px solid var(--amber);
  padding: var(--space-4);
  box-shadow: 0 10px 28px rgba(15, 20, 25, 0.06);
}

.side-card--accent {
  background:
    linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-color: var(--ink-line);
  border-top-color: var(--amber);
  color: var(--white);
}

.side-card--accent .eyebrow {
  color: var(--amber);
}

.side-card--accent h2,
.side-card--accent h3 {
  color: var(--white);
}

.side-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.side-card h3 {
  font-size: 1.2rem;
}

.side-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.side-card .btn {
  width: 100%;
}

.side-links li {
  border-bottom: 1px solid var(--paper-line);
}

.side-links a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.side-links a:hover {
  color: var(--orange);
}

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

.product-grid > * {
  min-width: 0;
}

.section--catalog {
  padding-top: calc(var(--header-h) + 1.6rem);
  padding-bottom: var(--space-6);
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
  gap: var(--space-4);
  align-items: end;
  margin-bottom: var(--space-4);
}

.catalog-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-top: 0.45rem;
  max-width: 16ch;
}

.catalog-intro-lead {
  margin-top: 0.7rem;
  max-width: 46ch;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.6;
}

.catalog-toolbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: var(--space-4);
}

.catalog-count {
  color: var(--slate);
  font-size: 0.92rem;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.catalog-search-icon {
  position: absolute;
  left: 1rem;
  color: var(--slate);
  pointer-events: none;
}

.catalog-search input[type="search"] {
  width: 100%;
  height: 52px;
  padding: 0.75rem 2.6rem 0.75rem 2.85rem;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.04);
  transition: border-color var(--fast), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  appearance: none;
}

.catalog-search:hover input[type="search"] {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 20, 25, 0.08);
}

.catalog-search input[type="search"]::-webkit-search-cancel-button { display: none; }

.catalog-search input[type="search"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 90, 34, 0.14);
}

.catalog-search input[type="search"]:focus + .catalog-search-clear,
.catalog-search input[type="search"]:not(:placeholder-shown) + .catalog-search-clear {
  opacity: 1;
  pointer-events: auto;
}

.catalog-search-clear {
  position: absolute;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  background: none;
  color: var(--slate);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast), color var(--fast);
}

.catalog-search-clear:hover { color: var(--orange); }

.catalog-empty {
  border: 1px dashed var(--paper-line);
  background: var(--white);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}

.catalog-empty-inner {
  max-width: 460px;
  margin: 0 auto;
}

.catalog-empty strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.catalog-empty p {
  color: var(--slate);
  margin-bottom: var(--space-3);
}

.catalog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.empty-note {
  color: var(--slate);
  padding: var(--space-4);
  border: 1px dashed var(--paper-line);
  text-align: center;
  grid-column: 1 / -1;
}

img[data-fallback].is-broken {
  object-fit: contain;
  background: var(--paper-dim);
  padding: 12%;
  opacity: 0.55;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.filter-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(224, 90, 34, 0.12);
}

.filter-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-chip.is-active:hover {
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 8px 18px rgba(15, 20, 25, 0.18);
}

.pagination-wrap {
  margin-top: var(--space-5);
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.7rem;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.pagination-btn:hover {
  border-color: var(--amber);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 20, 25, 0.08);
}

.pagination-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--amber);
}

.pagination-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-ellipsis {
  display: inline-flex;
  min-width: 1.5rem;
  justify-content: center;
  color: var(--slate);
}

.section--dim .pagination-btn {
  background: var(--paper);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  box-shadow: 0 10px 28px rgba(15, 20, 25, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(15, 20, 25, 0.14);
  border-color: var(--amber);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-media {
  display: block;
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--paper-dim);
}

.product-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.45) 48%, transparent 70%);
  transform: translateX(-130%) skewX(-12deg);
  pointer-events: none;
}

.product-card:hover .product-card-media::before {
  animation: product-card-shine 0.7s var(--ease) forwards;
}

@keyframes product-card-shine {
  to { transform: translateX(130%) skewX(-12deg); }
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.08);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.05rem 1.15rem 1.15rem;
  flex: 1;
}

.product-card-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: letter-spacing 0.35s var(--ease);
}

.product-card:hover .product-card-cat {
  letter-spacing: 0.12em;
}

.product-card-body strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.3s var(--ease);
}

.product-card:hover .product-card-body strong {
  color: var(--orange);
}

.product-card-body em {
  font-style: normal;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .tile-link {
  margin-top: 0.55rem;
}

.product-card .tile-link svg {
  transition: transform 0.35s var(--ease);
}

.product-card:hover .tile-link svg {
  transform: translateX(5px);
}

.faq-list {
  display: grid;
  gap: var(--space-2);
  max-width: 860px;
}

.faq-page {
  display: grid;
  gap: var(--space-6);
}

.faq-group .eyebrow {
  display: block;
}

.faq-groups {
  display: grid;
  gap: var(--space-6);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--paper-line);
  padding: 0 var(--space-3);
  transition: border-color var(--fast);
}

.faq-item[open] {
  border-color: var(--amber);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-3) 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: var(--slate);
  padding-bottom: var(--space-3);
  line-height: 1.7;
}

.product-crumbs .breadcrumb-row {
  margin: 0 0 var(--space-4);
  color: var(--slate);
}

.product-crumbs .breadcrumb-row a:hover {
  color: var(--orange);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: var(--space-5);
  align-items: stretch;
}

.product-layout > * {
  min-width: 0;
}

.product-gallery {
  display: grid;
  gap: 0.9rem;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
}

.product-gallery.has-thumbs {
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  grid-template-areas: "thumbs stage";
  align-items: stretch;
}

.product-gallery.has-thumbs .product-stage {
  grid-area: stage;
  min-height: 0;
}

.product-gallery.has-thumbs .product-thumbs {
  grid-area: thumbs;
  flex-direction: column;
  max-height: 100%;
  overflow-y: auto;
}

.product-stage {
  position: relative;
  display: block;
  height: 100%;
  min-height: 36rem;
  max-height: none;
  aspect-ratio: auto;
  background: var(--ink-soft);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 20, 25, 0.06);
}

.product-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
  display: block;
  transition: opacity 0.18s ease, transform 0.45s var(--ease);
}

.product-stage:hover img {
  transform: scale(1.04);
}

.product-stage-count {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 20, 25, 0.72);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-thumb {
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  padding: 0;
  background: var(--white);
  width: 84px;
  height: 84px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--fast), transform var(--fast), box-shadow var(--fast);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
}

.product-thumb.is-active,
.product-thumb:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 20, 25, 0.08);
}

.product-info {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.product-cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 90, 34, 0.1);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-cat-chip:hover {
  background: var(--orange);
  color: var(--white);
}

.product-info .product-name,
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 700;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-lead {
  margin-top: 0.85rem;
  font-size: 1.08rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.6;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.product-avail,
.product-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--paper-line);
  font-size: 0.82rem;
  color: var(--slate);
}

.product-fact strong {
  color: var(--ink);
  font-weight: 700;
}

.product-avail.is-ok {
  background: rgba(47, 143, 91, 0.1);
  border-color: rgba(47, 143, 91, 0.28);
  color: var(--success);
  font-weight: 700;
}

.product-avail.is-out {
  background: rgba(224, 90, 34, 0.1);
  border-color: rgba(224, 90, 34, 0.28);
  color: var(--orange);
  font-weight: 700;
}

.product-price-row {
  margin-top: 1.15rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-price span {
  font-size: 0.95rem;
  color: var(--slate);
  margin-right: 0.2rem;
}

.product-price--request {
  font-size: 1.15rem;
  color: var(--ink);
}

.product-body {
  margin-top: var(--space-3);
  color: var(--slate);
  line-height: 1.8;
}

.product-meta {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.meta-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.45rem;
}

.meta-pill {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  background: var(--paper-dim);
  border: 1px solid var(--paper-line);
  font-size: 0.88rem;
  color: var(--ink);
}

.meta-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(224, 90, 34, 0.08);
  color: var(--orange);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.product-spec {
  margin-top: 1.25rem;
}

.feature-checks {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.55rem;
}

.feature-checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feature-checks li svg {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
  color: var(--success);
  flex-shrink: 0;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.product-actions .btn {
  width: 100%;
}

.product-actions .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding: 0;
  border: 0;
}

.product-trust li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 100%;
  padding: 0.75rem 0.7rem 0.8rem;
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-trust-ico {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(224, 90, 34, 0.1);
  color: var(--orange);
}

.product-trust-ico svg {
  display: block;
}

.product-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  background: var(--white);
}

.product-share .meta-label {
  margin: 0;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 34px;
  padding: 0 0.7rem 0 0.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--fast) var(--ease), filter var(--fast), box-shadow var(--fast);
}

.share-btn span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.share-btn svg {
  display: block;
  flex-shrink: 0;
}

.share-btn--wa {
  background: #25d366;
  color: #fff;
}

.share-btn--fb {
  background: #1877f2;
  color: #fff;
}

.share-btn--li {
  background: #0a66c2;
  color: #fff;
}

.share-btn--mail {
  background: #4285f4;
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.08);
  box-shadow: 0 8px 18px rgba(15, 20, 25, 0.18);
  color: #fff;
}

.product-below {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
  align-items: start;
}

.product-below--solo {
  grid-template-columns: minmax(260px, 28rem);
}

.product-panel {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  padding: var(--space-4);
}

.product-panel-title {
  font-size: 1.55rem;
  margin-top: 0.35rem;
}

.product-quote-card {
  background:
    linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: var(--space-4);
}

.product-quote-card .eyebrow {
  color: var(--amber);
}

.product-quote-card h2 {
  color: var(--white);
  font-size: 1.45rem;
  margin-top: 0.45rem;
}

.product-quote-card p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.product-quote-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.product-quote-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  line-height: 1.25;
}

.product-quote-card .product-quote-row {
  margin-top: 0;
  line-height: 1.25;
}

.quote-contact-ico {
  display: block;
  flex-shrink: 0;
  color: var(--amber);
}

.product-quote-row > span {
  min-width: 0;
}

.product-quote-contact a {
  color: var(--amber);
  font-weight: 700;
  white-space: nowrap;
}

.product-quote-contact a[href^="mailto:"] {
  white-space: normal;
  overflow-wrap: anywhere;
}

.phone-sep {
  opacity: 0.55;
  margin: 0 0.12rem;
}

.side-card--accent .product-quote-contact a,
.side-card--accent .quote-contact-ico {
  color: var(--amber);
}

.product-sticky-cta {
  display: none;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .catalog-layout,
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .catalog-side,
  .product-info {
    position: static;
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-title {
    max-width: none;
  }

  .section--catalog {
    padding-top: calc(var(--header-h) + 1.1rem);
  }

  .product-gallery.has-thumbs {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "stage"
      "thumbs";
  }

  .product-gallery.has-thumbs .product-thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }

  .product-gallery,
  .product-gallery.has-thumbs {
    height: auto;
    min-height: 0;
  }

  .product-stage {
    max-height: none;
    min-height: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

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

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

  .product-actions .btn {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  body.is-product-page {
    padding-bottom: 5.8rem;
  }

  body.is-product-page .whatsapp-fab {
    display: none;
  }

  .product-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 980;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(243, 241, 236, 0.96);
    border-top: 1px solid var(--paper-line);
    box-shadow: 0 -10px 28px rgba(15, 20, 25, 0.08);
  }

  .product-sticky-cta .btn {
    width: 100%;
  }

  body.quote-locked .product-sticky-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .other-cat-card h3 {
    font-size: 1.12rem;
  }

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

  .product-actions .btn,
  .product-actions .btn-wa {
    width: 100%;
  }

  .product-info {
    padding: 0;
  }

  .product-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

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

  .product-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }

  .product-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }

  .product-card-media {
    height: 200px;
  }

  .product-card-body em {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section--product {
    padding-top: calc(var(--header-h) + 0.9rem);
    padding-bottom: var(--space-4);
  }

  .section--catalog {
    padding-top: calc(var(--header-h) + 0.9rem);
  }

  .catalog-search {
    max-width: none;
  }

  .catalog-filters {
    margin-inline: calc(var(--space-3) * -1);
    padding-inline: var(--space-3);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-chip {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-slide,
  .hero-slide-media {
    transition: none !important;
  }

  .hero-scroll-cue::after {
    animation: none;
  }
}

body.quote-locked {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 16, 0.72);
  backdrop-filter: blur(8px);
}

.quote-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(640px 180px at 100% 0%, rgba(94, 200, 216, 0.12), transparent 50%),
    linear-gradient(165deg, #1b2d4d 0%, #14233c 52%, #101c32 100%);
  color: #f4f7fb;
  box-shadow: 0 22px 56px rgba(4, 8, 14, 0.5);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.quote-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.quote-modal-kicker {
  color: #6ed6e4;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-modal-dialog h2,
.quote-modal-dialog h3 {
  margin-top: 0.28rem;
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  max-width: none;
  line-height: 1.2;
}

.quote-modal-lead,
.quote-modal-success p {
  margin-top: 0.35rem;
  max-width: 48ch;
  color: rgba(232, 238, 246, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.quote-modal-form {
  margin-top: 0.95rem;
}

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

.quote-field--wide,
.quote-field--full {
  grid-column: 1 / -1;
}

.quote-label {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 600;
}

.quote-label span {
  color: #ff8d78;
}

.quote-label em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.quote-input-wrap {
  position: relative;
  display: block;
}

.quote-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8b98a8;
  pointer-events: none;
}

.quote-modal .form-control {
  height: 40px;
  border-radius: 10px;
  border-color: #e6edf6;
  background: #fff;
  padding: 0.45rem 0.8rem 0.45rem 2.2rem;
  font-size: 0.9rem;
  box-shadow: 0 1px 0 rgba(15, 20, 25, 0.04);
}

.quote-modal select.form-control {
  appearance: none;
  padding-right: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238b98a8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 14px;
}

.quote-modal textarea.form-control {
  height: auto;
  min-height: 4.6rem;
  padding: 0.65rem 0.8rem;
  line-height: 1.45;
  resize: vertical;
}

.quote-modal .form-control::placeholder {
  color: #9aa7b8;
}

.quote-modal .form-control:focus,
.quote-modal .form-control:focus-visible {
  outline: none;
  border-color: #ff7a18;
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.22);
}

.quote-modal .form-control.is-invalid {
  border-color: #e05a22;
  background: #fff;
}

.quote-input-wrap .field-error-msg {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.quote-modal-foot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem 0.85rem;
  align-items: end;
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-captcha {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-captcha-sum {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 40px;
  padding: 0 0.7rem;
  border-radius: 10px;
  background: #3d4c63;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.quote-captcha .form-control {
  width: 42px;
  height: 40px;
  padding: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.quote-captcha-refresh {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: #3d4c63;
  color: var(--white);
}

.quote-captcha-refresh:hover {
  background: #4d5d76;
}

.quote-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: #3dce7a;
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-modal-btn {
  background: #ff7a18;
  border-color: #ff7a18;
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 122, 24, 0.28);
}

.quote-modal-btn:hover {
  background: #f06e10;
  border-color: #f06e10;
  color: var(--white);
  transform: translateY(-1px);
}

.quote-modal .form-feedback {
  color: #ffb4a2;
  margin-top: 0.65rem;
  font-size: 0.85rem;
}

.quote-modal .form-feedback.is-success {
  color: #3dce7a;
}

.quote-modal-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.85rem 0 0.2rem;
}

.quote-success-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: rgba(61, 206, 122, 0.16);
  color: #3dce7a;
}

.quote-modal-success[hidden],
.quote-modal-form[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .quote-modal-grid,
  .quote-modal-foot {
    grid-template-columns: 1fr;
  }

  .quote-field--wide {
    grid-column: auto;
  }

  .quote-trust {
    margin-bottom: 0;
  }

  .quote-modal-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .quote-modal {
    padding: 0.45rem;
    align-items: flex-start;
  }

  .quote-modal-dialog {
    padding: 1.1rem 0.9rem 1rem;
    max-height: calc(100vh - 0.9rem);
    border-radius: 14px;
  }

  .quote-modal .form-control {
    height: 42px;
  }
}
