@font-face {
  font-family: Onest;
  src: url("assets/onest.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f6f5f2;
  --white: #fff;
  --ink: #242525;
  --muted: #626661;
  --red: #e81a22;
  --red-dark: #b9241d;
  --line: #dedfd8;
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Onest, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 550;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--red-dark);
}
h1 {
  font-size: clamp(31px, 7.8vw, 47px);
}
h2 {
  font-size: clamp(30px, 7.5vw, 52px);
}
h3 {
  font-size: 23px;
}
p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid #2564cf;
  outline-offset: 5px;
}
::selection {
  background: #ffd5cf;
  color: #242525;
}
.wrap {
  width: calc(100% - 32px);
  max-width: 2120px;
  margin-inline: auto;
}
.section {
  padding-block: 68px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 18px;
}
.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: -100px;
  left: 15px;
  z-index: 100;
  background: var(--white);
  padding: 15px;
  border-radius: 12px;
}
.skip-link:focus {
  top: 10px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.3;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-red {
  background: var(--red);
  color: white;
}
.button-red:hover {
  background: var(--red-dark);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #3b3d3b;
}
.button:hover {
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  min-height: 44px;
  background: none;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.text-link:hover {
  color: var(--red-dark);
}
.muted {
  color: #787d76;
}
.small-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex: none;
}
.stars {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--red-dark);
  white-space: nowrap;
}
.header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 5;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.brand-hm {
  font-size: 41px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.12em;
  position: relative;
  padding-right: 7px;
  font-style: italic;
}
.brand-dot {
  display: inline-block;
  position: absolute;
  right: -1px;
  top: 3px;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--red);
}
.brand-import {
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: 800;
  line-height: 1.25;
}
.brand-import small {
  display: block;
  font-size: 6px;
  letter-spacing: 0.13em;
  font-weight: 650;
}
.desktop-nav,
.header-phone {
  display: none;
}
.mobile-menu summary {
  list-style: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-menu summary span {
  width: 19px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s;
}
.mobile-menu[open] summary span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.mobile-menu[open] summary span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu nav {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 18px 50px #24252520;
  padding: 16px 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.mobile-menu nav a:last-child {
  border: 0;
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-rating {
  order: 0;
  margin: 2px 0 23px;
}
.rating-link {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
  width: fit-content;
}
.rating-link strong {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.065em;
}
.rating-link small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
  color: var(--muted);
}
.vk-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #0077ff;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.1em;
  padding-right: 2px;
}
.hero-rating > p {
  font-size: 9px;
  margin-top: 7px;
}
.hero-copy {
  order: 1;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 15px;
}
.hero-lead {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 450px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 17px;
  font-size: 11px;
}
.hero-points li:before {
  content: "✓";
  color: var(--red-dark);
  font-weight: 800;
  margin-right: 6px;
}
.hero-copy .button {
  width: 100%;
  max-width: 430px;
}
.hero-checklist {
  font-size: 11px;
  display: block;
  text-align: center;
  padding: 14px 0 23px;
  max-width: 430px;
}
.hero-checklist:hover {
  color: var(--red-dark);
}
.hero-photo {
  order: 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1.4;
  background: #d2d6cb;
}
.hero-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, #17241e85);
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  right: 12px;
}
.photo-play {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: white;
  background: #202922a6;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff38;
  border-radius: 100px;
  padding: 6px 15px 6px 6px;
  font-size: 12px;
  line-height: 1.3;
  max-width: 100%;
}
.photo-play small {
  display: block;
  font-size: 8px;
  margin-top: 3px;
  color: #fff;
}
.play-icon {
  height: 44px;
  width: 44px;
  background: white;
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  font-size: 13px;
  padding-left: 3px;
}
.hero-bottom {
  order: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0 0;
}
.hero-bottom p {
  font-size: 12px;
  line-height: 1.5;
}
.hero-bottom strong {
  font-weight: 500;
  color: var(--ink);
}
.hero-bottom > a {
  display: none;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.section-head > p {
  font-size: 14px;
  max-width: 385px;
}
.section-head .eyebrow {
  margin-bottom: 15px;
}
.case-grid {
  display: grid;
  gap: 20px;
}
.car-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}
.car-image {
  position: relative;
  display: block;
  aspect-ratio: 1.45;
  overflow: hidden;
  border-radius: var(--radius);
}
.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.car-image:hover img {
  transform: scale(1.035);
}
.car-card-delivery .car-image img {
  object-position: 50% 45%;
}
.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  background: white;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 550;
  box-shadow: 0 1px 3px #0001;
}
.car-info {
  padding: 24px;
}
.car-year {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.065em;
}
.car-info h3 {
  margin: 8px 0 20px;
  font-size: 27px;
}
.car-info dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.car-info dt {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 5px;
}
.car-info dd {
  margin: 0;
  font-size: 13px;
  font-weight: 550;
}
.car-info p {
  font-size: 12px;
  line-height: 1.6;
  margin: 17px 0 4px;
  min-height: 40px;
}
.car-info .text-link {
  font-size: 12px;
}
.section-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.section-foot p {
  font-size: 11px;
  max-width: 500px;
}
.section-foot .text-link {
  font-size: 12px;
}
.cost-panel {
  background: #242826;
  color: white;
  border-radius: var(--radius);
  padding: 30px 22px;
  position: relative;
  overflow: hidden;
}
.cost-panel .eyebrow {
  color: #bdc4bc;
}
.cost-intro h2 {
  font-size: clamp(29px, 7.1vw, 47px);
  line-height: 1.12;
}
.cost-intro h2 em {
  color: #ff8175;
}
.cost-intro > p:not(.eyebrow) {
  color: #bdc4bc;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 22px;
  max-width: 390px;
}
.cost-intro .button {
  margin-top: 25px;
  width: 100%;
  max-width: 360px;
}
.cost-intro p.cost-note {
  font-size: 11px;
  margin-top: 15px;
}
.estimate {
  background: #f6f5f2;
  color: var(--ink);
  border-radius: 20px;
  padding: 22px;
  margin-top: 30px;
}
.estimate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.estimate-head > span:last-child {
  font-size: 30px;
  line-height: 1;
  color: var(--red-dark);
}
.estimate ol {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  counter-reset: estimate;
}
.estimate li {
  counter-increment: estimate;
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid #d6d7d0;
}
.estimate li:before {
  content: "0" counter(estimate);
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 9px;
  color: #737870;
}
.estimate li span {
  font-size: 14px;
  font-weight: 550;
  display: block;
}
.estimate li small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.estimate-total {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 19px;
}
.plus-sign {
  color: var(--red-dark);
  font-size: 32px;
  line-height: 1;
}
.estimate-total strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.estimate-total small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
}
.estimate-caption {
  font-size: 9px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
.objections {
  display: grid;
  gap: 22px;
}
.objections article {
  border-top: 1px solid #bfc4bb;
  padding-top: 24px;
}
.objection-mark {
  font-size: 11px;
  color: var(--red-dark);
  display: block;
  margin-bottom: 22px;
}
.objections h3 {
  font-size: 25px;
}
.objections p {
  font-size: 13px;
  margin: 18px 0 8px;
  line-height: 1.75;
}
.objections .text-link {
  font-size: 11px;
}
.about-section {
  display: grid;
  gap: 26px;
}
.about-photo {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce0d8;
}
.about-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.photo-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: white;
  border-radius: 14px;
  padding: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
}
.photo-label small {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px;
}
.photo-label .small-dot {
  width: 8px;
  height: 8px;
}
.about-copy {
  padding: 7px 5px;
}
.about-copy h2 {
  font-size: clamp(28px, 7vw, 45px);
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 18px;
}
.about-copy > p.about-lead {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
  color: var(--ink);
}
.about-copy blockquote {
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--red);
  font-size: 14px;
  line-height: 1.7;
  margin: 25px 0;
}
.about-copy cite {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
}
.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.about-actions .text-link {
  font-size: 11px;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.process-list li {
  position: relative;
  padding: 4px 0 30px 62px;
}
.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid #c9cdc3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--red-dark);
}
.process-list h3 {
  font-size: 21px;
}
.process-list h3 br {
  display: none;
}
.process-list p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 13px;
}
.process-list small {
  display: block;
  font-size: 10px;
  color: var(--ink);
  margin-top: 14px;
}
.process-note {
  display: flex;
  gap: 16px;
  background: #eaece5;
  padding: 20px;
  border-radius: 16px;
}
.process-note > span {
  font-size: 28px;
  color: var(--red-dark);
  line-height: 1;
}
.process-note p {
  font-size: 11px;
  max-width: 800px;
}
.process-note strong {
  color: var(--ink);
  font-weight: 600;
}
.reviews-section {
  background: #e9ece5;
  padding: 58px 0 50px;
  border-radius: 30px;
}
.reviews-aside > p {
  font-size: 9px;
  margin-top: 10px;
}
.video-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}
.video-card {
  min-width: 0;
  scroll-snap-align: start;
}
.video-cover {
  position: relative;
  display: block;
  padding: 0;
  width: 100%;
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 23px;
  background: #cbd1c4;
}
.video-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform 0.4s;
}
.video-cover[data-video="valentina-yaris"] > img {
  object-position: 72% 38%;
}
.video-cover:hover > img {
  transform: scale(1.04);
}
.video-cover:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #15211970);
  pointer-events: none;
}
.video-cover .play-icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
}
.video-time {
  position: absolute;
  right: 18px;
  bottom: 31px;
  color: white;
  font-size: 12px;
  z-index: 1;
}
.video-card h3 {
  font-size: 20px;
  margin-top: 17px;
  letter-spacing: -0.03em;
}
.video-card > p {
  font-size: 11px;
  margin-top: 6px;
}
.video-card > a {
  display: inline-block;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 10px 0;
}
.more-videos {
  margin-top: 25px;
  border-top: 1px solid #c4cabe;
  border-bottom: 1px solid #c4cabe;
}
.more-videos summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 12px;
  list-style: none;
}
.more-videos summary::-webkit-details-marker {
  display: none;
}
.more-videos summary > span {
  font-size: 25px;
}
.more-videos[open] summary > span {
  transform: rotate(45deg);
}
.extra-video-list {
  display: grid;
  gap: 22px;
  padding: 15px 0 30px;
}
.extra-video-list article {
  display: flex;
  align-items: center;
  gap: 16px;
}
.extra-video-list img {
  width: 70px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}
