:root {
  --bg: #090909;
  --bg-soft: #141414;
  --panel: #1d1d1f;
  --text: #f7f7f7;
  --muted: #b9bcc7;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #2196f3;
  --pink: #ff00cc;
  --violet: #333399;
  --gold: #bd8600;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --gradient: linear-gradient(135deg, rgba(255, 0, 204, 0.95), rgba(51, 51, 153, 0.95));
  --floating-gradient: linear-gradient(135deg, #ff2fd6 0%, #d018ff 34%, #8d3cff 68%, #4b1fb8 100%);
  --text-gradient: linear-gradient(100deg, #ff64e4 0%, #ff8bed 22%, #d76bff 45%, #9f7cff 68%, #5fd3ff 88%, #ff64e4 100%);
  font-family: Inter, Manrope, TildaSans, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  border: 0;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reveal--left {
  transform: translate3d(-32px, 0, 0);
}

.reveal--right {
  transform: translate3d(32px, 0, 0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr minmax(260px, 360px);
  gap: clamp(16px, 2.4vw, 32px);
  align-items: center;
  min-height: 76px;
  padding: 1px clamp(18px, 4vw, 56px) 1px clamp(0px, 1vw, 10px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 46%, rgba(0, 0, 0, 0.82) 100%),
    rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: clamp(260px, 24vw, 360px);
  min-width: 240px;
  margin-left: -8px;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  font-weight: 650;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.nav-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--floating-gradient);
  box-shadow: 0 10px 26px rgba(208, 24, 255, 0.22);
}

.site-nav .nav-pill:hover {
  color: #fff;
  transform: translateY(-1px);
}

.header-phone {
  display: grid;
  justify-self: end;
  gap: 2px;
  text-align: right;
  font-weight: 750;
}

.header-phone span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 56.25vw, 780px);
  overflow: hidden;
  isolation: isolate;
}

.hero__video,
.hero__shade,
.hero__video iframe {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: -2;
  overflow: hidden;
  background: #000;
}

.hero__video iframe {
  top: 50%;
  left: 50%;
  width: calc(100vw + 420px);
  height: calc(56.25vw + 320px);
  min-width: calc(177.78vh + 420px);
  min-height: calc(100vh + 320px);
  transform: translate(-48%, -47%) scale(1.14);
  border: 0;
}

.hero__shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 0, 204, 0.12), transparent 32%),
    rgba(0, 0, 0, 0.65);
}

.hero__content {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(980px, calc(100vw - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 108px 0 54px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff8bed;
  background: linear-gradient(92deg, #e7edf8 0%, #ff7cca 22%, #b36bff 45%, #66c9ff 68%, #f3f6ff 82%, #ff7cca 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: text-gradient-wave-reverse 7.5s ease-in-out infinite;
}

@keyframes text-gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  font-weight: 730;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 720;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 60px;
  padding: 17px 30px;
  border-radius: 64px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  color: #fff;
  background-image: linear-gradient(0.75turn, rgba(255, 0, 204, 1) 0%, rgba(51, 51, 153, 1) 100%);
  box-shadow: none;
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin: 0;
}

.hero__facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__facts dt {
  font-size: 27px;
  font-weight: 900;
}

.hero__facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-header {
  top: 24px;
  left: 50%;
  right: auto;
  width: min(1518px, calc(100vw - 156px));
  min-height: 76px;
  padding: 12px 18px 12px 26px;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) auto auto;
  gap: clamp(14px, 1.4vw, 28px);
  border: 1px solid rgba(255, 83, 199, 0.52);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(9, 12, 31, 0.9), rgba(3, 6, 18, 0.88)),
    rgba(4, 6, 17, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 64px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.brand {
  width: min(100%, 300px);
  min-width: 220px;
  margin-left: 0;
}

.brand__logo {
  max-height: 56px;
}

.site-nav {
  min-width: 0;
  gap: clamp(18px, 2vw, 40px);
  font-family: Manrope, Inter, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
}

.header-phone {
  display: block;
  white-space: nowrap;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 130, 218, 0.6);
  border-radius: 14px;
  color: #fff;
  white-space: nowrap;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(100deg, #5123ff 0%, #a42dff 32%, #ff5a9e 64%, #5123ff 100%);
  background-size: 260% 100%;
  box-shadow: 0 12px 28px rgba(196, 40, 210, 0.28);
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

.hero {
  min-height: min(56.25vw, 941px);
  background: #030611;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 15, 0.44) 0%, rgba(3, 5, 15, 0.06) 45%, rgba(3, 5, 15, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0.26) 100%);
}

.hero__content {
  position: relative;
  grid-template-columns: minmax(520px, 720px) minmax(440px, 512px);
  align-content: start;
  justify-content: space-between;
  justify-items: stretch;
  gap: clamp(28px, 4vw, 78px);
  width: min(1460px, calc(100vw - 214px));
  min-height: inherit;
  padding: 126px 0 104px;
  margin: 0 auto;
  text-align: left;
}

.hero__copy {
  padding-top: 2px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 39px;
  margin: 0 0 22px;
  max-width: min(720px, 100%);
  padding: 0;
  border: 1px solid rgba(131, 111, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hero__badge svg,
.hero__chips svg,
.hero-btn svg,
.hero__trust svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__badge svg {
  width: 18px;
  height: 18px;
  color: #ff62b7;
  fill: currentColor;
  stroke: none;
}

.hero__badge span {
  background: linear-gradient(92deg, #e7edf8 0%, #ff7cca 22%, #b36bff 45%, #66c9ff 68%, #f3f6ff 82%, #ff7cca 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-gradient-wave-reverse 7.5s ease-in-out infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(48px, 4.3vw, 68px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  background: linear-gradient(92deg, #9a46ff 0%, #e947dc 50%, #ff5b9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: hero-title-soft-pulse 2.45s ease-in-out infinite;
}

.hero__promise {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
}

.hero__promise span {
  color: #ff5ba9;
  display: inline-block;
  font-size: 25px;
  animation: hero-key-pulse 2.45s ease-in-out infinite;
}

.hero__lead {
  max-width: 600px;
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.hero__actions {
  justify-content: flex-start;
  gap: 14px;
  margin: 0;
}

.hero-btn {
  gap: 20px;
  min-width: 0;
  min-height: 84px;
  border-radius: 18px;
  padding: 16px 24px;
  font-size: 16px;
}

.hero-btn svg {
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
}

.hero-btn span {
  display: grid;
  gap: 2px;
  min-width: 150px;
  line-height: 1.18;
  font-weight: 800;
}

.hero-btn small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
}

.hero-btn b {
  margin-left: 8px;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.hero-btn--primary {
  background: linear-gradient(104deg, #4d20ee 0%, #bd22de 34%, #ff5e9e 66%, #4d20ee 100%);
  background-size: 260% 100%;
  box-shadow: 0 20px 46px rgba(201, 36, 203, 0.28);
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

.hero-btn--ghost {
  border: 1px solid rgba(255, 76, 177, 0.65);
  background: rgba(6, 8, 25, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__trust {
  align-self: start;
  margin-top: 0;
  padding: 26px 28px 24px;
  border: 1px solid rgba(255, 102, 221, 0.65);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 12%, rgba(191, 72, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(16, 18, 45, 0.9), rgba(8, 10, 28, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 52px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.hero__trust h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 21px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.hero__trust h2 svg {
  width: 24px;
  height: 24px;
  color: #b662ff;
  fill: currentColor;
  stroke: none;
}

.hero__trust .hero__facts {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 128px;
  gap: 16px;
  margin: 0 0 19px;
}

.hero__trust .hero__facts div {
  display: grid;
  grid-template-rows: 34px minmax(42px, auto);
  row-gap: 8px;
  align-content: center;
  min-height: 128px;
  height: 128px;
  padding: 18px 19px;
  border: 1px solid rgba(117, 122, 209, 0.42);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(28, 34, 72, 0.78), rgba(19, 23, 50, 0.76));
  backdrop-filter: none;
}

.hero__trust .hero__facts dt {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 34px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.62vw, 26px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-fact-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: visible;
}

.hero__trust .hero__facts dt svg {
  width: 30px;
  height: 30px;
  color: #c55aff;
  filter: drop-shadow(0 0 8px rgba(255, 105, 218, 0.3));
}

.hero-fact-car-icon,
.hero-fact-income-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 105, 218, 0.3));
}

.hero__trust .hero__facts div:nth-child(4) dt {
  gap: 12px;
  font-size: clamp(18px, 1.18vw, 20px);
  white-space: nowrap;
}

.hero__trust .hero__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 600;
}

.hero__guarantees {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  width: min(1390px, 100%);
  min-height: 84px;
  border: 1px solid rgba(153, 101, 203, 0.58);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 90, 195, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(18, 20, 41, 0.9), rgba(12, 15, 35, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 42px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hero__guarantees span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.hero__guarantees span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(130, 126, 184, 0.72), transparent);
  transform: translateY(-50%);
}

.hero__guarantees svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #ff70c7;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 91, 186, 0.36));
}

@keyframes cta-gradient-flow {
  0% { background-position: 0% 50%, 0 0; }
  50% { background-position: 100% 50%, 0 0; }
  100% { background-position: 0% 50%, 0 0; }
}

@keyframes text-gradient-wave {
  0% { background-position: 0% 50%; }
  100% { background-position: 320% 50%; }
}

@keyframes text-gradient-wave-reverse {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes hero-key-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 91, 190, 0));
  }
  50% {
    transform: scale(1.085);
    filter:
      drop-shadow(0 0 12px rgba(255, 91, 190, 0.82))
      drop-shadow(0 0 26px rgba(154, 70, 255, 0.62));
  }
}

@keyframes hero-title-soft-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 91, 190, 0));
  }
  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 0 14px rgba(255, 91, 190, 0.42));
  }
}

.hero__trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
  background: var(--bg);
}

.section--light {
  color: #111;
  background: #fff;
}

.section--gradient {
  background: var(--gradient);
}

.section__head {
  width: min(900px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section__head p:not(.eyebrow) {
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.62;
}

.section:not(.section--light) .section__head p:not(.eyebrow) {
  color: var(--muted);
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  text-align: left;
}

.imh-section {
  padding: clamp(38px, 5vw, 68px) clamp(18px, 4vw, 56px);
}

.imh-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.imh-trustbar {
  color: #111;
  background: #fff;
}

.imh-trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.imh-trustbar__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 20px;
  border: 1px solid #e4e6eb;
  border-radius: var(--radius);
  background: #f4f5f8;
}

.imh-trustbar__item i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  font-style: normal;
  font-size: 22px;
}

.imh-trustbar__item span {
  color: #111;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.3;
  font-weight: 780;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-card,
.deal-card,
.process-list article,
.request-card,
.contacts,
.faq-list details {
  border-radius: var(--radius);
}

.feature-card {
  padding: 26px;
  background: #f4f5f8;
  border: 1px solid #e4e6eb;
}

.feature-card__icon,
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  font-weight: 780;
}

.feature-card p,
.split__content p,
.process-list p,
.deal-card p,
.faq-list p {
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.6;
}

.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

