:root {
  --ink: #0a0c0d;
  --graphite: #111517;
  --panel: #181d1f;
  --steel: #a9b0b1;
  --paper: #f1eee8;
  --paper-deep: #e8e2d9;
  --white: #ffffff;
  --amber: #f0a23a;
  --amber-deep: #c96b18;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(10, 12, 13, 0.14);
  --shadow: 0 28px 80px rgba(5, 7, 8, 0.18);
  --display: "Bahnschrift", "DIN Alternate", "Arial Narrow", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

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

button,
input,
select,
textarea {
  border: 0;
}

button,
summary,
select {
  cursor: pointer;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

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

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 128px 0;
  scroll-margin-top: 78px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 3vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(8, 10, 11, 0.84);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.brand-mark i {
  position: absolute;
  top: 8px;
  left: 18px;
  display: block;
  width: 5px;
  height: 26px;
  border-radius: 10px;
  background: var(--amber);
}

.brand-mark i:first-child {
  left: 10px;
  height: 19px;
}

.brand-mark i:last-child {
  left: 26px;
  top: 15px;
  height: 19px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy b {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 2.8vw, 48px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  transition: transform 0.25s ease;
  transform: scaleX(0);
  background: var(--amber);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 14px 21px;
  transition: 0.25s ease;
  color: var(--ink);
  border: 1px solid var(--amber);
  border-radius: 3px;
  background: var(--amber);
  box-shadow: 0 10px 26px rgba(240, 162, 58, 0.18);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta:hover {
  border-color: #ffc168;
  background: #ffc168;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--white);
  background: #080a0b;
}

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

.hero-media {
  background-image: linear-gradient(90deg, rgba(5, 7, 8, 0.99) 0%, rgba(5, 7, 8, 0.82) 35%, rgba(5, 7, 8, 0.18) 70%, rgba(5, 7, 8, 0.35) 100%), linear-gradient(0deg, rgba(5, 7, 8, 0.82) 0%, transparent 42%), url("./assets/hero-niva.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-noise {
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 780px;
  padding-top: 106px;
  padding-bottom: 130px;
}

.hero-copy {
  width: min(760px, 66%);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker span {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--amber);
}

.kicker.dark {
  color: rgba(10, 12, 13, 0.53);
}

.hero h1,
.section-heading h2,
.product-copy h2,
.faq-intro h2,
.order-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(52px, 5.25vw, 82px);
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em,
.product-copy h2 em,
.faq-intro h2 em,
.order-copy h2 em {
  color: var(--amber);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 25px;
  transition: 0.25s ease;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.button span {
  font-size: 22px;
  line-height: 1;
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 18px 50px rgba(210, 116, 21, 0.23);
}

.button-primary:hover {
  background: #ffc168;
  box-shadow: 0 22px 60px rgba(210, 116, 21, 0.32);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.microproof span,
.order-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.microproof svg,
.order-points svg,
.package-copy li svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 6, 7, 0.74);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--dark-line);
  background: #ded9d0;
}

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

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 116px;
  padding: 22px 34px;
  border-right: 1px solid var(--dark-line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--dark-line);
}

.trust-grid > div > span {
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.trust-grid p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.trust-grid b {
  font-family: var(--display);
  font-size: 18px;
}

.trust-grid small {
  color: rgba(10, 12, 13, 0.66);
  font-size: 15px;
}

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

.section-heading h2,
.product-copy h2,
.faq-intro h2,
.order-copy h2 {
  font-size: clamp(42px, 4.1vw, 66px);
  line-height: 1.02;
}

.section-heading > p,
.section-lead,
.faq-intro > p,
.order-copy > p {
  margin: 0;
  color: rgba(10, 12, 13, 0.61);
  font-size: 18px;
  line-height: 1.7;
}

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

.story-list,
.story-scene {
  display: grid;
  gap: 30px;
}

.story-scene {
  scroll-margin-top: 96px;
}

.story-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 104px;
  padding: 22px 28px;
  border: 1px solid var(--dark-line);
  border-radius: 5px;
  background: #e7e1d7;
  box-shadow: 0 12px 35px rgba(19, 16, 12, 0.08);
}

.story-transition > span {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--amber);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  place-items: center;
}

.story-transition p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.story-transition b {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}

.story-transition small {
  color: rgba(10, 12, 13, 0.66);
  font-size: 16px;
  line-height: 1.45;
}

.story-card {
  position: relative;
  height: min(680px, 63vw);
  min-height: 580px;
  overflow: hidden;
  color: var(--white);
  border-radius: 5px;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.story-1 {
  border: 1px solid rgba(240, 162, 58, 0.42);
}

.story-card > img,
.story-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-card > img {
  object-fit: cover;
  animation: storyReveal 0.6s ease both;
}

.story-shade {
  background: linear-gradient(90deg, rgba(6, 8, 9, 0.9) 0%, rgba(6, 8, 9, 0.56) 42%, rgba(6, 8, 9, 0.08) 76%), linear-gradient(0deg, rgba(6, 8, 9, 0.82), transparent 55%);
}

.story-1 .story-shade {
  background: linear-gradient(90deg, rgba(6, 8, 9, 0.92) 0%, rgba(6, 8, 9, 0.56) 41%, rgba(6, 8, 9, 0.08) 75%), linear-gradient(0deg, rgba(6, 8, 9, 0.72), transparent 48%);
}

@keyframes storyReveal {
  from { opacity: 0.42; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.story-content {
  position: absolute;
  z-index: 3;
  bottom: 52px;
  left: 58px;
  width: min(550px, 50%);
}

.story-status {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: rgba(8, 10, 11, 0.72);
  backdrop-filter: blur(12px);
  font-size: 15px;
  font-weight: 800;
}

.story-status span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 16px;
}

.story-status-solution {
  color: var(--ink);
  border-color: var(--amber);
  background: var(--amber);
}

.story-status-solution span {
  color: var(--ink);
}

.story-eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-content h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.story-content > p:not(.story-eyebrow) {
  max-width: 510px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 18px;
  line-height: 1.6;
}

.story-badge {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  font-size: 14px;
}

.product-section {
  overflow: hidden;
  background: #ded9d0;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 7vw, 115px);
}

.product-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 5px;
  background: radial-gradient(circle at 60% 45%, #31383a 0%, #161a1c 52%, #0b0d0e 100%);
  box-shadow: var(--shadow);
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  width: 430px;
  height: 1px;
  content: "";
  transform: rotate(-35deg);
  background: linear-gradient(90deg, transparent, rgba(240, 162, 58, 0.34), transparent);
}

.product-visual::before { top: 85px; right: -125px; }
.product-visual::after { bottom: 105px; left: -140px; }

.product-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 162, 58, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 90px rgba(240, 162, 58, 0.09), inset 0 0 90px rgba(240, 162, 58, 0.05);
}

.product-visual > img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
}

.product-tag {
  position: absolute;
  z-index: 3;
  display: block;
  min-width: 145px;
  padding: 13px 16px;
  color: var(--white);
  border-left: 2px solid var(--amber);
  background: rgba(9, 11, 12, 0.78);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.1;
  backdrop-filter: blur(10px);
}

.product-tag small {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-one { top: 42px; left: 36px; }
.tag-two { right: 30px; bottom: 36px; }

.product-copy .section-lead {
  margin-top: 28px;
}

.feature-list {
  margin-top: 36px;
  border-top: 1px solid var(--dark-line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.feature-list article > span {
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.feature-list h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 20px;
}

.feature-list p {
  margin: 0;
  color: rgba(10, 12, 13, 0.66);
  font-size: 16px;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--amber-deep);
  font-size: 16px;
  font-weight: 800;
}

.text-link span {
  color: var(--amber-deep);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.production-section,
.use-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.production-section::before,
.use-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.05;
  background-image: linear-gradient(120deg, transparent 0 47%, #fff 48% 48.5%, transparent 49% 100%);
  background-size: 90px 90px;
}

.production-section .container,
.use-section .container {
  position: relative;
  z-index: 2;
}

.production-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.production-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.65fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: #0c0f10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.production-feature-media {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background: #171a1b;
}

.production-feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(4, 6, 7, 0.34), transparent 48%);
}

.production-feature-media img,
.production-gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-feature-media > span {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 25px;
  padding: 10px 13px;
  color: var(--ink);
  border-radius: 3px;
  background: var(--amber);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.production-feature-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #171c1e, #0d1011);
}

.production-label {
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.production-feature-copy h3 {
  margin: 18px 0 20px;
  font-family: var(--display);
  font-size: clamp(32px, 2.7vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.production-feature-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.production-feature-copy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.production-feature-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.production-feature-copy li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--amber);
}

.production-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 72px 0 25px;
}

.production-gallery-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.03em;
}

.production-gallery-heading p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.6;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.production-gallery-card {
  position: relative;
  grid-column: span 5;
  height: 410px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #171a1b;
}

.production-gallery-card-wide {
  grid-column: span 7;
}

.production-gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(4, 6, 7, 0.92) 0%, rgba(4, 6, 7, 0.18) 52%, transparent 72%);
}

