@font-face {
  font-family: "NOVAVTO Sans";
  src: url("assets/fonts/onest-cyrillic-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "NOVAVTO Sans";
  src: url("assets/fonts/onest-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --ink: #151816;
  --ink-soft: #242824;
  --muted: #6b726d;
  --paper: #ffffff;
  --warm: #f2f1ec;
  --warm-2: #e8e7df;
  --line: #dcded8;
  --teal: #0e685d;
  --teal-dark: #09534b;
  --mint: #b9f6d2;
  --lime: #d5f55f;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --shadow: 0 22px 60px rgba(24, 31, 27, 0.1);
  --shell: 1480px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--warm);
  font-family: "NOVAVTO Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(14, 104, 93, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.top-note {
  position: relative;
  z-index: 41;
  color: #e9ece8;
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-note__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.top-note a {
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(242, 241, 236, 0.94);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(21, 24, 22, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand span {
  margin-inline: 2px;
  color: var(--teal);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.site-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.location svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

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

.button--dark:hover {
  background: var(--teal-dark);
}

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

.button--light:hover {
  background: var(--lime);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: none;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(14, 104, 93, 0.1);
}

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

.eyebrow--light span {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(185, 246, 210, 0.12);
}

.hero {
  padding: 38px 0 64px;
  background: var(--warm);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(0, 1.08fr);
  min-height: clamp(620px, 72vh, 780px);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 22, 0.09);
  border-radius: 28px;
  background: #f8f8f4;
  box-shadow: 0 24px 70px rgba(22, 29, 25, 0.07);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px clamp(38px, 4vw, 74px) 38px;
}

.hero h1 {
  max-width: 12.5ch;
  margin-bottom: 30px;
  font-size: clamp(3.25rem, 4.1vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.025;
}

.hero-subline {
  display: block;
  max-width: 20ch;
  margin-top: 0.2em;
  font-size: 0.58em;
  letter-spacing: -0.012em;
  line-height: 1.14;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.text-link span {
  color: var(--teal);
  font-size: 1rem;
}

.hero__proof {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 56px 0 0;
  list-style: none;
  color: #424944;
  font-size: 0.81rem;
  font-weight: 600;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__proof svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  background: rgba(14, 104, 93, 0.09);
}

.hero__visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #232a2b;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 12, 0.04) 50%, rgba(10, 12, 12, 0.5) 100%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero__visual:hover img {
  transform: scale(1.018);
}

.hero__caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 600;
}

.availability {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 14, 13, 0.48);
  backdrop-filter: blur(10px);
}

.availability i,
.model-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(213, 245, 95, 0.15);
}

.hero__index {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.trust-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ebeae4;
}

.trust-line__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-line p {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: #444a46;
  font-size: 0.79rem;
  font-weight: 600;
}

.trust-line p:first-child {
  padding-left: 0;
}

.trust-line p:last-child {
  border-right: 0;
}

.trust-line p span {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
}

.difference {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 10%, rgba(185, 246, 210, 0.28), transparent 28%),
    #f7f7f3;
}

.difference__header {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.64fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 48px;
}

.difference__header h2 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.difference__header > p,
.difference__header > div > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(26, 34, 29, 0.07);
}

.difference-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: clamp(26px, 2.8vw, 42px);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  transition: color 220ms ease, background 220ms ease;
}

.difference-card:last-child {
  border-right: 0;
}

.difference-card:hover {
  color: #fff;
  background: var(--ink);
}