.extra-video-list h3 {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.extra-video-list p,
.extra-video-list a,
.extra-video-list .text-link {
  font-size: 10px;
}
.extra-video-list a {
  display: block;
  text-decoration: underline;
  width: fit-content;
}
.extra-video-list .text-link {
  margin-right: 10px;
}
.written-reviews {
  display: grid;
  gap: 16px;
  margin-top: 35px;
}
.written-review {
  background: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 550;
}
.review-top small {
  display: block;
  font-size: 9px;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}
.review-top .stars {
  font-size: 8px;
  letter-spacing: 1px;
}
.written-review blockquote {
  font-size: 14px;
  line-height: 1.75;
  margin: 24px 0;
}
.written-review > img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 12px;
  margin-top: auto;
}
.written-review > .text-link {
  font-size: 10px;
  margin-top: 9px;
}
.quote-review {
  background: #d8dfd1;
}
.big-quote {
  font-size: 100px;
  line-height: 0.8;
  color: var(--red-dark);
  height: 80px;
  letter-spacing: -0.08em;
}
.quote-review blockquote {
  font-size: 20px;
  line-height: 1.5;
}
.quote-review > .text-link {
  margin-top: auto;
}
.country-grid {
  display: grid;
  gap: 18px;
}
.country {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
}
.country-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.country-title h3 {
  font-size: 22px;
}
.country-code {
  color: var(--red-dark);
  background: #fff0ed;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex: none;
}
.country p,
.country li {
  font-size: 12px;
  line-height: 1.8;
}
.country ul {
  margin: 20px 0;
  padding-left: 15px;
  color: var(--muted);
}
.country li {
  padding-left: 5px;
  margin-top: 8px;
}
.country li::marker {
  color: var(--red-dark);
}
.country .text-link {
  font-size: 11px;
}
.geography {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  padding: 30px 4px 0;
  border-top: 1px solid var(--line);
}
.geography h3 {
  font-size: 25px;
}
.geography p {
  font-size: 13px;
  line-height: 1.8;
}
.checklist-banner {
  background: #efe4d8;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.checklist-number {
  font-size: 62px;
  line-height: 0.85;
  color: var(--red-dark);
  letter-spacing: -0.085em;
  font-weight: 550;
}
.checklist-number span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-top: 12px;
  font-weight: 650;
}
.checklist-banner .eyebrow {
  font-size: 9px;
}
.checklist-banner h2 {
  font-size: 31px;
}
.checklist-banner p:not(.eyebrow) {
  font-size: 12px;
  max-width: 430px;
  margin-top: 16px;
  line-height: 1.8;
}
.checklist-banner .button {
  width: 100%;
}
.faq-section {
  display: grid;
  gap: 30px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 12px;
  margin-top: 24px;
  line-height: 1.8;
}
.faq-intro > p > a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.faq-list {
  border-top: 1px solid #bfc4bb;
}
.faq-list details {
  border-bottom: 1px solid #bfc4bb;
  padding: 0;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 25px;
  color: var(--red-dark);
  font-weight: 300;
  flex: none;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 12px;
  line-height: 1.8;
  padding: 0 30px 22px 0;
  max-width: 720px;
}
.faq-list details > .text-link {
  margin-bottom: 18px;
}
.contact-panel {
  background: #242826;
  color: white;
  border-radius: var(--radius);
  padding: 30px 22px;
  display: grid;
  gap: 32px;
}
.contact-copy .eyebrow {
  color: #bdc4bc;
}
.contact-copy h2 {
  font-size: clamp(30px, 7.2vw, 48px);
}
.contact-copy h2 em {
  color: #ff8175;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  color: #bdc4bc;
  margin-top: 22px;
  max-width: 370px;
}
.contact-person {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 25px;
}
.contact-person > img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 35%;
}
.contact-person strong {
  font-size: 12px;
  font-weight: 550;
  display: block;
}
.contact-person a {
  font-size: 17px;
  display: block;
  margin-top: 3px;
}
.contact-person small {
  display: block;
  color: #bdc4bc;
  font-size: 9px;
  margin-top: 4px;
}
.request-form label {
  font-size: 11px;
  display: block;
  color: #e1e5dd;
  margin: 0 0 9px;
}
.request-form input,
.request-form select {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid #72776e;
  background: #323833;
  color: white;
  padding: 0 14px;
  font-size: 12px;
  margin-bottom: 20px;
  min-width: 0;
}
.request-form input::placeholder {
  color: #c1c7bd;
  opacity: 1;
}
.request-form select {
  color-scheme: dark;
  appearance: auto;
}
.form-row {
  display: grid;
  gap: 0;
}
.request-form .button {
  width: 100%;
  margin-top: 3px;
  font-size: 12px;
}
.form-note {
  font-size: 9px !important;
  color: #bec6b9 !important;
  line-height: 1.75;
  margin-top: 14px;
}
.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 22px 5px 0;
  font-size: 11px;
}
.direct-contact > span {
  width: 100%;
  color: var(--muted);
}
.direct-contact > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer {
  padding: 50px 0 110px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 30px;
}
.footer-top > p {
  font-size: 11px;
}
.footer-top > .text-link {
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > a {
  min-height: 30px;
  display: flex;
  align-items: center;
}
.footer-disclaimer {
  font-size: 9px;
  line-height: 1.7;
  margin-top: 15px;
  max-width: 900px;
}
.mobile-action {
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #f6f5f2f5;
  backdrop-filter: blur(12px);
  border-top: 1px solid #d3d8cc;
  transition: transform 0.25s;
}
.mobile-action.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.mobile-action .button {
  flex: 1;
  min-height: 45px;
  padding: 10px;
  font-size: 12px;
}
.mobile-call {
  font-size: 11px;
  padding: 12px 8px;
}
.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.dialog-head h2 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.dialog-close {
  background: #eceee8;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
  flex: none;
}
.video-dialog,
.request-dialog {
  border: 0;
  border-radius: 22px;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
  width: calc(100% - 24px);
  max-height: 90dvh;
  overflow: auto;
}
.video-dialog::backdrop,
.request-dialog::backdrop {
  background: #101a15cc;
  backdrop-filter: blur(6px);
}
.video-dialog {
  max-width: 950px;
}
.video-dialog video {
  display: block;
  background: #111;
  width: 100%;
  max-height: 70dvh;
  border-radius: 12px;
}
.video-dialog > a {
  display: inline-block;
  font-size: 11px;
  padding: 16px 0 0;
  text-decoration: underline;
}
.request-dialog {
  max-width: 580px;
}
.request-dialog > p {
  font-size: 12px;
  line-height: 1.7;
}
.request-dialog textarea {
  width: 100%;
  border: 1px solid #b9c1b3;
  border-radius: 12px;
  resize: vertical;
  background: white;
  padding: 15px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink);
  margin: 20px 0 16px;
}
.message-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.message-actions .button {
  font-size: 12px;
  padding: 15px 10px;
}
.copy-button {
  margin-top: 10px;
}
.request-dialog .copy-status {
  font-size: 10px;
}
.standalone .header {
  border-bottom: 1px solid var(--line);
}
.document {
  max-width: 840px;
  padding-block: 55px 80px;
}
.document h1 {
  font-size: clamp(34px, 6vw, 60px);
  margin: 18px 0 28px;
}
.document h2 {
  font-size: 26px;
  margin: 36px 0 18px;
}
.document p {
  font-size: 15px;
  line-height: 1.8;
  margin: 16px 0;
}
.document ol {
  padding-left: 25px;
}
.document li {
  padding: 12px 0 12px 6px;
  font-size: 15px;
  line-height: 1.7;
}
.document li strong {
  display: block;
}
.document li::marker {
  color: var(--red-dark);
  font-weight: 600;
}
.document .button {
  margin-top: 20px;
}
.document a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 600px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero-points {
    font-size: 12px;
  }
  .hero-photo {
    aspect-ratio: 1.7;
  }
  .hero-copy .button {
    width: auto;
    min-width: 330px;
  }
  .hero-checklist {
    text-align: left;
    padding-left: 5px;
  }
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-card:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .car-card:last-child .car-image {
    aspect-ratio: auto;
    min-height: 360px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .video-grid {
    grid-auto-columns: 43%;
  }
  .extra-video-list {
    grid-template-columns: 1fr 1fr;
  }
  .written-reviews {
    grid-template-columns: 1fr 1fr;
  }
  .quote-review {
    grid-column: 1/-1;
  }
  .country-grid {
    grid-template-columns: 1fr 1fr;
  }
  .country-title {
    align-items: flex-start;
  }
  .country-title h3 {
    font-size: 21px;
  }
  .checklist-banner {
    padding: 35px;
  }
  .checklist-banner > div:nth-child(2) {
    flex: 1;
  }
  .checklist-banner .button {
    width: auto;
  }
  .about-photo {
    height: 560px;
  }
  .direct-contact > span {
    width: auto;
    margin-right: auto;
    align-self: center;
  }
  .reviews-aside {
    align-self: flex-start;
  }
}
@media (min-width: 1000px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .header {
    height: 105px;
  }
  .brand-hm {
    font-size: 48px;
  }
  .brand-import {
    font-size: 19px;
  }
  .brand-import small {
    font-size: 7px;
  }
  .mobile-menu {
    display: none;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 11px;
  }
  .desktop-nav a {
    padding: 14px 0;
  }
  .desktop-nav a:hover {
    color: var(--red-dark);
  }
  .header-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 100px;
    color: white;
    background: var(--ink);
    padding: 14px 21px;
    font-size: 12px;
  }
  .header-phone span {
    font-size: 20px;
  }
  .hero {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 120px auto auto;
    min-height: 650px;
  }
  .hero-photo {
    grid-column: 1/9;
    grid-row: 1/3;
    height: 550px;
    aspect-ratio: auto;
    border-radius: 34px;
  }
  .hero-photo > img {
    object-position: 52% 50%;
  }
  .hero-photo figcaption {
    bottom: 28px;
    left: 28px;
    right: auto;
    max-width: 65%;
  }
  .photo-play {
    font-size: 13px;
    padding: 8px 20px 8px 8px;
    gap: 12px;
  }
  .photo-play small {
    font-size: 9px;
  }
  .photo-play .play-icon {
    width: 49px;
    height: 49px;
  }
  .hero-rating {
    grid-column: 10/13;
    grid-row: 1/2;
    order: 0;
    justify-self: start;
    margin: 12px 0 0 10px;
    z-index: 3;
  }
  .rating-link strong {
    font-size: 34px;
  }
  .rating-link small {
    font-size: 10px;
  }
  .hero-rating > p {
    font-size: 8px;
  }
  .hero-copy {
    grid-column: 7/13;
    grid-row: 2/4;
    align-self: start;
    background: var(--paper);
    border-radius: 32px 0 0 0;
    padding: 33px 0 0 35px;
    margin-left: 20px;
    margin-top: 15px;
  }
  .hero-copy:before {
    content: "";
    position: absolute;
    top: -32px;
    right: 33.3%;
    width: 32px;
    height: 32px;
    border-radius: 0 0 32px 0;
    box-shadow: 10px 10px 0 10px var(--paper);
    display: none;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 3.3vw, 47px);
    line-height: 1.08;
    letter-spacing: -0.052em;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .hero-lead {
    font-size: 13px;
    max-width: 420px;
    margin-top: 22px;
  }
  .hero-points {
    font-size: 10px;
    gap: 8px 15px;
    margin: 20px 0 23px;
  }
  .hero-copy .button {
    min-width: 310px;
    font-size: 13px;
    max-width: 100%;
    width: 100%;
  }
  .hero-checklist {
    text-align: center;
    font-size: 10px;
    max-width: 100%;
    padding-bottom: 0;
  }
  .hero-bottom {
    grid-column: 1/7;
    grid-row: 3/4;
    align-self: start;
    padding: 25px 20px 0 4px;
    margin-right: 20px;
  }
  .hero-bottom p {
    font-size: 12px;
  }
  .hero-bottom > a {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin-left: auto;
    font-size: 9px;
    white-space: nowrap;
  }
  .hero-bottom > a span {
    font-size: 24px;
  }
  .section {
    padding-block: 95px;
  }
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: 45px;
    margin-bottom: 38px;
  }
  .section-head > p {
    font-size: 13px;
    max-width: 340px;
    padding-bottom: 3px;
  }
  .section-head h2 {
    font-size: 46px;
  }
  .section-head .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .car-card:last-child {
    grid-column: auto;
    display: block;
  }
  .car-card:last-child .car-image {
    aspect-ratio: 1.3;
    min-height: 0;
  }
  .car-image {
    aspect-ratio: 1.3;
  }
  .car-info {
    padding: 24px;
  }
  .car-info h3 {
    font-size: 26px;
  }
  .car-info p {
    font-size: 11px;
    min-height: 52px;
  }
  .car-info dd {
    font-size: 12px;
  }
  .section-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cost-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 65px;
    padding: 50px 55px;
    border-radius: 36px;
    align-items: center;
  }
  .cost-intro .eyebrow {
    font-size: 9px;
  }
  .cost-intro h2 {
    font-size: 43px;
  }
  .cost-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .cost-intro .button {
    font-size: 13px;
    max-width: 340px;
  }
  .estimate {
    margin: 0;
    padding: 26px 30px;
  }
  .estimate li span {
    font-size: 15px;
  }
  .estimate li small {
    font-size: 10px;
  }
  .objections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
  .objections h3 {
    font-size: 25px;
  }
  .objections p {
    font-size: 12px;
    min-height: 130px;
  }
  .about-section {
    grid-template-columns: 1fr 1.16fr;
    gap: 60px;
    align-items: center;
  }
  .about-photo {
    height: 570px;
    border-radius: 34px;
  }
  .about-copy {
    padding-right: 10px;
  }
  .about-copy .eyebrow {
    font-size: 9px;
  }
  .about-copy h2 {
    font-size: 42px;
  }
  .about-copy > p.about-lead {
    font-size: 16px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 12px;
  }
  .about-copy blockquote {
    font-size: 13px;
  }
  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
  }
  .process-list li {
    padding: 0;
  }
  .step-number {
    position: static;
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
  }
  .process-list h3 {
    font-size: 23px;
  }
  .process-list h3 br {
    display: block;
  }
  .process-list p {
    font-size: 11px;
    min-height: 94px;
  }
  .process-list small {
    font-size: 9px;
    line-height: 1.6;
    max-width: 160px;
  }
  .process-note {
    margin-top: 35px;
    padding: 20px 25px;
  }
  .reviews-section {
    border-radius: 40px;
    padding: 70px 0;
  }
  .reviews-aside {
    padding-right: 18px;
    align-self: end;
  }
  .reviews-aside > p {
    font-size: 9px;
  }
  .video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 20px;
    overflow: visible;
    padding-bottom: 0;
  }
  .video-cover {
    aspect-ratio: 0.79;
  }
  .video-card h3 {
    font-size: 21px;
  }
  .video-card > p {
    font-size: 10px;
  }
  .written-reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
  }
  .written-review {
    padding: 26px;
  }
  .quote-review {
    grid-column: auto;
  }
  .written-review blockquote {
    font-size: 13px;
    min-height: 125px;
  }
  .quote-review blockquote {
    font-size: 21px;
    min-height: 0;
  }
  .review-top {
    font-size: 11px;
  }
  .review-top small {
    font-size: 8px;
  }
  .country {
    padding: 35px;
  }
  .country-title h3 {
    font-size: 27px;
    align-self: center;
  }
  .country p,
  .country li {
    font-size: 13px;
  }
  .country-code {
    width: 52px;
    height: 52px;
  }
  .country ul {
    margin-bottom: 20px;
  }
  .geography {
    grid-template-columns: 1fr 1.5fr;
    gap: 65px;
    align-items: center;
    padding-top: 35px;
    margin-top: 35px;
  }
  .geography h3 {
    font-size: 29px;
  }
  .geography p {
    font-size: 13px;
  }
  .checklist-banner {
    padding: 35px 45px;
    gap: 45px;
    flex-wrap: nowrap;
  }
  .checklist-number {
    font-size: 100px;
  }
  .checklist-number span {
    font-size: 10px;
  }
  .checklist-banner h2 {
    font-size: 35px;
  }
  .checklist-banner p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 15px;
    max-width: 550px;
  }
  .checklist-banner .button {
    flex: none;
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 50px;
    align-items: start;
  }
  .faq-intro h2 {
    font-size: 46px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 24px 0;
  }
  .faq-list details > p {
    font-size: 13px;
  }
  .contact-panel {
    grid-template-columns: 1fr 1.03fr;
    padding: 50px 55px;
    gap: 70px;
    border-radius: 36px;
    align-items: center;
  }
  .contact-copy h2 {
    font-size: 43px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-person {
    margin-top: 35px;
  }
  .contact-person a {
    font-size: 19px;
  }
  .request-form .button {
    font-size: 13px;
  }
  .direct-contact {
    padding: 20px 30px 0;
    font-size: 12px;
  }
  .footer {
    padding: 60px 0 25px;
  }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .footer-bottom {
    font-size: 10px;
    align-items: center;
  }
  .footer-disclaimer {
    font-size: 9px;
    margin-top: 18px;
  }
  .mobile-action {
    display: none;
  }
  .dialog-head h2 {
    font-size: 24px;
  }
  .video-dialog,
  .request-dialog {
    padding: 28px;
  }
  .document {
    padding-block: 65px 100px;
  }
}
@media (min-width: 1250px) {
  .hero {
    grid-template-rows: 135px auto auto;
    min-height: 670px;
  }
  .hero-photo {
    height: 600px;
  }
  .hero-copy {
    margin-left: 40px;
    padding: 38px 0 0 42px;
  }
  .hero-copy h1 {
    font-size: 47px;
  }
  .hero-lead {
    font-size: 14px;
    max-width: 465px;
  }
  .hero-points {
    font-size: 11px;
    gap: 9px 20px;
    margin: 24px 0;
  }
  .hero-copy .button {
    max-width: 430px;
    min-height: 60px;
    font-size: 14px;
  }
  .hero-checklist {
    max-width: 430px;
    font-size: 11px;
    padding-top: 17px;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  .hero-rating {
    margin-left: 0;
    grid-column: 10/13;
  }
  .hero-bottom p {
    font-size: 13px;
  }
  .hero-bottom > a {
    font-size: 10px;
  }
  .hero-bottom {
    padding-top: 28px;
  }
  .section-head h2 {
    font-size: 52px;
  }
  .section-head > p {
    font-size: 14px;
    max-width: 355px;
  }
  .cost-intro h2 {
    font-size: 49px;
  }
  .cost-panel {
    padding: 58px 65px;
    gap: 95px;
  }
  .cost-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .estimate {
    padding: 30px 35px;
  }
  .estimate li {
    padding-block: 14px;
  }
  .estimate li span {
    font-size: 16px;
  }
  .estimate li small {
    font-size: 11px;
  }
  .estimate-caption {
    font-size: 10px;
  }
  .estimate-total strong {
    font-size: 16px;
  }
  .estimate-total small {
    font-size: 11px;
  }
  .car-info {
    padding: 28px;
  }
  .car-info h3 {
    font-size: 29px;
  }
  .car-info p {
    font-size: 12px;
    min-height: 48px;
  }
  .car-info dd {
    font-size: 14px;
  }
  .car-info dt {
    font-size: 11px;
  }
  .objections h3 {
    font-size: 29px;
  }
  .objections p {
    font-size: 13px;
    min-height: 140px;
  }
  .about-section {
    gap: 85px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .about-copy h2 {
    font-size: 46px;
  }
  .about-photo {
    height: 625px;
  }
  .about-copy > p.about-lead {
    font-size: 18px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 14px;
  }
  .about-copy blockquote {
    font-size: 15px;
  }
  .photo-label {
    padding: 18px;
    font-size: 13px;
  }
  .photo-label small {
    font-size: 10px;
  }
  .process-list {
    gap: 32px;
  }
  .process-list p {
    font-size: 12px;
  }
  .process-list h3 {
    font-size: 26px;
  }
  .process-list small {
    font-size: 10px;
  }
  .reviews-section {
    padding-block: 85px;
  }
  .review-top {
    font-size: 12px;
  }
  .written-review blockquote {
    font-size: 15px;
    min-height: 150px;
  }
  .quote-review blockquote {
    font-size: 24px;
    min-height: 0;
  }
  .country {
    padding: 40px;
  }
  .contact-panel {
    padding: 65px;
    gap: 90px;
  }
  .contact-copy h2 {
    font-size: 49px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .request-form input,
  .request-form select {
    height: 58px;
    font-size: 13px;
  }
  .request-form label {
    font-size: 12px;
  }
  .request-form .button {
    min-height: 60px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  body {
    background: white;
  }
  .header,
  .footer,
  .mobile-action,
  dialog,
  .no-print {
    display: none !important;
  }
  .document {
    max-width: none;
    padding: 0;
  }
  .document h1 {
    font-size: 28px;
  }
  .document h2 {
    font-size: 20px;
  }
  .document li {
    font-size: 12px;
    padding: 8px 0;
    break-inside: avoid;
  }
  .document p {
    font-size: 12px;
  }
  .document a:after {
    content: none;
  }
}
@media (max-width: 999px) {
  .car-info p,
  .objections p,
  .about-copy > p:not(.eyebrow):not(.about-lead),
  .process-list p,
  .country p,
  .country li,
  .faq-list details > p,
  .geography p {
    font-size: 14px;
  }
  .car-info dt,
  .car-year,
  .tag,
  .section-foot p,
  .photo-label small,
  .process-list small,
  .video-card > p,
  .video-card > a,
  .review-top small,
  .country .text-link,
  .direct-contact,
  .footer-top > p {
    font-size: 11px;
  }
  .car-info dd,
  .text-link,
  .car-info .text-link,
  .objections .text-link,
  .about-actions .text-link,
  .hero-checklist,
  .section-foot .text-link {
    font-size: 12px;
  }
  .request-form input,
  .request-form select,
  .request-dialog textarea {
    font-size: 16px;
  }
  .request-form label,
  .form-note,
  .request-dialog .copy-status {
    font-size: 11px !important;
  }
  .written-review blockquote {
    font-size: 15px;
  }
  .quote-review blockquote {
    font-size: 21px;
  }
  .video-card > a {
    padding-block: 13px;
    min-height: 44px;
  }
  .car-info p {
    min-height: 0;
  }
}
.document-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  margin: 30px 0;
}
.document .fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  margin: 25px 0;
}
.fact-list dt {
  font-size: 12px;
  color: var(--muted);
}
.fact-list dd {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 550;
}
.document .related {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.vk-mark {
  background: #006be6;
}
.objection-mark,
.country-code,
.checklist-number > span {
  color: var(--red-dark);
}
.quote-review .review-top small {
  color: #50574b;
}
.hero-lead,
.cost-intro > p:not(.eyebrow):not(.cost-note),
.objections p,
.about-copy > p:not(.eyebrow):not(.about-lead),
.process-list p,
.country p,
.country li,
.geography p,
.faq-list details > p,
.contact-copy > p:not(.eyebrow) {
  font-size: 16px;
}
.car-info p,
.estimate li small,
.estimate-total small,
.estimate-caption,
.process-note p,
.checklist-banner p:not(.eyebrow) {
  font-size: 14px;
}
.objections p,
.process-list p,
.car-info p {
  min-height: 0;
}
.process-list li {
  display: flex;
  flex-direction: column;
}
.process-list small {
  margin-top: auto;
  padding-top: 16px;
}
@media (min-width: 1000px) {
  .car-card {
    display: flex;
    flex-direction: column;
  }
  .car-card:last-child {
    display: flex;
  }
  .car-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .car-info > .text-link {
    margin-top: auto;
  }
  .objections article {
    display: flex;
    flex-direction: column;
  }
  .objections .text-link {
    margin-top: auto;
  }
}
html {
  scroll-padding-top: 110px;
}
[hidden] {
  display: none !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f6f5f2f5;
  border-bottom: 1px solid #24252510;
  backdrop-filter: blur(16px);
}
.header,
.standalone .header {
  height: 76px;
}
.header-actions {
  display: none;
}
.brand-import small {
  font-size: 8px;
  margin-top: 3px;
}
.mobile-menu nav {
  top: 68px;
  max-height: calc(100dvh - 100px);
  overflow: auto;
}
.reading-progress {
  height: 2px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
}
@supports (animation-timeline: scroll()) {
  .reading-progress {
    animation: reading linear;
    animation-timeline: scroll(root block);
  }
  @keyframes reading {
    to {
      transform: scaleX(1);
    }
  }
}
.hero {
  margin-top: 20px;
}
.eyebrow,
.hero-copy .eyebrow {
  font-size: 11px;
}
.hero-points {
  font-size: 12px;
}
.hero-checklist {
  font-size: 13px;
}
.hero-rating > p {
  font-size: 10px;
}
.button-white {
  color: var(--ink);
  background: white;
}
.button-white:hover {
  background: #ffebe6;
}
.social-arrow {
  transition: transform 0.22s ease;
}
.social-link:hover .social-arrow {
  transform: translate(3px, -3px);
}
.catalog-section {
  padding-block: 70px 25px;
}
.catalog-layout {
  display: grid;
  gap: 28px;
}
.catalog-intro {
  padding: 28px;
  background: var(--red-dark);
  color: white;
  border-radius: 24px;
}
.catalog-intro .eyebrow,
.catalog-intro p,
.catalog-intro h2 em {
  color: white;
}
.catalog-intro h2 {
  font-size: 36px;
}
.catalog-intro h2 br {
  display: none;
}
.catalog-intro > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 16px;
}
.catalog-range {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ffffff45;
  padding-top: 22px;
  margin-top: 24px;
}
.catalog-range > span {
  font-size: 12px;
}
.catalog-range strong {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 550;
  letter-spacing: -0.06em;
}
.catalog-range small {
  font-size: 22px;
  letter-spacing: -0.035em;
}
.catalog-intro .button {
  margin-top: 24px;
  width: 100%;
  font-size: 14px;
  padding-inline: 16px;
}
.catalog-intro .catalog-caveat {
  display: none;
}
.catalog-content {
  min-width: 0;
}
.catalog-controls {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}
.catalog-controls button {
  background: transparent;
  border: 1px solid #c5c7c0;
  border-radius: 100px;
  padding: 10px 14px;
  min-height: 44px;
  font-size: 12px;
  transition:
    background 0.2s,
    color 0.2s;
}
.catalog-controls button.is-active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.catalog-controls button:hover:not(.is-active) {
  background: white;
}
.catalog-note {
  font-size: 13px;
  line-height: 1.65;
  max-width: 850px;
  margin-bottom: 26px;
}
.catalog-note strong {
  font-weight: 550;
  color: var(--ink);
}
.offers-grid {
  display: grid;
  gap: 22px;
}
.offer-card {
  min-width: 0;
  background: white;
  border: 1px solid #e3e3dc;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.offer-card:hover {
  border-color: #c2c6ba;
  box-shadow: 0 10px 24px #23252508;
}
.offer-image {
  display: block;
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #e8e9e3;
}
.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offer-image:hover img {
  transform: scale(1.025);
}
.offer-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 100px;
  background: #ffffffed;
  color: var(--ink);
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 550;
}
.offer-source {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white url(assets/social/telegram.svg) center / 22px no-repeat;
  box-shadow: 0 2px 10px rgb(0 0 0 / 18%);
}
.offer-source--vk {
  background-image: url(assets/social/vk.svg);
}
.offer-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offer-spec {
  font-size: 12px;
  margin-bottom: 8px;
}
.offer-body h3 {
  font-size: 27px;
  font-weight: 600;
}
.offer-engine {
  margin-top: 12px;
  font-size: 13px;
}
.offer-benefit {
  margin: 7px 0 22px;
  font-size: 13px;
  line-height: 1.65;
}
.offer-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.offer-price strong {
  display: block;
  font-size: 31px;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.offer-price > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin-top: 4px;
}
.offer-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}
.offer-cta:hover {
  color: var(--red-dark);
}
.footer {
  margin-top: 70px;
  padding: 50px 0 110px;
  background: white;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  gap: 38px;
}
.footer-identity {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
}
.identity-art {
  position: relative;
  flex: 0 0 59%;
  aspect-ratio: 405 / 312;
  overflow: hidden;
}
.identity-art img {
  position: absolute;
  max-width: none;
  width: 343.21%;
  height: auto;
  left: -123.456%;
  top: -3%;
}
.footer-wordmark {
  flex: 1;
  min-width: 0;
  padding-left: 10px;
}
.footer-wordmark > span {
  display: block;
  font-size: clamp(48px, 9vw, 86px);
  font-weight: 850;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.1em;
}
.footer-wordmark > strong {
  display: block;
  color: var(--red-dark);
  font-size: clamp(24px, 4.3vw, 44px);
  font-weight: 850;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.footer-wordmark p {
  color: var(--ink);
  font-size: 8px;
  font-weight: 650;
  line-height: 1.6;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.footer-connect .eyebrow {
  margin-bottom: 12px;
}
.footer-phone {
  display: inline-block;
  font-size: clamp(28px, 7.5vw, 44px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.3;
}
.footer-phone:hover {
  color: var(--red-dark);
}
.footer-connect > p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 8px;
}
.social-grid {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.social-link {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  border: 1px solid #e3e3dc;
  border-radius: 16px;
  padding: 13px 16px;
  transition: background 0.2s;
}
.social-link:hover {
  background: var(--paper);
}
.social-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #1887bc;
}
.social-icon img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
.social-vk .social-icon {
  background: #0077ff;
}
.social-max .social-icon {
  background: #471aff;
}
.social-max .social-icon img {
  width: 32px;
  height: 32px;
  filter: none;
}
.social-whatsapp .social-icon {
  background: #198649;
}
.social-link strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.social-link small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.social-arrow {
  margin-left: auto;
  font-size: 20px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
  padding: 24px 0;
  margin-top: 38px;
  border-block: 1px solid var(--line);
}
.footer-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
}
.footer-navigation a:hover,
.footer-bottom a:hover {
  color: var(--red-dark);
}
.footer-bottom {
  border: 0;
  gap: 20px 40px;
  padding: 26px 0 0;
  margin-top: 0;
  font-size: 11px;
  line-height: 1.75;
}
.footer-bottom > span a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer {
  font-size: 11px;
  max-width: 1080px;
  margin-top: 20px;
  line-height: 1.7;
}
@media (min-width: 600px) {
  .offers-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-intro {
    padding: 36px;
  }
  .catalog-intro h2 {
    max-width: 430px;
    font-size: 44px;
  }
  .catalog-intro .button {
    max-width: 340px;
  }
  .footer-wordmark p {
    font-size: 12px;
  }
  .header-actions {
    display: flex;
    margin-left: auto;
  }
  .header-cta {
    min-height: 44px;
    font-size: 12px;
    padding: 12px 18px;
  }
}
@media (min-width: 1000px) {
  .wrap {
    width: calc(100% - 96px);
  }
  .header,
  .standalone .header {
    height: 90px;
    gap: 24px;
  }
  .desktop-nav {
    gap: 23px;
    font-size: 13px;
    margin-left: auto;
  }
  .header-actions {
    margin-left: auto;
    gap: 24px;
    align-items: center;
  }
  .header-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
    background: none;
    color: var(--ink);
    padding: 0;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
  }
  .header-phone small {
    font-size: 10px;
    color: var(--muted);
    font-weight: 450;
  }
  .header-cta {
    display: none;
  }
  .brand-hm {
    font-size: 43px;
  }
  .brand-import {
    font-size: 17px;
  }
  .hero {
    margin-top: 26px;
    grid-template-rows: 140px auto auto;
  }
  .hero-copy {
    padding: 36px 0 0 38px;
    margin-left: 12px;
  }
  .hero-copy h1 {
    font-size: clamp(37px, 3.7vw, 80px);
  }
  .hero-lead {
    max-width: 640px;
  }
  .hero-points {
    font-size: 12px;
  }
  .hero-copy .button {
    font-size: 15px;
    max-width: 470px;
  }
  .hero-checklist {
    max-width: 470px;
    font-size: 12px;
  }
  .hero-bottom p {
    font-size: 14px;
  }
  .hero-bottom > a {
    font-size: 11px;
  }
  .rating-link small {
    font-size: 12px;
  }
  .hero-rating {
    grid-column: 9/13;
    margin-left: 38px;
  }
  .hero-rating > p {
    font-size: 10px;
  }
  .catalog-section {
    padding-top: 100px;
  }
  .catalog-layout {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2.6fr);
    gap: 28px;
    align-items: start;
  }
  .catalog-intro {
    position: sticky;
    top: 124px;
    padding: 30px 26px;
    border-radius: 28px;
  }
  .catalog-intro h2 {
    font-size: clamp(32px, 2.8vw, 54px);
  }
  .catalog-intro h2 br {
    display: block;
  }
  .catalog-intro > p:not(.eyebrow) {
    font-size: 15px;
  }
  .catalog-intro .catalog-caveat {
    display: block;
    font-size: 12px;
  }
  .catalog-controls button {
    font-size: 14px;
    padding-inline: 22px;
  }
  .catalog-note {
    font-size: 14px;
  }
  .offer-body {
    padding: 24px;
  }
  .offer-body h3 {
    font-size: 29px;
  }
  .offer-price strong {
    font-size: 34px;
  }
  .section-head > p {
    font-size: 16px;
    max-width: 400px;
  }
  .section-head h2,
  .cost-intro h2,
  .about-copy h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: 46px;
  }
  .section-head .eyebrow,
  .cost-intro .eyebrow,
  .about-copy .eyebrow {
    font-size: 11px;
  }
  .text-link {
    font-size: 14px;
  }
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .process-list li {
    padding: 28px 24px 30px 0;
    margin-right: 24px;
    border-bottom: 1px solid var(--line);
  }
  .process-list li:last-child {
    grid-column: span 2;
    margin: 0;
    padding: 28px;
    background: #edeae2;
    border-radius: 0 0 24px 0;
  }
  .process-list h3 {
    font-size: 24px;
  }
  .process-list p {
    font-size: 16px;
  }
  .process-list small {
    font-size: 12px;
    max-width: none;
  }
  .process-list .step-number {
    margin-bottom: 20px;
  }
  .process-note p {
    max-width: 1100px;
  }
  .faq-list summary {
    font-size: 18px;
  }
  .request-form input,
  .request-form select {
    font-size: 16px;
  }
  .request-form label {
    font-size: 14px;
  }
  .footer {
    margin-top: 90px;
    padding: 70px 0 32px;
  }
  .footer-main {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 70px;
  }
  .footer-phone {
    font-size: 40px;
  }
  .footer-navigation {
    margin-top: 55px;
    gap: 0 45px;
  }
  .footer-navigation a {
    font-size: 15px;
  }
  .footer-bottom {
    justify-content: space-between;
    font-size: 12px;
  }
  .footer-bottom > span:nth-child(2) {
    margin-right: auto;
  }
}
@media (min-width: 1250px) {
  .header-cta {
    display: inline-flex;
  }
  .hero-photo {
    height: clamp(620px, 38vw, 860px);
  }
  .hero {
    min-height: 740px;
  }
}
@media (min-width: 1600px) {
  .header,
  .standalone .header {
    height: 104px;
  }
  html {
    scroll-padding-top: 130px;
  }
  .desktop-nav {
    gap: 38px;
    font-size: 16px;
  }
  .header-phone {
    font-size: 19px;
  }
  .header-phone small {
    font-size: 12px;
  }
  .header-cta {
    font-size: 16px;
    min-height: 52px;
    padding-inline: 26px;
  }
  .brand-hm {
    font-size: 53px;
  }
  .brand-import {
    font-size: 21px;
  }
  .brand-import small {
    font-size: 9px;
  }
  .hero {
    grid-template-rows: 160px auto auto;
    min-height: 850px;
    margin-top: 32px;
  }
  .hero-copy {
    padding: 48px 0 0 58px;
    margin-left: 18px;
    border-top-left-radius: 44px;
    min-height: calc(clamp(620px, 38vw, 860px) - 175px);
  }
  .hero-copy .eyebrow {
    font-size: 13px;
    margin-bottom: 22px;
  }
  .hero-lead {
    font-size: 21px;
    margin-top: 28px;
  }
  .hero-points {
    font-size: 15px;
    gap: 12px 24px;
    margin-block: 28px;
  }
  .hero-copy .button {
    font-size: 18px;
    min-height: 68px;
    max-width: 540px;
  }
  .hero-checklist {
    font-size: 14px;
    max-width: 540px;
  }
  .hero-bottom {
    padding-top: 34px;
  }
  .hero-bottom p {
    font-size: 18px;
  }
  .hero-bottom > a {
    font-size: 14px;
  }
  .hero-rating {
    margin: 24px 0 0 58px;
  }
  .rating-link strong {
    font-size: 44px;
  }
  .rating-link small {
    font-size: 14px;
  }
  .hero-rating > p {
    font-size: 12px;
  }
  .vk-mark {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }
  .photo-play {
    padding: 12px 26px 12px 12px;
    font-size: 17px;
  }
  .photo-play small {
    font-size: 12px;
  }
  .photo-play .play-icon {
    width: 58px;
    height: 58px;
  }
  .catalog-section {
    padding-top: 110px;
  }
  .catalog-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 3fr);
    gap: 40px;
  }
  .catalog-intro {
    top: 140px;
    padding: 40px 32px;
  }
  .catalog-intro .eyebrow {
    font-size: 12px;
  }
  .catalog-intro > p:not(.eyebrow) {
    font-size: 18px;
  }
  .catalog-intro .catalog-caveat {
    font-size: 14px;
  }
  .catalog-range {
    margin-top: 32px;
    padding-top: 30px;
  }
  .catalog-range strong {
    font-size: 66px;
  }
  .catalog-range > span {
    font-size: 14px;
  }
  .catalog-intro .button {
    min-height: 60px;
    font-size: 15px;
  }
  .offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .catalog-note {
    font-size: 16px;
    max-width: 1080px;
  }
  .offer-body {
    padding: 28px;
  }
  .offer-spec,
  .offer-engine,
  .offer-benefit,
  .offer-cta {
    font-size: 15px;
  }
  .offer-body h3 {
    font-size: 32px;
  }
  .offer-price strong {
    font-size: 40px;
  }
  .offer-price > span {
    font-size: 13px;
  }
  .section {
    padding-block: 110px;
  }
  .section-head {
    margin-bottom: 48px;
  }
  .section-head h2,
  .cost-intro h2,
  .about-copy h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: clamp(54px, 2.8vw, 68px);
  }
  .eyebrow,
  .section-head .eyebrow,
  .about-copy .eyebrow,
  .cost-intro .eyebrow {
    font-size: 13px;
  }
  .section-head > p {
    font-size: 19px;
    max-width: 530px;
  }
  .car-info {
    padding: 36px;
  }
  .car-info h3 {
    font-size: 38px;
  }
  .car-info dt {
    font-size: 14px;
  }
  .car-info dd {
    font-size: 18px;
  }
  .car-info p,
  .section-foot p {
    font-size: 17px;
  }
  .text-link {
    font-size: 16px;
  }
  .case-grid {
    gap: 28px;
  }
  .cost-panel,
  .contact-panel {
    padding: 80px;
    gap: 100px;
  }
  .cost-intro > p:not(.eyebrow):not(.cost-note),
  .about-copy > p:not(.eyebrow):not(.about-lead),
  .objections p,
  .country p,
  .country li,
  .geography p,
  .faq-list details > p,
  .contact-copy > p:not(.eyebrow) {
    font-size: 20px;
  }
  .cost-intro > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    max-width: 660px;
  }
  .cost-intro .button {
    font-size: 17px;
    min-height: 64px;
    max-width: 400px;
  }
  .estimate {
    padding: 40px;
  }
  .estimate-head {
    font-size: 15px;
  }
  .estimate li span,
  .estimate-total strong {
    font-size: 21px;
  }
  .estimate li small,
  .estimate-caption,
  .estimate-total small {
    font-size: 16px;
  }
  .objections {
    gap: 60px;
  }
  .objections h3 {
    font-size: 35px;
  }
  .about-section {
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
  }
  .about-photo {
    height: 800px;
  }
  .about-copy > p.about-lead {
    font-size: 25px;
  }
  .about-copy blockquote {
    font-size: 21px;
  }
  .about-copy cite {
    font-size: 14px;
  }
  .about-actions .button {
    font-size: 17px;
    min-height: 62px;
  }
  .process-list li {
    padding-block: 36px;
    margin-right: 32px;
  }
  .process-list li:last-child {
    padding: 36px;
  }
  .process-list h3 {
    font-size: 32px;
  }
  .process-list p {
    font-size: 19px;
  }
  .process-list small {
    font-size: 14px;
  }
  .process-note p {
    font-size: 17px;
  }
  .video-grid,
  .written-reviews {
    gap: 28px;
  }
  .video-card h3 {
    font-size: 29px;
  }
  .video-card > p,
  .video-card > a,
  .reviews-aside > p {
    font-size: 14px;
  }
  .written-review {
    padding: 34px;
  }
  .written-review blockquote {
    font-size: 19px;
    min-height: 170px;
  }
  .quote-review blockquote {
    font-size: 29px;
  }
  .review-top {
    font-size: 15px;
  }
  .review-top small {
    font-size: 12px;
  }
  .extra-video-list h3 {
    font-size: 23px;
  }
  .extra-video-list p,
  .extra-video-list a,
  .extra-video-list .text-link {
    font-size: 15px;
  }
  .country {
    padding: 50px;
  }
  .country-title h3 {
    font-size: 36px;
  }
  .geography h3 {
    font-size: 37px;
  }
  .checklist-banner {
    padding: 50px 60px;
    gap: 60px;
  }
  .checklist-banner h2 {
    font-size: 44px;
  }
  .checklist-banner p:not(.eyebrow) {
    font-size: 17px;
    max-width: 760px;
  }
  .checklist-banner .button {
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 23px;
    padding-block: 30px;
  }
  .faq-intro > p:not(.eyebrow) {
    font-size: 18px;
  }
  .request-form label {
    font-size: 16px;
  }
  .request-form input,
  .request-form select {
    height: 68px;
    font-size: 18px;
    padding-inline: 22px;
  }
  .request-form .button {
    font-size: 18px;
    min-height: 68px;
  }
  .form-note {
    font-size: 13px;
  }
  .contact-person a {
    font-size: 25px;
  }
  .contact-person strong {
    font-size: 17px;
  }
  .direct-contact {
    font-size: 16px;
    gap: 30px;
  }
  .footer {
    padding-top: 90px;
  }
  .footer-main {
    gap: 120px;
  }
  .footer-wordmark > span {
    font-size: 120px;
  }
  .footer-wordmark > strong {
    font-size: 59px;
  }
  .footer-wordmark p {
    font-size: 14px;
  }
  .footer-phone {
    font-size: 58px;
  }
  .footer-connect > p:not(.eyebrow) {
    font-size: 17px;
  }
  .social-grid {
    gap: 14px;
    margin-top: 30px;
  }
  .social-link {
    min-height: 94px;
    padding: 18px 22px;
  }
  .social-link strong {
    font-size: 19px;
  }
  .social-link small {
    font-size: 13px;
  }
  .footer-navigation a {
    font-size: 18px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .footer-disclaimer {
    max-width: 1400px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-pending {
    opacity: 0;
    transform: translateY(18px);
  }
  .reveal-ready {
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }
}
@media print {
  .site-header {
    position: static;
  }
  .catalog-intro {
    position: static;
  }
}
.hero.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  min-height: 0;
  margin-block: 30px 0;
  padding-block: 0;
}
.hero-intro,
.hero-evidence {
  min-width: 0;
}
.hero-intro > .eyebrow {
  margin-bottom: 20px;
}
.hero-intro h1 {
  font-size: clamp(29px, 7.2vw, 52px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.052em;
}
.hero-intro h1 em {
  color: var(--red-dark);
}
.hero-description {
  font-size: 16px;
  line-height: 1.65;
  max-width: 570px;
  margin-top: 24px;
}
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  font-size: 12px;
}
.hero-assurance span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-assurance span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 30px;
}
.hero-actions .button {
  width: 100%;
  max-width: 380px;
}
.hero-secondary {
  min-height: 44px;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}
