:root {
  --bg: #f5f1e7;
  --ink: #231f20;
  --muted: #6f6760;
  --dark: #171516;
  --panel: #ffffff;
  --acid: #f9c929;
  --mint: #57d6ad;
  --violet: #7c63c7;
  --line: rgba(35, 31, 32, 0.12);
  --shadow: 0 28px 80px rgba(12, 10, 10, 0.14);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

main,
section,
header,
footer,
figure,
picture {
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  overflow-x: clip;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: calc(18px + env(safe-area-inset-top, 0px)) clamp(18px, 4vw, 54px) 18px;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 241, 231, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.header-cta,
.menu-button {
  position: relative;
  z-index: 2;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
  }

.brand span:last-child {
  display: block;
  line-height: 1;
  text-shadow: 0 0 18px rgba(249, 201, 41, 0.16);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0b0f10;
  background: var(--acid);
  font-weight: 900;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(249, 201, 41, 0.35), 0 0 30px rgba(249, 201, 41, 0.28);
}

.desktop-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  flex-wrap: nowrap;
  gap: clamp(14px, 2vw, 30px);
  padding-right: 6px;
  font-size: 14px;
  font-weight: 700;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.desktop-nav a {
  opacity: 0.86;
  white-space: nowrap;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-cta {
  padding: 12px 18px;
  color: #0b0f10;
  background: var(--acid);
  font-weight: 800;
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    color: currentColor;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  max-width: 100%;
  overflow-x: hidden;
  z-index: 18;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: calc(84px + env(safe-area-inset-top, 0px)) 28px calc(28px + env(safe-area-inset-bottom, 0px));
  color: #fff;
  background: rgba(8, 10, 10, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 24px;
  font-weight: 800;
}

.hero {
  position: relative;
  max-width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(20px, 4vw, 60px);
  padding: 130px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
  background: #101414;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(23, 21, 22, 0.34));
}

.hero-media,
.hero-media picture,
.hero-media video {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.88) 0%, rgba(5, 8, 9, 0.38) 48%, rgba(5, 8, 9, 0.78) 100%),
    linear-gradient(0deg, rgba(5, 8, 9, 0.88), rgba(5, 8, 9, 0.1) 42%);
}

img.is-missing {
  opacity: 0;
}

.hero-media:has(img.is-missing),
.media-frame:has(img.is-missing),
.gallery-main:has(img.is-missing) {
  background:
    linear-gradient(135deg, rgba(199, 255, 61, 0.35), transparent 35%),
    linear-gradient(315deg, rgba(124, 99, 199, 0.46), transparent 38%),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.22), transparent 30%),
    #141819;
}