#about.split {
  left: 50%;
  width: 100vw;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(18px, 3.2vw, 38px) 0;
  padding: clamp(18px, 3.2vw, 38px) clamp(18px, 3.6vw, 48px);
  border: 1px solid rgba(168, 104, 255, 0.34);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 18, 0.58) 0%, rgba(4, 5, 18, 0.3) 42%, rgba(4, 5, 18, 0.84) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 65, 214, 0.22), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(126, 66, 255, 0.22), transparent 34%),
    url("assets/about-import-company-bg.png?v=20260807-3") 38% center / cover no-repeat;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 50px rgba(142, 74, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 680px);
  align-items: center;
}

#about::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(255, 105, 218, 0.18);
  border-radius: 20px;
  pointer-events: none;
}

#about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 5, 18, 0.1), rgba(4, 5, 18, 0.46)),
    radial-gradient(circle at 62% 16%, rgba(255, 105, 218, 0.14), transparent 24%);
  pointer-events: none;
}

.split__media img {
  height: min(620px, 58vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#about .split__media {
  position: relative;
}

#about .split__media::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 105, 218, 0.28);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(124, 64, 255, 0.16), rgba(255, 65, 214, 0.08));
  filter: blur(0.1px);
}

#about .split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(330px, 42vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  filter: saturate(1.08) contrast(1.04) brightness(0.88);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(255, 65, 214, 0.16);
}

.split__content {
  max-width: 640px;
}

#about .split__content {
  grid-column: 2;
  justify-self: end;
  max-width: 680px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(7, 8, 24, 0.82), rgba(13, 10, 34, 0.62)),
    radial-gradient(circle at 92% 12%, rgba(255, 105, 218, 0.12), transparent 28%);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

#about .eyebrow {
  margin-bottom: 12px;
}

#about h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.04;
  text-shadow: 0 0 28px rgba(255, 105, 218, 0.18);
}

.split__content p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

#about .split__content p {
  color: rgba(244, 241, 255, 0.74);
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.58;
}

#about .split__content p + p {
  margin-top: 10px;
}

#about .split__content p:last-of-type {
  margin-bottom: 10px;
}

.about-brand {
  display: inline-block;
  background: linear-gradient(92deg, #e7edf8 0%, #ff7cca 22%, #b36bff 45%, #66c9ff 68%, #f3f6ff 82%, #ff7cca 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  animation: text-gradient-wave-reverse 7.5s ease-in-out infinite;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  margin-top: 8px;
  background: linear-gradient(100deg, #5123ff 0%, #a42dff 32%, #ff5a9e 64%, #5123ff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 820;
  animation: cta-gradient-flow 4s ease-in-out infinite;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.text-link:hover {
  filter: drop-shadow(0 0 12px rgba(255, 90, 210, 0.32));
  transform: translateY(-2px);
}

.request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.request-card h2,
.request-card p {
  color: #fff;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: #111;
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.18);
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  color: #fff;
  font-weight: 700;
}

#request.section--gradient {
  padding: 58px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 90, 210, 0.44), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(170, 70, 255, 0.36), transparent 30%),
    radial-gradient(circle at 48% 88%, rgba(105, 60, 255, 0.42), transparent 34%),
    linear-gradient(118deg, #4d20ee 0%, #8c24ff 38%, #bd22de 70%, #ff5e9e 100%);
}

#request .request-card {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 360px);
  gap: clamp(22px, 3vw, 42px);
  width: min(1180px, 100%);
  min-height: 430px;
  padding: clamp(22px, 2.8vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(157, 87, 255, 0.5);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(3, 4, 14, 0.7) 0%, rgba(3, 4, 14, 0.36) 46%, rgba(3, 4, 14, 0.68) 100%),
    url("assets/request-form-bg-neon.png?v=20260807-3") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 66px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

#request .request-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    rgba(0, 0, 0, 0.4),
    radial-gradient(circle at 72% 20%, rgba(255, 78, 174, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(3, 4, 14, 0.28), transparent 42%, rgba(3, 4, 14, 0.32));
  pointer-events: none;
}

#request .request-card > * {
  position: relative;
  z-index: 1;
}

.request-card__intro {
  display: grid;
  align-content: start;
  padding-top: clamp(4px, 1.1vw, 16px);
}

#request .eyebrow {
  color: #ff7cca;
  margin-bottom: 12px;
  font-size: clamp(16px, 1.25vw, 20px);
}

#request .request-card h2 {
  max-width: 520px;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(26px, 2.55vw, 38px);
  line-height: 1.08;
  font-weight: 900;
}

.request-keyword {
  display: inline-block;
  background: linear-gradient(92deg, #9a46ff 0%, #e947dc 50%, #ff5b9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title-soft-pulse 2.45s ease-in-out infinite;
}

#request .request-card__intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgba(242, 240, 250, 0.78);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.58;
}

#request .request-card__form {
  align-self: stretch;
  gap: 12px;
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(157, 130, 207, 0.34);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 20, 43, 0.72), rgba(7, 8, 24, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

#request .lead-form label {
  color: rgba(242, 240, 250, 0.76);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#request .lead-form input {
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(157, 130, 207, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

#request .lead-form input::placeholder {
  color: rgba(242, 240, 250, 0.42);
}

#request .lead-form input:focus {
  border-color: rgba(255, 94, 204, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 94, 204, 0.16);
}

#request .lead-form .btn {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 13px;
  background: linear-gradient(104deg, #4d20ee 0%, #bd22de 34%, #ff5e9e 66%, #4d20ee 100%);
  background-size: 260% 100%;
  box-shadow: 0 18px 38px rgba(201, 36, 203, 0.28);
  font-size: 14px;
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

#request .form-note {
  color: rgba(242, 240, 250, 0.58);
}

#request .form-status {
  color: #fff;
}

.deal-card img {
  height: 260px;
  object-fit: cover;
  cursor: zoom-in;
}

.deal-card {
  padding: 16px;
}

.process {
  background: #101010;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-list article {
  min-height: 280px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.process-list p {
  color: var(--muted);
}

.deal-slider {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 14px;
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.deal-track {
  display: grid;
  grid-auto-columns: minmax(292px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.deal-track::-webkit-scrollbar {
  display: none;
}

.deal-card {
  overflow: hidden;
  min-width: 286px;
  border: 1px solid rgba(157, 87, 255, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(19, 21, 48, 0.9), rgba(8, 10, 26, 0.96)),
    #080a1a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
}

.vehicle-options {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 90, 210, 0.12), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(105, 60, 255, 0.12), transparent 32%),
    #07070a;
}

.vehicle-options .section__head h2 {
  color: #fff;
}

.vehicle-options .deal-card img {
  width: 100%;
  border-radius: 12px;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.vehicle-options .deal-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.vehicle-options .deal-card h3 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.12;
}

.vehicle-options .deal-card p {
  min-height: 68px;
  color: rgba(242, 240, 250, 0.72);
  font-size: 14px;
  line-height: 1.52;
}

.deal-card a {
  display: inline-flex;
  margin-top: 12px;
  background: linear-gradient(100deg, #5123ff 0%, #a42dff 32%, #ff5a9e 64%, #5123ff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 750;
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient);
  font-size: 30px;
}

.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 90, 210, 0.13), transparent 28%),
    radial-gradient(circle at 82% 84%, rgba(105, 60, 255, 0.14), transparent 32%),
    #05050d;
  padding-top: 44px;
  padding-bottom: 46px;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 14px clamp(12px, 3vw, 44px);
  border: 1px solid rgba(157, 87, 255, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(5, 5, 13, 0.46), rgba(5, 5, 13, 0.22), rgba(5, 5, 13, 0.5)),
    radial-gradient(circle at 76% 18%, rgba(255, 90, 210, 0.1), transparent 26%),
    url("assets/faq-import-questions-bg.png?v=20260807-3") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 72px rgba(0, 0, 0, 0.28);
  filter: brightness(1.08) saturate(1.08);
  pointer-events: none;
}

.faq > * {
  position: relative;
  z-index: 1;
}

.faq .section__head {
  margin-bottom: 20px;
}

.faq .section__head h2 {
  font-size: clamp(28px, 2.75vw, 40px);
}

.faq-list {
  display: grid;
  gap: 8px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(157, 87, 255, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 18, 43, 0.68), rgba(8, 10, 26, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 12px 16px;
  color: #fff;
  cursor: pointer;
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 94, 204, 0.45);
  border-radius: 50%;
  color: #ff7cca;
  background: rgba(255, 94, 204, 0.08);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: linear-gradient(104deg, #4d20ee 0%, #bd22de 48%, #ff5e9e 100%);
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 16px 14px;
  color: rgba(242, 240, 250, 0.74);
  font-size: 14px;
  line-height: 1.58;
}

.faq-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0 16px 14px 36px;
  color: rgba(242, 240, 250, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.faq-list li::marker {
  color: #ff7cca;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 70px);
  width: min(1120px, calc(100% - 36px));
  margin: clamp(64px, 8vw, 112px) auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.contacts ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contacts li {
  display: grid;
  gap: 5px;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 720;
}

.contacts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form--dark input {
  background: #fff;
}

.msg-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

.msg-widget__btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  outline: none;
  background: var(--floating-gradient);
  box-shadow: 0 8px 24px rgba(208, 24, 255, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.msg-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(141, 60, 255, 0.42);
}

.msg-widget__btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: transform 0.3s;
}

.msg-widget.active .msg-widget__btn svg {
  transform: rotate(45deg);
}

@keyframes msg-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 47, 214, 0.55), 0 8px 24px rgba(208, 24, 255, 0.3);
  }
  45% {
    transform: scale(1.08);
    box-shadow: 0 0 0 13px rgba(255, 47, 214, 0.18), 0 14px 34px rgba(141, 60, 255, 0.48);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 24px rgba(75, 31, 184, 0), 0 8px 24px rgba(208, 24, 255, 0.3);
  }
}

.msg-widget:not(.active) .msg-widget__btn {
  animation: msg-pulse 1.85s ease-in-out infinite;
}

.msg-widget__list {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.msg-widget.active .msg-widget__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.msg-widget__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.msg-widget__item:hover {
  transform: scale(1.05);
}

.msg-widget__label {
  order: -1;
  padding: 8px 16px;
  border-radius: 20px;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.msg-widget__item:hover .msg-widget__label {
  opacity: 1;
  transform: translateX(0);
}

.msg-widget__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.msg-widget__item:hover .msg-widget__icon {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.msg-widget__icon svg {
  width: 26px;
  height: 26px;
}

.to-top {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background: var(--floating-gradient);
  box-shadow: 0 8px 24px rgba(208, 24, 255, 0.3);
  font-size: 25px;
  font-weight: 800;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 104px;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(141, 60, 255, 0.42);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.7fr) minmax(240px, 0.85fr);
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 56px);
  color: rgba(242, 240, 250, 0.68);
  background:
    linear-gradient(90deg, #000 0%, #000 34%, rgba(1, 1, 6, 0.94) 43%, rgba(3, 3, 10, 0.58) 52%, rgba(4, 4, 10, 0) 64%),
    radial-gradient(circle at 82% 82%, rgba(109, 53, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #080814 0%, #04040a 100%);
  border-top: 1px solid rgba(157, 87, 255, 0.28);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 clamp(18px, 4vw, 56px) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 94, 204, 0.8), rgba(105, 96, 255, 0.62), transparent);
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contacts {
  position: relative;
  z-index: 1;
}

.site-footer__brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(clamp(30px, 5vw, 58px) * -1);
  right: -260px;
  bottom: calc(clamp(30px, 5vw, 58px) * -1);
  left: calc(clamp(18px, 4vw, 56px) * -1);
  background: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.74) 88%, transparent 100%);
  pointer-events: none;
}