.hero-secondary:hover {
  color: var(--red-dark);
}
.hero-proof {
  margin-top: 20px;
}
.hero-proof .rating-link {
  gap: 12px;
}
.hero-proof .rating-link strong {
  font-size: 32px;
}
.hero-proof .rating-link small {
  font-size: 11px;
}
.hero-proof > p {
  margin-top: 7px;
  font-size: 9px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 8px 24px;
  background: #e1e3df;
}
.hero-visual > img,
.hero-visual > picture > img {
  width: 100%;
  aspect-ratio: 1.23;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: white;
}
.delivery-caption {
  font-size: 11px;
  line-height: 1.5;
}
.delivery-caption strong {
  display: block;
  font-size: 11px;
  font-weight: 550;
  margin-top: 4px;
  color: var(--muted);
}
.small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
}
.delivery-play {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  background: transparent;
  padding: 0;
}
.delivery-play > span:last-child {
  display: none;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
.delivery-play .play-icon {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  background: var(--red-dark);
  color: white;
  font-size: 13px;
}
.delivery-play:hover .play-icon {
  background: var(--ink);
}
.hero-route {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 6px 3px;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.06em;
}
.hero-route > span:first-child {
  max-width: 93px;
}
.hero-route > strong {
  max-width: 95px;
  font-size: inherit;
  font-weight: 550;
  text-align: right;
}
.route-track {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
  min-width: 55px;
}
.route-track::before {
  content: "";
  position: absolute;
  width: 100%;
  border-top: 1px solid #b9bdb5;
}
.route-car {
  position: relative;
  background: var(--paper);
  width: 72px;
  height: 32px;
  padding-inline: 5px;
  color: var(--red-dark);
}
.contact-section {
  padding-block: 32px 22px;
}
.contact-panel {
  background: #232726;
  border-radius: 24px;
  padding: 30px 22px;
}
.contact-copy h2 em {
  color: white;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 15px;
  max-width: 470px;
  line-height: 1.7;
}
.request-form input,
.request-form select {
  background: #fff;
  color: var(--ink);
  border-color: white;
  border-radius: 12px;
  font-size: 16px;
  color-scheme: light;
}
.request-form input::placeholder {
  color: #626661;
}
.request-form label {
  font-size: 13px;
}
.request-form .button {
  font-size: 14px;
}
.form-note {
  font-size: 11px !important;
}
.direct-contact {
  font-size: 13px;
}
.catalog-section {
  padding-block: 62px 24px;
}
.catalog-layout {
  display: block;
}
.catalog-intro {
  position: static;
  display: grid;
  gap: 24px;
  padding: 0;
  margin-bottom: 30px;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}
.catalog-intro .eyebrow,
.catalog-intro p {
  color: var(--muted);
}
.catalog-intro h2 {
  font-size: clamp(34px, 7.5vw, 58px);
  max-width: none;
}
.catalog-intro h2 em {
  color: var(--red-dark);
}
.catalog-intro h2 br {
  display: block;
}
.catalog-summary {
  display: flex;
  align-items: center;
  gap: 24px;
}
.catalog-summary > p {
  font-size: 14px;
  max-width: 290px;
}
.catalog-range {
  flex: none;
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 0 0 20px;
  margin: 0;
}
.catalog-range > span {
  max-width: 100px;
  font-size: 10px;
}
.catalog-range strong {
  font-size: 38px;
  line-height: 1.1;
  margin-top: 8px;
  white-space: nowrap;
}
.catalog-range small {
  display: block;
  font-size: 15px;
  letter-spacing: -0.025em;
  margin-top: 4px;
}
.catalog-note {
  max-width: 1080px;
}
.offers-grid {
  gap: 24px;
}
.offer-card {
  border-radius: 20px;
  border-color: #e6e6df;
}
.offer-image {
  aspect-ratio: 1.65;
}
.electric-section {
  display: grid;
  gap: 26px;
  margin-block: 70px 28px;
}
.electric-copy h2 {
  font-size: clamp(32px, 7.9vw, 58px);
}
.electric-copy h2 em {
  color: #3f6155;
}
.electric-copy .electric-lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 24px;
  max-width: 440px;
}
.electric-copy > p:not(.eyebrow):not(.electric-lead) {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 460px;
}
.electric-copy .button {
  margin-top: 28px;
  font-size: 13px;
}
.electric-showcase {
  position: relative;
  padding: 22px 18px;
  min-width: 0;
  background: #e8ece6;
  border-radius: 26px;
  overflow: hidden;
}
.electric-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 650;
}
.electric-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #477362;
  border-radius: 50%;
}
.electric-showcase > picture {
  display: block;
  position: relative;
  margin: 5px -15px 0;
}
.electric-showcase > picture img {
  width: 100%;
}
.electric-case {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  border-top: 1px solid #c6d2c5;
  padding-top: 22px;
  margin-top: 22px;
}
.electric-video {
  position: relative;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #dadfd5;
}
.electric-video img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.electric-video .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
}
.electric-case .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.electric-case h3 {
  font-size: 20px;
  line-height: 1.2;
}
.electric-price {
  display: block;
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -0.04em;
  margin: 12px 0 6px;
}
.electric-case p:not(.eyebrow) {
  font-size: 11px;
  line-height: 1.65;
}
.electric-case .text-link {
  font-size: 11px;
  margin-top: 5px;
}
.util-panel {
  display: grid;
  gap: 30px;
  padding: 38px 4px 0;
}
.util-heading h2 {
  font-size: clamp(30px, 7vw, 46px);
}
.util-heading > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  max-width: 450px;
  margin-top: 22px;
}
.util-heading .text-link {
  margin-top: 12px;
}
.util-answers article {
  display: flex;
  gap: 18px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.util-answers article > span {
  font-size: 12px;
  color: var(--red-dark);
  font-weight: 600;
  padding-top: 3px;
}
.util-answers h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.util-answers article p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}
.util-source {
  font-size: 11px;
  line-height: 1.7;
}
.util-source a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-contact {
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 24px;
}
.closing-contact h2 {
  font-size: clamp(40px, 9vw, 68px);
}
.closing-contact .button {
  justify-self: start;
}
.closing-phone {
  font-size: 25px;
  letter-spacing: -0.03em;
}
.closing-phone > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 5px;
}
.identity-art {
  aspect-ratio: 760/633;
}
.identity-art img {
  position: static;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.electric-document-image {
  display: block;
  margin: 42px -3% 8px;
  padding: 15px;
  background: #e8ece6;
  border-radius: 28px;
}
.electric-document-image img {
  width: 100%;
}
.document .document-caption {
  font-size: 12px;
  line-height: 1.7;
}
@media (min-width: 600px) {
  .hero.hero-editorial {
    margin-top: 42px;
  }
  .hero-visual > img,
  .hero-visual > picture > img {
    aspect-ratio: 1.7;
  }
  .hero-visual figcaption {
    padding: 22px;
  }
  .delivery-caption {
    font-size: 15px;
  }
  .delivery-caption strong {
    font-size: 13px;
  }
  .delivery-play > span:last-child {
    display: block;
  }
  .hero-route {
    font-size: 11px;
  }
  .hero-route > span:first-child,
  .hero-route > strong {
    max-width: none;
  }
  .catalog-summary {
    gap: 45px;
  }
  .catalog-range small {
    display: inline;
  }
  .catalog-range > span {
    max-width: none;
  }
  .electric-showcase {
    padding: 30px;
  }
  .electric-case {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 26px;
  }
  .electric-case h3 {
    font-size: 27px;
  }
  .electric-price {
    font-size: 32px;
  }
  .electric-case p:not(.eyebrow) {
    font-size: 14px;
    max-width: 430px;
  }
  .electric-case .eyebrow,
  .electric-case .text-link {
    font-size: 12px;
  }
  .electric-case .text-link {
    margin-top: 10px;
  }
}
@media (min-width: 1000px) {
  .hero.hero-editorial {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(28px, 3.8vw, 88px);
    align-items: center;
    margin-block: 40px 0;
  }
  .hero-intro {
    padding-bottom: 36px;
  }
  .hero-intro h1 {
    font-size: clamp(34px, 3.6vw, 78px);
    line-height: 1.09;
  }
  .hero-intro > .eyebrow {
    font-size: 11px;
    margin-bottom: 30px;
  }
  .hero-description {
    font-size: clamp(16px, 1.35vw, 23px);
    max-width: 660px;
    margin-top: 28px;
  }
  .hero-assurance {
    max-width: 620px;
    gap: 12px 21px;
    font-size: clamp(11px, 0.85vw, 16px);
  }
  .hero-actions {
    margin-top: 34px;
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 15px;
    min-height: 62px;
    max-width: 390px;
  }
  .hero-secondary {
    font-size: 13px;
  }
  .hero-proof {
    margin-top: 24px;
  }
  .hero-visual {
    border-radius: 34px 34px 8px 34px;
  }
  .hero-visual > img,
  .hero-visual > picture > img {
    aspect-ratio: 1.12;
  }
  .hero-visual figcaption {
    position: absolute;
    inset: auto 0 0;
    background: #fff;
    padding: 24px;
  }
  .delivery-caption {
    font-size: 13px;
  }
  .delivery-caption strong {
    font-size: 11px;
  }
  .delivery-play > span:last-child {
    font-size: 11px;
  }
  .hero-route {
    min-height: 76px;
    font-size: 10px;
    gap: 22px;
  }
  .route-car {
    width: 87px;
    height: 39px;
  }
  .contact-section {
    padding-block: 48px 36px;
  }
  .contact-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(35px, 5vw, 100px);
    padding: clamp(36px, 4.4vw, 80px);
    border-radius: 28px;
  }
  .contact-copy h2 {
    font-size: clamp(36px, 3.1vw, 62px);
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: clamp(15px, 1.05vw, 19px);
  }
  .request-form label {
    font-size: 14px;
  }
  .request-form input,
  .request-form select {
    height: 60px;
    padding-inline: 18px;
    margin-bottom: 21px;
  }
  .request-form .button {
    min-height: 60px;
    font-size: 15px;
  }
  .catalog-section {
    padding-block: 76px 40px;
  }
  .catalog-intro {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
  }
  .catalog-intro h2 {
    font-size: clamp(44px, 3.2vw, 68px);
  }
  .catalog-summary {
    justify-content: flex-end;
    gap: 35px;
    padding-bottom: 4px;
  }
  .catalog-summary > p {
    font-size: clamp(15px, 1.05vw, 20px);
    max-width: 360px;
  }
  .catalog-range {
    padding-left: 30px;
  }
  .catalog-range strong {
    font-size: clamp(42px, 3vw, 64px);
  }
  .catalog-range small {
    display: block;
    font-size: 20px;
  }
  .catalog-range > span {
    font-size: 11px;
  }
  .offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 1.65vw, 36px);
  }
  .offer-body {
    padding: clamp(22px, 2vw, 34px);
  }
  .offer-body h3 {
    font-size: clamp(25px, 1.65vw, 37px);
  }
  .offer-price strong {
    font-size: clamp(30px, 2vw, 42px);
  }
  .electric-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(40px, 6vw, 120px);
    margin-block: 96px 60px;
  }
  .electric-copy h2 {
    font-size: clamp(39px, 3.35vw, 72px);
  }
  .electric-copy .electric-lead {
    font-size: clamp(20px, 1.6vw, 29px);
    max-width: 550px;
  }
  .electric-copy > p:not(.eyebrow):not(.electric-lead) {
    font-size: clamp(15px, 1vw, 20px);
    max-width: 600px;
  }
  .electric-copy .button {
    font-size: 15px;
    margin-top: 35px;
  }
  .electric-showcase {
    padding: clamp(30px, 2.8vw, 58px);
    border-radius: 36px 36px 8px 36px;
  }
  .electric-showcase > picture {
    margin-inline: -5%;
  }
  .electric-badge {
    font-size: 12px;
  }
  .electric-case {
    grid-template-columns: minmax(100px, 22%) minmax(0, 1fr);
    padding-top: 26px;
    margin-top: 26px;
  }
  .electric-case h3 {
    font-size: clamp(23px, 1.65vw, 36px);
  }
  .electric-price {
    font-size: clamp(30px, 2.1vw, 45px);
  }
  .electric-case p:not(.eyebrow) {
    font-size: clamp(12px, 0.85vw, 17px);
  }
  .electric-case .eyebrow {
    font-size: clamp(9px, 0.65vw, 12px);
  }
  .electric-case .text-link {
    font-size: clamp(11px, 0.8vw, 15px);
  }
  .util-panel {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 120px);
    padding: 68px 30px 0;
  }
  .util-heading h2 {
    font-size: clamp(36px, 2.85vw, 59px);
  }
  .util-heading > p:not(.eyebrow) {
    font-size: clamp(15px, 1.05vw, 20px);
    max-width: 560px;
  }
  .util-answers article {
    padding-block: 26px;
    gap: 26px;
  }
  .util-answers h3 {
    font-size: clamp(21px, 1.4vw, 30px);
  }
  .util-answers article p {
    font-size: clamp(14px, 0.95vw, 18px);
  }
  .util-source {
    font-size: 12px;
  }
  .closing-contact {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    padding-block: 65px 10px;
    align-items: center;
  }
  .closing-contact > div {
    grid-row: span 2;
  }
  .closing-contact .button {
    align-self: end;
    min-width: 285px;
  }
  .closing-phone {
    align-self: start;
    font-size: 32px;
  }
  .closing-contact h2 {
    font-size: clamp(52px, 4vw, 82px);
  }
}
@media (min-width: 1800px) {
  .hero.hero-editorial {
    margin-top: 55px;
  }
  .hero-intro > .eyebrow {
    font-size: 14px;
  }
  .hero-visual > img,
  .hero-visual > picture > img {
    aspect-ratio: 1.34;
  }
  .hero-visual figcaption {
    padding: 32px;
  }
  .delivery-caption {
    font-size: 20px;
  }
  .delivery-caption strong {
    font-size: 16px;
  }
  .delivery-play > span:last-child {
    font-size: 15px;
  }
  .delivery-play .play-icon {
    width: 60px;
    height: 60px;
  }
  .hero-route {
    font-size: 12px;
    min-height: 90px;
  }
  .hero-actions .button {
    min-height: 70px;
    font-size: 18px;
    max-width: 445px;
  }
  .hero-secondary {
    font-size: 16px;
  }
  .hero-proof {
    margin-top: 30px;
  }
  .hero-proof .rating-link strong {
    font-size: 38px;
  }
  .hero-proof .rating-link small {
    font-size: 13px;
  }
  .hero-proof > p {
    font-size: 10px;
  }
  .request-form label {
    font-size: 16px;
  }
  .request-form input,
  .request-form select {
    height: 68px;
    font-size: 18px;
  }
  .request-form .button {
    min-height: 68px;
    font-size: 18px;
  }
  .contact-section {
    padding-block: 54px 45px;
  }
  .catalog-section {
    padding-top: 95px;
  }
  .electric-section {
    margin-top: 120px;
  }
  .electric-copy .button {
    font-size: 17px;
  }
  .electric-video .play-icon {
    width: 50px;
    height: 50px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .route-speed {
    stroke-dasharray: 22;
    animation: route-lines 1.4s ease-in-out 3;
  }
  .route-car {
    animation: route-arrival 1.8s ease-out both;
  }
  @keyframes route-lines {
    0%,
    20% {
      stroke-dashoffset: 22;
    }
    55% {
      stroke-dashoffset: 0;
    }
    90%,
    100% {
      stroke-dashoffset: -22;
    }
  }
  @keyframes route-arrival {
    from {
      transform: translateX(-16px);
    }
    to {
      transform: translateX(0);
    }
  }
}
:root {
  --radius: 20px;
  --muted: #4f534e;
  --line: #d6d8cf;
}
.hero-intro h1,
.hero-copy h1 {
  font-size: clamp(36px, 4.3vw, 92px);
  font-weight: 690;
  letter-spacing: -0.058em;
  line-height: 1.03;
}
h1,
h2,
h3 {
  font-weight: 660;
  letter-spacing: -0.05em;
}
.eyebrow {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.checklist-banner {
  background: var(--red);
  color: var(--white);
}
.checklist-banner .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.checklist-banner .eyebrow::before {
  background: var(--white);
}
.checklist-banner h2,
.checklist-banner .checklist-number,
.checklist-banner .checklist-number > span {
  color: var(--white);
}
.checklist-banner p:not(.eyebrow) {
  color: #fff;
}
.checklist-banner .button-dark {
  background: var(--white);
  color: var(--ink);
}
.checklist-banner .button-dark:hover {
  background: #f0efe9;
}
.faq-section,
.process-section {
  background: var(--white);
  border-radius: var(--radius);
  padding-inline: clamp(22px, 3.2vw, 60px);
}
.reviews-section {
  border-radius: var(--radius);
}
.catalog-intro h2,
.cost-intro h2,
.reviews-head h2 {
  font-size: clamp(32px, 3.9vw, 72px);
}
.countries-section h2,
.approach-section h2,
.about-copy h2 {
  font-size: clamp(25px, 2.4vw, 40px);
}
.catalog-section,
.cost-section,
.reviews-section {
  padding-block: clamp(84px, 6.4vw, 132px);
}
.countries-section,
.approach-section {
  padding-block: clamp(46px, 3.6vw, 72px);
}
.hero-copy .eyebrow,
.hero-intro > .eyebrow,
.section-head .eyebrow,
.cost-intro .eyebrow,
.about-copy .eyebrow,
.checklist-banner .eyebrow,
.catalog-intro .eyebrow,
.contact-copy .eyebrow,
.faq-intro .eyebrow {
  font-size: 12px;
}
h2 em {
  color: inherit;
}
.cost-intro h2 em {
  color: #ff6a5e;
}
.hero-description,
.hero-lead {
  font-size: clamp(15px, 1.34vw, 22px);
  line-height: 1.5;
}
.hero-assurance {
  font-size: 13px;
}
.catalog-intro > p:not(.eyebrow),
.electric-lead,
.about-lead,
.section-head > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.countries-section .section-head + p {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
}
.route-car {
  animation: none !important;
  transform: none !important;
}
.route-body {
  animation: route-shake 0.3s ease-in-out infinite alternate;
}
.route-speed {
  stroke-dasharray: 22;
  animation: route-line 1.15s ease-in-out infinite both;
}
.route-speed--top {
  animation-delay: 0s;
}
.route-speed--middle {
  animation-delay: 0.29s;
}
.route-speed--bottom {
  animation-delay: 0.58s;
}
@keyframes route-shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes route-line {
  0%,
  25% {
    stroke-dashoffset: 22;
  }
  50%,
  51% {
    stroke-dashoffset: 0;
  }
  80%,
  100% {
    stroke-dashoffset: -22;
  }
}
.route-track::before {
  border-top: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #c3c7bf 0 9px,
    transparent 9px 18px
  );
  animation: route-road 1.3s linear infinite;
}
@keyframes route-road {
  to {
    background-position-x: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .route-body,
  .route-speed,
  .route-track::before {
    animation: none;
  }
}
.cost-panel,
.contact-panel {
  background: #1b1c1f;
}
.cost-panel .eyebrow,
.contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.cost-intro > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}
.cost-intro p.cost-note {
  color: rgba(255, 255, 255, 0.52);
}
.estimate {
  background: var(--white);
}
.estimate li {
  border-bottom-color: #e7e8e3;
}
.estimate li:before {
  color: var(--red-dark);
  font-weight: 700;
}
.stars {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-size: 0;
  letter-spacing: normal;
}
.stars-svg {
  display: block;
  height: 14px;
  width: auto;
}
.review-top .stars-svg {
  height: 12px;
}
.quote-review .stars,
.cost-panel .stars,
.contact-panel .stars {
  color: var(--white);
}
.quote-review {
  background: var(--ink);
  color: var(--white);
}
.quote-review blockquote,
.quote-review .review-top {
  color: var(--white);
}
.quote-review .review-top small,
.quote-review .text-link {
  color: rgba(255, 255, 255, 0.66);
}
.quote-review .text-link:hover {
  color: var(--white);
}
.quote-review {
  position: relative;
  overflow: hidden;
}
.big-quote {
  position: absolute;
  top: -10px;
  right: 26px;
  margin: 0;
  height: auto;
  display: block;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(150px, 13vw, 240px);
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
}
.social-icon,
.social-vk .social-icon,
.social-max .social-icon,
.social-whatsapp .social-icon {
  background: transparent;
  border-radius: 0;
  width: 40px;
  height: 40px;
}
.social-icon img,
.social-max .social-icon img {
  width: 40px;
  height: 40px;
  filter: none;
  border-radius: 11px;
}
.hero-intro h1,
.hero-copy h1 {
  font-size: clamp(38px, 4.7vw, 104px);
  font-weight: 730;
  letter-spacing: -0.064em;
}
h1,
h2 {
  font-weight: 700;
}
.catalog-intro h2,
.cost-intro h2,
.reviews-head h2 {
  font-size: clamp(34px, 4.3vw, 82px);
}
.vk-mark {
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 0;
  overflow: visible;
}
.vk-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 11px;
}
.direct-contact {
  align-items: center;
  gap: 10px;
  padding-top: 26px;
}
.direct-contact > span {
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.direct-contact > a {
  gap: 8px;
  min-height: 0;
  padding: 9px 15px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.direct-contact > a img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex: 0 0 auto;
}
.direct-contact > a:hover,
.direct-contact > a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.review-top .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(36, 37, 37, 0.06);
  color: var(--ink);
  line-height: 1;
}
.review-top .rating svg {
  display: block;
  width: 13px;
  height: 13px;
}
.review-top .rating b {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-identity {
  gap: clamp(20px, 3vw, 52px);
}
.identity-art {
  aspect-ratio: 900 / 605;
  flex: 0 0 50%;
  overflow: visible;
}
.identity-art img {
  position: static;
  max-width: 100%;
  width: 100%;
  height: auto;
  left: auto;
  top: auto;
}
.cost-panel {
  position: relative;
  overflow: hidden;
}
.cost-panel > * {
  position: relative;
  z-index: 1;
}
.cost-panel::after {
  content: "";
  position: absolute;
  bottom: -17%;
  left: -7%;
  width: clamp(220px, 26vw, 420px);
  aspect-ratio: 1;
  background: url("assets/hm-mark.svg") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.hero-intro > .eyebrow,
.hero-copy > .eyebrow {
  display: none;
}
.hero-proof .stars {
  display: none;
}
.hero-proof .rating-link small {
  font-size: 13px;
  color: var(--muted);
}
.hero-assurance {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 26px;
}
.hero-assurance span {
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}
.hero-assurance span::before {
  width: 6px;
  height: 6px;
  margin-right: 10px;
}
.hero-visual figcaption .delivery-caption {
  font-size: 13px;
  line-height: 1.45;
}
.hero-visual figcaption .delivery-caption strong {
  font-size: 13px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  letter-spacing: 0.16em;
}
.eyebrow::before {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  background: url("assets/hm-mark.svg") center / contain no-repeat;
}
.eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background: currentColor;
  opacity: 0.18;
}
.checklist-banner .eyebrow::before {
  background: url("assets/hm-mark.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}
.countries-section h2,
.approach-section h2,
.about-copy h2 {
  font-size: clamp(29px, 3.4vw, 58px);
}
.util-source,
.form-note,
.section-foot p,
.process-note p,
.process-list p,
.estimate-caption,
.cost-intro p.cost-note,
.hero-bottom > a,
.video-card > p,
.video-card > a,
.reviews-aside > p,
.footer-top > p,
.footer-top > .text-link,
.social-link small,
.contact-person small,
.about-copy cite,
.extra-video-list p,
.extra-video-list a,
.extra-video-list .text-link {
  font-size: 13px;
  line-height: 1.5;
}
.footer-bottom,
.footer-disclaimer,
.request-form label,
.header-phone small,
.desktop-nav,
.mobile-call {
  font-size: 12px;
}
.tag,
.car-year,
.car-info dt,
.photo-label,
.photo-label small,
.photo-play small,
.offer-tag,
.electric-badge,
.catalog-range > span,
.review-top,
.review-top small,
.process-list small,
.estimate-head,
.estimate li small,
.estimate-total small,
.checklist-number span,
.hero-route,
.hero-proof > p,
.hero-rating > p {
  font-size: 11px;
}
.util-source {
  margin-top: 28px;
}
.section-foot p {
  margin-top: 10px;
}
.country-title {
  gap: 0;
  margin-bottom: 22px;
}
.car-info .text-link,
.section-foot .text-link,
.objections .text-link,
.about-actions .text-link,
.extra-video-list .text-link,
.written-review > .text-link,
.country .text-link,
.footer-top > .text-link,
.electric-case .text-link {
  font-size: 13px;
}
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(36, 37, 37, 0.3);
}
.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: currentColor;
}
.quote-review .text-link,
.cost-panel .text-link,
.contact-copy .text-link,
.checklist-banner .text-link {
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.hero-bottom > a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(36, 37, 37, 0.3);
}
.hero-bottom > a:hover {
  text-decoration-color: currentColor;
}
.eyebrow::before {
  width: 16px;
  height: 16px;
}
.button-red::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("assets/hm-mark.svg") center / contain no-repeat;
  mask: url("assets/hm-mark.svg") center / contain no-repeat;
}
.country {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.country > * {
  position: relative;
  z-index: 1;
}
.country::after {
  content: none;
}
.country .text-link {
  align-self: flex-start;
  margin-top: auto;
}
.country-car {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 22px;
}
.footer {
  background: #1b1c1f;
  border-top: 0;
  color: rgba(255, 255, 255, 0.68);
}
.footer-wordmark > span,
.footer-phone,
.social-link strong {
  color: var(--white);
}
.footer-wordmark p,
.footer .eyebrow,
.footer-connect > p {
  color: rgba(255, 255, 255, 0.58);
}
.social-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}
.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.social-link small {
  color: rgba(255, 255, 255, 0.5);
}
.footer-navigation {
  border-block-color: rgba(255, 255, 255, 0.13);
}
.footer-navigation a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-disclaimer,
.footer-author {
  color: rgba(255, 255, 255, 0.38);
}
.footer-author {
  margin-top: 18px;
  font-size: 12px;
}
.footer-author a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.footer-author a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-pending {
    opacity: 0;
    transform: translateY(22px);
  }
  .reveal-ready {
    transition:
      opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }
}
@media (min-width: 1000px) {
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    min-height: 74px;
    padding: 18px 34px;
    font-size: 19px;
    max-width: 440px;
  }
  .hero-secondary {
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 440px;
    min-height: 74px;
    padding: 18px 34px;
    border: 1px solid rgba(36, 37, 37, 0.2);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 550;
    transition:
      border-color 0.2s,
      background 0.2s;
  }
  .hero-secondary:hover,
  .hero-secondary:focus-visible {
    background: rgba(36, 37, 37, 0.04);
    border-color: rgba(36, 37, 37, 0.45);
  }
}
.page-404 {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 70vh;
  min-height: 66svh; 
  padding-block: 100px 40px;
}
.page-404 .eyebrow {
  display: block; 
  font-size: clamp(96px, 19vw, 176px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--red-dark);
  margin-bottom: 26px;
}
.page-404 .eyebrow::before,
.page-404 .eyebrow::after {
  content: none; 
}
.page-404 h1 {
  font-size: clamp(30px, 5.4vw, 52px);
  margin: 0 0 20px;
}
.page-404 p {
  font-size: 17px;
  max-width: 44ch;
  margin: 0;
}
.page-404 .button {
  margin-top: 34px;
  min-height: 64px;
  padding: 18px 34px;
  font-size: 16px;
}
.request-success[hidden],
#request-compose[hidden] {
  display: none;
}
.request-dialog {
  padding: clamp(24px, 4vw, 40px);
}
.request-dialog .dialog-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.request-success {
  padding-top: 20px;
}
.success-mark {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c9bf;
  border-radius: 50%;
  color: #315a42;
  background: #f0f5f1;
}
.request-success .success-lead {
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.success-contact {
  font-weight: 650;
  overflow-wrap: anywhere;
}
.request-success .message-actions {
  margin-top: 28px;
}
.success-phone {
  display: inline-block;
  margin-top: 22px;
  color: inherit;
}
.success-done {
  display: block;
  margin-top: 28px;
}
.request-form button[aria-busy="true"] {
  opacity: 0.7;
  cursor: wait;
}
.request-form .submit-label {
  display: inline;
  font-size: 21px;
}
.request-form .submit-label::before,
.request-form .submit-label::after {
  display: none;
}
.request-form .form-hint {
  margin: -2px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #c5c6c8;
}
.request-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 12px;
  line-height: 1.6;
  color: #d4d5d7;
}
.request-form .form-consent input {
  appearance: auto;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 2px 0 0;
  accent-color: var(--red-dark);
}
.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.catalog-controls {
  flex-wrap: wrap;
}
.model-illustration {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: #676b70;
}
.korea-model {
  margin: 40px 0;
}
.korea-model img {
  display: block;
  width: 100%;
  height: auto;
}
.korea-model figcaption {
  font-size: 13px;
  color: #5a5d61;
}
@media (min-width: 600px) and (max-width: 899px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 900px) {
  .country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.country-car {
  max-width: 460px;
}
.hero-visual {
  background: #fff;
  border-radius: 24px;
}
.hero-visual > img,
.hero-visual > picture > img {
  aspect-ratio: 1.23;
  height: auto;
  object-position: center;
}
.hero-visual figcaption {
  position: static;
  padding: clamp(18px, 2vw, 30px);
}
@media (min-width: 1000px) {
  .hero.hero-editorial {
    align-items: start;
    gap: clamp(32px, 4vw, 72px);
  }
  .hero-evidence {
    padding-top: 12px;
  }
}
.checklist-banner p,
.checklist-banner .eyebrow {
  color: #fff;
}
.footer .footer-disclaimer,
.footer .footer-author {
  color: #aaaab0;
}
.hero-visual > picture {
  display: contents;
}
.success-all {
  display: inline-block;
  margin-top: 20px;
}
.request-form button[aria-busy="true"] {
  opacity: 0.65;
  cursor: progress;
}
.hero-intro h1 em {
  display: block;
  font-size: 0.58em;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-top: 0.34em;
}
@media (min-width: 1000px) {
  .hero.hero-editorial {
    align-items: center;
  }
  .hero-intro {
    padding-bottom: 0;
  }
}
section p,
.reviews-section p {
  font-size: 15px;
  line-height: 1.66;
}
.catalog-section .offer-engine,
.catalog-section .offer-benefit,
.cost-section .cost-note,
.cost-section .estimate-caption,
.cost-section .util-source,
.contact-section .form-hint,
.catalog-section .model-illustration {
  font-size: 14.5px;
  line-height: 1.6;
}
.footer-disclaimer,
.about-section cite {
  font-size: 13px;
  line-height: 1.6;
}
.text-link,
.reviews-section a,
.contact-section a,
.footer a {
  font-size: 14.5px;
}
.catalog-section .offer-cta,
.cost-section .button-red {
  font-size: 15px;
}
.checklist-banner .button-dark,
.site-header a {
  font-size: 13.5px;
}
.contact-section label {
  font-size: 14px;
}
section dt,
.cost-section small,
.reviews-section small,
.footer small,
.about-section small {
  font-size: 12.5px;
}
.catalog-section .offer-spec,
.catalog-section time,
.catalog-section .offer-tag,
.tag,
.car-year,
.eyebrow,
.objection-mark {
  font-size: 12.5px;
}
.site-header small {
  font-size: 9px;
}
@media (min-width: 1000px) {
  .electric-section {
    align-items: start;
  }
  .electric-copy {
    position: sticky;
    top: 124px;
  }
}
.electric-video img {
  aspect-ratio: 540 / 770;
}
@media (min-width: 600px) {
  .electric-case {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}
.electric-showcase > picture {
  margin-inline: 0;
}
@media (min-width: 1000px) {
  .site-header {
    border-bottom-color: #24252520;
  }
  .site-header .desktop-nav {
    gap: 30px;
  }
  .site-header .desktop-nav a {
    font-size: 16px;
    font-weight: 650;
  }
  .site-header a.header-phone {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .site-header .header-phone small {
    font-size: 12.5px;
    font-weight: 550;
  }
  .site-header a.header-cta {
    font-size: 15px;
    font-weight: 700;
    min-height: 52px;
    padding-inline: 26px;
  }
  .site-header .brand-import small {
    font-size: 10px;
  }
}
@media (min-width: 1600px) {
  .site-header .desktop-nav {
    gap: 40px;
  }
  .site-header .desktop-nav a {
    font-size: 17px;
  }
  .site-header a.header-phone {
    font-size: 23px;
  }
  .site-header .header-phone small {
    font-size: 13px;
  }
  .site-header a.header-cta {
    font-size: 16px;
  }
}
.video-cover[data-video="1900"] > img {
  object-position: 57% 40%;
}
.delivery-source {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgb(36 37 37 / 25%);
  white-space: nowrap;
}
.delivery-source:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}
.brand-logo {
  display: block;
  height: 26px;
  width: auto;
}
@media (min-width: 1000px) {
  .brand-logo {
    height: 30px;
  }
}
@media (min-width: 1280px) {
  .brand-logo {
    height: 34px;
  }
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.checklist-banner .eyebrow::before {
  background: var(--red);
  filter: none;
}
.cost-panel,
.contact-panel,
.footer {
  --red-dark: #f2493f;
}
.brand-logo {
  height: 44px;
}
@media (min-width: 1000px) {
  .brand-logo {
    height: 50px;
  }
}
@media (min-width: 1280px) {
  .brand-logo {
    height: 56px;
  }
}
.country {
  padding: 22px;
}
@media (min-width: 1250px) {
  .country {
    padding: 26px;
  }
}
.country-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.country-flag {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}
.country-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.country-tag {
  margin-left: auto;
  text-align: right;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  color: var(--red-dark);
}
.country-scene {
  margin: 0 0 22px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
}
.country-scene img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.country h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.country-title {
  display: contents;
}
.country ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.country li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  line-height: 1.35;
}
.country li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-dark);
  transform: translateY(-2px);
}
.country-more {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.country-more span {
  order: -1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(36, 37, 37, 0.3);
}
.country-more::before {
  content: "";
  flex: 1 1 auto;
  min-width: 16px;
  height: 1px;
  background: var(--line);
}
.country-more i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  transition: background 0.18s ease;
}
.country-more i::after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--white);
  -webkit-mask: url("assets/hm-mark.svg") center / contain no-repeat;
  mask: url("assets/hm-mark.svg") center / contain no-repeat;
}
.country-more:hover span,
.country-more:focus-visible span {
  text-decoration-color: currentColor;
}
.country-more:hover i,
.country-more:focus-visible i {
  background: var(--ink);
}
.faq-section {
  --faq-x: clamp(22px, 3.2vw, 60px);
  --faq-y: clamp(68px, 6.6vw, 95px);
  padding-inline: var(--faq-x);
  padding-block: var(--faq-y);
  overflow: hidden;
}
.faq-photo {
  margin: 0 calc(-1 * var(--faq-x)) calc(-1 * var(--faq-y));
  border-radius: 0 22px 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
}
.faq-photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .faq-section {
    grid-template-rows: auto 1fr;
    align-items: start;
  }
  .faq-intro {
    grid-area: 1 / 1;
  }
  .faq-photo {
    grid-area: 2 / 1;
    align-self: end;
  }
  .faq-list {
    grid-area: 1 / 2 / span 2 / 3;
  }
}
.faq-list summary {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.4;
  padding: 22px 0;
}
.faq-list details > p {
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 24px;
  max-width: 62ch;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.6;
}
.faq-list,
.faq-list details {
  border-color: var(--line);
}
.faq-list summary > span {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.5px 12px no-repeat,
    var(--paper);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.faq-list summary:hover > span,
.faq-list summary:focus-visible > span {
  background:
    linear-gradient(var(--white), var(--white)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 1.5px 12px no-repeat,
    var(--red);
}
.checklist-number {
  font-size: clamp(116px, 15vw, 250px);
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.checklist-number span,
.checklist-banner .checklist-number > span {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-top: 16px;
}
.checklist-banner h2 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}
.checklist-banner p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.6;
  max-width: 48ch;
}
.estimate-head > span[aria-hidden] {
  display: none;
}
.cost-intro .cost-note {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}
h1,
h2,
h3,
.checklist-banner h2,
.section-head h2 {
  text-wrap: balance;
}
p,
li,
figcaption,
summary,
blockquote {
  text-wrap: pretty;
}
.countries-section {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
}
.countries-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: clamp(220px, 26vw, 420px);
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(rgba(246, 245, 242, 0.62), rgba(246, 245, 242, 0.62)),
    url("assets/countries-band.webp") center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent);
  mask-image: linear-gradient(to bottom, #000 45%, transparent);
}
.countries-section .section-head > p {
  color: var(--ink);
}
.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: none;
}
.faq-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: clamp(260px, 30vw, 460px);
  background: url("assets/faq-bg.webp") center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 42%, transparent);
  mask-image: linear-gradient(to bottom, #000 42%, transparent);
}
.faq-list {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: var(--radius);
  border-top: 0;
  padding: clamp(6px, 1.4vw, 22px) clamp(16px, 2.2vw, 34px);
}
.faq-list details:last-child {
  border-bottom: 0;
}
@media (min-width: 900px) {
  .faq-section::before {
    inset: 0;
    height: auto;
    background:
      linear-gradient(
        100deg,
        rgba(246, 245, 242, 0.96) 0%,
        rgba(246, 245, 242, 0.72) 26%,
        rgba(246, 245, 242, 0) 52%
      ),
      url("assets/faq-bg.webp") left center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
  }
  .faq-intro {
    grid-area: 1 / 1;
    align-self: start;
  }
  .faq-section {
    padding-right: 0;
  }
  .faq-list {
    grid-area: 1 / 2;
    border-radius: var(--radius) 0 0 var(--radius);
    box-shadow: 0 30px 60px -40px rgba(20, 22, 20, 0.45);
  }
}
@media (max-width: 899px) {
  .faq-section::before {
    height: 280px;
    -webkit-mask-image: linear-gradient(to bottom, #000 52%, transparent);
    mask-image: linear-gradient(to bottom, #000 52%, transparent);
  }
  .faq-intro {
    padding-top: 228px;
  }
}
@media (min-width: 900px) {
  .faq-list {
    box-shadow: 0 30px 60px -40px rgba(20, 22, 20, 0.45);
  }
}
.electric-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
}
.electric-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 300px;
  background: url("assets/electric-bg-1300.webp") center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 54%, transparent);
  mask-image: linear-gradient(to bottom, #000 54%, transparent);
}
.electric-copy {
  padding-top: 252px;
}
.electric-showcase {
  background: none;
  padding: 0;
  overflow: visible;
}
.electric-badge {
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(16, 20, 18, 0.58);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--white);
  margin-bottom: 16px;
}
.electric-badge::before {
  background: #7fe0b2;
}
.electric-case {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 0;
  padding: clamp(18px, 2.2vw, 30px);
  margin-top: 0;
  padding-top: clamp(18px, 2.2vw, 30px);
  box-shadow: 0 30px 60px -42px rgba(20, 22, 20, 0.5);
}
@media (min-width: 1000px) {
  .electric-section {
    align-items: start;
    min-height: clamp(620px, 42vw, 930px);
    padding: clamp(50px, 4.6vw, 86px) clamp(34px, 3.4vw, 64px);
    margin-block: 96px 60px;
  }
  .electric-section::before {
    inset: 0;
    height: auto;
    background:
      linear-gradient(
        100deg,
        rgba(246, 245, 242, 0.96) 0%,
        rgba(246, 245, 242, 0.74) 30%,
        rgba(246, 245, 242, 0) 58%
      ),
      url("assets/electric-bg.webp") center 40% / cover no-repeat;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      rgba(0, 0, 0, 0.42) 3.5%,
      rgba(0, 0, 0, 0.8) 8%,
      rgba(0, 0, 0, 0.95) 13%,
      #000 18%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      rgba(0, 0, 0, 0.42) 3.5%,
      rgba(0, 0, 0, 0.8) 8%,
      rgba(0, 0, 0, 0.95) 13%,
      #000 18%
    );
  }
  .electric-copy {
    position: static;
    padding-top: 0;
  }
  .electric-showcase {
    align-self: end;
    justify-self: end;
    max-width: 560px;
  }
  .electric-badge {
    margin-left: auto;
  }
  .electric-showcase {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .electric-case {
    width: 100%;
  }
}
.client-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(9px, 0.9vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.client-mosaic li {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.client-mosaic img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.client-plate {
  position: absolute;
  left: clamp(8px, 0.8vw, 14px);
  right: clamp(8px, 0.8vw, 14px);
  bottom: clamp(8px, 0.8vw, 14px);
  display: grid;
  gap: 2px;
  padding: clamp(9px, 0.8vw, 13px) clamp(11px, 0.9vw, 15px);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: clamp(10px, 0.72vw, 13px);
  line-height: 1.35;
  color: var(--muted);
}
.client-plate b {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(12px, 0.88vw, 16px);
  font-weight: 650;
  color: var(--ink);
}
.client-plate b::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.hero-last {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 12px;
  margin-top: 16px;
  font-size: clamp(12px, 0.85vw, 15px);
  line-height: 1.5;
  color: var(--muted);
}
.hero-last strong {
  font-weight: 600;
  color: var(--ink);
}
.hero-last .delivery-source {
  margin-left: auto;
}
@font-face {
  font-family: "Caveat";
  src: url("assets/caveat-cyrillic.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
.hand-note {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: fit-content;
  margin: 0 0 clamp(10px, 1vw, 18px) auto;
  padding-right: 6px;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(21px, 1.7vw, 31px);
  line-height: 1.05;
  color: var(--red-dark);
  transform: rotate(-2.5deg);
}
.hand-note::after {
  content: "";
  flex: none;
  width: clamp(30px, 2.4vw, 44px);
  height: clamp(26px, 2vw, 37px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 40' fill='none' stroke='%23b9241d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5c15 2 27 12 30 27'/%3E%3Cpath d='M26 29.5l8.4 3.2M39 21l-4.6 11.7'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
@media (min-width: 700px) {
  .client-plate {
    right: auto;
    max-width: calc(100% - 2 * clamp(8px, 0.8vw, 14px));
  }
}
.contact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(18, 20, 21, 0.62) 0%,
      rgba(18, 20, 21, 0.86) 46%,
      rgba(18, 20, 21, 0.93) 100%
    ),
    url("assets/form-bg.webp") center / cover no-repeat;
}
@media (min-width: 900px) {
  .contact-panel::before {
    background:
      linear-gradient(
        100deg,
        rgba(18, 20, 21, 0.55) 0%,
        rgba(18, 20, 21, 0.8) 38%,
        rgba(18, 20, 21, 0.93) 62%
      ),
      url("assets/form-bg.webp") center / cover no-repeat;
  }
}
.mosaic {
  column-count: 2;
  column-gap: clamp(9px, 0.9vw, 16px);
}
.mosaic-card {
  position: relative;
  margin: 0 0 clamp(9px, 0.9vw, 16px);
  break-inside: avoid;
  border: 5px solid var(--white);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 22px 46px -26px rgba(20, 22, 20, 0.55);
}
.mosaic-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  background: var(--line);
}
.mosaic-card:nth-of-type(2) {
  transform: rotate(-1.4deg);
}
.mosaic-card:nth-of-type(3) {
  transform: rotate(1.1deg);
}
.mosaic-card:nth-of-type(5) {
  transform: rotate(-1deg);
}
.mosaic-card:nth-of-type(6) {
  transform: rotate(1.5deg);
}
.client-quote {
  position: absolute;
  z-index: 2;
  top: -12px;
  left: -8px;
  max-width: 88%;
  padding: 10px 14px 8px;
  border-radius: 16px 16px 16px 5px;
  background: var(--white);
  box-shadow: 0 16px 32px -16px rgba(20, 22, 20, 0.6);
  transform: rotate(-3deg);
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(15px, 1.25vw, 23px);
  line-height: 1.08;
  color: var(--red-dark);
}
.client-quote small {
  display: block;
  margin-top: 5px;
  font-family: var(--font, inherit);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.client-quote:hover {
  box-shadow: 0 18px 36px -14px rgba(20, 22, 20, 0.7);
}
.hero-evidence {
  overflow: visible;
}
@media (min-width: 900px) {
  .hero.hero-editorial {
    align-items: start;
  }
  .hero-intro {
    padding-top: clamp(10px, 2vw, 40px);
  }
}
@media (min-width: 1000px) {
  .hero-intro h1 {
    font-size: clamp(42px, 4.1vw, 78px);
  }
}
.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  max-width: 44ch;
  font-size: clamp(12px, 0.9vw, 16px);
  line-height: 1.5;
  color: var(--muted);
}
.hero-trust svg {
  flex: none;
  width: clamp(20px, 1.5vw, 26px);
  height: clamp(20px, 1.5vw, 26px);
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hand-note--up {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-top: clamp(10px, 1vw, 16px);
  margin-bottom: 0;
  text-align: right;
  transform: rotate(-1.5deg);
}
.hand-note--up::after {
  content: none;
}
.hand-note--up::before {
  content: "";
  width: clamp(34px, 2.6vw, 48px);
  height: clamp(28px, 2.2vw, 40px);
  margin-right: clamp(30px, 4vw, 70px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 40' fill='none' stroke='%23b9241d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M44 36C29 34 17 24 14 9'/%3E%3Cpath d='M22 11.5 13.6 8.3M9 19l4.6-10.7'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.footer-identity {
  display: block;
  max-width: none;
}
.identity-art {
  flex: none;
  width: clamp(180px, 16vw, 250px);
  margin-bottom: clamp(10px, 1vw, 16px);
}
.footer-wordmark {
  padding-left: 0;
}
.footer-navigation {
  display: grid;
  gap: clamp(20px, 2.2vw, 32px);
  padding: 0;
  margin-top: 0;
  border-block: 0;
}
.footer-navigation a {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 14px;
}
.footer-group-title {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 2.2vw, 32px);
  margin-top: clamp(34px, 3.4vw, 54px);
  align-items: center;
}
@media (min-width: 600px) and (max-width: 999px) {
  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .footer-main {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.78fr) minmax(0, 1.12fr);
    align-items: start;
    gap: clamp(34px, 3.8vw, 76px);
  }
  .footer-navigation {
    padding-top: 6px;
  }
}
.footer-wordmark p {
  font-size: 11px;
  letter-spacing: 0.07em;
  line-height: 1.7;
}
.footer-group-title {
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 699px) {
  .mosaic {
    column-count: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    margin-inline: -16px;
    padding: 18px 16px 12px;
  }
  .mosaic-card {
    flex: 0 0 76%;
    margin: 0;
    scroll-snap-align: center;
    transform: none;
  }
  .client-quote {
    max-width: 78%;
    font-size: 17px;
  }
}
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(54px, 5.5vw, 100px) 110px;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(14, 16, 18, 0.62) 0%,
      rgba(14, 16, 18, 0.82) 42%,
      rgba(14, 16, 18, 0.95) 72%,
      rgba(14, 16, 18, 0.98) 100%
    ),
    url("assets/footer-scene-m.webp") center top / cover no-repeat;
}
@media (min-width: 700px) {
  .footer::before {
    background:
      linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.58) 0%,
        rgba(14, 16, 18, 0.8) 40%,
        rgba(14, 16, 18, 0.94) 70%,
        rgba(14, 16, 18, 0.98) 100%
      ),
      url("assets/footer-scene-1100.webp") center top / cover no-repeat;
  }
}
@media (min-width: 1200px) {
  .footer::before {
    background-image:
      linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.58) 0%,
        rgba(14, 16, 18, 0.8) 40%,
        rgba(14, 16, 18, 0.94) 70%,
        rgba(14, 16, 18, 0.98) 100%
      ),
      url("assets/footer-scene.webp");
  }
}
.footer-logo {
  display: block;
  width: clamp(148px, 13vw, 198px);
  height: auto;
}
.footer-slogan {
  margin: clamp(18px, 2vw, 30px) 0 0;
  max-width: 22ch;
  color: var(--white);
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.footer-place {
  display: grid;
  gap: 5px;
  margin: clamp(22px, 2.4vw, 36px) 0 0;
  padding-top: clamp(16px, 1.8vw, 26px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.72);
}
.footer-place::before {
  content: "";
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
}
.footer-place small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.social-link {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 14, 16, 0.55);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}
.social-link:hover,
.social-link:focus-visible {
  background: rgba(12, 14, 16, 0.78);
  border-color: rgba(255, 255, 255, 0.32);
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(18px, 2vw, 34px);
  justify-content: space-between;
  padding: clamp(14px, 1.4vw, 20px) 0;
  margin-top: clamp(34px, 3.6vw, 60px);
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-navigation a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
}
.footer-bottom {
  border-top: 0;
  padding-top: clamp(22px, 2.2vw, 32px);
  margin-top: 0;
}
@media (min-width: 1000px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: start;
    gap: clamp(40px, 5vw, 96px);
  }
  .social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .social-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 0;
    padding: 15px 16px 16px;
  }
  .social-arrow {
    display: none;
  }
}
@media (min-width: 900px) {
  .footer::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: -1;
    width: 58%;
    background: linear-gradient(
      to right,
      rgba(12, 14, 16, 0.55) 0%,
      rgba(12, 14, 16, 0.3) 52%,
      rgba(12, 14, 16, 0) 100%
    );
  }
}
@media (max-width: 899px) {
  .contact-panel::before {
    background:
      linear-gradient(
        to bottom,
        rgba(18, 20, 21, 0.44) 0%,
        rgba(18, 20, 21, 0.78) 34%,
        rgba(18, 20, 21, 0.92) 100%
      ),
      url("assets/form-bg-m.webp") center top / cover no-repeat;
  }
}
@media (min-width: 900px) {
  .contact-panel::before {
    background:
      linear-gradient(
        100deg,
        rgba(18, 20, 21, 0.5) 0%,
        rgba(18, 20, 21, 0.72) 38%,
        rgba(18, 20, 21, 0.86) 62%
      ),
      url("assets/form-bg.webp") center / cover no-repeat;
  }
}
.footer::before {
  background:
    linear-gradient(
      to bottom,
      rgba(14, 16, 18, 0.3) 0%,
      rgba(14, 16, 18, 0.55) 40%,
      rgba(14, 16, 18, 0.86) 74%,
      rgba(14, 16, 18, 0.95) 100%
    ),
    url("assets/footer-scene-m.webp") center top / cover no-repeat;
}
@media (min-width: 700px) {
  .footer::before {
    background:
      linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.28) 0%,
        rgba(14, 16, 18, 0.5) 40%,
        rgba(14, 16, 18, 0.84) 76%,
        rgba(14, 16, 18, 0.95) 100%
      ),
      url("assets/footer-scene-1100.webp") center / cover no-repeat;
  }
}
@media (min-width: 1200px) {
  .footer::before {
    background:
      linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.28) 0%,
        rgba(14, 16, 18, 0.5) 40%,
        rgba(14, 16, 18, 0.84) 76%,
        rgba(14, 16, 18, 0.95) 100%
      ),
      url("assets/footer-scene.webp") center / cover no-repeat;
  }
}
@media (min-width: 900px) {
  .footer::after {
    background: linear-gradient(
      to right,
      rgba(12, 14, 16, 0.38) 0%,
      rgba(12, 14, 16, 0.18) 52%,
      rgba(12, 14, 16, 0) 100%
    );
  }
}
.footer-author {
  margin-top: clamp(22px, 2.4vw, 34px);
}
.footer-author .author-sign {
  display: inline-grid;
  gap: 7px;
  justify-items: start;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
}
.author-sign > small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.author-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.88);
}
.author-mark {
  flex: none;
  width: 21px;
  height: 21px;
  background: currentColor;
  -webkit-mask: url("assets/by-grigory.svg") center / contain no-repeat;
  mask: url("assets/by-grigory.svg") center / contain no-repeat;
  opacity: 0.78;
  transition:
    opacity 0.22s ease,
    background-color 0.22s ease;
}
.author-sign:hover .author-mark,
.author-sign:focus-visible .author-mark {
  opacity: 1;
  background: var(--red);
}
.author-sign:hover,
.author-sign:focus-visible {
  color: var(--white);
}
.author-name b {
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.22s ease;
}
.author-sign:hover .author-name b,
.author-sign:focus-visible .author-name b {
  text-decoration-color: currentcolor;
}
.country {
  --more: 82px; 
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 0;
  background: var(--white);
  color: var(--ink);
}
.country-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center bottom;
  transform: translateY(calc(-1 * var(--more)));
}
.country ul::after {
  content: "";
  display: block;
  margin: -32% -22px 0;
  aspect-ratio: 4 / 5; 
}
.country::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.88) 9%,
    rgba(255, 255, 255, 0.35) 17%,
    rgba(255, 255, 255, 0) 25%
  );
}
.country::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--white);
  -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 30%,
      transparent 46%
    ),
    linear-gradient(
      to right,
      #000 0,
      #000 40%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 82%
    );
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 0, #000 30%, transparent 46%),
    linear-gradient(
      to right,
      #000 0,
      #000 40%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 82%
    );
  mask-composite: intersect;
}
.country > *:not(.country-bg) {
  position: relative;
  z-index: 1;
}
.country-head {
  margin-bottom: 12px;
}
.country h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.country ul {
  gap: 6px;
  margin-top: 0;
}
.country li {
  font-size: 14px;
}
.country-rule {
  flex: 1 1 auto;
  min-width: 12px;
  height: 1px;
  background: var(--line);
}
.country-tag {
  margin-left: 0;
}
.country-more {
  margin: auto -22px 0;
  padding: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0,
    var(--white) 22px,
    var(--white) 100%
  );
}
@media (min-width: 1250px) {
  .country {
    padding: 26px 26px 0;
  }
  .country ul::after {
    margin-inline: -26px;
  }
  .country-more {
    margin-inline: -26px;
    padding: 22px 26px;
  }
}
.countries-section::before {
  content: none;
}
.objections article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54%;
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 18px;
  align-items: start;
}
.objections article > * {
  grid-column: 1 / -1;
}
.objections .objection-mark {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 6px;
}
.objections .objection-label {
  grid-column: 1;
  grid-row: 2;
  font-size: 10px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.objections .objection-shot {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.objections h3 {
  grid-row: 3;
  margin-top: 20px;
}
.checklist-cover {
  flex: none;
  width: min(68vw, 300px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
@media (min-width: 700px) {
  .checklist-cover {
    width: 250px;
  }
}
@media (min-width: 1250px) {
  .checklist-cover {
    width: 310px;
  }
}
@media (min-width: 900px) {
  .contact-panel::before {
    background: radial-gradient(
        62% 74% at 22% 46%,
        rgba(12, 14, 16, 0.84) 0%,
        rgba(12, 14, 16, 0.6) 46%,
        rgba(12, 14, 16, 0) 100%
      ),
      radial-gradient(
        48% 96% at 84% 52%,
        rgba(12, 14, 16, 0.72) 0%,
        rgba(12, 14, 16, 0.56) 54%,
        rgba(12, 14, 16, 0) 100%
      ),
      radial-gradient(
        124% 108% at 50% 48%,
        rgba(12, 14, 16, 0) 42%,
        rgba(12, 14, 16, 0.52) 100%
      ),
      linear-gradient(rgba(18, 20, 21, 0.28), rgba(18, 20, 21, 0.28)),
      url("assets/form-bg.webp") center / cover no-repeat;
  }
}
@media (max-width: 899px) {
  .contact-panel::before {
    background: radial-gradient(
        130% 40% at 50% 12%,
        rgba(12, 14, 16, 0.84) 0%,
        rgba(12, 14, 16, 0.5) 60%,
        rgba(12, 14, 16, 0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(12, 14, 16, 0) 26%,
        rgba(12, 14, 16, 0.5) 44%,
        rgba(12, 14, 16, 0.76) 72%,
        rgba(12, 14, 16, 0.82) 100%
      ),
      linear-gradient(rgba(18, 20, 21, 0.3), rgba(18, 20, 21, 0.3)),
      url("assets/form-bg-m.webp") center top / cover no-repeat;
  }
}
.footer {
  background: #0e1012;
}
.footer::before,
.footer::after {
  inset: 0 auto auto 0;
  height: 40%;
}
.footer::before {
  width: 100%;
  background: linear-gradient(
      to bottom,
      rgba(14, 16, 18, 0.24) 0%,
      rgba(14, 16, 18, 0.34) 40%,
      rgba(14, 16, 18, 0.66) 68%,
      rgba(14, 16, 18, 0.92) 88%,
      #0e1012 100%
    ),
    url("assets/footer-scene-m.webp") center top / cover no-repeat;
}
@media (min-width: 700px) {
  .footer::before,
  .footer::after {
    height: auto;
    aspect-ratio: 11 / 5;
    max-height: 720px;
  }
  .footer-main {
    min-height: min(38vw, 600px);
    align-content: center;
  }
  .footer::before {
    background: linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.2) 0%,
        rgba(14, 16, 18, 0.28) 46%,
        rgba(14, 16, 18, 0.48) 74%,
        rgba(14, 16, 18, 0.86) 91%,
        #0e1012 100%
      ),
      url("assets/footer-scene-1100.webp") center top / cover no-repeat;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  }
}
@media (min-width: 1200px) {
  .footer::before {
    background: linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0.2) 0%,
        rgba(14, 16, 18, 0.28) 46%,
        rgba(14, 16, 18, 0.48) 74%,
        rgba(14, 16, 18, 0.86) 91%,
        #0e1012 100%
      ),
      url("assets/footer-scene.webp") center top / cover no-repeat;
  }
}
.objections {
  gap: 18px;
}
.objections article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  border-radius: 22px;
  padding: 26px 24px 22px;
  background: #1b1e22;
  color: #fff;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 16px;
}
.objections article > *:not(.objection-shot) {
  position: relative;
  z-index: 1;
}
.objections article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(
    to top,
    rgba(27, 30, 34, 0.94) 8%,
    rgba(27, 30, 34, 0.55) 52%,
    rgba(27, 30, 34, 0) 100%
  );
  pointer-events: none;
}
.objections .objection-mark {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.objections .objection-mark::before {
  content: "";
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red) center / 20px 20px no-repeat;
}
.objections article:nth-child(1) .objection-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7.5A1.5 1.5 0 0 0 6 4.5v15A1.5 1.5 0 0 0 7.5 21h9a1.5 1.5 0 0 0 1.5-1.5V7z'/%3E%3Cpath d='M14 3v4h4M9 13h6M9 16.5h4'/%3E%3C/svg%3E");
}
.objections article:nth-child(2) .objection-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M8.5 7h7'/%3E%3Cpath d='M9 12h0M12 12h0M15 12h0M9 16.5h0M12 16.5h0M15 16.5h0'/%3E%3C/svg%3E");
}
.objections article:nth-child(3) .objection-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.8 3.4 9.2 3l2 4.5-2.3 1.6a12.2 12.2 0 0 0 6 6l1.6-2.3 4.5 2-.4 2.4a1.9 1.9 0 0 1-2.1 1.6C11.7 18.2 5.8 12.3 5.2 5.5a1.9 1.9 0 0 1 1.6-2.1z'/%3E%3C/svg%3E");
}
.objections h3 {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 0;
  color: #fff;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.objections p {
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.objections .text-link {
  grid-column: 1;
  grid-row: 5;
  align-self: end;
  justify-self: start;
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.objections .text-link:hover,
.objections .text-link:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}
.objections .objection-label {
  grid-column: 2;
  grid-row: 5;
  align-self: end;
  justify-self: end;
  padding-bottom: 10px;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
}
.objections .objection-shot {
  display: block;
  grid-column: 1 / -1;
  grid-row: 1;
  width: calc(100% + 48px);
  height: auto;
  aspect-ratio: 16 / 9;
  margin: -26px -24px 18px;
  object-fit: cover;
  border-radius: 0;
  mask-image: linear-gradient(to bottom, #000 0, #000 74%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 74%,
    transparent 100%
  );
}
.objections .objection-shot > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: inherit;
  object-position: inherit;
}
.objections article:nth-child(2) .objection-shot {
  object-position: 50% 42%;
}
.objections article:nth-child(3) .objection-shot {
  object-position: 58% 50%;
}
@media (min-width: 1250px) {
  .objections {
    gap: 22px;
  }
  .objections article {
    padding: 28px 26px 24px;
    min-height: 380px;
  }
  .objections .objection-shot {
    position: absolute;
    grid-area: auto;
    inset: 0 0 0 auto;
    width: 56%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 16%,
      rgba(0, 0, 0, 0.2) 32%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.72) 64%,
      rgba(0, 0, 0, 0.92) 80%,
      #000 94%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 16%,
      rgba(0, 0, 0, 0.2) 32%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.72) 64%,
      rgba(0, 0, 0, 0.92) 80%,
      #000 94%
    );
  }
  .objections article .objection-shot {
    object-position: 50% 50%;
  }
  .objections h3 {
    max-width: none;
  }
  .objections p {
    max-width: 22ch;
  }
}
.process-list {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.process-list li {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 0;
  padding: 20px 18px 22px;
  min-height: 430px;
  background: #1b1e22;
  color: #fff;
}
.process-list li > *:not(.step-shot) {
  position: relative;
  z-index: 2;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.72),
    0 2px 16px rgba(0, 0, 0, 0.66);
}
.process-list .step-number {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.process-list li:last-child {
  grid-column: auto;
  padding: 20px 18px 22px;
  background: #1b1e22;
  border-radius: 18px;
}
.step-number {
  position: static;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
}
.process-list h3 {
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
}
.process-list h3 br {
  display: none;
}
.process-list p {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 10px;
  min-height: 0;
  color: #fff;
  font-weight: 500;
}
.step-shot {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  mask-image: none;
  -webkit-mask-image: none;
}
@media (min-width: 1250px) {
  .process-list li,
  .process-list li:last-child {
    min-height: 430px;
    padding: 22px 20px 24px;
  }
  .process-list h3 {
    font-size: 18px;
  }
}
@media (min-width: 700px) {
  .footer::after {
    width: 100%;
    background:
      radial-gradient(
        62% 70% at 80% 48%,
        rgba(12, 14, 16, 0.82) 0%,
        rgba(12, 14, 16, 0.58) 46%,
        rgba(12, 14, 16, 0.22) 74%,
        rgba(12, 14, 16, 0) 100%
      ),
      linear-gradient(
        to right,
        rgba(12, 14, 16, 0.52) 0%,
        rgba(12, 14, 16, 0.3) 34%,
        rgba(12, 14, 16, 0) 64%
      );
  }
}
.countries-section {
  position: relative;
  isolation: isolate;
  background: var(--paper);
}
.countries-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: clamp(150px, 26vw, 520px);
  border-radius: 0;
  background: url("assets/wash-forest-900.webp") center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  pointer-events: none;
}
body {
  overflow-x: clip;
}
@media (max-width: 899px) {
  .countries-section {
    padding-top: 190px;
  }
  .countries-section::before {
    height: 150px;
  }
}
@media (min-width: 900px) {
  .countries-section::before {
    height: clamp(360px, 39vw, 600px);
    background-image: url("assets/wash-mountains.webp");
    background-position: center top;
  }
  .countries-section .section-head {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .countries-section .section-head > p {
    max-width: 430px;
    padding-bottom: 0;
  }
}
.countries-section h2 {
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.countries-section h2 em {
  color: var(--red-dark);
}
.country {
  box-shadow: 0 34px 64px -30px rgba(20, 22, 20, 0.42);
}
.country {
  --more: 64px;
}
.country-more i {
  display: none;
}
.button-red::after {
  content: none;
}
.checklist-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(30px, 4vw, 64px);
}
.checklist-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("assets/wash-mountains.webp") right center / cover no-repeat;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(to right, transparent 70%, #000 100%);
  mask-image: linear-gradient(to right, transparent 70%, #000 100%);
  pointer-events: none;
}
.checklist-banner p.checklist-number {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(86px, 12.2vw, 212px);
  line-height: 0.8;
  letter-spacing: -0.075em;
  font-weight: 650;
  background: url("assets/wash-mountains.webp") 46% 88% / 330% auto no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.checklist-banner p.checklist-number span {
  display: block;
  margin-top: 0.04em;
  font-size: 0.4em;
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 650;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.checklist-cover {
  border-radius: 0;
  box-shadow: none;
}
.checklist-banner .button {
  margin-top: clamp(20px, 2vw, 30px);
}
@media (min-width: 900px) {
  .checklist-banner {
    gap: clamp(28px, 3vw, 56px);
    align-items: center;
  }
  .checklist-banner > div {
    flex: 1 1 auto;
  }
  .checklist-cover {
    order: 3;
    flex: 0 0 auto;
    max-width: none;
    width: clamp(300px, 30vw, 500px);
    margin-right: clamp(-104px, -7vw, -44px);
    margin-block: clamp(-44px, -3vw, -20px);
  }
}
@media (min-width: 900px) {
  .checklist-banner h2 {
    font-size: clamp(32px, 4.1vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    max-width: 12ch;
  }
  .checklist-banner h2 br {
    display: none;
  }
}
.checklist-banner {
  background:
    radial-gradient(
      34% 72% at 100% -4%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 64%
    ),
    radial-gradient(
      104% 128% at 2% 100%,
      rgba(116, 10, 16, 0.5) 0%,
      rgba(116, 10, 16, 0) 64%
    ),
    var(--red);
}
.checklist-banner p.checklist-number {
  font-size: clamp(104px, 15.5vw, 264px);
  font-weight: 800;
  letter-spacing: -0.06em;
}
.checklist-banner p.checklist-number span {
  font-size: 0.3em;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.1em;
}
@media (min-width: 900px) {
  .checklist-cover {
    width: clamp(390px, 41vw, 680px);
    margin-right: clamp(-150px, -10vw, -62px);
    margin-block: clamp(-96px, -6.6vw, -40px);
  }
}
.checklist-banner p:not(.eyebrow):not(.checklist-number) {
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.5;
  max-width: 44ch;
}
.checklist-banner .button {
  min-height: clamp(58px, 4.4vw, 74px);
  padding: clamp(18px, 1.5vw, 26px) clamp(30px, 2.8vw, 48px);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
}
@media (max-width: 899px) {
  .checklist-cover {
    width: 150%;
    max-width: none;
    margin-right: -50%;
    margin-block: clamp(-28px, -5vw, -10px);
  }
}
.checklist-banner p.checklist-number {
  font-size: clamp(112px, 18vw, 330px);
  text-align: center;
}
.checklist-banner p.checklist-number {
  font-size: clamp(112px, 17vw, 330px);
}
@media (min-width: 900px) {
  .checklist-cover {
    width: clamp(390px, 36vw, 680px);
  }
}
@media (min-width: 900px) {
  .checklist-banner h2 br {
    display: inline;
  }
}
.checklist-banner h2 {
  max-width: none;
}
.checklist-banner p:not(.eyebrow):not(.checklist-number) {
  text-wrap: pretty;
}
.checklist-banner p.checklist-number {
  font-size: clamp(116px, 18.5vw, 360px);
  background: none;
}
.checklist-banner p.checklist-number b {
  display: block;
  font-weight: inherit;
  letter-spacing: inherit;
  background: url("assets/wash-mountains.webp") 46% 88% / 330% auto no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: scaleY(1.16);
  transform-origin: 50% 100%;
}
.checklist-banner p.checklist-number span {
  font-size: 0.27em;
}
.checklist-cover {
  filter: drop-shadow(20px 28px 30px rgba(96, 6, 12, 0.42));
}
@media (max-width: 899px) {
  .checklist-banner p.checklist-number {
    margin-inline: auto;
  }
}
@media (max-width: 999px) {
  .hero-actions .hero-secondary {
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 380px;
    min-height: 56px;
    padding: 16px 24px;
    border: 1px solid rgba(36, 37, 37, 0.2);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 550;
    transition:
      border-color 0.2s,
      background 0.2s;
  }
  .hero-actions .hero-secondary:hover,
  .hero-actions .hero-secondary:focus-visible {
    background: rgba(36, 37, 37, 0.04);
    border-color: rgba(36, 37, 37, 0.45);
  }
}
@media (max-width: 699px) {
  .hero-evidence .hand-note--up {
    display: none;
  }
}
.hero.hero-editorial {
  position: relative;
  isolation: isolate;
}
.hero.hero-editorial::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(-40px, -3vw, -20px);
  left: 50%;
  width: 100vw;
  height: clamp(420px, 60vw, 900px);
  transform: translateX(-50%);
  background: url("assets/wash-forest.webp") center top / cover no-repeat;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 52%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 0 52%, transparent 96%);
  pointer-events: none;
}
@media (max-width: 699px) {
  .hero.hero-editorial::before {
    height: clamp(620px, 210vw, 900px);
    opacity: 0.4;
  }
}
.hero-secondary {
  background: rgba(255, 255, 255, 0.72);
}
.hero-trust {
  align-items: center;
}
.hero-trust svg {
  width: clamp(40px, 3.4vw, 54px);
  height: clamp(40px, 3.4vw, 54px);
  padding: clamp(10px, 0.9vw, 14px);
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}
.vk-mark {
  width: auto;
  height: auto;
}
.vk-mark img {
  width: clamp(34px, 2.6vw, 44px);
  height: auto;
  border-radius: 0;
}
@media (min-width: 620px) and (max-width: 999px) {
  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .button,
  .hero-actions .hero-secondary {
    flex: 1 1 0;
    width: auto;
    max-width: none;
  }
  .hero-trust {
    max-width: none;
  }
}
@media (max-width: 699px) {
  .mosaic {
    column-count: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    margin-inline: 0;
    padding: 14px 0 0;
  }
  .mosaic-card {
    margin: 0;
    transform: none;
  }
  .mosaic-card img {
    aspect-ratio: 1;
    object-fit: cover;
  }
  .mosaic-card:nth-of-type(2) {
    order: -1;
    grid-column: 1 / -1;
  }
  .mosaic-card:nth-of-type(2) img {
    aspect-ratio: 3 / 2;
  }
  .mosaic .mosaic-card:nth-of-type(3) {
    display: none;
  }
  .mosaic-card:not(:nth-of-type(2)) {
    display: flex;
    flex-direction: column;
  }
  .mosaic-card:not(:nth-of-type(2)) .client-plate {
    position: static;
    max-width: none;
    padding: 8px 5px 2px;
    border-radius: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: 11px;
  }
  .mosaic-card:not(:nth-of-type(2)) .client-plate b {
    font-size: 13px;
  }
}
.hero-trust svg {
  display: none;
}
@media (min-width: 1000px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 14px;
  }
  .hero-actions .button,
  .hero-actions .hero-secondary {
    width: auto;
    max-width: none;
  }
  .hero-actions .hero-secondary {
    max-width: 240px;
    padding: 14px 26px;
    line-height: 1.25;
    text-align: center;
  }
}
.hero-chips {
  display: grid;
  gap: 10px;
  margin: clamp(22px, 2.4vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}
.hero-chips li {
  display: grid;
  gap: 3px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.hero-chips b {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
@media (min-width: 620px) {
  .hero-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mosaic-count {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: clamp(14px, 1.4vw, 22px) 0 0 auto;
  padding: clamp(14px, 1.2vw, 20px) clamp(20px, 1.8vw, 30px);
  border-radius: 22px;
  background: var(--red);
  color: var(--white);
}
.mosaic-count strong {
  font-size: clamp(38px, 3.6vw, 62px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.mosaic-count span {
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.32;
}
.hero.hero-editorial::before {
  background-image: url("assets/wash-mountains.webp");
  height: clamp(420px, 54vw, 860px);
  opacity: 1;
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0 55%, transparent 97%),
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.35) 26%, #000 46%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, #000 0 55%, transparent 97%),
    linear-gradient(to right, transparent 0, rgba(0, 0, 0, 0.35) 26%, #000 46%);
  mask-composite: intersect;
}
@media (max-width: 699px) {
  .hero.hero-editorial::before {
    height: clamp(560px, 190vw, 860px);
    opacity: 0.85;
  }
}
.mosaic-count {
  gap: 14px;
  padding: clamp(16px, 1.3vw, 22px) clamp(22px, 1.9vw, 32px);
}
.mosaic-count strong {
  font-size: clamp(40px, 3.2vw, 56px);
}
.mosaic-count span {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.28;
}
.mosaic-count-icon {
  width: clamp(22px, 2vw, 30px);
  height: auto;
  opacity: 0.85;
}
@media (min-width: 1200px) {
  .mosaic {
    column-count: 3;
  }
}
@media (min-width: 700px) {
  .client-plate {
    right: auto;
    width: max-content;
    max-width: calc(100% - clamp(16px, 1.6vw, 28px));
    padding: clamp(7px, 0.62vw, 10px) clamp(10px, 0.78vw, 13px);
    border-radius: 13px;
  }
  .client-plate b {
    font-size: clamp(12px, 0.82vw, 15px);
  }
}
.mosaic-count {
  display: none;
}
@media (min-width: 1200px) {
  .mosaic-card:nth-of-type(-n + 4) img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}
@media (min-width: 700px) {
  .mosaic {
    column-count: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.1vw, 18px);
  }
  .mosaic-card {
    margin: 0;
    transform: none;
  }
  .mosaic .mosaic-card img,
  .mosaic .mosaic-card:nth-of-type(-n + 4) img {
    aspect-ratio: 1.9;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media (min-width: 1000px) {
  .hero.hero-editorial {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 2.4vw, 52px);
  }
}
@media (min-width: 700px) {
  .mosaic .mosaic-card img,
  .mosaic .mosaic-card:nth-of-type(-n + 4) img {
    object-position: 50% 22%;
  }
}
.hero-evidence {
  position: relative;
}
.mosaic-count {
  display: flex;
}
@media (min-width: 1200px) {
  .mosaic-count {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    white-space: nowrap;
    box-shadow: 0 26px 52px -22px rgba(20, 22, 20, 0.6);
  }
}
@media (min-width: 1200px) {
  .mosaic-count {
    flex-direction: column;
    gap: 4px;
    padding: clamp(16px, 1.4vw, 24px) clamp(18px, 1.5vw, 26px) clamp(18px, 1.5vw, 26px);
    border-radius: 26px;
    text-align: center;
  }
  .mosaic-count-icon {
    width: clamp(30px, 2.5vw, 42px);
    margin-bottom: 2px;
  }
}
@media (min-width: 1200px) {
  .mosaic .mosaic-card:nth-of-type(4) .client-plate {
    left: auto;
    right: clamp(8px, 0.8vw, 14px);
  }
}
@media (min-width: 1200px) {
  .mosaic-count {
    border: 5px solid var(--white);
    border-radius: 30px;
    background: linear-gradient(165deg, #f4362e 0%, var(--red) 46%, var(--red-dark) 100%);
  }
}
.mosaic-count strong {
  margin-top: 2px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
}
.hero-proof .mosaic-count {
  position: static;
  z-index: auto;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 9px 16px 9px 14px;
  border: 3px solid var(--white);
  border-radius: 16px;
  text-align: left;
  white-space: nowrap;
  transform: none;
  box-shadow: 0 12px 26px -16px rgba(20, 22, 20, 0.5);
}
.hero-proof .mosaic-count strong {
  margin: 0;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 0.92;
}
.hero-proof .mosaic-count span {
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0.01em;
}
@media (min-width: 700px) {
  .mosaic .client-plate {
    position: static;
    display: flex;
    align-items: baseline;
    gap: 6px;
    max-width: none;
    margin: 0;
    padding: clamp(5px, 0.4vw, 7px) clamp(4px, 0.4vw, 7px) clamp(1px, 0.1vw, 2px);
    border-radius: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mosaic .client-plate b {
    flex: none;
  }
  .mosaic {
    gap: clamp(10px, 0.7vw, 12px);
  }
  .mosaic .mosaic-card {
    --cap: clamp(22px, 1.7vw, 30px);
  }
  .mosaic .client-plate {
    height: var(--cap);
    box-sizing: border-box;
  }
}
.mosaic .client-quote {
  position: absolute;
  z-index: 3;
  top: auto;
  right: auto;
  bottom: calc(var(--cap, 0px) + clamp(4px, 0.5vw, 9px));
  left: clamp(2px, 0.3vw, 6px);
  width: 44%;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: none;
  line-height: 0;
}
.mosaic .mosaic-card .client-quote img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: none;
  aspect-ratio: auto;
  object-fit: fill;
}
.mosaic .client-quote:hover {
  box-shadow: none;
  transform: scale(1.03);
  transition: transform 0.2s ease;
}
@media (max-width: 699px) {
  .mosaic .client-quote {
    display: none;
  }
  .mosaic .mosaic-card:nth-of-type(2) .client-quote {
    display: block;
    top: 5px;
    bottom: auto;
    width: 62%;
  }
}
@media (min-width: 700px) {
  .mosaic .mosaic-card:nth-of-type(2) .client-quote {
    top: clamp(2px, 0.3vw, 6px);
    bottom: auto;
  }
  .mosaic .mosaic-card:nth-of-type(4) .client-quote {
    left: auto;
    right: clamp(2px, 0.3vw, 6px);
  }
}
@media (min-width: 1500px) {
  .hero-evidence .mosaic .mosaic-card > img {
    aspect-ratio: auto;
    height: clamp(200px, calc(33vh - 105px), 250px);
    object-fit: cover;
  }
}
@media (min-width: 1500px) and (max-height: 1020px) {
  .hero {
    padding-top: 26px;
  }
  .hero-description {
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-chips {
    margin-top: 24px;
  }
  .hero-proof {
    margin-top: 22px;
  }
}
.country-bg {
  display: none;
}
.country ul::after,
.country::before,
.country::after {
  content: none;
}
.country-more {
  background: var(--white);
}
.country-car {
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}
.country {
  padding-top: 0;
  border-radius: 18px;
  background: #1b1d1d;
  color: var(--white);
}
.country-car {
  order: -1;
  width: calc(100% + 44px);
  max-width: none;
  margin: 0 -22px 20px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  background: #101111;
}
.country h3 {
  color: var(--white);
}
.country li {
  color: rgba(255, 255, 255, 0.74);
}
.country-name {
  color: rgba(255, 255, 255, 0.82);
}
.country-rule {
  background: rgba(255, 255, 255, 0.18);
}
.country-more {
  background: none;
  color: var(--white);
}
.country-more span {
  color: var(--white);
}
.country-more::before {
  background: rgba(255, 255, 255, 0.22);
}
@media (min-width: 900px) {
  .country-grid {
    align-items: start;
  }
  .country--jp {
    margin-top: -36px;
  }
  .country--kr {
    margin-top: -18px;
  }
}
@keyframes country-rise {
  from {
    transform: translateY(38px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .country {
      animation: country-rise linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 26%;
    }
    .country--jp {
      animation-range: entry 4% cover 33%;
    }
    .country--kr {
      animation-range: entry 4% cover 40%;
    }
  }
}
.country {
  padding-inline: 0;
}
.country > *:not(.country-car) {
  padding-inline: 22px;
}
.country-car {
  width: 100%;
  margin-inline: 0;
}
.country-more {
  margin-inline: 0;
}
.country-car {
  object-position: 50% 58%;
}
.country--cn .country-car {
  object-position: 50% 45%;
}
.country--jp .country-car {
  object-position: 50% 26%;
}
.country--kr .country-car {
  object-position: 50% 50%;
}
.checklist-banner::before {
  content: none;
}
.checklist-banner p.checklist-number {
  font-size: clamp(72px, 9.6vw, 164px);
}
.checklist-banner p.checklist-number b {
  background: none;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.checklist-banner {
  padding-block: clamp(38px, 5.2vw, 84px);
}
@media (min-width: 900px) {
  .faq-section {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 3.4vw, 64px);
    padding-left: clamp(40px, 5.2vw, 104px);
  }
  .faq-section::before {
    background:
      linear-gradient(
        100deg,
        rgba(246, 245, 242, 0.94) 0%,
        rgba(246, 245, 242, 0.42) 20%,
        rgba(246, 245, 242, 0) 40%
      ),
      url("assets/faq-bg.webp") left center / cover no-repeat;
  }
  .faq-list {
    background: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
@media (min-width: 900px) {
  .faq-section::before {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 40%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 40%);
  }
}
@media (min-width: 900px) {
  .faq-section {
    padding-right: clamp(28px, 3.4vw, 72px);
  }
  .faq-list {
    border-radius: var(--radius);
    margin-top: clamp(24px, 2.6vw, 52px);
    box-shadow: 0 40px 80px -46px rgba(20, 22, 20, 0.5);
  }
}
.objections article {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.objections article::after {
  content: none;
}
.objections h3 {
  color: var(--ink);
}
.objections p {
  color: var(--muted);
}
.objections .objection-mark,
.objections .objection-label {
  color: var(--muted);
}
.objections .text-link {
  color: var(--ink);
  text-decoration-color: rgba(36, 37, 37, 0.3);
}
.objections .text-link:hover,
.objections .text-link:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
@media (min-width: 1250px) {
  .objections .objection-shot {
    position: static;
    grid-column: 1 / -1;
    grid-row: 1;
    width: calc(100% + 52px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: -28px -26px 20px;
    border-radius: 0;
    mask-image: linear-gradient(to bottom, #000 0, #000 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 78%,
      transparent 100%
    );
  }
  .objections article:nth-child(2) .objection-shot {
    object-position: 50% 42%;
  }
  .objections article:nth-child(3) .objection-shot {
    object-position: 58% 50%;
  }
  .objections h3,
  .objections p {
    max-width: none;
  }
}
.faq-intro h2 em {
  color: var(--red);
}
.faq-list {
  interpolate-size: allow-keywords;
}
.faq-list details::details-content {
  block-size: 0;
  overflow: clip;
  transition:
    block-size 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    content-visibility 0.34s allow-discrete;
}
.faq-list details[open]::details-content {
  block-size: auto;
}
.faq-list summary > span {
  transition:
    transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.18s ease;
}
@media (min-width: 900px) {
  .faq-section::before {
    position: static;
    z-index: auto;
    grid-area: 2 / 1;
    align-self: start;
    inset: auto;
    height: auto;
    width: 100%;
    margin-top: calc(-1 * clamp(150px, 15.3vw, 230px));
    aspect-ratio: 4 / 5;
    background: url("assets/faq-bg-tall.webp") left 62% / cover no-repeat;
    border-radius: 0 0 var(--radius) var(--radius);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 34%);
  }
  .faq-intro {
    position: relative;
    z-index: 1;
    padding-left: clamp(16px, 1.8vw, 30px);
  }
  .faq-intro h2 {
    font-size: clamp(54px, 4.8vw, 76px);
  }
  .faq-intro > p:not(.eyebrow) {
    font-size: 16px;
    color: var(--ink);
  }
  .faq-intro > p > a {
    font-weight: 500;
  }
  .faq-section {
    grid-template-rows: auto 1fr;
  }
  .faq-list {
    grid-area: 1 / 2 / span 2 / 3;
    margin-top: 0;
    align-self: start;
  }
}
@media (min-width: 1250px) {
  .faq-section {
    grid-template-columns: 0.82fr 1.18fr;
  }
}
.footer .social-icon {
  background: rgba(255, 255, 255, 0.92);
  -webkit-mask: var(--social-glyph) center / contain no-repeat;
  mask: var(--social-glyph) center / contain no-repeat;
  transition: background 0.2s;
}
.footer .social-icon img {
  display: none;
}
.footer .social-telegram {
  --social-glyph: url("assets/social/telegram-mono.svg");
}
.footer .social-vk {
  --social-glyph: url("assets/social/vk-glyph.svg");
}
.footer .social-max {
  --social-glyph: url("assets/social/max-mono.svg");
}
.footer .social-whatsapp {
  --social-glyph: url("assets/social/whatsapp-mono.svg");
}
.footer .social-link:hover .social-icon,
.footer .social-link:focus-visible .social-icon {
  background: var(--red);
}
.reviews-lead {
  max-width: 38ch;
  margin-top: 18px;
}
.reviews-figures {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 46px);
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.reviews-figures li {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.reviews-figures strong {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}
.reviews-figures span {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--muted);
}
.reviews-aside {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 30px 60px -40px rgba(20, 22, 20, 0.45);
}
.reviews-aside > p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 10px;
}
.reviews-aside .rating-link {
  gap: 14px;
}
.reviews-aside .rating-link strong {
  font-size: clamp(38px, 3.2vw, 50px);
}
.reviews-aside .vk-mark {
  width: 40px;
  height: 40px;
}
.reviews-aside .stars-svg {
  width: 96px;
  height: auto;
}
.reviews-aside .rating-link small {
  font-size: 13px;
  margin-top: 7px;
  color: var(--ink);
}
.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: clamp(370px, 92vw, 470px);
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 64px -40px rgba(20, 22, 20, 0.55);
}
.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}
.video-cover:after {
  inset: 0;
  background: linear-gradient(transparent 34%, rgba(10, 14, 10, 0.88));
}
.video-card:not(:first-child) .video-cover > img {
  transform: scale(1.12);
}
.video-card:not(:first-child) .video-cover:hover > img {
  transform: scale(1.17);
}
.video-card h3,
.video-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  pointer-events: none;
}
.video-card h3 {
  font-size: clamp(19px, 1.5vw, 23px);
}
.video-card > p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}
.video-card > a {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  padding: 8px 0 0;
}
.video-cover .play-icon {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  font-size: 15px;
}
.video-time {
  top: 16px;
  right: 16px;
  bottom: auto;
  background: rgba(10, 14, 10, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11.5px;
}
.written-review {
  box-shadow: 0 30px 58px -42px rgba(20, 22, 20, 0.5);
}
@media (min-width: 1000px) {
  .reviews-section .section-head {
    align-items: start;
    gap: clamp(30px, 3.4vw, 70px);
  }
  .reviews-aside {
    align-self: start;
    padding: 24px 28px;
  }
  .video-grid {
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: clamp(16px, 1.5vw, 24px);
  }
  .video-card {
    height: clamp(400px, 31vw, 500px);
    padding: 26px;
  }
}
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-section > .wrap {
  position: relative;
  z-index: 2;
}
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: clamp(340px, 46vw, 700px);
  background:
    linear-gradient(
      to bottom,
      rgba(233, 236, 229, 0) 38%,
      rgba(233, 236, 229, 0.72) 76%,
      #e9ece5 100%
    ),
    linear-gradient(
      to right,
      rgba(246, 245, 242, 0.9) 0,
      rgba(246, 245, 242, 0.42) 42%,
      rgba(246, 245, 242, 0.12) 78%
    ),
    url("assets/reviews-bg-900.webp") 34% top / cover no-repeat;
}
.reviews-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: clamp(10px, 2vw, 40px);
  right: calc(-1 * clamp(20px, 3vw, 60px));
  width: clamp(280px, 46vw, 720px);
  aspect-ratio: 900 / 886;
  background: url("assets/reviews-vetka.webp") center / contain no-repeat;
  opacity: 0.92;
}
@media (min-width: 760px) {
  .reviews-section::before {
    background:
      linear-gradient(
        to bottom,
        rgba(233, 236, 229, 0) 42%,
        rgba(233, 236, 229, 0.7) 78%,
        #e9ece5 100%
      ),
      linear-gradient(
        to right,
        rgba(246, 245, 242, 0.82) 0,
        rgba(246, 245, 242, 0.3) 46%,
        rgba(246, 245, 242, 0.06) 82%
      ),
      url("assets/reviews-bg-1600.webp") left top / cover no-repeat;
  }
}
@media (min-width: 1000px) {
  .reviews-section::after {
    top: clamp(20px, 3vw, 60px);
    right: calc(-1 * clamp(20px, 2vw, 50px));
    width: clamp(560px, 50vw, 880px);
    opacity: 1;
  }
}
.more-videos summary {
  font-size: 14px;
}
.extra-video-list p,
.extra-video-list a,
.extra-video-list .text-link {
  font-size: 12.5px;
}
.extra-video-list a {
  display: inline;
}
.extra-video-list .text-link {
  margin-right: 0;
}
.extra-video-list .text-link::after {
  content: "·";
  color: var(--muted);
  display: inline-block;
  margin: 0 7px;
  text-decoration: none;
}
@media (max-width: 899px) {
  .extra-video-list img {
    width: 88px;
    height: 110px;
  }
}
@media (min-width: 900px) {
  .extra-video-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.4vw, 24px);
    padding: 24px 0 36px;
  }
  .extra-video-list article {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .extra-video-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }
  .extra-video-list h3 {
    font-size: 16px;
  }
}
.written-review blockquote {
  min-height: 0;
  margin: 20px 0;
}
.written-review > img {
  flex: 1 1 auto;
  aspect-ratio: auto;
  min-height: 150px;
  border-radius: 16px;
}
.written-review > .text-link {
  font-size: 13px;
  margin-top: 12px;
}
.quote-review blockquote {
  margin-block: 20px;
}
.quote-review .big-quote {
  display: none;
}
.reviews-section > .wrap {
  isolation: isolate;
}
.reviews-section > .wrap::before {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  left: calc((100% - 100vw) / 2);
  width: 100vw;
  bottom: calc(-1 * clamp(40px, 5vw, 110px));
  height: clamp(280px, 26vw, 520px);
  background:
    linear-gradient(
      to bottom,
      #e9ece5 0,
      rgba(233, 236, 229, 0.82) 34%,
      rgba(233, 236, 229, 0.4) 100%
    ),
    url("assets/reviews-bg-1600.webp") center bottom / cover no-repeat;
}
@media (min-width: 1000px) {
.reviews-section > .wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: calc((100% - 100vw) / 2);
  bottom: calc(-1 * clamp(40px, 5vw, 120px));
  width: clamp(260px, 30vw, 620px);
  aspect-ratio: 900 / 886;
  background: url("assets/reviews-vetka.webp") center / contain no-repeat;
  transform: scaleX(-1);
  opacity: 0.8;
}
}
@media (max-width: 759px) {
  .reviews-section::after {
    display: none;
  }
}
.country-flag {
  box-sizing: content-box;
  width: 34px;
  height: 23px;
  padding: 0;
  border-radius: 3px;
  object-fit: cover;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cost-quote {
  margin: 26px 0 30px;
  padding-left: 18px;
  border-left: 2px solid var(--red-dark);
  max-width: 46ch;
}
.cost-quote p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: #fff;
}
.cost-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.util-figure {
  margin: 26px 0 26px;
  padding-left: 18px;
  border-left: 2px solid var(--red-dark);
}
.util-figure strong {
  display: block;
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--red-dark);
}
.util-figure span {
  display: block;
  margin-top: 10px;
  max-width: 44ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.estimate-total {
  align-items: flex-start;
}
.plus-sign {
  flex: 0 0 16px;
  padding-top: 2px;
  font-size: 9px;
  line-height: 1.4;
  color: #737870;
}
.cost-panel::after {
  display: none;
}
.cost-photo {
  margin: 0;
  display: none;
}
@media (max-width: 999px) {
  .cost-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cost-intro {
    order: 1;
  }
  .cost-photo {
    display: block;
    order: 2;
    margin-top: 28px;
  }
  .estimate {
    order: 3;
  }
  .cost-photo img {
    display: block;
    width: 100%;
    height: clamp(150px, 44vw, 270px);
    object-fit: cover;
    object-position: 62% 44%;
    border-radius: 16px;
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 42%;
    gap: 0;
    align-items: start;
  }
  .estimate {
    margin-top: 38px;
  }
  @media (max-width: 1249px) {
    .cost-panel {
      padding-right: 47%;
    }
  }
  .cost-photo {
    display: block;
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
  }
  .cost-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 50%;
    display: block;
  }
  .cost-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      96deg,
      #17181b 0,
      rgba(23, 24, 27, 0.95) 46%,
      rgba(23, 24, 27, 0.62) 62%,
      rgba(23, 24, 27, 0.12) 80%,
      rgba(23, 24, 27, 0) 100%
    );
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    padding: 54px 60px;
    padding-right: 46%;
  }
  .estimate {
    background: none;
    padding: 0;
    margin-top: 26px;
    border-radius: 0;
  }
  .estimate-head {
    display: none; 
  }
  .estimate ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    margin-top: 0;
  }
  .estimate li {
    padding: 11px 0 11px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .estimate li:before {
    top: 13px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
  }
  .estimate li span {
    font-size: 15px;
    color: #fff;
  }
  .estimate li small {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
  }
  .estimate-total {
    margin-top: 11px;
    padding: 11px 0 11px 26px;
    border-bottom: 1px solid var(--red-dark);
    gap: 0;
    position: relative;
  }
  .plus-sign {
    position: absolute;
    left: 0;
    top: 13px;
    padding: 0;
    font-size: 10px;
    font-weight: 600;
    color: var(--red-dark);
  }
  .estimate-total strong {
    font-size: 15px;
    color: #fff;
  }
  .estimate-total small {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
  }
  .estimate-caption {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    border-top: 0;
    padding-top: 14px;
    margin-top: 0;
  }
  .cost-intro > p:not(.eyebrow):not(.cost-note) {
    display: none;
  }
  .cost-quote {
    margin: 18px 0 0;
  }
  .cost-quote p {
    font-size: 17px;
  }
  .cost-intro .button {
    margin-top: 26px;
    min-height: 56px;
    font-size: 16px;
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    padding-right: 51%;
  }
  .estimate ol {
    column-gap: 24px;
  }
}
@media (min-width: 1000px) and (max-width: 1249px) {
  .cost-panel {
    padding-right: 54%;
  }
  .estimate ol {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    padding: 52px 60px;
  }
  .cost-intro {
    max-width: 660px;
  }
  .estimate {
    max-width: 560px;
    margin-top: 24px;
  }
  .estimate-caption {
    display: none;
  }
  .cost-intro .button {
    margin-top: 24px;
  }
}
@media (min-width: 1000px) and (max-width: 1249px) {
  .cost-intro {
    max-width: 480px;
  }
  .estimate {
    max-width: 480px;
  }
}
@media (min-width: 1000px) and (max-width: 1249px) {
  .estimate {
    max-width: 400px;
  }
  .cost-intro {
    max-width: 455px;
  }
}
@media (min-width: 1450px) {
  .cost-intro {
    max-width: 790px;
  }
  .estimate {
    max-width: 620px;
  }
}
@media (min-width: 1000px) {
  .cost-intro {
    max-width: none;
  }
  .cost-intro > :not(h2) {
    max-width: 660px;
  }
  #cost-title {
    max-width: 62%;
  }
}
@media (min-width: 1000px) and (max-width: 1249px) {
  .cost-intro > :not(h2) {
    max-width: 455px;
  }
  #cost-title {
    max-width: 58%;
  }
}
@media (min-width: 1450px) {
  .cost-intro > :not(h2) {
    max-width: 700px;
  }
}
@media (max-width: 999px) {
  .cost-intro {
    display: contents;
  }
  .cost-intro .eyebrow,
  .cost-intro h2,
  .cost-intro > p:not(.cost-note),
  .cost-quote {
    order: 1;
  }
  .cost-photo {
    order: 2;
  }
  .estimate {
    order: 3;
  }
  .cost-intro .button {
    order: 4;
  }
  .cost-note {
    order: 5;
  }
}
.cost-panel {
  background: var(--white);
  color: var(--ink);
}
.cost-panel {
  --red-dark: #b9241d;
}
.cost-panel .eyebrow {
  color: var(--muted);
}
.cost-intro h2 {
  color: var(--ink);
}
.cost-intro h2 em {
  color: var(--red);
}
.cost-intro > p:not(.eyebrow),
.cost-intro p.cost-note {
  color: var(--muted);
}
.cost-quote p {
  color: var(--ink);
}
.cost-quote cite {
  color: var(--muted);
}
.cost-panel .text-link {
  color: var(--ink);
}
.cost-panel .stars {
  color: var(--red-dark);
}
@media (min-width: 1000px) {
  .cost-photo::after {
    background: linear-gradient(
      96deg,
      #fff 0,
      rgba(255, 255, 255, 0.96) 44%,
      rgba(255, 255, 255, 0.7) 60%,
      rgba(255, 255, 255, 0.16) 82%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .estimate li,
  .estimate-total {
    border-bottom-color: var(--line);
  }
  .estimate li span,
  .estimate-total strong {
    color: var(--ink);
  }
  .estimate li small,
  .estimate-total small {
    color: var(--muted);
  }
  .estimate li:before,
  .plus-sign {
    color: var(--red-dark);
  }
  .estimate-total {
    border-bottom-color: var(--red-dark);
  }
}
@media (min-width: 1000px) {
  .cost-photo img {
    object-position: 34% 50%;
  }
}
@media (max-width: 999px) {
  .cost-photo img {
    object-position: 46% 50%;
    height: clamp(140px, 38vw, 230px);
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    padding: 76px 72px;
  }
  .cost-intro .eyebrow {
    margin-bottom: 26px;
  }
  #cost-title {
    margin-bottom: 34px;
  }
  .cost-quote {
    margin: 0 0 46px;
    padding-left: 22px;
  }
  .cost-quote cite {
    margin-top: 16px;
  }
  .estimate {
    margin-top: 0;
  }
  .estimate ol {
    column-gap: 54px;
    row-gap: 10px;
  }
  .estimate li {
    padding-block: 17px;
  }
  .estimate li small {
    margin-top: 7px;
  }
  .estimate-total {
    margin-top: 26px;
    padding-bottom: 20px;
  }
  .cost-intro .button {
    margin-top: 42px;
  }
  .cost-intro p.cost-note {
    margin-top: 20px;
  }
  .cost-photo::after {
    background: linear-gradient(
      93deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.99) 22%,
      rgba(255, 255, 255, 0.96) 34%,
      rgba(255, 255, 255, 0.89) 44%,
      rgba(255, 255, 255, 0.76) 54%,
      rgba(255, 255, 255, 0.58) 64%,
      rgba(255, 255, 255, 0.38) 74%,
      rgba(255, 255, 255, 0.2) 84%,
      rgba(255, 255, 255, 0.07) 93%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}
@media (min-width: 1000px) {
  .cost-photo img {
    object-position: 70% 50%;
  }
}
@media (min-width: 1500px) {
  .cost-photo img {
    object-position: 52% 50%;
  }
}
@media (min-width: 1800px) {
  .cost-photo img {
    object-position: 34% 50%;
  }
}
@media (max-width: 999px) {
  .estimate {
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .cost-photo img {
    object-position: 76% 50%;
  }
}
@media (min-width: 1000px) {
  .cost-panel {
    display: grid;
    grid-template-columns: 1.04fr 1fr;
    gap: 62px;
    padding: 64px 62px;
    align-items: center;
  }
  .cost-intro,
  .cost-intro > :not(h2),
  #cost-title,
  .estimate {
    max-width: none;
  }
  #cost-title {
    margin-bottom: 30px;
  }
  .cost-quote {
    margin: 0 0 38px;
  }
  .cost-intro .button {
    margin-top: 34px;
    max-width: 360px;
  }
  .estimate {
    background: var(--white);
    border-radius: 20px;
    padding: 34px 36px;
    margin-top: 0;
    box-shadow: 0 22px 54px rgba(36, 37, 37, 0.13);
  }
  .estimate-head {
    display: flex;
  }
  .estimate ol {
    display: block;
    margin-top: 22px;
  }
  .estimate li {
    padding: 15px 0 15px 28px;
    border-bottom: 1px solid var(--line);
  }
  .estimate li:before {
    top: 17px;
    font-size: 10px;
  }
  .estimate li small {
    margin-top: 5px;
  }
  .estimate-total {
    position: relative;
    margin-top: 20px;
    padding: 0 0 0 28px;
    border-bottom: 0;
    gap: 0;
  }
  .plus-sign {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 10px;
    font-weight: 600;
  }
  .estimate-caption {
    display: block;
    font-size: 11px;
    line-height: 1.6;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 20px;
  }
  .cost-photo::after {
    background: linear-gradient(
      97deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.85) 34%,
      rgba(255, 255, 255, 0.79) 58%,
      rgba(255, 255, 255, 0.71) 80%,
      rgba(255, 255, 255, 0.68) 100%
    );
  }
  .cost-photo img {
    object-position: 50% 38%;
  }
}
@media (min-width: 1250px) {
  .cost-panel {
    gap: 78px;
    padding: 72px 70px;
  }
  .estimate {
    padding: 38px 42px;
  }
}
.plus-sign {
  color: var(--red-dark);
}
@media (min-width: 1000px) and (max-width: 1249px) {
  .site-header .desktop-nav {
    gap: 20px;
  }
  .site-header .desktop-nav a {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  .desktop-nav a {
    white-space: nowrap;
  }
}
.objections article {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-template-columns: none;
  grid-template-rows: none;
  min-height: 0;
}
.objections .objection-mark::before {
  content: none;
}
.objections .objection-mark {
  display: block;
  margin: 0 0 22px;
  color: var(--red-dark);
  letter-spacing: normal;
}
.objections h3 {
  margin-top: 0;
}
.objections .text-link {
  margin-top: auto;
  align-self: start;
}
.objections .objection-facts {
  min-height: 0;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}
.objections .objection-facts a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration-color: rgba(36, 37, 37, 0.32);
}
.objections .objection-facts a:hover,
.objections .objection-facts a:focus-visible {
  text-decoration-color: var(--ink);
}
.process-section {
  position: relative;
  overflow: hidden;
  background-image: url("assets/steps-contour.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.process-section > * {
  position: relative;
  z-index: 1;
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%);
}
.process-section::before {
  left: 0;
  width: 20%;
  height: 78%;
  background-image: url("assets/steps-edge-left.webp");
  background-position: left bottom;
}
.process-section::after {
  right: 0;
  width: 20%;
  height: 78%;
  background-image: url("assets/steps-edge-right.webp");
  background-position: right bottom;
}
@media (min-width: 1000px) {
  .process-section::before {
    -webkit-mask-image: radial-gradient(
      ellipse 100% 62% at 0 50%,
      #000 0 34%,
      rgba(0, 0, 0, 0.68) 52%,
      transparent 79%
    );
    mask-image: radial-gradient(
      ellipse 100% 62% at 0 50%,
      #000 0 34%,
      rgba(0, 0, 0, 0.68) 52%,
      transparent 79%
    );
  }
  .process-section::after {
    -webkit-mask-image: radial-gradient(
      ellipse 100% 62% at 100% 50%,
      #000 0 34%,
      rgba(0, 0, 0, 0.68) 52%,
      transparent 79%
    );
    mask-image: radial-gradient(
      ellipse 100% 62% at 100% 50%,
      #000 0 34%,
      rgba(0, 0, 0, 0.68) 52%,
      transparent 79%
    );
  }
}
@media (max-width: 999px) {
  .process-section {
    background-image: none;
  }
  .process-section::before,
  .process-section::after {
    content: none;
  }
}
.process-list li {
  display: grid;
  grid-template-columns: 70px 30px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  position: relative;
  overflow: visible;
  min-height: 0;
  margin: 0;
  padding: 18px 26px 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(36, 37, 37, 0.055);
  color: var(--ink);
}
.process-list li:last-child {
  margin: 0;
  padding: 18px 26px 20px;
  background: var(--white);
  border-radius: 18px;
}
.process-list li > *:not(.step-shot) {
  position: static;
  z-index: auto;
  text-shadow: none;
}
.process-list .step-icon {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: start;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f1f1ec;
  color: var(--ink);
}
.process-list .step-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.process-list .step-number {
  grid-column: 2;
  grid-row: 1;
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--red-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.process-list h3 {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}
.process-list p {
  grid-column: 3;
  grid-row: 2;
  margin: 8px 0 0;
  min-height: 63px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}
.process-list small {
  grid-column: 3;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 600;
}
.process-list small::before {
  content: "";
  flex: none;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
}
.process-list {
  position: relative;
  --dot-y: 55px;
}
.process-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  background: var(--line);
}
.process-list li::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c2c5bc;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 6px var(--line);
}
.process-list li::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: var(--dot-y);
  height: 1px;
  background: var(--line);
}
.process-list li:last-child::before {
  background: var(--red);
}
.process-list {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-left: 42px;
}
.process-list li:nth-child(n + 2) {
  margin-top: 14px;
}
.process-list::before {
  left: 13px;
  top: var(--dot-y);
  bottom: 24px;
  width: 1px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 88%, transparent 100%);
}
.process-list li::before {
  left: -34px;
  top: calc(var(--dot-y) - 5px);
}
.process-list li::after {
  right: 100%;
  width: 17px;
}
@media (max-width: 1279px) {
  .process-list {
    --dot-y: 46px;
  }
  .process-list li {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
  }
  .process-list .step-icon {
    grid-row: 1;
    width: 56px;
    height: 56px;
  }
  .process-list .step-icon img {
    width: 32px;
    height: 32px;
  }
  .process-list .step-number {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .process-list h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 14px;
  }
  .process-list p {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 0;
  }
  .process-list small {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}
@media (min-width: 1280px) {
  .process-list {
    --rail-gap: clamp(64px, 6.6vw, 100px);
    --step-h: 181px;
    --pitch-short: 70px;
    --pitch-long: 119px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: var(--rail-gap);
    row-gap: 0;
    padding-left: 0;
    padding-top: 6px;
  }
  .process-list li {
    min-height: var(--step-h);
    width: 100%;
    max-width: 560px;
  }
  .process-list li:nth-child(odd) {
    grid-column: 1;
    justify-self: end;
  }
  .process-list li:nth-child(even) {
    grid-column: 2;
    justify-self: start;
  }
  .process-list li:nth-child(1) {
    grid-row: 1;
  }
  .process-list li:nth-child(2) {
    grid-row: 2;
    margin-top: calc(var(--pitch-short) - var(--step-h));
  }
  .process-list li:nth-child(3) {
    grid-row: 3;
    margin-top: calc(var(--pitch-long) - var(--step-h));
  }
  .process-list li:nth-child(4) {
    grid-row: 4;
    margin-top: calc(var(--pitch-short) - var(--step-h));
  }
  .process-list li:nth-child(5) {
    grid-row: 5;
    margin-top: calc(var(--pitch-long) - var(--step-h));
  }
  .process-list li:nth-child(6) {
    grid-row: 6;
    margin-top: calc(var(--pitch-short) - var(--step-h));
  }
  .process-list li:nth-child(7) {
    grid-row: 7;
    margin-top: calc(var(--pitch-long) - var(--step-h));
  }
  .process-list::before {
    left: calc(50% - var(--rail-gap) / 2);
    top: calc(var(--dot-y) - 35px);
    bottom: auto;
    width: var(--rail-gap);
    height: 681px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -58 100 681' preserveAspectRatio='none' fill='none' stroke='%23d0d3ca' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M48 -58C40 -40 35 -20 35 0C35 35 65 35 65 70C65 129.5 35 129.5 35 189C35 224 65 224 65 259C65 318.5 35 318.5 35 378C35 413 65 413 65 448C65 507.5 35 507.5 35 567C35 587 40 605 48 623'/%3E%3C/svg%3E")
      no-repeat;
    background-size: 100% 100%;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8.5%,
      #000 91.8%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8.5%,
      #000 91.8%,
      transparent 100%
    );
  }
  .process-list li::before {
    top: calc(var(--dot-y) - 5px);
  }
  .process-list li:nth-child(odd)::before {
    background: var(--red);
    left: calc(100% + 1px + var(--rail-gap) * 0.35 - 5px);
    right: auto;
  }
  .process-list li:nth-child(even)::before {
    background: #c2c5bc;
    right: calc(100% + 1px + var(--rail-gap) * 0.35 - 5px);
    left: auto;
  }
  .process-list li::after {
    width: calc(var(--rail-gap) * 0.35 - 10px);
  }
  .process-list li:nth-child(odd)::after {
    left: 100%;
    right: auto;
  }
  .process-list li:nth-child(even)::after {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 1280px) {
  .process-list li,
  .process-list li:last-child {
    min-height: var(--step-h);
    padding: 18px 30px 20px;
  }
  .process-list h3 {
    font-size: 23px;
  }
}
.about-section {
  padding-block: 28px 40px;
}
@media (min-width: 1000px) {
  .about-section {
    grid-template-columns: 1.24fr 1fr;
    gap: 48px;
    padding-block: 48px 64px;
  }
  .about-copy > p:not(.eyebrow) {
    margin-top: 24px;
  }
  .about-copy blockquote {
    margin: 32px 0;
    padding-left: 24px;
    border-left-width: 3px;
    font-size: 14px;
  }
}
@media (min-width: 1250px) {
  .about-section {
    gap: 48px;
    padding-block: 60px 80px;
  }
  .about-photo {
    height: 710px;
  }
  .about-copy > p.about-lead {
    font-size: 22px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 16px;
  }
  .about-copy blockquote {
    font-size: 19px;
    line-height: 1.65;
  }
}
@media (min-width: 1600px) {
  .about-section {
    grid-template-columns: 1.28fr 1fr;
    gap: 64px;
    padding-block: 80px 100px;
  }
  .about-photo {
    height: 860px;
  }
  .about-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 18px;
  }
  .about-copy blockquote {
    font-size: 23px;
  }
}
.about-section {
  position: relative;
}
.about-section > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1000px) {
  .about-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -16px;
    width: 26%;
    height: 86%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    background: url("assets/steps-edge-right.webp") right top / contain
      no-repeat;
    -webkit-mask-image: radial-gradient(
      ellipse 100% 72% at 100% 42%,
      #000 0 34%,
      rgba(0, 0, 0, 0.72) 53%,
      transparent 78%
    );
    mask-image: radial-gradient(
      ellipse 100% 72% at 100% 42%,
      #000 0 34%,
      rgba(0, 0, 0, 0.72) 53%,
      transparent 78%
    );
  }
}
.about-copy blockquote {
  position: relative;
}
@media (min-width: 1000px) {
  .about-copy blockquote {
    padding-left: 66px;
  }
  .about-copy blockquote::before {
    content: "“";
    position: absolute;
    left: 22px;
    top: -0.1em;
    font-size: 3.1em;
    line-height: 1;
    color: var(--red);
    font-weight: 700;
  }
}
.country ul {
  margin-bottom: 18px;
}
.country-more {
  align-self: stretch;
  justify-content: center;
  margin: auto 22px 0;
  padding: 15px 22px;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 550;
  transition: background 0.18s ease;
}
.country-more::before {
  content: none;
}
.country-more span,
.country-more:hover span,
.country-more:focus-visible span {
  color: var(--ink);
  text-decoration: none;
}
.country-more:hover,
.country-more:focus-visible {
  background: #e7e6e1;
}
.country {
  padding-bottom: 22px;
}
@media (min-width: 1250px) {
  .country {
    padding-bottom: 26px;
  }
}
@media (min-width: 900px) {
  .country-grid {
    align-items: stretch;
  }
  .country--jp,
  .country--kr {
    margin-top: 0;
  }
}
.country-tag {
  color: #ff6a5e;
}
.country li::before {
  background: #ff6a5e;
}
.contact-section {
  width: 100%;
  max-width: none;
  padding-block: 0;
}
.contact-panel {
  min-height: 100svh;
  align-content: center;
  border-radius: 0;
  padding-block: clamp(46px, 7vh, 96px);
  padding-inline: max(clamp(22px, 4.4vw, 80px), calc((100% - 2120px) / 2 + 80px));
}
.request-form {
  background: rgba(16, 18, 19, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  padding: clamp(22px, 2.2vw, 40px);
}
@media (min-width: 900px) {
  .contact-panel::before {
    background: radial-gradient(
        52% 62% at 20% 52%,
        rgba(12, 14, 16, 0.66) 0%,
        rgba(12, 14, 16, 0.4) 50%,
        rgba(12, 14, 16, 0) 100%
      ),
      radial-gradient(
        124% 112% at 50% 48%,
        rgba(12, 14, 16, 0) 48%,
        rgba(12, 14, 16, 0.4) 100%
      ),
      linear-gradient(rgba(18, 20, 21, 0.16), rgba(18, 20, 21, 0.16)),
      url("assets/form-bg.webp") center / cover no-repeat;
  }
}
@media (min-width: 900px) {
  .request-form label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
  }
  .request-form input,
  .request-form select {
    padding-left: 48px;
    background-repeat: no-repeat;
    background-position: 17px center;
    background-size: 21px 21px;
  }
  #car {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626661' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M16.5 16.5 21 21'/%3E%3C/svg%3E");
  }
  #budget {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626661' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M9 4h3.6a4 4 0 0 1 0 8H9V4zM9 12v8M6.4 16h6'/%3E%3C/svg%3E");
  }
  #city {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626661' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 21c4.2-4.6 6.4-7.9 6.4-10.6a6.4 6.4 0 1 0-12.8 0C5.6 13.1 7.8 16.4 12 21z'/%3E%3Ccircle cx='12' cy='10.3' r='2.5'/%3E%3C/svg%3E");
  }
  #country {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626661' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M12 4c2.4 2.2 3.6 5 3.6 8s-1.2 5.8-3.6 8c-2.4-2.2-3.6-5-3.6-8s1.2-5.8 3.6-8z'/%3E%3C/svg%3E");
  }
  #reply-contact {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23626661' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M21 3.6 2.8 11.2l7.1 2.7 2.6 7.1L21 3.6z'/%3E%3Cpath d='M9.9 13.9 21 3.6'/%3E%3C/svg%3E");
  }
  .form-hint,
  .form-consent span {
    color: rgba(255, 255, 255, 0.72) !important;
  }
  .request-form .direct-contact {
    display: block;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
  }
  .request-form .direct-contact > span {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .request-form .direct-contact > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 8px 8px 0;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.18s ease;
  }
  .request-form .direct-contact > a:hover,
  .request-form .direct-contact > a:focus-visible {
    background: rgba(255, 255, 255, 0.13);
  }
  .contact-promise {
    margin: 0 0 0 26px;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
  }
  .contact-section {
    position: relative;
  }
  .contact-panel {
    padding-bottom: clamp(78px, 10vh, 140px);
  }
  .contact-strip {
    position: absolute;
    left: 50%;
    right: max(clamp(22px, 4.4vw, 80px), calc((100% - 2120px) / 2 + 80px));
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .contact-strip::before {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
  }
}
@media (min-width: 900px) and (max-width: 1599px) {
  .request-form input,
  .request-form select {
    height: 52px;
    margin-bottom: 15px;
  }
  .request-form .direct-contact {
    margin-top: 20px;
    padding-top: 18px;
  }
}
@media (max-width: 899px) {
  .contact-strip,
  .contact-promise {
    display: none;
  }
}
.cost-quote p + p {
  margin-top: 12px;
}
.cost-quote strong {
  font-weight: 650;
}
.request-form .direct-contact > a img {
  filter: invert(1);
  opacity: 0.78;
}
.contact-title-break {
  display: none;
}
@media (min-width: 1280px) {
  .contact-panel {
    min-height: max(820px, calc(100svh - 76px));
    grid-template-columns: minmax(0, 1fr) minmax(620px, 38vw);
    gap: clamp(72px, 5.5vw, 112px);
    align-items: center;
    padding-block: clamp(42px, 5vh, 64px) clamp(86px, 10vh, 112px);
    padding-inline: max(64px, calc((100% - 1680px) / 2));
  }
  .contact-panel::before {
    background:
      linear-gradient(
        90deg,
        rgba(8, 12, 15, 0.32) 0%,
        rgba(8, 12, 15, 0.08) 43%,
        rgba(8, 12, 15, 0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(8, 12, 15, 0.02),
        rgba(8, 12, 15, 0.08)
      ),
      url("assets/form-bg.webp") center / cover no-repeat;
  }
  .contact-copy {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: min(100%, 590px);
    min-height: min(720px, calc(100svh - 170px));
    padding-block: clamp(88px, 10vh, 108px) 10px;
  }
  .contact-title-break {
    display: inline;
  }
  .contact-copy h2 {
    max-width: 570px;
    font-size: clamp(48px, 3.35vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-top: 22px;
    font-size: clamp(17px, 1.05vw, 19px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
  }
  .contact-person {
    margin-top: auto;
  }
  .contact-person > img {
    width: 58px;
    height: 58px;
  }
  .contact-person strong {
    font-size: 15px;
  }
  .contact-person a {
    font-size: 16px;
  }
  .request-form {
    justify-self: end;
    width: 100%;
    max-width: 720px;
    padding: clamp(30px, 2.15vw, 40px);
    border-radius: 26px;
    background: rgba(15, 17, 18, 0.9);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  }
  .request-form label {
    font-size: 14px;
    margin-bottom: 9px;
  }
  .request-form input,
  .request-form select {
    height: 58px;
    margin-bottom: 17px;
    font-size: 16px;
  }
  .request-form .button {
    min-height: 60px;
    font-size: 17px;
  }
  .request-form .direct-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding: 18px 0 0;
  }
  .request-form .direct-contact > span {
    flex-basis: 100%;
    margin-bottom: 6px;
  }
  .request-form .direct-contact > a {
    margin: 0;
    padding: 9px 13px;
    font-size: 12.5px;
  }
  .contact-strip {
    right: max(64px, calc((100% - 1680px) / 2));
    bottom: 28px;
  }
}
.request-form .direct-contact > a img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  filter: invert(1);
  opacity: 0.92;
}
@media (min-width: 900px) {
  .contact-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      var(--paper) 0%,
      rgba(246, 245, 242, 0.78) 5%,
      rgba(246, 245, 242, 0.3) 12%,
      rgba(246, 245, 242, 0) 21%
    );
  }
  .contact-copy h2,
  .contact-copy > p:not(.eyebrow),
  .contact-copy .eyebrow,
  .contact-person {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 900px) {
  .contact-panel::before {
    background:
      radial-gradient(52% 62% at 20% 52%, rgba(12, 14, 16, 0.66) 0%, rgba(12, 14, 16, 0.4) 50%, rgba(12, 14, 16, 0) 100%),
      radial-gradient(124% 112% at 50% 48%, rgba(12, 14, 16, 0) 48%, rgba(12, 14, 16, 0.4) 100%),
      linear-gradient(rgba(18, 20, 21, 0.16), rgba(18, 20, 21, 0.16)),
      url("assets/form-bg-hi.webp") center / cover no-repeat;
  }
}
@media (max-width: 899px) {
  .contact-panel::before {
    background:
      radial-gradient(130% 40% at 50% 12%, rgba(12, 14, 16, 0.84) 0%, rgba(12, 14, 16, 0.5) 60%, rgba(12, 14, 16, 0) 100%),
      linear-gradient(to bottom, rgba(12, 14, 16, 0) 26%, rgba(12, 14, 16, 0.5) 44%, rgba(12, 14, 16, 0.76) 72%, rgba(12, 14, 16, 0.82) 100%),
      linear-gradient(rgba(18, 20, 21, 0.3), rgba(18, 20, 21, 0.3)),
      url("assets/form-bg-hi-m.webp") center top / cover no-repeat;
  }
}
@media (min-width: 900px) {
  .contact-panel {
    background-color: transparent;
    padding-top: calc(clamp(42px, 5vh, 64px) + 24vh);
  }
  .contact-panel::after {
    content: none;
  }
  .contact-panel::before {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.35) 12vh, #000 30vh);
    mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.35) 12vh, #000 30vh);
  }
  #contact {
    scroll-margin-top: calc(-24vh - 40px);
  }
}
.hero-proof .rating-link small {
  font-size: 15px;
}
.hero-proof .mosaic-count span {
  font-size: 14px;
}
.reviews-figures span {
  font-size: 15px;
}
.reviews-section > .wrap::before,
.reviews-section > .wrap::after {
  bottom: calc(-1 * clamp(84px, 6.4vw, 132px));
}
@media (max-width: 899px) {
  .request-form .direct-contact > a img {
    filter: none;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-pending {
    transform: none;
  }
  .reveal-ready:not(.reveal-pending) :is(.offer-image, .video-cover, .car-image, .electric-video, .cost-photo) img,
  .reveal-ready:not(.reveal-pending) img.country-car,
  .about-photo.reveal-ready:not(.reveal-pending) img {
    animation: fog-in 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s) backwards;
  }
  @keyframes fog-in {
    from {
      filter: blur(5px) brightness(1.32) contrast(0.52) saturate(0.3);
      scale: 1.04;
    }
  }
}
.process-list::before {
  background-color: var(--red);
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 88%, transparent 100%), linear-gradient(to bottom, #000 calc(var(--road, 1) * 100% - 10px), transparent calc(var(--road, 1) * 100%));
  mask-image: linear-gradient(to bottom, #000 0, #000 88%, transparent 100%), linear-gradient(to bottom, #000 calc(var(--road, 1) * 100% - 10px), transparent calc(var(--road, 1) * 100%));
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
@media (min-width: 1280px) {
  .process-list::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -58 100 681' preserveAspectRatio='none' fill='none' stroke='%23e81a22' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M48 -58C40 -40 35 -20 35 0C35 35 65 35 65 70C65 129.5 35 129.5 35 189C35 224 65 224 65 259C65 318.5 35 318.5 35 378C35 413 65 413 65 448C65 507.5 35 507.5 35 567C35 587 40 605 48 623'/%3E%3C/svg%3E")
      no-repeat;
    background-size: 100% 100%;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8.5%,
      #000 91.8%,
      transparent 100%
    ), linear-gradient(to bottom, #000 calc(var(--road, 1) * 100% - 10px), transparent calc(var(--road, 1) * 100%));
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      #000 8.5%,
      #000 91.8%,
      transparent 100%
    ), linear-gradient(to bottom, #000 calc(var(--road, 1) * 100% - 10px), transparent calc(var(--road, 1) * 100%));
  }
}
.offer-more {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 24px;
  background: #1b1c1f;
  color: #fff;
}
.offer-more h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 2.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.offer-more p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.6;
}
.offer-more-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: auto;
  padding-top: 12px;
}
.offer-more .text-link {
  color: #fff;
}
@media (max-width: 999px) {
  .cost-photo {
    display: none;
  }
}
@media (max-width: 999px) {
  .about-copy::before {
    content: "";
    position: absolute;
    top: -24px;
    right: -16px;
    z-index: -1;
    width: 62%;
    height: 250px;
    pointer-events: none;
    opacity: 0.7;
    background: url("assets/steps-edge-right.webp") right -40px / 100% auto
      no-repeat;
    -webkit-mask-image: radial-gradient(
      ellipse 100% 90% at 100% 30%,
      #000 0 38%,
      rgba(0, 0, 0, 0.7) 58%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 100% 90% at 100% 30%,
      #000 0 38%,
      rgba(0, 0, 0, 0.7) 58%,
      transparent 82%
    );
  }
}
@media (max-width: 899px) {
  .countries-section {
    padding-top: 206px;
  }
  .countries-section::before {
    height: 200px;
    background:
      linear-gradient(var(--paper), var(--paper)),
      url("assets/wash-mountains-900.webp") right top / auto 100% no-repeat;
    background-blend-mode: multiply;
    -webkit-mask-image:
      radial-gradient(circle at calc(100% - 78px) 47px, #000 41px, transparent 49px),
      linear-gradient(to bottom, transparent 0, #000 36%, #000 58%, transparent 100%);
    mask-image:
      radial-gradient(circle at calc(100% - 78px) 47px, #000 41px, transparent 49px),
      linear-gradient(to bottom, transparent 0, #000 36%, #000 58%, transparent 100%);
  }
}
@media (max-width: 699px) {
  .footer {
    padding-top: calc(100vw * 1.1);
  }
  .footer::before {
    height: auto;
    aspect-ratio: 1100 / 1467;
    background: linear-gradient(
        to bottom,
        rgba(14, 16, 18, 0) 0,
        rgba(14, 16, 18, 0) 56%,
        rgba(14, 16, 18, 0.74) 78%,
        #0e1012 95%
      ),
      url("assets/footer-scene-m.webp") center top / cover no-repeat;
  }
}
.eyebrow::before {
  content: none;
}
@media (max-width: 699px) {
  .hero.hero-editorial::before {
    background-image: url("assets/wash-mountains-m.webp");
  }
}
.brand {
  gap: 12px;
}
.brand-tag {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
@media (min-width: 1280px) {
  .brand-tag {
    font-size: 12px;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .brand-tag {
    display: none;
  }
}
.client-plate b::before {
  content: none;
}
.korea-model img {
  max-height: 430px;
  object-fit: cover;
  object-position: 50% 62%;
  border-radius: 24px;
}
@media (max-width: 999px) {
  .standalone .brand::before {
    content: "";
    flex: 0 0 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23242525' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 6 8.5 12l6 6'/%3E%3C/svg%3E") center / 22px no-repeat;
  }
}
@media (max-width: 480px) {
  .standalone .brand-tag {
    display: none;
  }
}
.play-icon {
  padding-left: 0;
}
.play-icon::before {
  content: "";
  width: 40%;
  height: 40%;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5.5 19 12 8 18.5Z' stroke='%23000' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5.5 19 12 8 18.5Z' stroke='%23000' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 899px) {
  .contact-panel {
    background-color: transparent;
    padding-top: calc(clamp(46px, 7vh, 96px) + 90px);
  }
  .contact-panel::before {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.4) 60px, #000 150px);
    mask-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.4) 60px, #000 150px);
  }
  #contact {
    scroll-margin-top: -90px;
  }
  .process-note {
    margin-top: 16px;
  }
  .faq-section {
    margin-top: 16px;
  }
}