:root {
  --color-text: #030000;
  --color-muted: #5f656b;
  --color-dark: #030000;
  --color-dark-2: #07111f;
  --color-bg: #ffffff;
  --color-bg-soft: #E5F2FB;
  --color-accent: #F85421;
  --color-accent-hover: #d94313;
  --color-accent-2: #0A62C0;
  --color-brand-red: #F85421;
  --color-border: rgba(3,0,0,.12);
  --font-main: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-button: "Poppins", "Montserrat", system-ui, sans-serif;
  --radius-card: 16px;
  --radius-button: 50px;
  --shadow: 0 24px 60px rgba(17, 24, 39, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--color-muted); }
h1, h2, h3 { margin: 0; line-height: 1.22; letter-spacing: 0; color: var(--color-dark); font-weight: 600; }
h1 { font-size: clamp(38px, 5vw, 64px); max-width: 900px; }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: 21px; }

.container {
  width: calc(100% - 40px);
  max-width: 1360px;
  margin: 0 auto;
}
.section { padding: 112px 0; }
main > .section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.section-muted {
  background:
    linear-gradient(90deg, rgba(31,41,51,.05) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--color-bg-soft);
}
.section-dark {
  background: var(--color-dark-2);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 420px);
  min-height: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 30px rgba(3,0,0,.08);
}
.section:not(.section-dark) .eyebrow,
.final-offer .eyebrow {
  color: var(--color-accent-2);
  border-color: rgba(10,98,192,.22);
  background: rgba(255,255,255,.2);
}
.lead {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3,0,0,.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-grid {
  min-height: 84px;
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand img { width: 154px; }
.nav { display: flex; justify-content: center; gap: 28px; font-weight: 700; font-size: 14px; }
.nav a { color: rgba(255,255,255,.82); }
.nav a:hover { color: #fff; }
.nav-mobile-actions { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 800; color: #fff; white-space: nowrap; }
.burger { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-button);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-button);
  font-weight: 700;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--color-accent-hover); border-color: var(--color-accent-hover); box-shadow: 0 14px 30px rgba(248,84,33,.24); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-outline {
  background: rgba(255,255,255,.86);
  color: var(--color-dark);
  border-color: var(--color-border);
}
.btn-outline:hover {
  color: #fff;
}

.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 150px 0 90px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,0,0,.86) 0%, rgba(3,0,0,.68) 44%, rgba(10,98,192,.22) 100%);
}
.hero-media picture,
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: end;
}
.hero-copy { display: grid; gap: 26px; }
.hero-copy,
.lead-panel,
.split > *,
.production-grid > *,
.delivery-panel > *,
.final-grid > * { min-width: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 880px; }
.chips span {
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10,98,192,.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 14px;
  white-space: normal;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.lead-panel {
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  color: var(--color-text);
}
.lead-panel h2 { font-size: 28px; margin: 8px 0 12px; color: var(--color-dark); }
.lead-panel p { color: var(--color-muted); }
.mobile-lead-photo { display: none; }
.mobile-lead-photo img { width: 100%; height: 100%; object-fit: cover; }
.panel-kicker { color: var(--color-accent); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.lead-form { display: grid; gap: 14px; margin-top: 22px; }
.lead-form label { display: grid; gap: 7px; font-weight: 800; font-size: 13px; color: var(--color-dark); }
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  padding: 0 15px;
  font: inherit;
  font-size: 17px;
  outline: none;
}
.lead-form input[type="tel"]:focus { border-color: var(--color-accent-2); box-shadow: 0 0 0 4px rgba(10,98,192,.14); }
.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--color-accent); }
.consent a { text-decoration: underline; color: var(--color-dark); }
.consent.is-error {
  padding: 10px;
  border: 1px solid rgba(180,35,24,.42);
  border-radius: 12px;
  background: rgba(180,35,24,.08);
  color: #b42318 !important;
}
.consent.is-error input {
  outline: 2px solid rgba(180,35,24,.65);
  outline-offset: 2px;
}
.consent.is-error a { color: #b42318; }
.form-message { min-height: 20px; font-size: 14px; }
.form-message[data-type="error"] { color: #b42318; }

.section-head {
  display: grid;
  gap: 18px;
  max-width: 850px;
  margin-bottom: 42px;
}
.section-head p { font-size: 18px; }
.section-head.compact { margin-bottom: 0; }
.action-head {
  max-width: none;
  grid-template-columns: minmax(0, 850px) auto;
  align-items: end;
  justify-content: space-between;
  column-gap: 40px;
}
.action-head > div {
  display: grid;
  gap: 18px;
}
.action-head .btn {
  min-width: 220px;
  margin-bottom: 4px;
}
.cards {
  display: grid;
  gap: 18px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(248,84,33,.42); }
.card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--color-accent-2);
  color: #fff;
  font-weight: 900;
}
.object-card span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(10,98,192,.12);
  border: 1px solid rgba(10,98,192,.18);
}
.object-card span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: invert(31%) sepia(98%) saturate(1749%) hue-rotate(193deg) brightness(84%) contrast(99%);
}
.object-card:hover span {
  background: var(--color-accent-2);
  border-color: var(--color-accent-2);
}
.object-card:hover span img {
  filter: brightness(0) invert(1);
}
.section-cta { margin-top: 30px; }