.difference-card__number {
  margin-bottom: auto;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.difference-card:hover .difference-card__number {
  color: var(--mint);
}

.difference-card h3 {
  max-width: 260px;
  margin: 72px 0 12px;
  font-size: clamp(1.16rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.difference-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
  transition: color 220ms ease;
}

.difference-card:hover p {
  color: #aeb6b0;
}

.difference-card__meta {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 0 11px;
  border: 1px solid rgba(14, 104, 93, 0.22);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(14, 104, 93, 0.06);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.difference-card:hover .difference-card__meta {
  border-color: rgba(185, 246, 210, 0.24);
  color: var(--mint);
  background: rgba(185, 246, 210, 0.08);
}

.section {
  padding-block: clamp(96px, 10vw, 150px);
}

.catalog,
.about,
.process {
  background: #fff;
}

.catalog {
  padding-bottom: clamp(78px, 7vw, 110px);
}

.advantages {
  padding-block: 0;
}

.process {
  padding-top: clamp(96px, 9vw, 132px);
  padding-bottom: 0;
}

.contact {
  padding-block: clamp(96px, 9vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.advantages h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f5651;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.chip:hover,
.chip.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.catalog-count {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

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

.model-grid.is-single {
  grid-template-columns: minmax(0, min(720px, 100%));
  justify-content: center;
}

.model-grid.is-odd .model-card.is-filter-tail {
  grid-column: 1 / -1;
  width: calc(50% - 13px);
  justify-self: center;
}

.model-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e3e5e0;
  border-radius: var(--radius-m);
  background: #fff;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.model-card__hitarea {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.model-card__hitarea:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px rgba(14, 104, 93, 0.42);
}

.model-card:hover {
  border-color: #cbd0ca;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.model-card[hidden] {
  display: none;
}

.model-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3f0;
}

.model-card__media--dark {
  background: #293033;
}

.model-card__media--sage {
  background: #dde6df;
}

.model-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.model-card:hover .model-card__media img {
  transform: scale(1.035);
}

.model-status {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: none;
  backdrop-filter: blur(8px);
}

.model-status i {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 104, 93, 0.12);
}

.model-status--dark {
  color: #fff;
  background: rgba(21, 24, 22, 0.65);
}

.model-status--dark i {
  background: var(--lime);
}

.favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.favorite svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.favorite.is-active svg {
  fill: var(--teal);
  stroke: var(--teal);
}

.favorite--light {
  color: #fff;
  background: rgba(21, 24, 22, 0.52);
}

.model-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.model-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 600;
}

.model-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.18;
}

.model-card__benefit {
  min-height: 3.2em;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.model-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid #e7e9e5;
  border-bottom: 1px solid #e7e9e5;
}

.model-specs div + div {
  padding-left: 12px;
  border-left: 1px solid #e7e9e5;
}

.model-specs dt {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.model-specs dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.model-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}

.model-card__footer p,
.model-card__footer small,
.model-card__footer strong {
  display: block;
  margin: 0;
}

.model-card__footer small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.62rem;
}

.model-card__footer strong {
  font-size: 0.92rem;
}

.model-card__footer > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.card-link,
.card-buy {
  position: relative;
  z-index: 3;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.card-link {
  border: 1px solid var(--line);
  background: #fff;
}

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

.catalog-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 38px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  border-radius: var(--radius-l);
  color: #fff;
  background:
    linear-gradient(112deg, rgba(14, 104, 93, 0.86), rgba(9, 83, 75, 0.28) 54%, transparent 76%),
    var(--ink);
  box-shadow: 0 26px 70px rgba(11, 30, 25, 0.15);
}

.catalog-cta::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -40px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(185, 246, 210, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(185, 246, 210, 0.035), 0 0 0 100px rgba(185, 246, 210, 0.025);
  pointer-events: none;
}

.catalog-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.catalog-cta__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.catalog-cta__copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(235, 242, 237, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

.catalog-cta > .button,
.catalog-cta > a,
.catalog-cta > button {
  position: relative;
  z-index: 1;
  justify-self: end;
}

.advantages {
  background: var(--warm);
}

.advantages__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(60px, 8vw, 132px);
  padding: clamp(46px, 6vw, 92px);
  border-radius: var(--radius-l);
  color: #fff;
  background: var(--ink);
}

.advantages__intro {
  align-self: center;
}

.advantages h2 {
  max-width: 720px;
}

.advantages__intro > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 38px;
  color: #afb6b1;
  font-size: 0.94rem;
  line-height: 1.75;
}

.advantage-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.advantage-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.advantage-list article > span {
  padding-top: 4px;
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 800;
}

.advantage-list h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 600;
}

.advantage-list p {
  max-width: 490px;
  margin: 0;
  color: #9da59f;
  font-size: 0.83rem;
}

.about {
  padding-block: clamp(96px, 9vw, 132px);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: stretch;
}

.about__copy {
  align-self: center;
  padding-block: 18px;
}

.about__copy h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.about__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.about__principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-reset: principle;
}

.about__principles span {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: flex-end;
  padding: 38px 16px 15px;
  color: #343b36;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  counter-increment: principle;
}

.about__principles span + span {
  border-left: 1px solid var(--line);
}

.about__principles span::before {
  content: "0" counter(principle);
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about__manifesto {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(185, 246, 210, 0.12);
  border-radius: var(--radius-l);
  color: #f4f7f4;
  background:
    radial-gradient(circle at 100% 0, rgba(185, 246, 210, 0.1), transparent 35%),
    #12342f;
  box-shadow: 0 26px 70px rgba(15, 42, 36, 0.14);
}

.about__manifesto-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__manifesto-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.about__manifesto blockquote {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: auto 0;
  padding: 54px 0;
  font-size: clamp(1.65rem, 2.55vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.22;
}

.about__manifesto-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.about__manifesto-points > * {
  position: relative;
  min-width: 0;
  padding: 18px 18px 0 14px;
  color: rgba(239, 246, 241, 0.7);
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.5;
}

.about__manifesto-points > *::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.purchase {
  padding-top: 0;
}

.purchase__panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 110px);
  padding: clamp(44px, 6vw, 82px);
  border-radius: var(--radius-l);
  color: #f5f8f5;
  background:
    radial-gradient(circle at 6% 4%, rgba(185, 246, 210, 0.16), transparent 34%),
    #101512;
  box-shadow: 0 28px 80px rgba(20, 31, 26, 0.16);
}

