:root {
  --ink: #18161f;
  --ink-soft: #5f5a67;
  --paper: #f7f3ed;
  --paper-2: #fffdf9;
  --white: #ffffff;
  --line: rgba(24, 22, 31, 0.12);
  --orange: #ff6b2c;
  --orange-dark: #d94a12;
  --violet: #6d4bc3;
  --mint: #b9e7d5;
  --shadow-sm: 0 12px 30px rgba(38, 29, 48, 0.08);
  --shadow-lg: 0 30px 80px rgba(38, 29, 48, 0.16);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shell: min(1220px, calc(100% - 40px));
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.is-form-overlay-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.ad-strip {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 18px;
  background: #0f0e13;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  letter-spacing: .02em;
  text-align: center;
}

.ad-strip span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.ad-strip p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 243, 237, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, .94);
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(28, 22, 34, .07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 12px 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  transform: rotate(-4deg);
}

.brand-word {
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 15px;
}

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

.desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #48424f;
}

.desktop-nav a:not(.header-cta):hover {
  color: var(--orange-dark);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle>span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"]>span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]>span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]>span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  overflow: clip;
  background:
    radial-gradient(circle at 14% 20%, rgba(185, 231, 213, .48), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(255, 107, 44, .17), transparent 30%),
    linear-gradient(135deg, #f8f4ee 0%, #f4efe7 52%, #efe8f2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 22, 31, .18), transparent);
}

.hero-grid {
  min-height: calc(100svh - 112px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 30px;
  padding-block: 58px 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 850;
  color: var(--orange-dark);
}

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

.kicker span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 880;
  max-width: 820px;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: #4f4956;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

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

.button--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 107, 44, .28);
}

.button--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(217, 74, 18, .28);
}

.button--ghost {
  border-color: rgba(24, 22, 31, .18);
  background: rgba(255, 255, 255, .48);
  color: var(--ink);
}

.button--ghost:hover {
  background: #fff;
  border-color: rgba(24, 22, 31, .3);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  gap: 1px;
  padding-right: 24px;
  border-right: 1px solid rgba(24, 22, 31, .16);
}

.hero-proof li:last-child {
  border: 0;
}

.hero-proof strong {
  font-size: 18px;
  line-height: 1.2;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.hero-stage__halo {
  position: absolute;
  width: min(540px, 80%);
  aspect-ratio: 1;
  border-radius: 48% 52% 60% 40% / 43% 50% 50% 57%;
  background: linear-gradient(150deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .34));
  box-shadow: var(--shadow-lg);
  animation: morph 9s ease-in-out infinite alternate;
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(730px, 104%);
  object-fit: contain;
  filter: drop-shadow(0 35px 28px rgba(39, 23, 18, .24));
  animation: floatProduct 5.8s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.floating-note--top {
  top: 16%;
  right: 2%;
}

.floating-note--bottom {
  bottom: 19%;
  left: 0;
}

.floating-note__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
}

.floating-note div {
  display: grid;
}

.floating-note strong {
  font-size: 14px;
}

.floating-note small {
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-stage__caption {
  position: absolute;
  z-index: 3;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(24, 22, 31, .82);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  text-align: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .65;
}

.hero-orb--one {
  width: 160px;
  height: 160px;
  right: -60px;
  top: 14%;
  background: var(--mint);
}

.hero-orb--two {
  width: 90px;
  height: 90px;
  left: 44%;
  bottom: 5%;
  background: #d9c8ff;
}

.feature-ribbon {
  position: relative;
  z-index: 5;
  margin-top: -25px;
}

.feature-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 22px 60px rgba(23, 20, 29, .22);
}

.feature-ribbon article {
  display: flex;
  gap: 15px;
  min-height: 176px;
  padding: 26px 22px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.feature-ribbon article:last-child {
  border-right: 0;
}

.feature-ribbon img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.feature-ribbon h2 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.feature-ribbon p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 112px 0;
}