.scanline {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 100% 7px;
  mix-blend-mode: overlay;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(64px, 14vw, 184px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.hero-copy strong {
  color: #ff5a54;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(255, 90, 84, 0.28);
  white-space: nowrap;
}

.hero-highlight {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero-subcopy {
  max-width: 700px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #0b0f10;
  border-color: var(--acid);
  background: var(--acid);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
  background: transparent;
  backdrop-filter: none;
}

.hero-panel div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.hero-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--acid);
  font-size: 34px;
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.intent-strip {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  overflow-x: auto;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.intent-strip::-webkit-scrollbar {
  display: none;
}

.model-subnav {
  position: sticky;
  top: 78px;
  z-index: 12;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 10px clamp(18px, 5vw, 72px);
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  backdrop-filter: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.model-subnav::-webkit-scrollbar {
  display: none;
}

.model-subnav a {
  flex: 0 0 auto;
  min-width: 132px;
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(249, 201, 41, 0.18);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(35, 31, 32, 0.08);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.model-subnav a:hover {
  color: var(--ink);
  background: rgba(249, 201, 41, 0.34);
  box-shadow: inset 0 0 0 1px rgba(35, 31, 32, 0.14);
}

.intent-strip a {
  flex: 0 0 auto;
  padding: 16px 22px;
  color: #fff;
  background: #1d2324;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border-radius: 999px;
}

.section,
.gallery-section,
.lead-section {
  padding: clamp(74px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.split,
.media-split,
.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.lead-copy h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-copy p,
.lead-copy p,
.source-note {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink);
  border-bottom: 3px solid var(--acid);
  font-weight: 900;
}

.link-row,
.section-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-actions {
  margin-top: 28px;
}

.dark-button {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.price-board {
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  text-align: right;
}

.notice {
  margin-top: 24px;
  padding: 18px;
  color: #18200c;
  background: var(--acid);
  font-weight: 800;
  line-height: 1.45;
  border-radius: var(--radius-md);
}

.dark {
  color: #fff;
  background: var(--dark);
}

.dark .section-copy p,
.dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.feature-grid,
.assist-grid,
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.flow-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
  grid-template-rows: auto auto;
  gap: 18px;
  background: transparent;
}

.flow-media {
  grid-row: span 2;
  min-height: 640px;
  background: #151b1c;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.flow-media img {
  border-radius: inherit;
}

.flow-tabs {
  display: grid;
  gap: 12px;
  background: transparent;
}

.flow-tab {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: #151b1c;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.flow-tab span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0b0f10;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 12px;
}

.flow-tab.active {
  color: #fff;
  background: #222b2a;
  box-shadow: inset 0 0 0 1px rgba(249, 201, 41, 0.22);
}

.flow-tab.active span {
  background: var(--acid);
}

.flow-copy {
  padding: 26px;
  background: #101414;
  border-radius: var(--radius-lg);
}

.flow-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.flow-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.video-card,
.story-card,
.safety-media figure,
.asset-card {
  margin: 0;
  background: #151b1c;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.video-card video {
  aspect-ratio: 16 / 9;
}

.video-card figcaption,
.story-card figcaption,
.safety-media figcaption,
.asset-card figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.feature-card,
.assist-card,
.step {
  min-height: 260px;
  padding: 28px;
  background: #151b1c;
  border-radius: var(--radius-lg);
}

.feature-card span,
.step span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 36px;
  color: #0b0f10;
  background: var(--acid);
  font-weight: 900;
  border-radius: 14px;
}

.feature-card h3,
.assist-card h3,
.step h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.feature-card p,
.assist-card p,
.step p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(124, 99, 199, 0.18), transparent 32%),
    linear-gradient(180deg, #1a2022 0%, #101415 100%);
}

.gallery-main picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.gallery-main .color-display-image {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  max-height: calc(100% - 110px);
  object-fit: contain;
  padding: 24px 24px 96px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-main figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 9, 9, 0.72);
  backdrop-filter: blur(12px);
  font-size: 14px;
  line-height: 1.45;
}

.color-list {
  display: grid;
  gap: 8px;
}

.swatch {
  position: relative;
  min-height: 70px;
  padding: 0 18px 0 58px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-md);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.swatch::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: var(--swatch);
  transform: translateY(-50%);
}

.swatch.active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.specs {
  background: #e8ede7;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-table div {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-table span {
  color: var(--muted);
}

.spec-table strong {
  text-align: right;
}

.source-note {
  max-width: 900px;
  margin: 22px 0 0;
  font-size: 15px;
}

.media-frame {
  min-height: 620px;
  overflow: hidden;
  background: #151b1c;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.clean-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.clean-list li {
  padding: 18px 20px;
  background: #fff;
  border-left: 5px solid var(--acid);
  font-weight: 750;
}

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

.assist-card {
  min-height: 210px;
}

.safety-media {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.safety-media img {
  aspect-ratio: 4 / 3;
}

.visual-story {
  background: #eef2ef;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}

.story-card {
  color: #fff;
}

.story-card.large {
  grid-row: span 2;
}

.story-card img {
  aspect-ratio: 16 / 9;
}

.story-card.large img {
  min-height: 560px;
}

.process {
  background: transparent;
}

.step {
  color: var(--ink);
  background: #fff;
}

.step p {
  color: var(--muted);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud a {
  padding: 12px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.faq {
  background: #fff;
}

.full-media {
  background: #e8ede7;
}

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

.asset-gallery-actions {
  margin-top: 22px;
}

.asset-card {
  color: #fff;
  background: #101414;
}

.asset-card img,
.asset-card video {
  aspect-ratio: 16 / 10;
}

.asset-card.is-square img {
  aspect-ratio: 1 / 1;
}

.asset-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--acid);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

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

summary {
  padding: 22px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.lead-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 10, 11, 0.92), rgba(7, 10, 11, 0.5)),
    linear-gradient(135deg, #101414, #2c3431 45%, #556244);
}

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

.lead-form {
  display: grid;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 16px;
}

select option {
  color: #101414;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #c7ff4f;
}

.form-status[data-state="error"] {
  color: #ff9b9b;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1fr;
  gap: 28px;
  margin: 24px clamp(18px, 5vw, 72px) clamp(18px, 4vw, 32px);
  padding: 38px clamp(18px, 5vw, 72px) calc(38px + env(safe-area-inset-bottom, 0px));
  color: rgba(255, 255, 255, 0.66);
  background: #070909;
  border-radius: var(--radius-lg);
}

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

.footer-label {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand,
.footer-legal,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact-grid {
  display: grid;
  gap: 14px;
}

.footer-contact-grid article {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.contact-card,
.meta-card {
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.meta-card,
.meta-card strong,
.meta-card p,
.meta-card a {
  color: var(--ink);
}

.meta-card p {
  margin-bottom: 10px;
}

.meta-card p:last-child {
  margin-bottom: 0;
}

.contact-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-city {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.inner-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 54px;
  color: #fff;
  overflow: hidden;
  background: #101414;
}

.inner-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 8, 9, 0.88), rgba(5, 8, 9, 0.24)), linear-gradient(0deg, rgba(5, 8, 9, 0.9), transparent 54%);
}

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

.inner-hero h1 {
  font-size: clamp(46px, 8vw, 112px);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.crumbs a {
  color: #fff;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: transparent;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  padding: 12px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.compare-table {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.compare-table th {
  color: #fff;
  background: #101414;
}

.compare-table .group-row td {
  color: #0b0f10;
  background: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-matrix-section {
  background: #f3f4f1;
}

.equipment-matrix td:nth-child(2),
.equipment-matrix td:nth-child(3),
.equipment-matrix th:nth-child(2),
.equipment-matrix th:nth-child(3) {
  width: 26%;
  text-align: center;
}

.equipment-matrix td:first-child,
.equipment-matrix th:first-child {
  width: 48%;
}

.matrix-yes,
.matrix-no {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.matrix-yes {
  color: #1f2a2f;
}

.matrix-no {
  color: #6c7378;
}

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

.variant-card {
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.variant-card h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.variant-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.variant-card li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.variant-card strong {
  color: var(--ink);
}

.exterior-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px) 8px;
  background: linear-gradient(180deg, #171516 0, #1f1c1d 100%);
}

.exterior-shot {
  position: relative;
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.exterior-shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(23, 21, 22, 0.9));
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(20px, 4vw, 38px);
  align-items: start;
}

.page-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-section-links a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(249, 201, 41, 0.14);
  color: var(--ink);
  font-weight: 800;
}

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

.page-media-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-media-grid figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-note {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.page-note h3 {
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* =========================
   MOBILE HORIZONTAL SCROLL FIX
   Добавлено: защита от распирания страницы
========================= */

body,
.site-header,
.mobile-nav,
.hero,
.inner-hero,
.section,
.gallery-section,
.lead-section,
.site-footer,
.model-subnav,
.intent-strip,
.page-nav,
.exterior-strip {
  max-width: 100%;
}

.container,
.wrapper,
main,
section,
article,
.page-grid,
.split,
.media-split,
.gallery,
.flow-showcase,
.feature-grid,
.assist-grid,
.process,
.spec-table,
.video-grid,
.safety-media,
.asset-gallery,
.contacts-grid,
.meta-grid,
.variant-grid,
.page-media-grid,
.story-grid {
  min-width: 0;
}

.page-grid > *,
.split > *,
.media-split > *,
.gallery > *,
.flow-showcase > *,
.feature-grid > *,
.assist-grid > *,
.process > *,
.spec-table > *,
.video-grid > *,
.safety-media > *,
.asset-gallery > *,
.contacts-grid > *,
.meta-grid > *,
.variant-grid > *,
.page-media-grid > *,
.story-grid > *,
.hero > *,
.site-header > *,
.site-footer > * {
  min-width: 0;
}

.compare-table,
.equipment-matrix,
table {
  max-width: 100%;
}

.compare-table th,
.compare-table td,
.equipment-matrix th,
.equipment-matrix td,
.spec-table div,
.price-row,
.variant-card li,
.notice,
.hero-copy,
.hero-subcopy,
.section-copy p,
.lead-copy p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.table-wrap,
.compare-wrap,
.specs-wrap,
.characteristics-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .menu-button {
    display: block;
    color: currentColor;
  }

  .hero,
  .split,
  .media-split,
  .lead-section,
  .gallery,
  .flow-showcase,
  .variant-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

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

  .feature-grid,
  .assist-grid,
  .process,
  .spec-table,
  .video-grid,
  .safety-media,
  .asset-gallery,
  .exterior-strip,
  .page-grid,
  .page-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-card.large {
    grid-row: auto;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .model-subnav {
    top: 67px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .flow-media {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: clip;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  main,
  section,
  .container,
  .section,
  .inner-hero,
  .hero,
  .page-grid,
  .section-grid,
  .story-grid,
  .media-grid,
  .gallery,
  .gallery-main,
  .gallery-sidebar,
  .section-surface {
    min-width: 0;
  }

  .site-header,
  .hero,
  .inner-hero,
  .section,
  .gallery-section,
  .lead-section,
  .site-footer,
  .exterior-strip,
  .page-nav {
    width: 100%;
    max-width: 100%;
  }

  .model-subnav,
  .intent-strip,
  .page-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .model-subnav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .intent-strip {
    margin-top: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .section-actions,
  .link-row,
  .footer-links,
  .keyword-cloud {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span,
  strong,
  summary {
    overflow-wrap: anywhere;
  }

  .site-header {
    padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 14px;
    gap: 10px;
    color: #fff;
    background: rgba(8, 10, 10, 0.82);
    backdrop-filter: blur(18px);
  }

  .brand-mark {
      width: 38px;
      height: 38px;
    }

  .brand {
    gap: 8px;
    max-width: calc(100% - 92px);
    overflow: hidden;
  }

  .brand span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: calc(128px + env(safe-area-inset-top, 0px)) 18px 28px;
  }

  .inner-hero {
    min-height: 56svh;
    padding: calc(132px + env(safe-area-inset-top, 0px)) 18px 28px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.92;
  }

  .inner-hero h1 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 0.96;
  }

  .hero-copy,
  .hero-subcopy,
  .section-copy p,
  .lead-copy p,
  .feature-card p,
  .assist-card p,
  .step p,
  .contact-card p,
  .meta-card p,
  .page-note p,
  .flow-copy p,
  .video-card figcaption,
  .story-card figcaption,
  .page-media-grid figcaption {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-panel,
  .feature-grid,
  .assist-grid,
  .process,
  .spec-table,
  .color-list,
  .video-grid,
  .safety-media,
  .asset-gallery,
  .exterior-strip,
  .page-grid,
  .page-media-grid {
    grid-template-columns: 1fr;
  }

  .asset-gallery-actions {
    margin-top: 18px;
  }

  .section,
  .gallery-section,
  .lead-section {
    padding: 56px 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .lead-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.02;
  }

  .gallery-main,
  .media-frame,
  .story-card.large img,
  .flow-media {
    min-height: 320px;
  }

  .gallery-main .color-display-image {
    width: 100%;
    max-height: calc(100% - 72px);
    padding: 12px 12px 72px;
  }

  .mobile-nav a {
    padding: 16px 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .model-subnav,
  .page-nav {
    display: none !important;
  }

  .model-subnav a,
  .intent-strip a,
  .page-nav a {
    width: 100%;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }

  .feature-card,
  .assist-card,
  .step,
  .variant-card,
  .contact-card,
  .meta-card,
  .page-note {
    min-height: 0;
    padding: 22px 18px;
  }

  .clean-list li {
    padding: 16px 16px 16px 18px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .lead-form label {
    min-width: 0;
  }

  summary {
    padding: 18px;
    font-size: 18px;
    line-height: 1.3;
  }

  details p {
    padding: 0 18px 18px;
  }

  .feature-card h3,
  .assist-card h3,
  .step h3,
  .variant-card h2 {
    overflow-wrap: anywhere;
  }

  .spec-table {
    background: transparent;
    border: 0;
    gap: 12px;
  }

  .spec-table div,
  .price-row {
    display: grid;
    gap: 6px;
    min-height: 0;
    padding: 16px;
    border: 0;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .compare-table thead {
    display: none;
  }

  .compare-table {
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .compare-table tbody {
    display: block;
  }

  .compare-table tr {
    display: block;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
  }

  .compare-table .group-row {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .compare-table .group-row td {
    display: block;
    margin-top: 8px;
    padding: 14px 16px;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--acid);
    color: #0b0f10;
    font-weight: 900;
    text-transform: uppercase;
  }

  .compare-table .group-row td::before {
    content: none;
  }

  .compare-table td {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .compare-table tr td:first-child {
    border-top: 0;
  }

  .compare-table td::before {
    content: attr(data-label);
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .price-row strong,
  .spec-table strong {
    text-align: left;
  }

  .contacts-grid,
  .meta-grid {
    grid-template-columns: 100%;
  }

  .site-footer {
    margin: 18px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom, 0px));
    gap: 18px;
  }

  .footer-contact-grid {
    gap: 10px;
  }

  .footer-contact-grid article {
    padding-top: 8px;
  }

  .footer-links a,
  .keyword-cloud a,
  .page-section-links a,
  .section-actions .button,
  .link-row .text-link {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 14px 14px;
  }

  .brand {
    gap: 8px;
    max-width: calc(100% - 74px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 18px;
  }

  .brand span:last-child {
    font-size: 16px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .hero,
  .inner-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .model-subnav,
  .intent-strip,
  .page-nav,
  .section-actions,
  .link-row,
  .footer-links,
  .keyword-cloud {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(36px, 13vw, 56px);
  }

  .inner-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-copy,
  .hero-subcopy,
  .section-copy p,
  .lead-copy p,
  .page-note p,
  .feature-card p,
  .assist-card p,
  .step p,
  .variant-card p,
  .contact-card p,
  .meta-card p,
  .clean-list li,
  .compare-table td,
  .spec-table div,
  .price-row {
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-card,
  .assist-card,
  .step,
  .variant-card,
  .contact-card,
  .meta-card,
  .page-note,
  .lead-form {
    padding: 18px 16px;
  }

  .compare-table td,
  .compare-table .group-row td,
  .spec-table div,
  .price-row,
  summary,
  details p {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-footer {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@supports (-webkit-touch-callout: none) {
  .site-header,
  .mobile-nav,
  .site-footer {
    transform: translateZ(0);
  }

  .hero,
  .inner-hero {
    min-height: 100dvh;
  }

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

    .inner-hero {
      min-height: 56dvh;
    }
  }
}

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