.site-footer__logo {
  display: inline-flex;
  width: min(310px, 100%);
  margin-bottom: 16px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-footer__brand p {
  max-width: 420px;
  margin: 0 0 16px;
  color: rgba(242, 240, 250, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__brand span,
.site-footer__contacts span {
  color: rgba(242, 240, 250, 0.48);
  font-size: 13px;
}

.site-footer__nav,
.site-footer__contacts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__contacts a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 720;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer__nav a:hover,
.site-footer__contacts a:hover {
  color: #ff7cca;
  transform: translateX(3px);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.site-footer__socials a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 105, 218, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__socials a:hover {
  color: #fff;
  background: rgba(255, 94, 204, 0.12);
  transform: translateY(-2px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.modal.is-open {
  display: grid;
}

.modal img {
  width: min(980px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 32px;
}

body.modal-open {
  overflow: hidden;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 2, 11, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(12px);
}

.request-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.request-modal__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 350px);
  gap: 28px;
  align-items: center;
  width: min(930px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(157, 87, 255, 0.58);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(3, 4, 14, 0.82), rgba(3, 4, 14, 0.54), rgba(3, 4, 14, 0.78)),
    url("assets/request-form-bg-neon.png?v=20260807-3") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 100px rgba(0, 0, 0, 0.62);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.request-modal.is-open .request-modal__card {
  transform: translateY(0) scale(1);
}

.request-modal__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    rgba(0, 0, 0, 0.4),
    radial-gradient(circle at 72% 20%, rgba(255, 78, 174, 0.12), transparent 24%);
  pointer-events: none;
}

.request-modal__card > * {
  position: relative;
  z-index: 1;
}

.request-modal__intro h2 {
  max-width: 430px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.08;
  font-weight: 900;
}

.request-modal__intro .eyebrow {
  margin-bottom: 12px;
  font-size: clamp(16px, 1.25vw, 20px);
}

.request-modal__intro p:not(.eyebrow) {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(242, 240, 250, 0.78);
  font-size: 14px;
  line-height: 1.58;
}

.request-modal .request-card__form {
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(157, 130, 207, 0.36);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 20, 43, 0.76), rgba(7, 8, 24, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.request-modal .lead-form label {
  color: rgba(242, 240, 250, 0.76);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-modal .lead-form input {
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(157, 130, 207, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  font-size: 14px;
}

.request-modal .lead-form input::placeholder {
  color: rgba(242, 240, 250, 0.42);
}

.request-modal .lead-form input:focus {
  border-color: rgba(255, 94, 204, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 94, 204, 0.16);
}

.request-modal .lead-form .btn {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 13px;
  background: linear-gradient(104deg, #4d20ee 0%, #bd22de 34%, #ff5e9e 66%, #4d20ee 100%);
  background-size: 260% 100%;
  box-shadow: 0 18px 38px rgba(201, 36, 203, 0.28);
  font-size: 14px;
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

.request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  line-height: 1;
}

.request-modal__close:hover {
  background: rgba(255, 94, 204, 0.2);
}

.catalog-page {
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 0, 204, 0.16), transparent 28%),
    radial-gradient(circle at 78% 8%, rgba(33, 150, 243, 0.14), transparent 30%),
    var(--bg);
}

.catalog-hero {
  display: grid;
  min-height: 560px;
  padding: 132px clamp(18px, 4vw, 56px) 72px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(10, 10, 14, 0.62)),
    url("assets/static.tildacdn.com/photo-1725348626563--104469d88c.jpg?v=20260807-3") center / cover;
}

.catalog-hero__inner {
  width: min(900px, 100%);
}

.catalog-hero h1 {
  max-width: 760px;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.35vw, 19px);
}

.catalog-hero .hero__actions {
  justify-content: flex-start;
  margin: 30px 0 0;
}

.catalog-intro .advantage-grid {
  align-items: stretch;
}

.catalog-browser {
  background: #0b0b0d;
}

.brand-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto 46px;
}

.brand-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.brand-jump a:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.catalog-section {
  width: min(1180px, 100%);
  margin: 0 auto 54px;
  scroll-margin-top: 100px;
}

.catalog-section:last-child {
  margin-bottom: 0;
}

.catalog-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.catalog-section__head h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  overflow: hidden;
  color: #111;
  background: #f5f6f8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.catalog-card__image {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #202024;
}

.catalog-card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-card__image:hover img {
  transform: scale(1.045);
}

.catalog-card__body {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.catalog-card__body h3 {
  margin: 0;
  font-size: 19px;
}

.catalog-card__body p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
}

.catalog-card__body a {
  margin-top: 4px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

:root {
  --imh-bg: #07070a;
  --imh-bg-2: #0e1020;
  --imh-card: rgba(20, 22, 44, 0.78);
  --imh-text: #f8f7ff;
  --imh-muted: #beb8d7;
  --imh-line: rgba(232, 124, 255, 0.22);
  --imh-violet: #6d35ff;
  --imh-purple: #9b4dff;
  --imh-pink: #ff4eae;
  --imh-hot: #ff7bd5;
  --imh-radius-lg: 22px;
  --imh-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --imh-gradient: linear-gradient(135deg, var(--imh-violet) 0%, var(--imh-purple) 44%, var(--imh-pink) 100%);
  --imh-gradient-soft: linear-gradient(135deg, rgba(109, 53, 255, 0.38), rgba(255, 78, 174, 0.24));
  --imh-font: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.imh-section,
.imh-section * {
  box-sizing: border-box;
}

.imh-section {
  position: relative;
  overflow: hidden;
  color: var(--imh-text);
  background: var(--imh-bg);
  font-family: var(--imh-font);
}

.imh-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.imh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--imh-line);
  border-radius: 999px;
  color: var(--imh-hot);
  background: rgba(255, 255, 255, 0.045);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.imh-title {
  margin: 16px 0 0;
  color: var(--imh-text);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.imh-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--imh-muted);
  font-size: 18px;
  line-height: 1.65;
}

.imh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 18px;
  color: #fff;
  background: var(--imh-gradient);
  box-shadow: 0 18px 42px rgba(255, 78, 174, 0.26);
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.imh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(255, 78, 174, 0.34);
}

.imh-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--imh-line);
  border-radius: var(--imh-radius-lg);
  box-shadow: var(--imh-shadow);
  backdrop-filter: blur(16px);
}

.imh-trustbar {
  padding: 26px 0;
  background: #090a12;
  border-top: 1px solid var(--imh-line);
  border-bottom: 1px solid var(--imh-line);
}

.imh-trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.imh-trustbar__item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: var(--imh-text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
}

.imh-trustbar__item i {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-style: normal;
  font-size: 24px;
}

.imh-trustbar__item span {
  color: var(--imh-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
}

.imh-benefits {
  padding: 96px 0;
  background: #080a13;
}

.imh-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.imh-benefit {
  min-height: 160px;
  padding: 24px;
}

.imh-benefit__icon {
  margin-bottom: 14px;
  font-size: 28px;
}

.imh-benefit h3,
.imh-step h3,
.imh-direction-card h3,
.imh-final__contact h3 {
  color: var(--imh-text);
}

.imh-benefit h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.imh-benefit p,
.imh-step p,
.imh-direction-card p {
  margin: 0;
  color: var(--imh-muted);
  font-size: 14px;
  line-height: 1.55;
}

.imh-directions {
  padding: 96px 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 78, 174, 0.18), transparent 30%),
    #06070c;
}

.imh-directions__top {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  align-items: start;
}

.imh-route-map {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(109, 53, 255, 0.18), rgba(255, 78, 174, 0.1)),
    url("assets/static.tildacdn.com/photo-1750218193690--dcbd30bae7.jpg?v=20260807-3") center / cover;
}

.imh-route-map::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 123, 213, 0.62);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.imh-route-map::after {
  content: "Japan / Korea / China / UAE → Russia";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.imh-route-map .imh-lead {
  position: relative;
  z-index: 1;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.86);
}

.imh-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.imh-direction-card {
  overflow: hidden;
}

.imh-direction-card__image {
  height: 150px;
  background:
    linear-gradient(135deg, rgba(109, 53, 255, 0.55), rgba(255, 78, 174, 0.32)),
    url("assets/static.tildacdn.com/photo-1722500278613--0cb79f5dbe.jpg?v=20260807-3") center / cover;
}

.imh-direction-card:nth-child(2) .imh-direction-card__image {
  background:
    linear-gradient(135deg, rgba(109, 53, 255, 0.55), rgba(255, 78, 174, 0.32)),
    url("assets/static.tildacdn.com/photo-1709803019043--9ed2b77a8d.jpg?v=20260807-3") center / cover;
}

.imh-direction-card:nth-child(3) .imh-direction-card__image {
  background:
    linear-gradient(135deg, rgba(109, 53, 255, 0.55), rgba(255, 78, 174, 0.32)),
    url("assets/static.tildacdn.com/photo-1746079074522--b7da910259.jpg?v=20260807-3") center / cover;
}

.imh-direction-card:nth-child(4) .imh-direction-card__image {
  background:
    linear-gradient(135deg, rgba(109, 53, 255, 0.55), rgba(255, 78, 174, 0.32)),
    url("assets/static.tildacdn.com/photo-1698326653749--ac4b1f76ad.jpg?v=20260807-3") center / cover;
}

.imh-direction-card__body {
  padding: 18px;
}

.imh-direction-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.imh-process {
  padding: 96px 0;
  background:
    radial-gradient(circle at 83% 42%, rgba(109, 53, 255, 0.23), transparent 28%),
    #07080e;
}

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

.imh-step {
  min-height: 190px;
  padding: 22px;
}

.imh-step__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--imh-gradient);
  font-weight: 950;
}

.imh-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.imh-final {
  padding: 90px 0;
  background:
    radial-gradient(circle at 18% 65%, rgba(255, 78, 174, 0.21), transparent 32%),
    linear-gradient(135deg, #07070a, #151226);
}

.imh-final__grid {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 34px;
  align-items: center;
}

.imh-final__contact {
  padding: 28px;
}

.imh-final__contact h3 {
  margin-top: 0;
}

.imh-final__contact a {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  color: var(--imh-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.imh-benefits,
.imh-directions,
.imh-process,
.imh-final {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 78, 174, 0.2), transparent 24%),
    radial-gradient(circle at 8% 82%, rgba(109, 53, 255, 0.2), transparent 28%),
    #07070a;
}

.imh-benefits .imh-container,
.imh-directions .imh-container,
.imh-process .imh-container,
.imh-final .imh-container {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(232, 124, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.82), rgba(5, 6, 14, 0.92)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") center / cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.42);
}

.imh-benefits .imh-container::before,
.imh-directions .imh-container::before,
.imh-process .imh-container::before,
.imh-final .imh-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 78, 174, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 14, 0.93), rgba(5, 6, 14, 0.68));
  pointer-events: none;
}