.story-grid,
.compact-grid,
.travel-grid,
.specs-grid {
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.story-grid {
  grid-template-columns: .95fr 1.05fr;
}

.story-media {
  position: relative;
  min-height: 570px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(20, 17, 27, .22));
  z-index: 1;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-index {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.story-copy h2,
.compact-copy h2,
.travel-copy h2,
.specs-copy h2,
.section-heading h2,
.request-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.story-copy>p:not(.eyebrow),
.compact-copy>p:not(.eyebrow),
.travel-copy>p:not(.eyebrow),
.section-intro,
.request-intro>p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.detail-list>div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.detail-list>div>span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #ebe2f8;
  color: var(--violet);
  font-weight: 900;
  font-size: 12px;
}

.detail-list p {
  margin: 0;
  color: #4e4855;
}

.compact-section {
  background: var(--ink);
  color: #fff;
  overflow: clip;
}

.compact-grid {
  grid-template-columns: 1fr .82fr;
}

.compact-copy>p:not(.eyebrow) {
  color: rgba(255, 255, 255, .64);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.metric-grid>div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.metric-grid span {
  display: block;
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

/* Блок тонкого профиля */
.compact-media {
  position: relative;
  display: grid;
  place-items: center;

  width: 100%;
  min-height: 0;
  aspect-ratio: 1.08 / 1;
  padding: clamp(28px, 4vw, 54px);

  overflow: hidden;
  border-radius: 46% 54% 42% 58% / 54% 42% 58% 46%;
  background: linear-gradient(145deg, #f7eee0, #e5c8ac);
}

.compact-media img {
  display: block;

  width: min(82%, 520px);
  height: auto;
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.22));
}

.compact-media__label {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: 4%;

  padding: 12px 16px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  box-shadow: var(--shadow-sm);
}

.compact-media__label strong {
  font-size: 18px;
}

.travel-grid {
  grid-template-columns: 1.05fr .95fr;
}

.travel-card {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-card__overlay {
  position: absolute;
  inset: auto 24px 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(20, 18, 26, .82);
  color: #fff;
  backdrop-filter: blur(12px);
}

.travel-card__overlay p {
  margin: 0 0 5px;
  color: #f4b69a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
}

.travel-card__overlay strong {
  display: block;
  max-width: 420px;
  font-size: 20px;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 35px;
  color: #4d4853;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--mint);
  color: #1b5f48;
  font-weight: 900;
  font-size: 12px;
}

.specs-section {
  background: #ece5f2;
}

.specs-grid {
  grid-template-columns: 1.05fr .95fr;
}

.spec-list {
  margin: 34px 0 0;
  border-top: 1px solid rgba(24, 22, 31, .16);
}

.spec-list>div {
  display: grid;
  grid-template-columns: minmax(140px, .8fr) 1.4fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(24, 22, 31, .13);
}

.spec-list dt {
  color: var(--ink-soft);
}

.spec-list dd {
  margin: 0;
  font-weight: 760;
  text-align: right;
}

.tech-details {
  margin-top: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
  overflow: hidden;
}

.tech-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

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

.tech-details summary span {
  font-size: 23px;
  transition: transform .2s ease;
}

.tech-details[open] summary span {
  transform: rotate(45deg);
}

.tech-details__body {
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

.tech-details__body h3 {
  margin: 24px 0 7px;
  color: var(--ink);
  font-size: 16px;
}

.tech-details__body p {
  margin: 0;
}

.code-line {
  margin-top: 18px !important;
  font-size: 12px;
}

.specs-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.specs-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4eee8;
}

.specs-visual img {
  position: relative;
  z-index: 2;
  width: 94%;
}

.specs-visual__tag {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: .06em;
}

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

.section-heading {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.process-grid article {
  min-height: 270px;
  padding: 28px;
  border-radius: 28px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.process-grid article::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  right: -45px;
  bottom: -50px;
  background: rgba(255, 107, 44, .13);
}

.process-grid article>span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.process-grid h3 {
  margin: 52px 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.process-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.request-section {
  padding-top: 90px;
  background: linear-gradient(180deg, var(--paper) 0%, #efe7dc 100%);
}

.request-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 52px;
  align-items: start;
}

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

.request-trust {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.request-trust>div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.request-trust strong {
  min-width: 110px;
}

.request-trust span {
  color: var(--ink-soft);
  font-size: 14px;
}

.request-panel {
  padding: 30px;
  border-radius: 34px;
  background: var(--paper-2);
  box-shadow: var(--shadow-lg);
}

.variant-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.variant-card {
  position: relative;
  min-width: 0;
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f5f1eb;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.variant-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 44, .48);
}

.variant-card.is-selected {
  border-color: var(--orange);
  background: #fff8f3;
  box-shadow: 0 12px 28px rgba(255, 107, 44, .13);
}

.variant-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.variant-card>span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 800;
  font-size: 13px;
}

.variant-card>b {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  opacity: 0;
  transform: scale(.7);
  transition: .2s ease;
}

.variant-card.is-selected>b {
  opacity: 1;
  transform: scale(1);
}

.dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot--orange {
  background: #e6652a;
}

.dot--steel {
  background: #c7c7c3;
  border: 1px solid #999;
}

.dot--black {
  background: #171717;
}

.quantity-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #f1ece5;
}

.quantity-label {
  display: block;
  font-weight: 850;
}

.quantity-box p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 42px 52px 42px;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
}

.quantity-stepper button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.quantity-stepper button:hover {
  background: #f1ece5;
}

.quantity-stepper button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.quantity-stepper output {
  text-align: center;
  font-weight: 900;
}

.quantity-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.quantity-presets button {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.quantity-presets button.is-active {
  border-color: var(--orange);
  background: #fff7f2;
}

.quantity-presets span {
  font-size: 12px;
  color: var(--ink-soft);
}

.quantity-presets em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 800;
}

.quantity-presets strong {
  font-size: 16px;
}

.selection-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}

.selection-summary>div {
  display: grid;
  gap: 2px;
}

.selection-summary span {
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.selection-summary__price {
  grid-column: 1/-1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.selection-summary__price strong {
  font-size: 29px;
  color: #ffb18d;
}

.selection-summary>p {
  grid-column: 1/-1;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
}

.lead-form {
  margin-top: 22px;
}

.form-selection-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.form-selection-line>div {
  display: grid;
  gap: 2px;
}

.form-selection-line>div:last-child {
  text-align: right;
}

.form-selection-line span {
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.lead-form label:not(.consent) {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 22, 31, .16);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input {
  height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, .11);
}

.message-field {
  margin-top: 14px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  margin-top: 18px;
  align-items: start;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.consent span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.consent a {
  color: var(--orange-dark);
  font-weight: 800;
}

.submit-button {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.submit-button:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 9px 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 11px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 750;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #117a52;
}

.site-footer {
  background: #111016;
  color: #fff;
  padding: 68px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brand--footer .brand-symbol {
  background: var(--orange);
}

.footer-about p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .58);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.footer-nav h2 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .45);
}

.footer-nav a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-disclosure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-disclosure p {
  margin: 0;
  color: rgba(255, 255, 255, .47);
  font-size: 11px;
}

.footer-disclosure strong {
  color: rgba(255, 255, 255, .76);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .44);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  z-index: 1400;
  right: 22px;
  bottom: 22px;
  width: min(520px, calc(100% - 44px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(17, 16, 22, .96);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.45;
}

.cookie-banner a {
  color: #fff;
}

.cookie-banner button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.2, .75, .2, 1), transform .75s cubic-bezier(.2, .75, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes floatProduct {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes morph {
  0% {
    border-radius: 48% 52% 60% 40% / 43% 50% 50% 57%;
    transform: rotate(-3deg);
  }

  100% {
    border-radius: 58% 42% 46% 54% / 52% 60% 40% 48%;
    transform: rotate(3deg);
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 30px, 940px);
  }

  .desktop-nav {
    gap: 16px;
  }

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

  .hero-stage {
    min-height: 520px;
  }

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

  .feature-ribbon article:nth-child(2) {
    border-right: 0;
  }

  .feature-ribbon article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .request-shell {
    grid-template-columns: 1fr;
  }

  .request-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 999;
    top: calc(36px + var(--header-h));
    left: 15px;
    right: 15px;
    display: grid;
    gap: 4px;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 253, 249, .98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .2s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-nav a {
    padding: 13px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-nav a:hover {
    background: #f1ece5;
  }

  .hero-grid,
  .story-grid,
  .compact-grid,
  .travel-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .story-media,
  .travel-card,
  .specs-visual {
    min-height: 520px;
  }

  .compact-media {
    order: -1;
    min-height: 0;
    aspect-ratio: 1.35 / 1;
    padding: 30px;
  }

  .compact-media img {
    width: min(76%, 540px);
  }

  .compact-media__label {
    top: 7%;
    right: 4%;
  }


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

  .process-grid article {
    min-height: 220px;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-lg: 30px;
  }

  .ad-strip {
    min-height: 34px;
    padding-inline: 10px;
    gap: 8px;
  }

  .ad-strip p {
    font-size: 10px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 48px 62px;
    gap: 10px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-proof li {
    min-width: calc(50% - 8px);
    padding-right: 10px;
  }

  .hero-proof li:nth-child(2) {
    border-right: 0;
  }

  .hero-stage {
    min-height: 400px;
  }

  .hero-product {
    width: 115%;
    max-width: none;
  }

  .floating-note {
    padding: 9px 10px;
  }

  .floating-note--top {
    right: 0;
    top: 12%;
  }

  .floating-note--bottom {
    left: 0;
    bottom: 16%;
  }

  .hero-stage__caption {
    bottom: 1%;
    width: 92%;
    white-space: normal;
  }

  .feature-ribbon {
    margin-top: 0;
  }

  .feature-ribbon__grid {
    grid-template-columns: 1fr;
    border-radius: 0;
    width: 100%;
  }

  .feature-ribbon article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 18px;
  }

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

  .section {
    padding: 78px 0;
  }

  .story-copy h2,
  .compact-copy h2,
  .travel-copy h2,
  .specs-copy h2,
  .section-heading h2,
  .request-intro h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .story-media,
  .travel-card,
  .specs-visual {
    min-height: 420px;
  }

.compact-media {
    min-height: 0;
    aspect-ratio: 1.12 / 1;
    padding: 22px 14px;
    border-radius: 30px;
  }

  .compact-media img {
    width: min(88%, 360px);
    max-height: 88%;
  }

  .compact-media__label {
    top: 12px;
    right: 12px;
    padding: 9px 11px;
    border-radius: 13px;
    font-size: 10px;
  }

  .compact-media__label strong {
    font-size: 15px;
  }

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

  .spec-list>div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-list dd {
    text-align: left;
  }

  .request-panel {
    padding: 18px;
    border-radius: 25px;
  }

  .variant-picker {
    gap: 7px;
  }

  .variant-card {
    padding: 6px 6px 10px;
    border-radius: 16px;
  }

  .variant-card>span {
    font-size: 11px;
  }

  .quantity-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-stepper {
    align-self: stretch;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quantity-stepper button {
    justify-self: center;
  }

  .quantity-presets {
    grid-template-columns: 1fr;
  }

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

  .selection-summary__price,
  .selection-summary>p {
    grid-column: 1;
  }

  .form-selection-line,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-selection-line>div:last-child {
    text-align: left;
  }

  .footer-nav,
  .footer-disclosure {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

/* =========================================================
   HERO — РОВНО В ПРЕДЕЛАХ ПЕРВОГО ЭКРАНА
   ========================================================= */

:root {
  --ad-strip-h: 36px;
}

/* Только компьютер и широкий планшет */
@media (min-width: 861px) {
  .hero {
    height: calc(100dvh - var(--header-h) - var(--ad-strip-h));
    min-height: 0;
    max-height: calc(100dvh - var(--header-h) - var(--ad-strip-h));
    overflow: hidden;
  }

  .hero-grid {
    height: 100%;
    min-height: 0;
    padding-block: clamp(24px, 4vh, 52px);
    align-items: center;
  }

  .hero-copy {
    max-height: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(44px, min(5.4vw, 9vh), 82px);
  }

  .hero-lead {
    margin-top: clamp(16px, 2.6vh, 28px);
    font-size: clamp(17px, 1.6vw, 21px);
  }

  .hero-actions {
    margin-top: clamp(18px, 3vh, 32px);
  }

  .hero-proof {
    margin-top: clamp(20px, 3.4vh, 36px);
  }

  .hero-stage {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .hero-stage__halo {
    width: min(500px, 68vh, 82%);
  }

  .hero-product {
    width: min(680px, 102%);
    height: auto;
    max-height: 86%;
    object-fit: contain;
  }

  .floating-note--top {
    top: 12%;
  }

  .floating-note--bottom {
    bottom: 14%;
  }

  .hero-stage__caption {
    bottom: 1%;
  }
}

/* Более низкие экраны ноутбуков */
@media (min-width: 861px) and (max-height: 760px) {
  .hero-grid {
    padding-block: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 7.6vh, 66px);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-proof {
    margin-top: 20px;
    gap: 16px;
  }

  .hero-proof strong {
    font-size: 16px;
  }

  .hero-product {
    max-height: 82%;
  }

  .floating-note {
    padding: 9px 12px;
  }
}

/* =========================================================
   HERO — СМАРТФОН
   ========================================================= */

@media (max-width: 640px) {
  :root {
    --ad-strip-h: 34px;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .hero-grid {
    height: auto;
    min-height: 0;
    padding-block: 42px 32px;
    gap: 18px;
  }

  .hero-stage {
    width: 100%;
    height: clamp(270px, 76vw, 340px);
    min-height: 0;
    margin-top: 4px;
  }

  .hero-stage__halo {
    width: min(300px, 76vw);
    max-width: 88%;
  }

  .hero-product {
    width: min(108%, 420px);
    height: auto;
    max-width: none;
    max-height: 94%;
    object-fit: contain;
  }

  .floating-note {
    gap: 7px;
    padding: 8px 9px;
    border-radius: 14px;
  }

  .floating-note__icon {
    width: 29px;
    height: 29px;
  }

  .floating-note strong {
    font-size: 11px;
  }

  .floating-note small {
    font-size: 9px;
  }

  .floating-note--top {
    top: 5%;
    right: 0;
  }

  .floating-note--bottom {
    bottom: 11%;
    left: 0;
  }

  .hero-stage__caption {
    bottom: 0;
    width: auto;
    max-width: 94%;
    padding: 6px 9px;
    font-size: 9px;
    line-height: 1.35;
  }
}

/* Очень узкие смартфоны */
@media (max-width: 380px) {
  .hero-stage {
    height: 255px;
  }

  .hero-product {
    width: 105%;
    max-height: 90%;
  }

  .floating-note--bottom {
    bottom: 9%;
  }
}
/* =========================================================
   FINAL MEDIA AND OFFER CARD FIXES
   Additions placed last intentionally to override earlier rules.
   ========================================================= */

/* Keep media columns compact instead of inheriting oversized rows. */
.compact-grid,
.specs-grid {
  align-items: start;
}

/* ---------------------------------------------------------
   COMPACT PROFILE VISUAL
   Works with the current HTML and tenky-profil.webp.
   --------------------------------------------------------- */
.compact-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: clamp(430px, 39vw, 560px);
  aspect-ratio: auto;
  padding: clamp(26px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 107, 44, .16), transparent 30%),
    linear-gradient(145deg, #26222d 0%, #1b1921 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.compact-media::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 25px;
  pointer-events: none;
}

.compact-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: min(92%, 560px);
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .28);
  filter: none;
}

.compact-media__label {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 107, 44, .94);
  color: #fff;
  font-size: 10px;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.compact-media__label strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1;
}

/* ---------------------------------------------------------
   TECHNICAL CONSTRUCTION VISUAL
   Prevents the square source image from becoming a tall panel.
   --------------------------------------------------------- */
.specs-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: clamp(440px, 43vw, 590px);
  max-height: 590px;
  padding: clamp(28px, 3.8vw, 48px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(109, 75, 195, .12), transparent 32%),
    linear-gradient(145deg, #fff 0%, #f5f1ed 100%);
  box-shadow: 0 24px 64px rgba(38, 29, 48, .14);
}

.specs-visual::before {
  content: "";
  position: absolute;
  width: min(72%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ece5dd;
}

.specs-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 24px rgba(20, 18, 26, .16));
}

.specs-visual__tag {
  top: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
  padding: 8px 12px;
  font-size: 10px;
  line-height: 1.25;
  white-space: normal;
}

/* ---------------------------------------------------------
   REQUEST PANEL / COLOR VARIANTS
   Explicit rows prevent the button cards from stretching.
   --------------------------------------------------------- */
.request-panel {
  min-width: 0;
}

.variant-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.variant-card {
  position: relative;
  display: grid;
  grid-template-rows: 180px auto;
  align-content: start;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 8px 8px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f5f1eb;
}

.variant-card img {
  display: block;
  grid-row: 1;
  width: 100%;
  height: 180px;
  min-height: 0;
  max-height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: #efefef;
}

.variant-card > span {
  grid-row: 2;
  min-height: 38px;
  padding-top: 9px;
  line-height: 1.2;
}

.variant-card > b {
  top: 14px;
  right: 14px;
}

/* Tablet */
@media (max-width: 1050px) {
  .specs-visual {
    height: clamp(410px, 48vw, 540px);
    max-height: 540px;
  }

  .variant-card {
    grid-template-rows: 155px auto;
  }

  .variant-card img {
    height: 155px;
    max-height: 155px;
  }
}

@media (max-width: 860px) {
  .compact-media {
    order: -1;
    height: clamp(390px, 68vw, 520px);
    aspect-ratio: auto;
    padding: 28px;
  }

  .compact-media img {
    width: auto;
    max-width: min(90%, 560px);
    max-height: 88%;
  }

  .specs-visual {
    min-height: 0;
    height: clamp(390px, 72vw, 520px);
    max-height: 520px;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .compact-media {
    height: clamp(300px, 86vw, 390px);
    min-height: 0;
    aspect-ratio: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .compact-media::before {
    inset: 12px;
    border-radius: 19px;
  }

  .compact-media img {
    width: auto;
    max-width: 94%;
    max-height: 84%;
    border-radius: 14px;
  }

  .compact-media__label {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 9px;
  }

  .compact-media__label strong {
    font-size: 14px;
  }

  .specs-visual {
    min-height: 0;
    height: clamp(310px, 88vw, 410px);
    max-height: 410px;
    padding: 22px 14px 16px;
    border-radius: 26px;
  }

  .specs-visual::before {
    width: 76%;
  }

  .specs-visual img {
    max-width: 98%;
    max-height: 88%;
  }

  .specs-visual__tag {
    top: 13px;
    left: 13px;
    max-width: calc(100% - 26px);
    padding: 7px 10px;
    font-size: 9px;
  }

  .request-panel {
    padding: 16px;
  }

  .variant-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .variant-card {
    grid-template-rows: 96px auto;
    padding: 5px 5px 8px;
    border-radius: 15px;
  }

  .variant-card img {
    height: 96px;
    max-height: 96px;
    border-radius: 10px;
  }

  .variant-card > span {
    min-height: 30px;
    gap: 4px;
    padding-top: 7px;
    font-size: 10px;
  }

  .variant-card > b {
    top: 9px;
    right: 9px;
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 380px) {
  .compact-media {
    height: 286px;
  }

  .specs-visual {
    height: 292px;
  }

  .variant-card {
    grid-template-rows: 82px auto;
  }

  .variant-card img {
    height: 82px;
    max-height: 82px;
  }

  .variant-card > span {
    font-size: 9px;
  }
}