.purchase__intro {
  align-self: center;
}

.purchase__intro h2 {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 4.7vw, 5.15rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.purchase__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(245, 248, 245, 0.66);
  font-size: 0.9rem;
  line-height: 1.75;
}

.purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.text-link--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.purchase__options {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.purchase__options article {
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(170px, 0.66fr);
  grid-template-areas:
    "value title"
    "value copy";
  gap: 8px 28px;
  min-height: 164px;
  align-content: center;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.purchase__options article:last-child {
  border-bottom: 0;
}

.purchase__value {
  grid-area: value;
  align-self: center;
  color: var(--mint);
  font-size: clamp(1.8rem, 3.3vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.purchase__options h3 {
  grid-area: title;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.purchase__options p {
  grid-area: copy;
  margin: 0;
  color: rgba(245, 248, 245, 0.62);
  font-size: 0.73rem;
  line-height: 1.6;
}

.purchase__option--accent {
  background: rgba(213, 245, 95, 0.08);
}

.purchase__option--accent .purchase__value {
  color: var(--lime);
}

.section-heading--compact {
  margin-bottom: 46px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 340px;
  padding: 34px clamp(28px, 3vw, 48px) 38px;
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  position: absolute;
  top: 34px;
  right: 36px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
}

.process-grid svg {
  width: 42px;
  height: 42px;
  margin: 22px 0 78px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.process-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.faq {
  border-top: 1px solid var(--line);
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.faq__grid h2 {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.faq__grid > div:first-child > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq__grid > div:first-child > .button {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 22px 64px 22px 0;
  cursor: pointer;
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 17px;
  height: 1.5px;
  background: var(--teal);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(14, 104, 93, 0.22);
  outline-offset: 4px;
}

.faq-item > div,
.faq-item > p {
  max-width: 760px;
  margin: -3px 0 0;
  padding: 0 70px 27px 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.75;
}

.faq-item > div p {
  margin: 0 0 12px;
}

.faq-item > div p:last-child {
  margin-bottom: 0;
}

.faq-item a,
.faq-item button {
  padding: 0;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  background: transparent;
  font-size: inherit;
  font-weight: 750;
  cursor: pointer;
}

.documents {
  padding-block: clamp(64px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: #f5f5f1;
}

.documents .section-heading {
  display: block;
  max-width: 720px;
  margin-bottom: 28px;
}

.documents .section-heading h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  line-height: 1.13;
}

.documents .eyebrow {
  margin-bottom: 13px;
}

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

.document-card {
  position: relative;
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 14px;
  border: 1px solid #dfe2dc;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(24, 32, 27, 0.045);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.document-card:hover {
  border-color: #c8cec8;
  box-shadow: 0 16px 42px rgba(20, 33, 27, 0.065);
  transform: translateY(-1px);
}

.document-card__visual {
  aspect-ratio: 2250 / 3180;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(21, 24, 22, 0.09);
  border-radius: calc(var(--radius-m) - 7px);
  background: #3ca8bb;
}

.document-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-card__body {
  padding: 22px 11px 20px;
}

.document-card__type {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.document-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 54px;
}

.document-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(14, 104, 93, 0.18);
  border-radius: 14px;
  color: var(--teal);
  background: rgba(14, 104, 93, 0.055);
}

.document-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.document-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0;
  text-transform: none;
}

.document-card__meta div {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.document-card__meta dt {
  color: #7b827d;
  font-size: 0.58rem;
}

.document-card__meta dd {
  overflow-wrap: anywhere;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
}

.document-card h3 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.22;
}

.document-card__body > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}

.document-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(21, 24, 22, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.document-card__link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.document-card__link span {
  color: var(--teal);
}

.contact {
  background: var(--warm);
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.contact__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 40px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.contact__direct a {
  font-size: 0.93rem;
  font-weight: 700;
}

.contact__direct small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
}

.lead-form {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid #e1e3de;
  border-radius: var(--radius-l);
  background: #fff;
}

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

.lead-form label {
  display: grid;
  gap: 9px;
}

.lead-form label > span {
  font-size: 0.69rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  outline: none;
  color: var(--ink);
  background: #fafaf7;
  font-size: 0.85rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form input {
  min-height: 52px;
  padding: 0 15px;
}

.lead-form textarea {
  min-height: 100px;
  padding: 14px 15px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  background: #fff;
}

.lead-form input:focus-visible,
.lead-form textarea:focus-visible {
  outline: 3px solid rgba(14, 104, 93, 0.22);
  outline-offset: 2px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9ca29d;
}

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

.field-help {
  margin-top: -4px;
  color: #8b918c;
  font-size: 0.58rem;
  font-weight: 500;
}

.lead-form__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lead-form__bottom p {
  max-width: 270px;
  margin: 0;
  color: #8b918c;
  font-size: 0.65rem;
}

.lead-form .consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  cursor: pointer;
}

.lead-form .consent-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.lead-form .consent-check > span {
  color: #777f79;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

.consent-check a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-note {
  margin: -8px 0 0 29px;
  color: #858c87;
  font-size: 0.64rem;
  line-height: 1.55;
}

.policy-note a {
  color: var(--teal);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 0;
  margin: -4px 0 0;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status--pending {
  color: var(--muted);
}

.form-status--success {
  padding: 14px 16px;
  border: 1px solid rgba(14, 104, 93, 0.22);
  border-radius: 13px;
  background: rgba(14, 104, 93, 0.06);
}

.form-status--fallback {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #dde0da;
  border-radius: 13px;
  color: var(--ink);
  background: #fafaf7;
}

.form-status--fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.55;
}

.form-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-status__actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 0.63rem;
  font-weight: 750;
  text-decoration: none;
}

.form-status__actions a:first-child {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

[data-submit-button]:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  color: #e4e8e4;
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
  padding-block: 72px;
}

.footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
}

.brand--footer {
  color: #fff;
  font-size: 1.45rem;
}

.brand--footer span {
  color: var(--lime);
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: #949c96;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer nav button {
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}

.site-footer nav a,
.site-footer nav button {
  transition: color 160ms ease;
}

.site-footer nav a:hover,
.site-footer nav button:hover {
  color: var(--mint);
}

.site-footer__links {
  display: grid;
  gap: 28px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #eef3ef;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.7rem;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-socials a:hover {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.footer-socials a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer__bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #737b75;
  font-size: 0.66rem;
}

.mobile-cta {
  display: none;
}

.dialog {
  width: min(590px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 42px;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-l);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 32px 90px rgba(7, 12, 10, 0.28);
}

.dialog::backdrop {
  background: rgba(12, 15, 13, 0.68);
  backdrop-filter: blur(8px);
}

.dialog__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: var(--warm);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.dialog h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.08;
}

.dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.dialog > ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding-left: 20px;
  color: #4f5651;
  font-size: 0.84rem;
}

.dialog--lead {
  width: min(650px, calc(100% - 32px));
}

.dialog--about {
  width: min(1020px, calc(100% - 32px));
  padding: 0;
  overflow: hidden auto;
}

.about-dialog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.about-dialog__copy {
  padding: clamp(46px, 7vw, 76px) clamp(34px, 7vw, 82px) clamp(40px, 6vw, 62px);
}

.about-dialog__copy h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.about-dialog__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.about-dialog__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-dialog__features span {
  position: relative;
  min-height: 82px;
  padding: 24px 24px 22px 18px;
  border-right: 1px solid var(--line);
  color: #4f5751;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-dialog__features span:first-child {
  padding-left: 0;
}

.about-dialog__features span:last-child {
  border-right: 0;
}

.about-dialog__seller {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  align-items: baseline;
  padding: 22px clamp(34px, 7vw, 82px);
  border-top: 1px solid var(--line);
  color: #555d57;
  background: #f6f6f2;
}

.about-dialog__seller::before {
  content: none;
}

.about-dialog__seller-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: none;
}

.about-dialog__seller strong {
  max-width: none;
  margin: 0;
  color: #3f4741;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.about-dialog__seller > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 0;
  border: 0;
}

.about-dialog__seller small,
.about-dialog__seller b {
  display: block;
}

.about-dialog__seller small {
  margin: 0;
  color: #8a918c;
  font-size: 0.54rem;
}

.about-dialog__seller b {
  color: #59605b;
  font-size: 0.63rem;
}

.about-dialog__seller > p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0;
  color: #6f7771;
  font-size: 0.64rem;
  line-height: 1.5;
}

.about-dialog__seller > p span {
  color: #858c87;
}

.dialog--road {
  width: min(920px, calc(100% - 32px));
  padding: clamp(30px, 5vw, 62px);
}

.dialog--road h2 {
  max-width: 760px;
  padding-right: 34px;
}

.road-dialog__intro {
  max-width: 760px;
  margin: 0 0 30px;
  color: #3f4842;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.65;
}

.road-dialog__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0 0 30px;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
}