.imh-benefits .imh-container > *,
.imh-directions .imh-container > *,
.imh-process .imh-container > *,
.imh-final .imh-container > * {
  position: relative;
  z-index: 1;
}

.imh-benefits {
  padding: 28px clamp(18px, 4vw, 56px) 34px;
}

.imh-benefits .imh-eyebrow,
.imh-benefits .imh-lead {
  display: none;
}

.imh-benefits .imh-title {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.imh-benefits__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.imh-benefit,
.imh-step,
.imh-direction-card,
.imh-final__contact {
  border-color: rgba(232, 124, 255, 0.18);
  background: linear-gradient(180deg, rgba(16, 19, 45, 0.88), rgba(9, 11, 28, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.imh-benefit {
  display: grid;
  justify-items: center;
  min-height: 142px;
  padding: 22px 16px;
  text-align: center;
}

.imh-benefit__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 78, 174, 0.48);
  border-radius: 14px;
  color: var(--imh-hot);
  background: rgba(255, 78, 174, 0.08);
  font-size: 24px;
}

.imh-benefit h3 {
  font-size: 16px;
  line-height: 1.18;
}

.imh-benefit p {
  font-size: 12.5px;
}

.imh-directions {
  padding: 34px clamp(18px, 4vw, 56px) 24px;
}

.imh-directions .imh-container {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.74), rgba(5, 6, 14, 0.92)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 76% 3% / 1520px auto;
}

.imh-directions__top {
  grid-template-columns: 0.55fr 1fr;
  min-height: 205px;
}

.imh-directions .imh-eyebrow,
.imh-process .imh-eyebrow,
.imh-final .imh-eyebrow {
  display: none;
}

.imh-directions .imh-title,
.imh-process .imh-title,
.imh-final .imh-title {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
}

.imh-directions .imh-lead,
.imh-final .imh-lead {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
}

.imh-route-map {
  min-height: 190px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.imh-route-map .imh-lead {
  display: none;
}

.imh-route-map::before {
  inset: 12px 0 0;
  border-color: rgba(255, 123, 213, 0.42);
  filter: drop-shadow(0 0 12px rgba(255, 78, 174, 0.58));
}

.imh-route-map::after {
  content: "";
  inset: auto 4% 20% 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7bd5, transparent);
  box-shadow:
    0 -54px 18px rgba(255, 78, 174, 0.44),
    120px -18px 18px rgba(255, 78, 174, 0.42),
    260px -70px 18px rgba(255, 78, 174, 0.44),
    390px -32px 18px rgba(255, 78, 174, 0.44);
}

.imh-direction-grid {
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(232, 124, 255, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.imh-direction-card {
  border-radius: 12px;
}

.imh-direction-card__image {
  height: 170px;
  background:
    linear-gradient(180deg, rgba(15, 16, 35, 0.05), rgba(8, 9, 22, 0.7)),
    url("assets/v4/reference_desktop_hero_asia_gradient.png?v=20260807-3") 12% 46% / 980px auto;
}

.imh-direction-card:nth-child(2) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(15, 16, 35, 0.05), rgba(8, 9, 22, 0.7)),
    url("assets/v4/reference_desktop_hero_asia_gradient.png?v=20260807-3") 44% 46% / 980px auto;
}

.imh-direction-card:nth-child(3) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(15, 16, 35, 0.05), rgba(8, 9, 22, 0.7)),
    url("assets/v4/reference_desktop_hero_asia_gradient.png?v=20260807-3") 66% 46% / 980px auto;
}

.imh-direction-card:nth-child(4) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(15, 16, 35, 0.05), rgba(8, 9, 22, 0.7)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 94% 25% / 1480px auto;
}

.imh-direction-card__body {
  padding: 18px;
}

.imh-process {
  padding: 24px clamp(18px, 4vw, 56px);
}

.imh-process .imh-container {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.78), rgba(5, 6, 14, 0.9)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 80% 48% / 1600px auto;
}

.imh-process__steps {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.imh-process__steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(155, 77, 255, 0.9), rgba(255, 78, 174, 0.9), transparent);
}

.imh-step {
  min-height: 150px;
  padding: 18px;
  border-radius: 14px;
}

.imh-step__num {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 78, 174, 0.8);
  background: rgba(11, 12, 30, 0.9);
  box-shadow: 0 0 0 4px rgba(155, 77, 255, 0.18), 0 0 22px rgba(255, 78, 174, 0.46);
}

.imh-step h3 {
  font-size: 15px;
}

.imh-step p {
  font-size: 12.5px;
}

.process-exact {
  overflow: hidden;
  padding: 0;
  background: #030314;
}

.process-exact__image {
  display: block;
  width: min(1916px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  animation: process-image-open 0.85s ease both;
}

@keyframes process-image-open {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.process-exact__seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.imh-final {
  padding: 24px clamp(18px, 4vw, 56px) 80px;
}

.imh-final .imh-container {
  background:
    linear-gradient(90deg, rgba(8, 10, 24, 0.78), rgba(5, 6, 14, 0.62), rgba(5, 6, 14, 0.94)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 50% 100% / 1500px auto;
}

.imh-final__grid {
  grid-template-columns: 1fr 0.48fr;
}

.imh-final__contact {
  border-radius: 16px;
}

.imh-final__contact a {
  font-size: 14px;
}

.contact-showcase {
  padding: 54px 22px 50px;
  background:
    radial-gradient(circle at 28% 76%, rgba(98, 42, 209, 0.18), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(255, 47, 214, 0.09), transparent 30%),
    #02020b;
}

.contact-showcase__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  width: min(1320px, 100%);
  min-height: 382px;
  margin: 0 auto;
  padding: clamp(28px, 3.1vw, 50px) clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(157, 87, 255, 0.82);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(3, 4, 17, 0.96) 0%, rgba(3, 4, 17, 0.78) 35%, rgba(3, 4, 17, 0.24) 61%, rgba(3, 4, 17, 0.84) 100%),
    radial-gradient(circle at 58% 18%, rgba(255, 49, 214, 0.2), transparent 28%),
    url("assets/contact-bmw-x6-neon.png?v=20260807-3") center 52% / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 74, 214, 0.08),
    0 24px 82px rgba(0, 0, 0, 0.52);
}

.contact-showcase__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 2, 11, 0.06), rgba(2, 2, 11, 0.34)),
    radial-gradient(circle at 58% 16%, rgba(255, 50, 213, 0.2), transparent 20%),
    radial-gradient(circle at 50% 84%, rgba(255, 33, 161, 0.2), transparent 28%);
  pointer-events: none;
}

.contact-showcase__copy,
.contact-showcase__card {
  position: relative;
  z-index: 1;
}

.contact-showcase__copy {
  align-self: center;
  padding-top: 4px;
}

.contact-showcase__copy h2,
.contact-showcase__card h3 {
  margin: 0;
  color: #f8f7ff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 5px 18px rgba(151, 132, 255, 0.18);
}

.contact-showcase__copy h2 {
  max-width: 470px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.14;
}

.contact-showcase__copy p {
  margin: 20px 0 26px;
  color: rgba(242, 240, 250, 0.84);
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.62;
  font-weight: 420;
}

.contact-showcase__button {
  display: inline-grid;
  grid-template-columns: 34px auto 26px;
  align-items: center;
  gap: 14px;
  min-width: min(390px, 100%);
  min-height: 74px;
  padding: 16px 18px 16px 24px;
  border: 1px solid rgba(255, 127, 236, 0.54);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(104deg, #4d20ee 0%, #bd22de 34%, #ff5e9e 66%, #4d20ee 100%);
  background-size: 260% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(146, 39, 255, 0.36),
    0 0 34px rgba(255, 57, 213, 0.22);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 780;
  line-height: 1.15;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: cta-gradient-flow 4s ease-in-out infinite;
}

.contact-showcase__button:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 24px 52px rgba(146, 39, 255, 0.44),
    0 0 44px rgba(255, 57, 213, 0.3);
}

.contact-showcase__button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-showcase__button svg:last-child {
  width: 26px;
  height: 26px;
}

.contact-showcase__copy small {
  display: block;
  margin-top: 22px;
  color: rgba(242, 240, 250, 0.82);
  font-size: clamp(13px, 0.96vw, 16px);
  line-height: 1.35;
  font-weight: 420;
}

.contact-showcase__card {
  justify-self: end;
  width: min(350px, 100%);
  margin-right: -8px;
  padding: 26px 28px 24px;
  border: 1px solid rgba(157, 130, 207, 0.52);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 20, 43, 0.83), rgba(7, 8, 24, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.contact-showcase__card h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 850;
  line-height: 1.1;
}

.contact-showcase__row {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 46px;
  color: rgba(242, 240, 250, 0.84);
  border-bottom: 1px solid rgba(151, 139, 180, 0.18);
  font-size: clamp(13px, 0.98vw, 16px);
  line-height: 1.25;
  font-weight: 420;
}

a.contact-showcase__row {
  border-radius: 12px;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a.contact-showcase__row:hover {
  color: #fff;
  border-color: rgba(255, 94, 204, 0.36);
  background: rgba(255, 84, 202, 0.08);
  transform: translateX(4px);
}

.contact-showcase__messengers span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}

.contact-showcase__messengers a {
  color: inherit;
  border-radius: 7px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-showcase__messengers a:hover {
  color: #fff;
  text-shadow: 0 0 13px rgba(255, 93, 189, 0.62);
}

.contact-showcase__messengers b {
  color: rgba(242, 240, 250, 0.42);
  font-weight: 420;
}

.contact-showcase__row svg {
  width: 25px;
  height: 25px;
  fill: none;
  color: #ff5dbd;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 82, 194, 0.32));
}

.contact-showcase__card p {
  margin: 17px 0 0;
  color: rgba(242, 240, 250, 0.82);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.6;
  font-weight: 420;
}

.contact-showcase__brand {
  display: inline-block;
  background: linear-gradient(92deg, #e7edf8 0%, #ff7cca 22%, #b36bff 45%, #66c9ff 68%, #f3f6ff 82%, #ff7cca 100%);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  animation: text-gradient-wave-reverse 7.5s ease-in-out infinite;
}

.imh-benefits#advantages {
  padding: 19px clamp(18px, 4vw, 56px) 9px;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.6), rgba(7, 7, 10, 0.82)),
    #07070a;
}

.imh-benefits#advantages .imh-container {
  width: min(1280px, 100%);
  padding: 19px 18px;
  border: 1px solid rgba(125, 77, 190, 0.58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(109, 53, 255, 0.16), transparent 36%),
    radial-gradient(circle at 74% 18%, rgba(255, 78, 174, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(12, 14, 34, 0.94), rgba(8, 10, 25, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.42);
}

.imh-benefits#advantages .imh-container::before {
  display: none;
}

.imh-benefits#advantages .imh-title {
  margin: 0 0 18px;
  color: #f8f7ff;
  text-align: center;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-benefits#advantages .imh-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.imh-benefits#advantages .imh-benefit {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 170px;
  padding: 18px 14px;
  border: 1px solid rgba(74, 63, 135, 0.62);
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 0%, rgba(64, 59, 126, 0.26), transparent 58%),
    linear-gradient(180deg, rgba(14, 18, 43, 0.96), rgba(9, 12, 31, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 24px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.imh-benefits#advantages .imh-benefit__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  color: #ff4eae;
  background: transparent;
}

.imh-benefits#advantages .imh-benefit__icon svg {
  display: block;
  width: 44px;
  height: 44px;
  overflow: visible;
}