.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 54px;
  align-items: stretch;
}
.split > div { display: grid; gap: 24px; }
.spec-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
}
.spec-table div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}
.spec-table div:last-child { border-bottom: 0; }
.spec-table strong { color: var(--color-dark); }
.spec-table span { color: var(--color-muted); }
.note { font-size: 14px; }
.image-frame {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}
.image-frame picture,
.image-frame img { width: 100%; height: 640px; object-fit: cover; }
.spec-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 100%;
}
.spec-visual .image-frame {
  height: 100%;
}
.spec-visual .image-frame img {
  height: 100%;
  min-height: 0;
}
.spec-visual .btn {
  width: 100%;
}

.production-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-list article {
  padding: 24px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-soft);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.feature-list h3 { margin-bottom: 10px; }
.wide-photo {
  grid-column: 1 / -1;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 420px;
}
.wide-photo picture,
.wide-photo img { width: 100%; height: 100%; object-fit: cover; }

.delivery .section-head { max-width: 960px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}
.timeline article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.06);
}
.timeline span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.timeline p { color: rgba(255,255,255,.72); margin-top: 10px; font-size: 15px; }
.delivery-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.08);
}
.delivery-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}
.delivery-panel picture { width: 100%; }
.delivery-panel picture img { width: 100%; }
.delivery-panel div { display: grid; gap: 18px; padding-right: 18px; }
.delivery-note {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(10,98,192,.28);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88) !important;
}