.road-dialog__body p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.road-dialog__body p strong {
  color: var(--ink);
  font-weight: 750;
}

.road-dialog__body a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.road-dialog__notice {
  position: relative;
  margin: 0;
  padding: 22px 24px 22px 52px;
  border-radius: 18px;
  color: #dce4de;
  background: var(--ink);
  font-size: 0.74rem;
  line-height: 1.7;
}

.road-dialog__notice::before {
  content: "i";
  position: absolute;
  top: 23px;
  left: 22px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(185, 246, 210, 0.45);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 800;
  font-style: normal;
}

.product-dialog {
  width: min(1160px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 14px;
  overflow: auto;
}

.product-dialog__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 650px;
  gap: 0;
}

.product-dialog__media-column {
  position: sticky;
  top: 0;
  display: grid;
  min-width: 0;
  grid-template-rows: 568px auto;
  align-content: start;
  align-self: start;
  gap: 12px;
}

.product-dialog__visual {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #efefeb;
}

.product-dialog__thumbs {
  display: flex;
  min-width: 0;
  gap: 8px;
  padding: 0 2px 2px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #b5bbb5 transparent;
}

.product-thumb {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.product-thumb:focus-visible {
  outline: 3px solid rgba(14, 104, 93, 0.24);
  outline-offset: 2px;
}

.product-dialog__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--dialog-image-position, center 55%);
}