.imh-benefits#advantages .imh-benefit__icon path,
.imh-benefits#advantages .imh-benefit__icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 78, 174, 0.32));
}

.imh-benefits#advantages .imh-benefit:nth-child(1) .imh-benefit__icon path,
.imh-benefits#advantages .imh-benefit:nth-child(1) .imh-benefit__icon circle,
.imh-benefits#advantages .imh-benefit:nth-child(4) .imh-benefit__icon path,
.imh-benefits#advantages .imh-benefit:nth-child(4) .imh-benefit__icon circle {
  stroke-width: 1.6;
}

.imh-benefits#advantages .imh-benefit__icon .icon-dollar {
  fill: currentColor;
  stroke: none;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 3.5px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
}

.imh-benefits#advantages .imh-benefit h3 {
  margin: 0;
  color: #fff;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-benefits#advantages .imh-benefit p {
  margin: 7px 0 0;
  color: #c8c3dc;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(11px, 0.88vw, 13px);
  line-height: 1.25;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .imh-benefits#advantages .imh-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .imh-benefits#advantages {
    padding: 18px 12px;
  }

  .imh-benefits#advantages .imh-container {
    padding: 18px 10px 10px;
    border-radius: 10px;
  }

  .imh-benefits#advantages .imh-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .imh-benefits#advantages .imh-benefits__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .imh-benefits#advantages .imh-benefit {
    min-height: 132px;
    padding: 18px 14px;
  }
}

/* 2026-08-07: resilient card-based sections and compact mobile layout. */
.imh-directions--exact#directions,
.process-exact {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 10%, rgba(118, 47, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(255, 69, 170, 0.15), transparent 32%),
    #050611;
}

.imh-directions__exact,
.process-exact__image {
  display: none;
}

.imh-directions__text,
.process-exact__seo {
  position: static;
  display: grid;
  width: min(1280px, 100%);
  height: auto;
  margin: 0 auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.imh-directions__text {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.imh-directions__text > h2,
.imh-directions__text > p,
.process-exact__seo > h2,
.process-exact__seo > p {
  grid-column: 1 / -1;
  text-align: center;
}

.imh-directions__text > h2,
.process-exact__seo > h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.imh-directions__text > p,
.process-exact__seo > p {
  margin: 12px auto 30px;
  max-width: 760px;
  color: rgba(238, 235, 249, 0.72);
  line-height: 1.55;
}

.imh-directions__text article,
.process-exact__seo article {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 88px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(139, 94, 226, 0.48);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(25, 29, 67, 0.95), rgba(8, 10, 28, 0.98));
  box-shadow: inset 0 1px rgba(255,255,255,.07), 0 22px 50px rgba(0,0,0,.28);
}

.imh-directions__text article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #7848ff, #f04bab);
  box-shadow: 0 10px 28px rgba(202, 67, 229, .28);
}

.imh-directions__text article::after {
  position: absolute;
  top: 31px;
  left: 35px;
  color: #fff;
  font-size: 22px;
}

.imh-directions__text article:nth-of-type(1)::after { content: "日"; }
.imh-directions__text article:nth-of-type(2)::after { content: "K"; }
.imh-directions__text article:nth-of-type(3)::after { content: "中"; }
.imh-directions__text article:nth-of-type(4)::after { content: "U"; }

.imh-directions__text article {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.imh-directions__text article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 91, 190, .78);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 26px 62px rgba(123, 44, 240, .25);
}

.imh-directions__text article h3,
.process-exact__seo article h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 25px;
}

.imh-directions__text article p,
.process-exact__seo article p {
  margin: 6px 0;
  color: rgba(235, 231, 246, .72);
  line-height: 1.5;
}

.process-exact__seo {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-exact__seo article {
  min-height: 210px;
  padding: 28px 20px;
  background:
    radial-gradient(circle at 85% 8%, rgba(231, 71, 193, .18), transparent 36%),
    linear-gradient(155deg, rgba(22, 25, 59, .97), rgba(7, 9, 25, .99));
}

.process-exact__seo article h3 {
  color: #f15abb;
  font-size: 19px;
}

@media (max-width: 1040px) {
  .imh-directions__text { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-exact__seo { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    left: 12px;
    grid-template-columns: minmax(0, 1fr) 52px;
    width: auto;
    max-width: none;
    min-height: 66px;
    padding: 7px 9px 7px 14px;
    transform: none;
    border: 1px solid rgba(255, 87, 190, .5);
    border-radius: 20px;
  }

  .brand {
    width: min(190px, 58vw);
    min-width: 0;
    height: 48px;
    margin: 0;
    overflow: visible;
  }

  .brand__logo {
    width: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    background:
      linear-gradient(180deg, rgba(2, 4, 14, .28), rgba(2, 4, 14, .92)),
      url("assets/v4/direction-card-japan-car-hd.png?v=20260807-4") center 35% / cover no-repeat;
  }

  .hero__video {
    display: block;
    opacity: 0;
    transition: opacity .75s ease;
  }

  .hero__video.is-loaded {
    opacity: 1;
  }

  .hero__video iframe {
    top: 50%;
    left: 50%;
    width: 178vh;
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%) scale(1.04);
  }

  .hero__content {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 118px 18px 30px;
  }

  .hero__badge { margin-bottom: 14px; font-size: 10px; line-height: 1.45; }
  .hero h1 { margin-bottom: 14px; font-size: clamp(34px, 10.2vw, 43px); line-height: 1.04; }
  .hero h1 br { display: none; }
  .hero__promise { font-size: 17px; }
  .hero__promise span { font-size: 21px; }
  .hero__lead { font-size: 14px; line-height: 1.55; }
  .hero-btn { width: 100%; min-height: 70px; padding: 12px 18px; }

  .hero__trust {
    margin-top: 24px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .hero__trust h2 { margin-bottom: 14px; font-size: 18px; }
  .hero__trust .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; gap: 9px; }
  .hero__trust .hero__facts div { min-height: 112px; height: auto; padding: 13px 10px; }
  .hero__trust .hero__facts dt,
  .hero__trust .hero__facts div:nth-child(4) dt { gap: 7px; font-size: 15px; white-space: normal; }
  .hero-fact-icon { width: 25px; height: 25px; flex-basis: 25px; }
  .hero-fact-car-icon, .hero-fact-income-icon { width: 25px; height: 25px; }
  .hero__trust .hero__facts dt svg { width: 24px; height: 24px; }
  .hero__trust .hero__facts dd { font-size: 11px; }
  .hero__trust p { font-size: 9px; }
  .hero__guarantees { position: static; grid-template-columns: repeat(2, 1fr); width: 100%; margin-top: 18px; transform: none; }
  .hero__guarantees span { min-height: 62px; padding: 10px; gap: 8px; font-size: 11px; }
  .hero__guarantees span::before { display: none; }
  .hero__guarantees svg { width: 23px; height: 23px; }

  .imh-benefits#advantages .imh-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .imh-benefits#advantages .imh-benefit {
    min-height: 140px;
    padding: 14px 8px;
  }

  .imh-benefits#advantages .imh-benefit__icon { width: 34px; height: 34px; margin-bottom: 9px; }
  .imh-benefits#advantages .imh-benefit__icon svg { width: 32px; height: 32px; }
  .imh-benefits#advantages .imh-benefit h3 { font-size: 12px; }
  .imh-benefits#advantages .imh-benefit p { font-size: 10px; }

  .imh-directions--exact#directions,
  .process-exact { padding: 54px 14px; }
  .imh-directions__text { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .process-exact__seo { grid-template-columns: 1fr; gap: 10px; }
  .imh-directions__text > h2,
  .process-exact__seo > h2 { font-size: 30px; }
  .imh-directions__text > p,
  .process-exact__seo > p { margin-bottom: 18px; font-size: 13px; }
  .imh-directions__text article { min-height: 185px; padding: 72px 12px 16px; border-radius: 16px; }
  .imh-directions__text article::before { top: 16px; left: 12px; width: 42px; height: 42px; }
  .imh-directions__text article::after { top: 23px; left: 23px; font-size: 20px; }
  .imh-directions__text article h3 { font-size: 19px; }
  .imh-directions__text article p { font-size: 11px; }
  .process-exact__seo article { min-height: 0; padding: 20px 17px; }

  .msg-widget { right: 12px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .msg-widget__btn { width: 58px; height: 58px; }
  .to-top { right: 16px; bottom: 88px; width: 48px; height: 48px; }
}

.imh-directions#directions {
  padding: 24px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.72), rgba(7, 7, 10, 0.92)),
    #07070a;
}

.imh-directions#directions .imh-container {
  width: min(1180px, 100%);
  min-height: 620px;
  padding: 34px 28px 22px;
  border: 1px solid rgba(125, 77, 190, 0.55);
  border-radius: 12px;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 78, 174, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.9), rgba(4, 5, 14, 0.98)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 78% 3% / 1460px auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.42);
}

.imh-directions#directions .imh-container::before {
  display: none;
}

.imh-directions#directions .imh-directions__top {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  min-height: 230px;
  margin: 0 0 10px;
}

.imh-directions#directions .imh-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-directions#directions .imh-lead {
  max-width: 330px;
  margin-top: 14px;
  color: #c8c3dc;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.imh-directions#directions .imh-route-map {
  position: relative;
  min-height: 210px;
  border: 0;
  background:
    radial-gradient(circle at 26% 30%, rgba(255, 78, 174, 0.22), transparent 3px),
    radial-gradient(circle at 48% 58%, rgba(255, 78, 174, 0.22), transparent 3px),
    radial-gradient(circle at 67% 38%, rgba(255, 78, 174, 0.22), transparent 3px),
    radial-gradient(circle at 82% 54%, rgba(255, 78, 174, 0.22), transparent 3px);
  box-shadow: none;
}

.imh-directions#directions .imh-route-map::before {
  content: "";
  position: absolute;
  inset: 0 4% 10% 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 24% 28%, transparent 32%, rgba(255, 78, 174, 0.52) 33%, transparent 34%) 0 0 / 52% 66% no-repeat,
    radial-gradient(ellipse at 52% 52%, transparent 38%, rgba(255, 78, 174, 0.48) 39%, transparent 40%) 10% -4% / 58% 78% no-repeat,
    radial-gradient(ellipse at 76% 38%, transparent 36%, rgba(255, 78, 174, 0.44) 37%, transparent 38%) 25% 0 / 58% 72% no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 78, 174, 0.65));
  transform: none;
}

.imh-directions#directions .imh-route-map::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 24% 30%, #ff7bd5 0 4px, rgba(255, 78, 174, 0.32) 5px 12px, transparent 13px),
    radial-gradient(circle at 48% 58%, #ff7bd5 0 4px, rgba(255, 78, 174, 0.32) 5px 12px, transparent 13px),
    radial-gradient(circle at 67% 38%, #ff7bd5 0 4px, rgba(255, 78, 174, 0.32) 5px 12px, transparent 13px),
    radial-gradient(circle at 84% 54%, #ff7bd5 0 4px, rgba(255, 78, 174, 0.32) 5px 12px, transparent 13px);
  box-shadow: none;
}

.imh-directions#directions .imh-route-map span {
  position: absolute;
  display: block;
  width: 110px;
  height: 1px;
  border-top: 1px dashed rgba(255, 123, 213, 0.78);
  transform-origin: left center;
  filter: drop-shadow(0 0 7px rgba(255, 78, 174, 0.78));
}

.imh-directions#directions .imh-route-map span:nth-child(1) {
  left: 24%;
  top: 31%;
  transform: rotate(12deg);
}