.production-gallery-card img {
  transition: transform 0.5s ease;
}

.production-gallery-card:hover img {
  transform: scale(1.025);
}

.production-gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: grid;
  gap: 8px;
}

.production-gallery-card figcaption span {
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.production-gallery-card figcaption b {
  max-width: 610px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid var(--dark-line);
  border-radius: 4px;
  background: #f8f6f2;
}

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

.package-card.recommended {
  border-color: var(--amber-deep);
  box-shadow: 0 20px 60px rgba(201, 107, 24, 0.12);
}

.recommend-label {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 20px;
  padding: 8px 12px;
  color: var(--ink);
  border-radius: 0 0 3px 3px;
  background: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 24px 16px;
}

.package-top > span {
  color: var(--amber-deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.package-top small {
  color: rgba(10, 12, 13, 0.62);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-crop {
  position: relative;
  height: 250px;
  margin: 0 24px;
  background-color: #f4f3f0;
  background-image: url("./assets/catalog-source.png");
  background-repeat: no-repeat;
  background-size: 2481px 1639px;
}

.crop-lock { background-position: -405px -292px; }
.crop-rear { background-position: -405px -663px; }
.crop-front { background-position: -405px -1121px; }

.crop-lock::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 70px;
  content: "";
  background: #f4f3f0;
}

.package-card.recommended .package-top small {
  visibility: hidden;
}

.package-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 24px 26px;
}

.package-copy h3 {
  min-height: 60px;
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.package-copy > p {
  margin: 8px 0 0;
  color: rgba(10, 12, 13, 0.64);
  font-size: 16px;
}

.package-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.package-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(10, 12, 13, 0.66);
  font-size: 16px;
}

.package-copy li svg {
  flex: 0 0 auto;
}

.package-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 0 17px;
  transition: 0.22s ease;
  color: var(--white);
  border-radius: 3px;
  background: var(--graphite);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-button:hover {
  color: var(--ink);
  background: var(--amber);
}

.package-button span {
  font-size: 20px;
}

.fit-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 27px 31px;
  color: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 3px;
  background: var(--graphite);
}

.fit-note b {
  font-family: var(--display);
  font-size: 21px;
}

.fit-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.fit-note a {
  color: var(--amber);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.compact-heading {
  grid-template-columns: 1fr;
  margin-bottom: 55px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.13);
}

.use-grid article {
  min-height: 320px;
  padding: 40px;
  background: var(--graphite);
}

.use-grid article:hover {
  background: #181e20;
}

.use-grid article > span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.use-grid h3 {
  margin: 70px 0 15px;
  font-family: var(--display);
  font-size: 32px;
}

.use-grid p {
  min-height: 67px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.use-grid b {
  display: inline-block;
  margin-top: 26px;
  padding-top: 16px;
  color: var(--amber);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section {
  background: #ded9d0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p {
  margin-top: 25px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 16px 0;
  list-style: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}

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

.faq-list summary > span {
  color: var(--amber-deep);
  font-size: 14px;
}

.faq-list summary i {
  display: grid;
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  place-items: center;
  font-family: var(--body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
  color: var(--ink);
  border-color: var(--amber);
  background: var(--amber);
}

.faq-list details > p {
  margin: -4px 35px 27px 52px;
  color: rgba(10, 12, 13, 0.6);
  font-size: 16px;
  line-height: 1.7;
}

.order-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  color: var(--white);
  background: #0b0e0f;
  scroll-margin-top: 78px;
}

.order-section::before {
  position: absolute;
  top: -280px;
  left: -100px;
  width: 850px;
  height: 850px;
  content: "";
  border: 1px solid rgba(240, 162, 58, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(240, 162, 58, 0.025), 0 0 0 180px rgba(240, 162, 58, 0.018);
}

.order-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.order-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.order-points {
  display: grid;
  gap: 13px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.order-form-wrap {
  min-height: 370px;
  padding: 36px;
  color: var(--ink);
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.order-form {
  display: grid;
  gap: 17px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
}

.form-head span {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
}

.form-head small {
  color: rgba(10, 12, 13, 0.6);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-form label:not(.consent) {
  display: grid;
  gap: 7px;
}

.order-form label > span {
  color: rgba(10, 12, 13, 0.68);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  outline: none;
  color: var(--ink);
  border: 1px solid rgba(10, 12, 13, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.order-form input,
.order-form select {
  height: 58px;
  padding: 0 14px;
}

.order-form textarea {
  min-height: 88px;
  padding: 13px 14px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(240, 162, 58, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--amber-deep);
}

.consent span {
  font-size: 16px !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-error {
  margin: 0;
  padding: 11px 13px;
  color: #8f1f16;
  border: 1px solid rgba(169, 46, 32, 0.28);
  border-radius: 3px;
  background: rgba(190, 52, 36, 0.08);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: -3px 0 0;
  color: rgba(10, 12, 13, 0.62);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 355px;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--amber);
  place-items: center;
}

.form-success svg {
  width: 34px;
  height: 34px;
}

.form-success p {
  margin: 25px 0 8px;
  color: var(--amber-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-success h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
}

.form-success small {
  max-width: 370px;
  margin-top: 15px;
  color: rgba(10, 12, 13, 0.64);
  font-size: 16px;
  line-height: 1.6;
}

.form-success button {
  margin-top: 24px;
  padding: 10px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--amber-deep);
  background: transparent;
  font-size: 15px;
  font-weight: 800;
}

footer {
  padding: 48px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #070809;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.footer-grid > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 700;
}

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

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

.mobile-order {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-copy { width: 70%; }
  .hero-stats div { padding: 16px 18px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 55px; }
  .product-visual { min-height: 590px; }
  .catalog-crop { margin: 0 16px; }
  .package-top, .package-copy { padding-right: 18px; padding-left: 18px; }
  .faq-grid { gap: 65px; }
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .hero { min-height: 890px; }
  .hero-media { background-image: linear-gradient(90deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.76) 50%, rgba(5, 7, 8, 0.18) 100%), linear-gradient(0deg, rgba(5, 7, 8, 0.9) 0%, transparent 52%), url("./assets/hero-niva.webp"); background-position: 57% center; }
  .hero-inner { min-height: 780px; }
  .hero-copy { width: 76%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div { min-height: 76px; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid > div { padding: 20px 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 650px; }
  .story-card { height: 660px; }
  .story-content { width: 58%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { min-height: 660px; }
  .production-feature { grid-template-columns: 1fr; min-height: 0; }
  .production-feature-media { min-height: 540px; }
  .production-feature-copy { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .production-gallery-card, .production-gallery-card-wide { grid-column: span 6; height: 350px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .package-card { display: grid; grid-template-columns: .7fr 1fr; grid-template-rows: auto 1fr; }
  .package-top { grid-column: 1 / -1; }
  .catalog-crop { height: 330px; margin: 0 0 20px 18px; }
  .package-copy { padding-top: 15px; }
  .package-copy h3 { min-height: auto; }
  .fit-note { grid-template-columns: 1fr auto; }
  .fit-note span { grid-column: 1 / -1; grid-row: 2; }
  .fit-note a { grid-column: 2; grid-row: 1; }
  .use-grid { grid-template-columns: 1fr; }
  .use-grid article { min-height: 230px; }
  .use-grid h3 { margin-top: 35px; }
  .use-grid p { min-height: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .order-grid { grid-template-columns: 1fr; }
  .order-copy { max-width: 720px; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1280px); }
  .section { padding: 75px 0; }
  .site-header { min-height: 66px; padding: 0 15px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark i { top: 7px; left: 15px; width: 4px; height: 22px; }
  .brand-mark i:first-child { left: 8px; height: 16px; }
  .brand-mark i:last-child { left: 22px; top: 13px; height: 16px; }
  .brand-copy b { font-size: 18px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr; }
  .hero { min-height: 840px; }
  .hero-media { background-image: linear-gradient(0deg, rgba(5, 7, 8, 0.96) 0%, rgba(5, 7, 8, 0.66) 70%, rgba(5, 7, 8, 0.28) 100%), url("./assets/hero-niva.webp"); background-position: 63% center; }
  .hero-inner { align-items: flex-end; min-height: 650px; padding-top: 110px; padding-bottom: 45px; }
  .hero-copy { width: 100%; }
  .kicker { margin-bottom: 20px; font-size: 13px; line-height: 1.45; }
  .kicker span { width: 26px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lead { margin-top: 21px; font-size: 17px; line-height: 1.55; }
  .hero-actions { margin-top: 28px; }
  .button { width: 100%; min-height: 58px; }
  .button-ghost { display: none; }
  .microproof { gap: 10px; margin-top: 19px; flex-direction: column; }
  .hero-stats { position: relative; padding: 0; }
  .hero-stats div { min-height: 86px; padding: 13px 15px; gap: 10px; }
  .hero-stats div:first-child { border-left: 0; }
  .hero-stats div:nth-child(odd) { border-left: 0; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 13px; }
  .trust-grid { grid-template-columns: 1fr; padding: 10px 0; }
  .trust-grid > div, .trust-grid > div:first-child { min-height: 84px; padding: 13px 4px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--dark-line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .product-copy h2, .faq-intro h2, .order-copy h2 { font-size: 39px; }
  .section-heading > p, .section-lead, .faq-intro > p, .order-copy > p { font-size: 16px; line-height: 1.65; }
  .story-list, .story-scene { gap: 20px; }
  .story-transition { justify-content: flex-start; gap: 14px; min-height: 0; padding: 19px 17px; }
  .story-transition > span { width: 44px; height: 44px; font-size: 22px; }
  .story-transition b { font-size: 19px; }
  .story-transition small { font-size: 15px; }
  .story-card { min-height: 640px; height: 640px; }
  .story-card > img { object-position: 58% center; }
  .story-1 > img { object-position: 61% center; }
  .story-shade, .story-1 .story-shade { background: linear-gradient(0deg, rgba(6,8,9,.98) 0%, rgba(6,8,9,.75) 48%, rgba(6,8,9,.06) 78%); }
  .story-status { top: 15px; left: 15px; min-height: 44px; padding: 0 13px; font-size: 14px; }
  .story-status span { font-size: 15px; }
  .story-content { bottom: 38px; left: 22px; width: calc(100% - 44px); }
  .story-content h3 { font-size: 36px; }
  .story-content > p:not(.story-eyebrow) { font-size: 16px; }
  .product-visual { min-height: 455px; }
  .product-tag { min-width: 128px; padding: 10px 12px; font-size: 17px; }
  .tag-one { top: 18px; left: 15px; }
  .tag-two { right: 15px; bottom: 18px; }
  .feature-list article { grid-template-columns: 34px 1fr; gap: 12px; }
  .production-feature-media { min-height: 0; aspect-ratio: 4 / 3; }
  .production-feature-media > span { top: 15px; left: 15px; padding: 9px 11px; font-size: 13px; }
  .production-feature-copy { padding: 27px 23px 30px; }
  .production-feature-copy h3 { margin: 14px 0 17px; font-size: 30px; }
  .production-feature-copy > p { font-size: 16px; }
  .production-feature-copy ul { margin-top: 23px; padding-top: 21px; }
  .production-feature-copy li { font-size: 15px; }
  .production-gallery-heading { align-items: flex-start; flex-direction: column; gap: 12px; margin: 52px 0 21px; }
  .production-gallery-heading p { font-size: 16px; }
  .production-gallery { grid-template-columns: 1fr; gap: 15px; }
  .production-gallery-card, .production-gallery-card-wide { grid-column: 1; width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .production-gallery-card figcaption { right: 20px; bottom: 20px; left: 20px; }
  .production-gallery-card figcaption span { font-size: 13px; }
  .production-gallery-card figcaption b { font-size: 21px; }
  .package-card { display: flex; }
  .catalog-crop { height: 270px; margin: 0 18px; }
  .crop-lock { background-position: -405px -300px; }
  .crop-rear { background-position: -405px -678px; }
  .crop-front { background-position: -405px -1130px; }
  .fit-note { grid-template-columns: 1fr; gap: 12px; padding: 23px; }
  .fit-note span, .fit-note a { grid-column: auto; grid-row: auto; }
  .use-grid article { padding: 28px; }
  .faq-list summary { grid-template-columns: 34px 1fr 30px; font-size: 18px; }
  .faq-list details > p { margin-left: 42px; }
  .order-section { padding: 75px 0 96px; }
  .order-form-wrap { min-height: 0; padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .form-head span { font-size: 24px; }
  .form-head small { display: none; }
  .form-success { min-height: 340px; }
  footer { padding-bottom: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-column: auto; flex-wrap: wrap; }
  .footer-grid > small { grid-column: auto; }
  .mobile-order { position: fixed; z-index: 90; right: 10px; bottom: 10px; left: 10px; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 19px; color: var(--ink); border-radius: 3px; background: var(--amber); box-shadow: 0 14px 45px rgba(0,0,0,.35); font-size: 15px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-order span { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
.order-form[hidden], .form-success[hidden] { display: none !important; }
.order-form[hidden], .form-success[hidden] { display: none !important; }
[hidden]{display:none!important}