.product-dialog__panorama {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #141816 center / cover no-repeat;
}

.product-dialog__visual > .model-status {
  z-index: 3;
  transition: opacity 160ms ease;
}

.product-dialog__visual.is-panorama > .model-status {
  visibility: hidden;
  opacity: 0;
}

.product-dialog__view-toggle {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 21, 19, 0.7);
  box-shadow: 0 10px 30px rgba(6, 10, 8, 0.18);
  backdrop-filter: blur(12px);
}

.product-dialog__view-toggle button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.product-dialog__view-toggle button.is-active {
  color: var(--ink);
  background: #fff;
}

.product-dialog__panorama .pnlm-load-box {
  color: #fff;
  background: rgba(21, 24, 22, 0.72);
}

.product-dialog__panorama .pnlm-about-msg {
  display: none !important;
}

.panorama-fallback {
  position: absolute;
  right: 20px;
  bottom: 76px;
  left: 20px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(21, 24, 22, 0.78);
  font-size: 0.72rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.product-dialog__content {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 56px);
}

.product-dialog__content .eyebrow {
  padding-right: 48px;
}

.product-dialog__lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-color {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.product-color legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.69rem;
  font-weight: 700;
}

.product-color legend strong {
  font-weight: 800;
}

.product-color__options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.color-option {
  position: relative;
  cursor: pointer;
}