.imh-directions#directions .imh-route-map span:nth-child(2) {
  left: 36%;
  top: 40%;
  width: 150px;
  transform: rotate(28deg);
}

.imh-directions#directions .imh-route-map span:nth-child(3) {
  left: 48%;
  top: 58%;
  width: 160px;
  transform: rotate(-28deg);
}

.imh-directions#directions .imh-route-map span:nth-child(4) {
  left: 67%;
  top: 39%;
  width: 105px;
  transform: rotate(28deg);
}

.imh-directions#directions .imh-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(125, 77, 190, 0.45);
  border-radius: 14px;
  background: rgba(3, 4, 12, 0.46);
}

.imh-directions#directions .imh-direction-card {
  overflow: hidden;
  border: 1px solid rgba(74, 63, 135, 0.62);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 18, 43, 0.96), rgba(7, 9, 24, 0.96));
  box-shadow: none;
}

.imh-directions#directions .imh-direction-card__image {
  height: 205px;
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.34)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 6% 41% / 1200px auto;
}

.imh-directions#directions .imh-direction-card:nth-child(2) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.34)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 38% 41% / 1200px auto;
}

.imh-directions#directions .imh-direction-card:nth-child(3) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.34)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 62% 41% / 1200px auto;
}

.imh-directions#directions .imh-direction-card:nth-child(4) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.34)),
    url("assets/v4/reference_full_landing_asia_gradient.png?v=20260807-3") 91% 26% / 1200px auto;
}

.imh-directions#directions .imh-direction-card__body {
  padding: 18px 18px 20px;
}

.imh-directions#directions .imh-direction-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-directions#directions .imh-direction-card h3 span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 22px;
  border-radius: 2px;
  background: #f7f7fb;
  font-size: 17px;
}

.imh-directions#directions .imh-direction-card p {
  color: #d8d2eb;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.36;
  font-weight: 500;
}

@media (max-width: 1040px) {
  .imh-directions#directions .imh-directions__top {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .imh-directions#directions .imh-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .imh-directions#directions {
    padding: 18px 12px;
  }

  .imh-directions#directions .imh-container {
    min-height: 0;
    padding: 24px 10px 10px;
  }

  .imh-directions#directions .imh-title {
    font-size: 30px;
  }

  .imh-directions#directions .imh-route-map {
    min-height: 170px;
  }

  .imh-directions#directions .imh-direction-grid {
    grid-template-columns: 1fr;
  }

  .imh-directions#directions .imh-direction-card__image {
    height: 180px;
  }
}

.imh-directions--exact#directions {
  display: grid;
  justify-items: center;
  padding: 0;
  background: #030611;
}

.imh-directions--exact#directions::before,
.imh-directions--exact#directions::after {
  display: none;
}

.imh-directions__exact {
  display: block;
  width: min(1672px, 100%);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.imh-directions__exact.reveal {
  transform: translate3d(0, 42px, 0) scale(0.985);
  transform-origin: 50% 46%;
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.05s ease;
}

.imh-directions__exact.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.imh-directions__text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 680px) {
  .imh-directions--exact#directions {
    padding: 0;
    overflow-x: auto;
    justify-items: start;
  }

  .imh-directions__exact {
    width: 1672px;
    max-width: none;
  }
}

.imh-directions--seo#directions {
  padding: 24px clamp(18px, 4vw, 56px);
  background: #07070a;
}

.imh-directions--seo#directions .imh-container {
  position: relative;
  width: min(1180px, 100%);
  min-height: 612px;
  padding: 34px 28px 22px;
  overflow: hidden;
  border: 1px solid rgba(125, 77, 190, 0.55);
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 78, 174, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.9), rgba(4, 5, 14, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.42);
}

.imh-directions--seo#directions .imh-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/v4/directions-exact.png?v=20260807-3") center / cover no-repeat;
  opacity: 0.18;
  filter: saturate(1.08) contrast(1.04);
}

.imh-directions--seo#directions .imh-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 5, 14, 0.14), rgba(4, 5, 14, 0.24)),
    linear-gradient(90deg, rgba(4, 5, 14, 0.42), transparent 38%, rgba(4, 5, 14, 0.16));
  pointer-events: none;
}

.imh-directions--seo#directions .imh-directions__top,
.imh-directions--seo#directions .imh-direction-grid {
  position: relative;
  z-index: 2;
}

.imh-directions--seo#directions .imh-directions__top {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  min-height: 230px;
  margin-bottom: 10px;
}

.imh-directions--seo#directions .imh-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.imh-directions--seo#directions .imh-lead {
  max-width: 330px;
  margin-top: 14px;
  color: #d8d2eb;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.imh-directions--seo#directions .imh-route-map {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 210px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.imh-directions--seo#directions .imh-route-map img {
  width: min(100%, 610px);
  height: auto;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 0 18px rgba(255, 78, 174, 0.22));
}

.imh-directions--seo#directions .imh-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(125, 77, 190, 0.46);
  border-radius: 14px;
  background: rgba(3, 4, 12, 0.48);
  transition: grid-template-columns 0.35s ease;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:hover) {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(1):hover) {
  grid-template-columns: 1.34fr 0.9fr 0.9fr 0.9fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(2):hover) {
  grid-template-columns: 0.9fr 1.34fr 0.9fr 0.9fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(3):hover) {
  grid-template-columns: 0.9fr 0.9fr 1.34fr 0.9fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(4):hover) {
  grid-template-columns: 0.9fr 0.9fr 0.9fr 1.34fr;
}

.imh-directions--seo#directions .imh-direction-card {
  overflow: hidden;
  border: 1px solid rgba(74, 63, 135, 0.66);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 18, 43, 0.96), rgba(7, 9, 24, 0.98));
  box-shadow: none;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.imh-directions--seo#directions .imh-direction-card:hover {
  border-color: rgba(255, 78, 174, 0.58);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 78, 174, 0.16);
  transform: translateY(-2px);
}

.imh-directions--seo#directions .imh-direction-card__image {
  height: 205px;
  filter: saturate(1.16) contrast(1.05);
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.32)),
    url("assets/v4/direction-japan-city-hd.png?v=20260807-3") center / cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(2) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.32)),
    url("assets/v4/direction-korea-city-hd.png?v=20260807-3") center / cover;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(3) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.32)),
    url("assets/v4/direction-china-city-hd.png?v=20260807-3") center / cover;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(4) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.32)),
    url("assets/v4/direction-uae-city-hd.png?v=20260807-3") center / cover;
}

.imh-directions--seo#directions .imh-direction-card:hover .imh-direction-card__image {
  filter: saturate(1.24) contrast(1.08);
  transform: scale(1.065);
}

.imh-directions--seo#directions .imh-direction-card__body {
  padding: 18px 18px 20px;
}

.imh-directions--seo#directions .imh-direction-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-directions--seo#directions .imh-direction-card h3 span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 22px;
  border-radius: 2px;
  background: #f7f7fb;
  font-size: 17px;
}

.imh-directions--seo#directions .imh-direction-card p {
  color: #d8d2eb;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.36;
  font-weight: 500;
}

@media (max-width: 1040px) {
  .imh-directions--seo#directions .imh-directions__top {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .imh-directions--seo#directions .imh-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .imh-directions--seo#directions {
    padding: 18px 12px;
  }

  .imh-directions--seo#directions .imh-container {
    min-height: 0;
    padding: 24px 10px 10px;
  }

  .imh-directions--seo#directions .imh-title {
    font-size: 30px;
  }

  .imh-directions--seo#directions .imh-route-map {
    min-height: 150px;
  }

  .imh-directions--seo#directions .imh-direction-grid {
    grid-template-columns: 1fr;
  }

  .imh-directions--seo#directions .imh-direction-card__image {
    height: 180px;
  }
}

.imh-directions--seo#directions {
  padding: 42px clamp(18px, 4vw, 56px);
  background: #030815;
}

.imh-directions--seo#directions .imh-container {
  width: min(1448px, 100%);
  min-height: 748px;
  padding: 76px 74px 52px;
  border: 2px solid rgba(190, 83, 255, 0.78);
  border-radius: 26px;
  background:
    radial-gradient(circle at 76% 17%, rgba(242, 72, 210, 0.23), transparent 24%),
    radial-gradient(circle at 8% 10%, rgba(55, 87, 240, 0.26), transparent 26%),
    linear-gradient(180deg, #050a19 0%, #060815 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(55, 115, 255, 0.22),
    0 28px 90px rgba(0, 0, 0, 0.55);
}

.imh-directions--seo#directions .imh-container::before {
  content: "";
  position: absolute;
  inset: 20px 42px auto 470px;
  z-index: 0;
  height: 270px;
  opacity: 0.98;
  background: url("assets/v4/directions-map-hd.png?v=20260807-3") center / contain no-repeat;
  filter: saturate(1.18) contrast(1.12) drop-shadow(0 0 28px rgba(255, 75, 214, 0.28));
}

.imh-directions--seo#directions .imh-container::after {
  content: "";
  position: absolute;
  left: 74px;
  top: 114px;
  z-index: 1;
  width: 4px;
  height: 188px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5bdc, #6a55ff);
  box-shadow: 0 0 22px rgba(255, 91, 220, 0.72);
}

.imh-directions--seo#directions .imh-directions__top,
.imh-directions--seo#directions .imh-direction-grid {
  position: relative;
  z-index: 2;
}

.imh-directions--seo#directions .imh-directions__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 286px;
  margin: 0;
}

.imh-directions--seo#directions .imh-directions__copy {
  padding-left: 34px;
}

.imh-directions--seo#directions .imh-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(48px, 4.2vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.48);
}

.imh-directions--seo#directions .imh-title span {
  background: linear-gradient(90deg, #ff68db 0%, #8f66ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.imh-directions--seo#directions .imh-lead {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.imh-directions--seo#directions .imh-route-map {
  min-height: 0;
}

.imh-directions--seo#directions .imh-route-map img {
  display: none;
}

.imh-directions--seo#directions .imh-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transition: grid-template-columns 0.35s ease;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(1):hover) {
  grid-template-columns: 1.22fr 0.94fr 0.94fr 0.94fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(2):hover) {
  grid-template-columns: 0.94fr 1.22fr 0.94fr 0.94fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(3):hover) {
  grid-template-columns: 0.94fr 0.94fr 1.22fr 0.94fr;
}

.imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:nth-child(4):hover) {
  grid-template-columns: 0.94fr 0.94fr 0.94fr 1.22fr;
}

.imh-directions--seo#directions .imh-direction-card {
  overflow: hidden;
  min-height: 402px;
  border: 2px solid rgba(167, 82, 255, 0.72);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 17, 43, 0.94), rgba(7, 9, 25, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 50px rgba(0, 0, 0, 0.38);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.imh-directions--seo#directions .imh-direction-card:hover {
  border-color: rgba(255, 94, 222, 0.92);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 34px rgba(255, 78, 174, 0.22);
}