.final-offer {
  background:
    linear-gradient(90deg, rgba(31,41,51,.08) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, #fff, #f8fafc);
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
}
.final-grid > div { display: grid; gap: 22px; }
.offer-box {
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--color-dark);
  color: #fff;
  border-left: 6px solid var(--color-accent);
}
.offer-box p { color: rgba(255,255,255,.76); margin-top: 8px; }
.contacts { display: flex; flex-wrap: wrap; gap: 10px; }
.contacts a {
  padding: 10px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-weight: 800;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contacts a:hover {
  transform: translateY(-2px);
  color: var(--color-accent);
  border-color: rgba(248,84,33,.34);
  box-shadow: 0 12px 28px rgba(3,0,0,.08);
}
.lead-panel.light { background: #fff; }

.footer {
  padding: 54px 0 28px;
  background: #030000;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) .7fr .8fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-brand img { width: 150px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,.66); max-width: 420px; }
.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}
.footer-menu,
.footer-contacts {
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.74);
  font-weight: 700;
}
.footer a {
  transition: color .2s ease, transform .2s ease;
}
.footer a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.privacy-page {
  background:
    linear-gradient(90deg, rgba(10,98,192,.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fff, var(--color-bg-soft));
}
.privacy-content {
  max-width: 980px;
  display: grid;
  gap: 22px;
}
.privacy-content h1 {
  font-size: clamp(34px, 5vw, 58px);
}
.privacy-content h2 {
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 34px);
}
.privacy-content h3 {
  margin-top: 6px;
  font-size: 20px;
}
.privacy-content a {
  color: var(--color-accent-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(3,0,0,.06);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal-delay-1 { transition-delay: .08s; }
.js .reveal-delay-2 { transition-delay: .16s; }
.js .reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.max-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #030000, var(--color-accent-2));
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.max-fab:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
  box-shadow: 0 26px 70px rgba(10,98,192,.28);
}
.max-fab img { grid-row: 1 / 3; width: 42px; height: 42px; }
.max-fab span { font-weight: 900; line-height: 1.1; }
.max-fab small { color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.2; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.72);
  backdrop-filter: blur(8px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 500px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}
.modal__dialog h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 38px);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal__close:hover {
  border-color: var(--color-brand-red);
  color: var(--color-brand-red);
}
body.modal-open { overflow: hidden; }

@media (max-width: 1120px) {
  .header-grid { grid-template-columns: 150px 1fr auto; }
  .header-actions .phone-link { display: none; }
  .hero-grid, .final-grid { grid-template-columns: 1fr; }
  .lead-panel { max-width: 540px; }
  .cards.four, .timeline { grid-template-columns: repeat(2, 1fr); }
  .split, .production-grid, .delivery-panel { grid-template-columns: 1fr; }
  .spec-visual .image-frame picture,
  .spec-visual .image-frame img,
  .image-frame picture,
  .image-frame img { height: 460px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 44px); }
  .section { padding: 72px 0; }
  .header-grid { min-height: 68px; grid-template-columns: 130px 1fr 42px; }
  .brand img { width: 126px; }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 68px 0 0;
    z-index: 19;
    background: rgba(3,0,0,.28);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    backdrop-filter: blur(12px) saturate(130%);
  }
  .nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    isolation: isolate;
    overflow: hidden;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    background: rgba(10,98,192,.8);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(3,0,0,.34);
    -webkit-backdrop-filter: blur(34px) saturate(150%);
    backdrop-filter: blur(34px) saturate(150%);
  }
  .menu-open .site-header { background: rgba(3,0,0,.72); }
  .nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.06)),
      rgba(10,98,192,.8);
    -webkit-backdrop-filter: blur(38px) saturate(160%);
    backdrop-filter: blur(38px) saturate(160%);
  }
  .nav::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 21px;
    background: rgba(3,0,0,.16);
    pointer-events: none;
  }
  .menu-open .nav { display: flex; }
  .nav a {
    padding: 13px 14px;
    color: #fff;
    border-radius: 16px;
    background: rgba(3,0,0,.18);
    border: 1px solid rgba(255,255,255,.18);
  }
  .nav a:hover { background: rgba(255,255,255,.18); color: #fff; }
  .nav-mobile-actions {
    display: grid;
    gap: 10px;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .nav .nav-phone,
  .nav .nav-max {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    font-weight: 900;
  }
  .nav .nav-phone {
    background: rgba(255,255,255,.92);
    border-color: rgba(255,255,255,.28);
    color: var(--color-accent-2);
  }
  .nav .nav-max {
    background: rgba(3,0,0,.82);
    color: #fff;
    border-color: rgba(255,255,255,.16);
  }
  .nav .btn {
    width: 100%;
    min-height: 48px;
    color: #fff;
  }
  .header-actions { justify-self: end; }
  .header-actions .btn { display: none; }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
  }
  .burger span { width: 18px; height: 2px; background: var(--color-dark); }
  .burger span { transition: transform .2s ease, opacity .2s ease; }
  .menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .burger span:nth-child(2) { opacity: 0; }
  .menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 78px 0 44px; align-items: start; }
  .hero-media::after { background: linear-gradient(180deg, rgba(3,0,0,.86), rgba(3,0,0,.7)); }
  .hero-grid { gap: 32px; }
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 56px);
    overflow: hidden;
  }
  .hero-copy .lead,
  .hero-copy h1,
  .chips { max-width: 100%; }
  .hero-copy h1,
  .hero-copy p,
  .lead-panel h2,
  .lead-panel p,
  .chips span {
    overflow-wrap: anywhere;
  }
  .hero-actions,
  .lead-panel {
    width: 100%;
    max-width: calc(100vw - 44px);
  }
  .chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }
  .chips span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 8px 10px;
    text-align: center;
  }
  .hero-actions, .btn { width: 100%; }
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  .eyebrow {
    align-items: flex-start;
    white-space: normal;
    word-break: break-word;
  }
  .lead { font-size: 17px; }
  .lead-panel {
    padding: 22px;
    max-width: calc(100vw - 44px);
  }
  .mobile-lead-photo {
    display: block;
    width: 100%;
    height: 190px;
    margin: 18px 0 2px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(3,0,0,.16);
  }
  .action-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .action-head .btn {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
  .cards.four, .feature-list, .timeline { grid-template-columns: 1fr; }
  .object-cards.cards.four {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(272px, 82%);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 22px 18px 0;
    margin-right: -22px;
    scrollbar-width: none;
  }
  .object-cards.cards.four::-webkit-scrollbar { display: none; }
  .object-card {
    scroll-snap-align: start;
    min-height: 310px;
  }
  .card { min-height: 0; }
  .spec-table div { grid-template-columns: 1fr; gap: 4px; }
  .image-frame picture,
  .image-frame img,
  .wide-photo,
  .delivery-panel img,
  .spec-visual .image-frame picture,
  .spec-visual .image-frame img { height: 320px; }
  .delivery-panel { padding: 12px; }
  .delivery-panel div { padding: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    display: grid;
    justify-content: start;
  }
  .max-fab {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    max-width: 62px;
    padding: 10px;
    grid-template-columns: 1fr;
    place-items: center;
    border-radius: 50%;
  }
  .max-fab img { grid-row: auto; width: 42px; height: 42px; }
  .max-fab span,
  .max-fab small { display: none; }
  body { padding-bottom: 24px; }
  .modal {
    padding: 82px 14px 14px;
    align-items: flex-start;
  }
  .modal__dialog {
    width: 100%;
    max-height: calc(100vh - 96px);
    padding: 28px 22px 22px;
    border-radius: 18px;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-copy,
  .hero-actions,
  .lead-panel {
    max-width: 346px;
  }
}