.color-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.color-option > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 13px 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #555d57;
  background: #fafaf7;
  font-size: 0.68rem;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.color-option__swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(21, 24, 22, 0.16);
  border-radius: 50%;
  background: var(--swatch, #fff);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.color-option input:checked + span {
  border-color: var(--teal);
  color: var(--ink);
  background: rgba(14, 104, 93, 0.06);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.color-option input:focus-visible + span {
  outline: 3px solid rgba(14, 104, 93, 0.24);
  outline-offset: 2px;
}

.product-config {
  min-width: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.product-config legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.69rem;
  font-weight: 800;
}

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

.config-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.config-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.config-option > span {
  display: flex;
  min-height: 86px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf7;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.config-option input:checked + span {
  border-color: var(--teal);
  background: rgba(14, 104, 93, 0.06);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.config-option input:focus-visible + span {
  outline: 3px solid rgba(14, 104, 93, 0.24);
  outline-offset: 2px;
}

.config-option i,
.config-option strong,
.config-option small,
.config-option b {
  display: block;
  font-style: normal;
}

.config-option strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.config-option small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.config-option b {
  flex: 0 0 auto;
  padding-top: 2px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.product-payment {
  min-width: 0;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.product-payment legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.69rem;
  font-weight: 800;
}

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

.payment-option {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.payment-option > span {
  display: grid;
  min-height: 112px;
  grid-template-rows: 1fr auto;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf7;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.payment-option input:checked + span {
  border-color: var(--teal);
  background: rgba(14, 104, 93, 0.06);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.payment-option input:focus-visible + span {
  outline: 3px solid rgba(14, 104, 93, 0.24);
  outline-offset: 2px;
}

.payment-option i,
.payment-option strong,
.payment-option small,
.payment-option b {
  display: block;
  font-style: normal;
}

.payment-option strong {
  margin-bottom: 5px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.payment-option small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.payment-option b {
  color: var(--teal-dark);
  font-size: 0.72rem;
}

.payment-option--accent > span {
  background: linear-gradient(140deg, rgba(213, 245, 95, 0.12), #fafaf7 65%);
}

.product-addon {
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid #dfe3dd;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(185, 246, 210, 0.12), transparent 58%),
    #fafbf8;
}

.product-addon:has(input:checked) {
  border-color: rgba(14, 104, 93, 0.58);
  background:
    linear-gradient(135deg, rgba(185, 246, 210, 0.22), transparent 62%),
    #f8fbf7;
  box-shadow: inset 0 0 0 1px rgba(14, 104, 93, 0.12);
}

.product-addon__option {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: start;
  cursor: pointer;
}

.product-addon__option > input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.product-addon__check {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  border: 1px solid #b8bfb9;
  border-radius: 7px;
  appearance: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.product-addon__check:checked,
.product-addon__option input:checked + .product-addon__check,
.product-addon__option input:checked ~ .product-addon__check {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 5px #fff;
}

.product-addon__check:focus-visible,
.product-addon__option input:focus-visible + .product-addon__check,
.product-addon__option input:focus-visible ~ .product-addon__check {
  outline: 3px solid rgba(14, 104, 93, 0.22);
  outline-offset: 3px;
}

.product-addon__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.product-addon__copy strong {
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-addon__copy small {
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.55;
}

.product-addon__price {
  padding-top: 2px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-addon__details {
  margin: 14px 0 0 35px;
  padding-top: 12px;
  border-top: 1px solid rgba(21, 24, 22, 0.08);
  color: var(--muted);
  font-size: 0.62rem;
}

.product-addon__details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 750;
}

.product-addon__details p {
  max-width: 600px;
  margin: 10px 0 0;
  line-height: 1.55;
}

.product-dialog__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.product-dialog__specs div {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--line);
}

.product-dialog__specs div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.product-dialog__specs dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-dialog__specs dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-dialog__conditions {
  display: grid;
  gap: 9px;
  margin-bottom: 32px;
  color: #4f5651;
  font-size: 0.75rem;
}

.product-dialog__conditions span {
  position: relative;
  padding-left: 18px;
}

.product-dialog__conditions span::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.product-dialog__conditions a {
  color: var(--teal-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.product-dialog__footer p,
.product-dialog__footer small,
.product-dialog__footer strong {
  display: block;
  margin: 0;
}

.product-dialog__footer small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.65rem;
}

.product-dialog__footer strong {
  font-size: 1.1rem;
}

.product-dialog__footer p > span {
  display: block;
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 700;
}

.lead-offer-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(14, 104, 93, 0.18);
  border-radius: 14px;
  background: rgba(14, 104, 93, 0.055);
}

.lead-offer-summary strong,
.lead-offer-summary span,
.lead-offer-summary small {
  display: block;
}

.lead-offer-summary strong {
  font-size: 0.82rem;
}

.lead-offer-summary span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.lead-offer-summary small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.63rem;
}

.lead-form--dialog {
  margin-top: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

@media (max-width: 1280px) {
  .shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .hero__grid {
    grid-template-columns: minmax(480px, 0.92fr) minmax(0, 1.08fr);
    min-height: 610px;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 4.35vw, 4.35rem);
  }

  .hero__visual {
    min-height: 600px;
  }

  .header-actions .location {
    display: none;
  }

  .model-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .model-card__footer > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .card-link,
  .card-buy {
    padding-inline: 10px;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 78px);
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 38px 24px;
    visibility: hidden;
    color: #fff;
    background: var(--ink);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.45rem;
    font-weight: 500;
  }

  .nav-toggle {
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    padding: 54px clamp(36px, 7vw, 68px) 38px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(3.7rem, 7.5vw, 5.5rem);
  }

  .hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 42px;
    padding-top: 0;
  }

  .hero__visual {
    min-height: 580px;
  }

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

  .trust-line p:nth-child(2) {
    border-right: 0;
  }

  .trust-line p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-line p:first-child,
  .trust-line p:nth-child(3) {
    padding-left: 0;
  }

  .difference__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .difference-card {
    border-bottom: 1px solid var(--line);
  }

  .difference-card:nth-child(even) {
    border-right: 0;
  }

  .difference-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .advantages__panel,
  .about__grid,
  .purchase__panel,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .purchase__panel {
    gap: 48px;
  }

  .about__grid {
    gap: 50px;
  }

  .about__manifesto {
    min-height: 420px;
  }

  .advantages__panel {
    gap: 54px;
  }

  .advantage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-list article:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .advantage-list article:nth-child(even) {
    padding-left: 24px;
  }

  .process-grid article {
    padding-inline: 28px;
  }

  .process-grid article:first-child {
    padding-left: 0;
  }

  .contact__panel {
    gap: 50px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq__grid > div:first-child {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 74px;
  }

  .shell {
    width: min(var(--shell), calc(100% - 36px));
  }

  .top-note {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .hero {
    padding: 24px 0 40px;
  }

  .hero__grid {
    position: relative;
    display: block;
    min-height: clamp(630px, 165vw, 720px);
    gap: 0;
    border-radius: 20px;
    color: #fff;
    background: #151b1a;
    isolation: isolate;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: clamp(630px, 165vw, 720px);
    min-width: 0;
    justify-content: flex-start;
    padding: 28px 20px 30px;
  }

  .hero .eyebrow {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
  }

  .hero .eyebrow span {
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(185, 246, 210, 0.14);
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 9vw, 2.75rem);
    letter-spacing: -0.026em;
    line-height: 1.04;
    overflow-wrap: break-word;
    text-wrap: pretty;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }

  .hero-subline {
    max-width: 23ch;
    margin-top: 0.28em;
    font-size: 0.6em;
    letter-spacing: -0.01em;
    line-height: 1.18;
  }

  .hero__lead {
    max-width: 34rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero__actions {
    width: 100%;
    min-width: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 52px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
  }

  .text-link {
    justify-content: center;
    border-bottom: 0;
    color: #fff;
  }

  .hero__proof {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.77rem;
  }

  .hero__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    min-height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .hero__visual::after {
    background:
      linear-gradient(180deg, rgba(8, 14, 13, 0.78) 0%, rgba(8, 14, 13, 0.52) 47%, rgba(8, 14, 13, 0.66) 100%),
      linear-gradient(90deg, rgba(8, 14, 13, 0.35), transparent 82%);
  }

  .hero__visual img {
    object-position: 68% center;
  }

  .hero__caption {
    display: none;
  }

  .hero__index {
    display: none;
  }

  .trust-line p {
    min-height: 68px;
    padding-inline: 14px;
    font-size: 0.68rem;
  }

  .section {
    padding-block: 82px;
  }

  .catalog {
    padding-bottom: 64px;
  }

  .purchase {
    padding: 0 0 82px;
  }

  .purchase__panel {
    gap: 36px;
    padding: 42px 22px 24px;
    border-radius: 22px;
  }

  .purchase__intro h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .purchase__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .purchase__actions .button,
  .purchase__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .purchase__options {
    border-radius: 18px;
  }

  .purchase__options article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "value"
      "title"
      "copy";
    gap: 9px;
    min-height: 0;
    padding: 24px 20px;
  }

  .purchase__value {
    margin-bottom: 10px;
    font-size: 2.35rem;
  }

  .advantages {
    padding-block: 0;
  }

  .process {
    padding: 82px 0 0;
  }

  .contact {
    padding-block: 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .advantages h2,
  .about__copy h2,
  .contact h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.2vw, 2.75rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .section-heading > p {
    font-size: 0.88rem;
  }

  .difference__header {
    margin-bottom: 34px;
  }

  .difference__header h2,
  .faq__grid h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.2vw, 2.75rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .difference__header > p,
  .difference__header > div > p:not(.eyebrow) {
    font-size: 0.86rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .difference-card,
  .difference-card:nth-child(even),
  .difference-card:nth-last-child(-n + 2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-card:last-child {
    border-bottom: 0;
  }

  .difference-card h3 {
    margin-top: 54px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-chips {
    flex-wrap: nowrap;
    width: 100%;
    padding-right: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
  }

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

  .model-grid.is-single {
    grid-template-columns: 1fr;
  }

  .model-grid.is-odd .model-card.is-filter-tail {
    grid-column: auto;
    width: auto;
  }

  .model-card__body {
    padding: 21px;
  }

  .model-card__footer {
    align-items: flex-end;
    flex-direction: row;
    gap: 10px;
  }

  .model-card__footer > div {
    display: block;
    flex: 0 0 auto;
  }

  .model-card__footer p {
    min-width: 0;
    flex: 1 1 auto;
  }

  .model-card__footer .card-buy {
    min-height: 42px;
    padding-inline: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .catalog-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .catalog-cta > .button,
  .catalog-cta > a,
  .catalog-cta > button {
    width: 100%;
    justify-self: stretch;
  }

  .advantages__panel {
    width: 100%;
    padding: 48px 20px;
    border-radius: 0;
  }

  .about {
    padding-block: 82px;
  }

  .about__grid {
    gap: 34px;
  }

  .about__principles {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(21, 24, 22, 0.1);
    border-radius: 18px;
    background: rgba(250, 250, 247, 0.78);
  }

  .about__principles span {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 62px;
    align-items: center;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid rgba(21, 24, 22, 0.08);
    font-size: 0.74rem;
  }

  .about__principles span + span {
    border-left: 0;
  }

  .about__principles span:last-child {
    border-bottom: 0;
  }

  .about__principles span::before {
    position: static;
    font-size: 0.58rem;
  }

  .about__manifesto {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .about__manifesto blockquote {
    padding: 48px 0;
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    letter-spacing: -0.014em;
    line-height: 1.25;
  }

  .advantages .shell {
    width: 100%;
  }

  .advantages__intro,
  .advantage-list {
    width: calc(100% - 36px);
    margin-inline: auto;
  }

  .advantage-list {
    grid-template-columns: 1fr;
  }

  .advantage-list article:nth-child(odd),
  .advantage-list article:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .process-grid article,
  .process-grid article:first-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid svg {
    margin: 14px 0 44px;
  }

  .faq__grid {
    gap: 34px;
  }

  .faq-item summary {
    min-height: 78px;
    padding: 20px 48px 20px 0;
    font-size: 0.94rem;
  }

  .faq-item > div,
  .faq-item > p {
    padding-right: 34px;
    font-size: 0.78rem;
  }

  .documents-grid {
    display: flex;
    width: auto;
    margin-inline: -18px;
    padding: 3px 18px 12px;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .documents-grid::-webkit-scrollbar {
    display: none;
  }

  .document-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    width: min(86vw, 340px);
    min-height: 0;
    flex: 0 0 min(86vw, 340px);
    align-items: start;
    padding: 8px;
    border-radius: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .document-card__visual {
    width: 104px;
    height: 147px;
    border-radius: 12px;
  }

  .document-card__body {
    min-width: 0;
    padding: 7px 7px 7px 12px;
  }

  .document-card__type {
    margin-bottom: 7px;
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .document-card h3 {
    margin-bottom: 7px;
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .document-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    color: #6b726d;
    font-size: 0.64rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .document-card__meta {
    display: none;
  }

  .document-card__top {
    margin-bottom: 42px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .policy-note {
    margin-left: 29px;
  }

  .lead-form__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-form__bottom .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 48px;
  }

  .footer-brand {
    gap: 8px;
  }

  .footer-brand p {
    max-width: 270px;
    font-size: 0.8rem;
  }

  .site-footer__bottom {
    min-height: 96px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: block;
    min-height: 52px;
    border-radius: 999px;
    color: #fff;
    background: var(--teal-dark);
    box-shadow: 0 16px 40px rgba(8, 26, 22, 0.3);
    font-size: 0.83rem;
    font-weight: 800;
  }

  .dialog {
    padding: 36px 22px 24px;
    border-radius: 24px;
  }

  .dialog--about {
    padding: 0;
  }

  .product-dialog {
    padding: 8px;
  }

  .product-dialog__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-dialog__copy {
    padding: 42px 22px 34px;
  }

  .about-dialog__seller {
    gap: 7px;
    min-height: 0;
    padding: 19px 22px 21px;
  }

  .about-dialog__features {
    grid-template-columns: 1fr;
  }

  .about-dialog__features span,
  .about-dialog__features span:first-child {
    min-height: 0;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-dialog__features span:last-child {
    border-bottom: 0;
  }

  .dialog--road {
    padding: 36px 22px 24px;
  }

  .road-dialog__intro {
    font-size: 0.88rem;
  }

  .road-dialog__body {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .road-dialog__notice {
    padding: 20px 18px 20px 48px;
  }

  .road-dialog__notice::before {
    top: 21px;
    left: 18px;
  }

  .product-dialog__media-column {
    position: static;
    grid-template-rows: auto auto;
    gap: 9px;
  }

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

  .product-dialog__thumbs {
    padding-inline: 4px;
  }

  .product-dialog__view-toggle {
    bottom: 12px;
    left: 12px;
  }

  .product-dialog__content {
    padding: 30px 14px 14px;
  }

  .product-dialog__content .eyebrow {
    padding-right: 0;
  }

  .product-addon {
    padding: 16px;
  }

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

  .product-addon__option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .product-addon__price {
    grid-column: 2;
    padding-top: 3px;
  }

  .product-dialog__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-dialog__footer .button {
    width: 100%;
  }

  .lead-offer-summary {
    grid-template-columns: 1fr;
  }

  .lead-offer-summary span {
    text-align: left;
  }

  .lead-offer-summary small {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .documents-grid {
    margin-inline: -15px;
    padding-inline: 15px;
    scroll-padding-inline: 15px;
  }

  .document-card__meta {
    grid-template-columns: 1fr;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .hero h1 {
    font-size: clamp(1.88rem, 8.7vw, 2.28rem);
  }

  .hero__grid,
  .hero__content {
    min-height: clamp(610px, 178vw, 690px);
  }

  .hero__content {
    padding-inline: 18px;
  }

  .hero__lead {
    font-size: 0.83rem;
  }

  .trust-line p {
    gap: 8px;
    padding-inline: 8px;
    font-size: 0.61rem;
  }

  .about__manifesto-points {
    grid-template-columns: 1fr;
  }

  .about__manifesto-points > * {
    padding-top: 14px;
  }

  .about__manifesto-points > *::before {
    top: 21px;
  }

  .document-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .model-specs dt {
    font-size: 0.59rem;
  }

  .model-card__footer {
    display: grid;
    grid-template-columns: minmax(82px, 0.72fr) minmax(0, 1.28fr);
    align-items: flex-end;
    gap: 8px;
  }

  .model-card__footer > div {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .model-card__footer strong {
    font-size: 0.86rem;
  }

  .model-card__footer .card-buy {
    width: 100%;
    min-height: 44px;
    padding: 8px 11px;
    font-size: 0.61rem;
    line-height: 1.2;
    white-space: normal;
  }

  .model-specs {
    gap: 6px;
  }

  .model-specs div + div {
    padding-left: 7px;
  }

  .model-specs dt,
  .model-specs dd {
    white-space: normal;
  }

  .contact__direct {
    gap: 18px;
    flex-direction: column;
  }

  .form-status__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-status__actions a {
    width: 100%;
  }

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

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

  .product-addon__details {
    margin-left: 0;
  }

  .config-option > span {
    min-height: 74px;
  }

  .product-dialog__specs div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .dialog h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.3rem);
  }
}

.hero h1,
.difference__header h2,
.section-heading h2,
.advantages h2,
.about__copy h2,
.contact h2,
.faq__grid h2,
.dialog h2 {
  font-weight: 500;
}

.model-card h3,
.catalog-cta__copy h3,
.difference-card h3,
.advantage-list h3,
.process-grid h3,
.document-card h3 {
  font-weight: 550;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