.imh-directions--seo#directions .imh-direction-card__image {
  height: 230px;
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.16)),
    url("assets/v4/direction-card-japan-car-hd.png?v=20260807-3") center 58% / cover;
  filter: saturate(1.16) contrast(1.06);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(2) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.16)),
    url("assets/v4/direction-card-korea-car-hd.png?v=20260807-3") center 58% / cover;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(3) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.16)),
    url("assets/v4/direction-card-china-car-hd.png?v=20260807-3") center 58% / cover;
}

.imh-directions--seo#directions .imh-direction-card:nth-child(4) .imh-direction-card__image {
  background:
    linear-gradient(180deg, rgba(5, 6, 14, 0), rgba(5, 6, 14, 0.16)),
    url("assets/v4/direction-card-uae-car-hd.png?v=20260807-3") center 58% / cover;
}

.imh-directions--seo#directions .imh-direction-card:hover .imh-direction-card__image {
  filter: saturate(1.24) contrast(1.1);
  transform: scale(1.055);
}

.imh-directions--seo#directions .imh-direction-card__body {
  padding: 26px 26px 24px;
}

.imh-directions--seo#directions .imh-direction-card h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  color: #fff;
  text-transform: uppercase;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.imh-directions--seo#directions .imh-direction-card h3 span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 36px;
  border-radius: 5px;
  background: #f8f7ff;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.imh-directions--seo#directions .imh-direction-card ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.imh-directions--seo#directions .imh-direction-card li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.imh-directions--seo#directions .imh-direction-card li svg {
  width: 30px;
  height: 30px;
  color: #bf5cff;
}

.imh-directions--seo#directions .imh-direction-card li svg path,
.imh-directions--seo#directions .imh-direction-card li svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(191, 92, 255, 0.46));
}

@media (max-width: 1180px) {
  .imh-directions--seo#directions .imh-container {
    padding: 52px 32px 34px;
  }

  .imh-directions--seo#directions .imh-container::after {
    left: 36px;
    top: 82px;
  }

  .imh-directions--seo#directions .imh-directions__copy {
    padding-left: 24px;
  }

  .imh-directions--seo#directions .imh-direction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .imh-directions--seo#directions {
    padding: 18px 12px;
  }

  .imh-directions--seo#directions .imh-container {
    min-height: 0;
    padding: 34px 18px 18px;
    border-radius: 18px;
  }

  .imh-directions--seo#directions .imh-container::before {
    inset: 16px 8px auto 110px;
    height: 150px;
  }

  .imh-directions--seo#directions .imh-container::after {
    left: 18px;
    top: 44px;
    height: 112px;
  }

  .imh-directions--seo#directions .imh-directions__top {
    grid-template-columns: 1fr;
    min-height: 190px;
  }

  .imh-directions--seo#directions .imh-title {
    font-size: 34px;
  }

  .imh-directions--seo#directions .imh-lead {
    font-size: 15px;
  }

  .imh-directions--seo#directions .imh-direction-grid,
  .imh-directions--seo#directions .imh-direction-grid:has(.imh-direction-card:hover) {
    grid-template-columns: 1fr;
  }

  .imh-directions--seo#directions .imh-direction-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 28px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 8px 14px;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    width: calc(100vw - 44px);
    padding-top: 118px;
    padding-bottom: 250px;
  }

  .hero__trust {
    width: min(560px, 100%);
  }

  .hero__guarantees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 188px;
  }

  .hero__guarantees span {
    padding: 0 22px;
    font-size: 15px;
  }

  .hero__guarantees span + span::before {
    display: none;
  }

  .hero__guarantees span:nth-child(2n)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, rgba(130, 126, 184, 0.65), transparent);
    transform: translateY(-50%);
  }

  .advantage-grid,
  .process-list,
  .imh-trustbar__grid,
  .imh-benefits__grid,
  .imh-process__steps,
  .imh-direction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__head--row,
  .catalog-section__head,
  .imh-directions__top,
  .imh-final__grid,
  .contact-showcase__shell,
  .split,
  .request-card,
  .contacts {
    grid-template-columns: 1fr;
  }

  .contact-showcase {
    padding: 48px 18px;
  }

  .contact-showcase__shell {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(3, 4, 17, 0.96) 0%, rgba(3, 4, 17, 0.58) 46%, rgba(3, 4, 17, 0.94) 100%),
      radial-gradient(circle at 50% 30%, rgba(255, 49, 214, 0.22), transparent 30%),
      url("assets/contact-bmw-x6-neon.png?v=20260807-3") 57% 50% / cover no-repeat;
  }

  .contact-showcase__card {
    justify-self: start;
  }

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

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 58px;
    padding: 2px 12px;
    border-radius: 16px;
  }

  .brand {
    width: 196px;
    min-width: 168px;
  }

  .brand__logo {
    max-height: 50px;
  }

  .site-nav {
    top: 76px;
  }

  .hero {
    min-height: 1120px;
  }

  .hero__video iframe {
    width: calc(100vw + 520px);
    height: calc(100vh + 300px);
    min-width: calc(177.78vh + 520px);
    transform: translate(-48%, -48%) scale(1.08);
  }

  .hero__content {
    width: calc(100vw - 28px);
    padding-top: 96px;
    padding-bottom: 300px;
    gap: 18px;
  }

  .hero__badge {
    min-height: 34px;
    padding: 0 13px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero__promise {
    font-size: 17px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__actions {
    display: grid;
  }

  .hero-btn {
    width: 100%;
    min-height: 70px;
    padding: 13px 18px;
  }

  .hero-btn span {
    min-width: 0;
  }

  .hero__trust {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .hero__trust .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__trust .hero__facts div {
    min-height: 96px;
  }

  .hero__trust .hero__facts dt {
    font-size: 24px;
  }

  .hero__guarantees {
    grid-template-columns: 1fr;
    min-height: 272px;
    bottom: 14px;
  }

  .hero__guarantees span {
    min-height: 64px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero__guarantees span:nth-child(2n)::before {
    display: none;
  }

  .hero__guarantees span + span {
    border-top: 1px solid rgba(130, 126, 184, 0.34);
  }

  .catalog-hero {
    min-height: 520px;
    padding: 96px 18px 54px;
  }

  .catalog-hero .hero__actions {
    display: grid;
  }

  .hero__facts,
  .advantage-grid,
  .process-list,
  .imh-trustbar__grid,
  .imh-benefits__grid,
  .imh-process__steps,
  .imh-direction-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .imh-section {
    padding: 26px 18px;
  }

  .imh-container {
    width: 100%;
  }

  .imh-benefits,
  .imh-directions,
  .imh-process,
  .imh-final {
    padding: 64px 18px;
  }

  .imh-title {
    font-size: clamp(30px, 10vw, 42px);
  }

  .imh-lead {
    font-size: 16px;
  }

  .imh-btn {
    width: 100%;
    min-height: 56px;
    text-align: center;
  }

  .imh-trustbar__item {
    min-height: 78px;
    padding: 16px;
  }

  .imh-route-map {
    min-height: 220px;
  }

  .imh-final__contact {
    padding: 22px;
  }

  .contact-showcase {
    padding: 38px 14px 44px;
  }

  .contact-showcase__shell {
    gap: 24px;
    padding: 28px 18px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(3, 4, 17, 0.98) 0%, rgba(3, 4, 17, 0.74) 45%, rgba(3, 4, 17, 0.96) 100%),
      radial-gradient(circle at 50% 30%, rgba(255, 49, 214, 0.18), transparent 32%),
      url("assets/contact-bmw-x6-neon.png?v=20260807-3") 57% 50% / cover no-repeat;
  }

  .contact-showcase__copy h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.13;
  }

  .contact-showcase__copy p {
    margin: 18px 0 22px;
    font-size: 15px;
  }

  .contact-showcase__button {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 12px;
    min-width: 0;
    width: 100%;
    min-height: 66px;
    padding: 15px 16px;
    border-radius: 17px;
    font-size: 15px;
  }

  .contact-showcase__button svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.5;
  }

  .contact-showcase__button svg:last-child {
    width: 24px;
    height: 24px;
  }

  .contact-showcase__copy small {
    margin-top: 22px;
    font-size: 15px;
  }

  .contact-showcase__card {
    width: 100%;
    margin-right: 0;
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .contact-showcase__card h3 {
    font-size: 22px;
  }

  .contact-showcase__row {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    min-height: 48px;
    font-size: 15px;
  }

  .contact-showcase__row svg {
    width: 24px;
    height: 24px;
  }

  .contact-showcase__card p {
    font-size: 15px;
  }

  .brand-jump {
    gap: 8px;
    margin-bottom: 34px;
  }

  .brand-jump a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .catalog-section {
    margin-bottom: 42px;
    scroll-margin-top: 78px;
  }

  .catalog-section__head {
    display: grid;
    align-items: start;
  }

  .hero__actions,
  .site-footer {
    display: grid;
  }

  .btn,
  .hero__actions {
    width: 100%;
  }

  .request-card,
  .contacts {
    width: 100%;
    border-radius: 0;
  }

  #request.section--gradient {
    padding: 36px 14px;
  }

  #request .request-card {
    padding: 16px;
    border-radius: 18px;
    min-height: 0;
    background-position: 56% center;
  }

  #request .request-card h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  #request .request-card__form {
    padding: 16px;
    border-radius: 16px;
  }

  #request .lead-form input {
    min-height: 48px;
  }

  .request-modal {
    padding: 12px;
  }

  .request-modal__card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px 16px;
    border-radius: 18px;
    background-position: 58% center;
  }

  .request-modal__intro h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .request-modal .request-card__form {
    padding: 16px;
  }

  .deal-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .msg-widget {
    right: 20px;
    bottom: 20px;
  }

  .msg-widget__label {
    order: 0;
    left: 0;
    right: auto;
    margin-left: -150px;
    transform: translateX(-10px);
  }

  .msg-widget__item {
    flex-direction: row-reverse;
  }

  .to-top {
    right: 20px;
    bottom: 92px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

@media (min-width: 1440px) {
  #request .request-card {
    min-height: 450px;
    background-position: center;
  }

  .request-modal__card {
    width: min(980px, 100%);
  }
}

@media (max-width: 1180px) {
  #request .request-card {
    grid-template-columns: minmax(0, 1fr) minmax(292px, 340px);
    min-height: 400px;
  }

  #request .request-card h2 {
    max-width: 470px;
  }

  .request-modal__card {
    grid-template-columns: minmax(0, 1fr) minmax(286px, 330px);
    width: min(900px, 100%);
  }
}

@media (max-width: 900px) {
  #request.section--gradient {
    padding: 46px 18px;
  }

  #request .request-card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    background-position: 52% center;
  }

  .request-card__intro {
    padding-top: 0;
  }

  #request .request-card h2,
  #request .request-card__intro > p:not(.eyebrow) {
    max-width: 620px;
  }

  #request .request-card__form {
    width: min(440px, 100%);
  }

  .request-modal__card {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    gap: 20px;
    background-position: 54% center;
  }
}

@media (max-width: 540px) {
  .hero h1,
  #request .request-card h2,
  .request-modal__intro h2,
  .contact-showcase__copy h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  #request.section--gradient {
    padding: 34px 12px;
  }

  #request .request-card {
    padding: 16px 14px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(3, 4, 14, 0.78), rgba(3, 4, 14, 0.52), rgba(3, 4, 14, 0.82)),
      url("assets/request-form-bg-neon.png?v=20260807-3") 56% center / cover no-repeat;
  }

  #request .request-card::before {
    background:
      rgba(0, 0, 0, 0.46),
      radial-gradient(circle at 72% 20%, rgba(255, 78, 174, 0.12), transparent 24%);
  }

  #request .eyebrow,
  .request-modal__intro .eyebrow {
    margin-bottom: 9px;
    font-size: 15px;
  }

  #request .request-card h2,
  .request-modal__intro h2 {
    font-size: clamp(22px, 7.6vw, 31px);
    line-height: 1.12;
  }

  #request .request-card__intro > p:not(.eyebrow),
  .request-modal__intro p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  #request .request-card__form,
  .request-modal .request-card__form {
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  #request .lead-form input,
  .request-modal .lead-form input {
    min-height: 46px;
    font-size: 14px;
  }

  #request .lead-form .btn,
  .request-modal .lead-form .btn {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .request-modal {
    align-items: start;
    padding: 10px;
    overflow-y: auto;
  }

  .request-modal__card {
    width: 100%;
    max-height: none;
    margin: 8px 0;
    padding: 24px 14px 14px;
    border-radius: 16px;
  }

  .faq-list {
    width: 100%;
  }

  .faq {
    padding-top: 34px;
    padding-bottom: 34px;
    background:
      radial-gradient(circle at 18% 16%, rgba(255, 90, 210, 0.12), transparent 28%),
      radial-gradient(circle at 82% 84%, rgba(105, 60, 255, 0.13), transparent 32%),
      #05050d;
  }

  .faq::before {
    inset: 10px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(5, 5, 13, 0.52), rgba(5, 5, 13, 0.34), rgba(5, 5, 13, 0.58)),
      url("assets/faq-import-questions-bg.png?v=20260807-3") 56% center / cover no-repeat;
  }

  .faq .section__head {
    margin-bottom: 16px;
  }

  .faq .section__head h2 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    min-height: 56px;
    padding: 14px 14px;
    gap: 12px;
    font-size: 16px;
    line-height: 1.3;
  }

  .faq-list summary::after {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .faq-list p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-list ul {
    padding: 0 16px 16px 34px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .site-header {
    width: calc(100vw - 16px);
    left: 8px;
    right: 8px;
    transform: none;
  }

  .brand {
    width: 168px;
    min-width: 150px;
  }

  .hero__content {
    width: calc(100vw - 20px);
  }

  .hero h1 {
    font-size: 34px;
  }

  #request .request-card h2,
  .request-modal__intro h2 {
    font-size: 24px;
  }

  .request-keyword {
    display: inline;
  }

  .contact-showcase__messengers span {
    gap: 5px;
    white-space: normal;
  }

  .vehicle-options .deal-slider {
    grid-template-columns: 1fr;
  }

  .vehicle-options .slider-btn {
    display: none;
  }

  .vehicle-options .deal-track {
    grid-auto-columns: minmax(252px, 88%);
  }

  .vehicle-options .deal-card img {
    height: 220px;
  }

  .vehicle-options .deal-card p {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 18px 36px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__logo {
    width: min(260px, 100%);
  }

  .site-footer__socials a {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .request-modal {
    align-items: start;
    overflow-y: auto;
  }

  .request-modal__card {
    grid-template-columns: 1fr minmax(280px, 330px);
    max-height: none;
    margin: 10px 0;
  }
}

@media (max-width: 1040px) {
  #about.split {
    left: 0;
    width: 100%;
    transform: none;
    margin: 28px 0;
    padding: 18px 14px;
    gap: 24px;
    background:
      linear-gradient(180deg, rgba(4, 5, 18, 0.42) 0%, rgba(4, 5, 18, 0.72) 46%, rgba(4, 5, 18, 0.94) 100%),
      radial-gradient(circle at 24% 16%, rgba(255, 65, 214, 0.18), transparent 30%),
      url("assets/about-import-company-bg.png?v=20260807-3") 44% 50% / cover no-repeat;
  }

  #about .split__content {
    justify-self: stretch;
    max-width: none;
  }

  #about .split__media img {
    height: clamp(260px, 46vw, 420px);
  }
}

@media (max-width: 680px) {
  #about.split {
    width: 100%;
    margin: 22px 0;
    padding: 12px 10px;
    border-radius: 0;
  }

  #about::before {
    inset: 0;
    border-radius: 0;
  }

  #about .split__media::before {
    inset: -7px;
    border-radius: 20px;
  }

  #about .split__media img {
    height: 245px;
    border-radius: 16px;
  }

  #about .split__content {
    grid-column: auto;
    padding: 14px;
    border-radius: 16px;
  }

  #about h2 {
    margin-bottom: 10px;
    font-size: clamp(24px, 8vw, 31px);
  }

  #about .split__content p {
    font-size: 13px;
    line-height: 1.52;
  }

  #about .text-link {
    width: auto;
  }
}

@media (max-width: 680px) {
  .vehicle-options .deal-track {
    grid-auto-columns: minmax(252px, 88%);
  }

  .vehicle-options .deal-card img {
    height: 220px;
  }

  .vehicle-options .deal-card p {
    min-height: 0;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  white-space: nowrap;
}

.nav-dropdown__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown__toggle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 218px;
  padding: 9px;
  border: 1px solid rgba(194, 111, 255, 0.32);
  border-radius: 8px;
  background: rgba(7, 7, 18, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5), 0 0 24px rgba(162, 63, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown.is-open .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: #fff;
  background: linear-gradient(100deg, rgba(101, 44, 255, 0.24), rgba(255, 70, 171, 0.18));
}

@media (max-width: 1040px) {
  .nav-dropdown,
  .nav-dropdown__toggle {
    width: 100%;
  }

  .nav-dropdown__toggle {
    justify-content: space-between;
    padding: 8px 0;
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 4px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
    transform: none;
  }
}

/* Stable narrow-screen layout. Keep this block last so legacy desktop rules
   cannot squeeze content or move floating controls outside the viewport. */
@media (max-width: 680px) {
  body,
  main,
  section,
  .section,
  .imh-section {
    min-width: 0;
    max-width: 100%;
  }

  .site-header {
    right: auto;
    left: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .brand {
    width: min(196px, calc(100vw - 112px));
    min-width: 0;
    overflow: hidden;
  }

  .brand__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(2, 4, 14, 0.28), rgba(2, 4, 14, 0.9)),
      url("assets/v4/direction-card-japan-car-hd.png?v=20260807-3") center / cover no-repeat;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 46px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  #about.split {
    display: block !important;
    left: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  #about .split__media {
    display: none;
  }

  #about .split__content {
    display: block;
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 20px 18px;
  }

  #about h2,
  #about .split__content p,
  #about .text-link {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  #about h2 {
    font-size: clamp(29px, 9vw, 38px);
    line-height: 1.12;
  }

  #about .split__content p {
    font-size: 15px;
    line-height: 1.58;
  }

  .contact-showcase,
  .contact-showcase__shell,
  .contact-showcase__copy,
  .contact-showcase__card,
  .request-card,
  .request-card__form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .contact-showcase__shell {
    display: block;
  }

  .contact-showcase__card {
    margin-top: 26px;
  }

  .contact-showcase__copy h2,
  .imh-title,
  #request .request-card h2 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .imh-directions--exact#directions {
    display: block;
    overflow: hidden;
    padding: 54px 18px;
  }

  .imh-directions__exact,
  .process-exact__image {
    display: none;
  }

  .imh-directions__text,
  .process-exact__seo {
    position: static;
    display: grid;
    width: 100%;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .imh-directions__text {
    gap: 14px;
  }

  .imh-directions__text h2,
  .process-exact__seo h2 {
    margin: 0 0 10px;
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.12;
  }

  .imh-directions__text > p,
  .process-exact__seo > p {
    margin: 0 0 12px;
    color: var(--muted);
  }

  .imh-directions__text article,
  .process-exact__seo article {
    min-width: 0;
    padding: 20px 18px;
    border: 1px solid rgba(157, 87, 255, 0.34);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(18, 20, 48, 0.96), rgba(8, 10, 27, 0.98));
  }

  .imh-directions__text article h3,
  .process-exact__seo article h3 {
    margin: 0 0 7px;
    color: #f35ab9;
    font-size: 20px;
  }

  .imh-directions__text article p,
  .process-exact__seo article p {
    margin: 3px 0;
    color: var(--muted);
    font-size: 14px;
  }

  .process-exact {
    padding: 54px 18px;
  }

  .process-exact__seo {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .msg-widget {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    max-width: calc(100vw - 28px);
  }

  .msg-widget__list {
    right: 0;
    max-width: calc(100vw - 28px);
  }

  .msg-widget__item {
    max-width: calc(100vw - 28px);
  }

  .msg-widget__label {
    max-width: calc(100vw - 96px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .to-top {
    right: max(14px, env(safe-area-inset-right));
  }
}

/* Keep the semantic card versions active after all legacy image-section rules. */
.imh-directions--exact#directions,
.process-exact {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 10%, rgba(118, 47, 255, .2), transparent 30%),
    radial-gradient(circle at 88% 88%, rgba(255, 69, 170, .15), transparent 32%),
    #050611;
}

.imh-directions__exact,
.process-exact__image {
  display: none;
}

.imh-directions__text,
.process-exact__seo {
  position: static;
  display: grid;
  width: min(1280px, 100%);
  height: auto;
  margin: 0 auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.imh-directions__text {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-exact__seo {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1040px) {
  .imh-directions__text { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-exact__seo { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Final mobile geometry overrides. */
#advantages,
#directions,
#process,
#request,
#faq {
  scroll-margin-top: 96px;
}

@media (max-width: 680px) {
  .site-header {
    top: max(10px, env(safe-area-inset-top));
    right: 12px;
    left: 12px;
    grid-template-columns: minmax(0, 1fr) 52px;
    width: auto;
    max-width: none;
    min-height: 66px;
    padding: 7px 9px 7px 14px;
  }

  .brand {
    width: min(190px, 58vw);
    height: 48px;
    margin: 0;
    overflow: visible;
  }

  .brand__logo {
    width: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(2, 4, 14, .3), rgba(2, 4, 14, .92)),
      url("assets/v4/direction-card-japan-car-hd.png?v=20260807-4") center 35% / cover no-repeat;
  }

  .imh-directions__text article {
    padding: 72px 12px 16px;
  }

  .msg-widget {
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .msg-widget__btn {
    width: 58px;
    height: 58px;
  }

  .to-top {
    right: 16px;
    bottom: 88px;
    width: 48px;
    height: 48px;
  }

  .imh-directions--exact#directions,
  .process-exact {
    padding: 54px 14px;
  }

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

  .process-exact__seo {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__video.is-loaded {
    opacity: .7;
  }

  .hero h1 {
    font-size: clamp(31px, 9.2vw, 36px);
    line-height: 1.06;
  }

  .hero__trust .hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .hero__trust .hero__facts div {
    min-width: 0;
    min-height: 112px;
    height: auto;
  }
}
