@font-face {
  font-family: "Onest Fallback";
  src: local("Arial");
  size-adjust: 98%;
}

:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #111318;
  --surface-2: #171920;
  --text: #f2f0eb;
  --muted: #a6a7ad;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --violet: #a894ff;
  --violet-strong: #7e64ed;
  --champagne: #d8c6a0;
  --success: #7fd1a4;
  --danger: #ff8f8f;
  --container: 1240px;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(126, 100, 237, 0.09), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Onest, "Onest Fallback", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d5d5d9;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--violet);
  content: "";
}

.section {
  padding: 112px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--surface {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2,
.inner-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 12px;
  height: 1px;
  background: var(--violet);
  content: "";
}

.brand-mark::before {
  top: 10px;
  left: 8px;
  transform: rotate(36deg);
}

.brand-mark::after {
  right: 7px;
  bottom: 9px;
  transform: rotate(-42deg);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  color: #c7c7cb;
  font-size: 14px;
  transition: color 150ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.header-contact {
  display: grid;
  margin-left: 8px;
  text-align: right;
}

.header-contact a {
  font-size: 15px;
  font-weight: 650;
}

.header-contact small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, #b7a8ff, #7e64ed);
  box-shadow: 0 14px 40px rgba(126, 100, 237, 0.26);
  color: #0b0911;
}

.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.btn--reviews {
  border-color: rgba(216, 198, 160, 0.62);
  background: linear-gradient(135deg, rgba(216, 198, 160, 0.19), rgba(126, 100, 237, 0.14));
  box-shadow: 0 12px 34px rgba(216, 198, 160, 0.13);
  color: #f5ead1;
}

.btn--reviews:hover {
  border-color: var(--champagne);
  background: linear-gradient(135deg, rgba(216, 198, 160, 0.28), rgba(126, 100, 237, 0.21));
}

.btn-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 0 rgba(216, 198, 160, 0.48);
  animation: review-cta-pulse 2.2s ease-out infinite;
}

@keyframes review-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 198, 160, 0.48); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(216, 198, 160, 0); }
}

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.vehicle-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050608;
  opacity: var(--vehicle-opacity, 1);
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity;
  --scroll-progress: 0;
}

.vehicle-canvas,
.vehicle-fallback,
.vehicle-media,
.vehicle-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vehicle-canvas {
  z-index: 0;
  display: block;
  opacity: 0;
  transition: opacity 300ms ease;
}

.vehicle-fallback {
  z-index: 0;
  display: block;
  opacity: 1;
  transition: opacity 300ms ease;
}

.vehicle-layer.is-canvas-ready .vehicle-canvas {
  opacity: 1;
}

.vehicle-layer.is-canvas-ready .vehicle-fallback {
  opacity: 0;
}

.vehicle-layer.is-static .vehicle-canvas {
  display: none;
}

.vehicle-layer.is-static .vehicle-fallback {
  opacity: 1 !important;
}

.vehicle-media {
  object-fit: cover;
  object-position: center;
}

.vehicle-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.93) 0%, rgba(8, 9, 11, 0.68) 35%, rgba(8, 9, 11, 0.12) 66%, rgba(8, 9, 11, 0.06) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.34) 0%, transparent 32%, rgba(8, 9, 11, 0.2) 100%);
}

.video-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050608;
  pointer-events: none;
  transform: translateZ(0);
}

.video-poster,
.video-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.video-poster {
  z-index: 0;
  object-fit: cover;
  opacity: 1;
  transition: opacity 480ms ease;
}

.video-frame {
  z-index: 0;
  opacity: 0;
  transition: opacity 480ms ease;
}

.video-layer.is-video-ready .video-frame {
  opacity: 1;
}

.video-layer.is-video-ready .video-poster {
  opacity: 0;
}

.video-layer.is-static .video-frame {
  display: none;
}

.video-layer .vehicle-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.72) 36%, rgba(8, 9, 11, 0.24) 67%, rgba(8, 9, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.48) 0%, transparent 34%, rgba(8, 9, 11, 0.28) 100%),
    rgba(5, 6, 8, 0.12);
}

.page-content,
.site-footer {
  position: relative;
  z-index: 2;
}

.home-scroll .section {
  position: relative;
}

.home-scroll .section > .container {
  position: relative;
  z-index: 1;
}

.home-scroll .section-head > p {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 9, 11, 0.64);
  backdrop-filter: blur(12px);
}

.home-scroll .section::before {
  position: absolute;
  inset: 7% 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.74), rgba(8, 9, 11, 0.3) 48%, rgba(8, 9, 11, 0.08) 76%, transparent);
  content: "";
  pointer-events: none;
}

.home-scroll .section--surface::before {
  inset: 0;
  background: rgba(8, 9, 11, 0.56);
  backdrop-filter: blur(3px);
}

.home-scroll .section--route-end,
.home-scroll .section--compact,
.home-scroll .site-footer {
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  padding: 132px 0 210px;
}

.hero-copy {
  width: min(650px, 56vw);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 480;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--champagne);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #c2c2c7;
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-slogan {
  margin: 24px 0 -16px;
  color: var(--champagne);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 560;
}

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

.hero-note {
  margin: 20px 0 0;
  color: #85868d;
  font-size: 12px;
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 11, 14, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 112px;
  padding: 24px;
}

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

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

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

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.calculator-intro {
  padding: 48px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 148, 255, 0.14), transparent 17rem),
    rgba(0, 0, 0, 0.12);
}

.calculator-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1;
}

.calculator-intro p {
  margin: 22px 0 0;
  color: var(--muted);
}

.calculator-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.calculator-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d1d4;
  font-size: 14px;
}

.calculator-points span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 14px var(--violet);
  content: "";
}

.lead-form {
  min-height: 540px;
  padding: 48px;
}

.form-step[hidden] {
  display: none;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-progress::after {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--violet) var(--progress, 50%), var(--line) var(--progress, 50%));
  content: "";
}

.form-step h3 {
  margin: 0 0 26px;
  font-size: 26px;
  font-weight: 540;
  letter-spacing: -0.025em;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #c9c9cd;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.field textarea {
  min-height: 96px;
  padding-block: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f7077;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(168, 148, 255, 0.7);
  background: rgba(255, 255, 255, 0.055);
}

.field select option {
  background: var(--surface);
}

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

.segment label {
  position: relative;
}

.segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  text-align: center;
}

.segment input:checked + span {
  border-color: rgba(168, 148, 255, 0.6);
  background: rgba(168, 148, 255, 0.12);
  color: var(--text);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.form-actions .btn--primary {
  flex: 1;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--violet-strong);
}

.consent a {
  color: #d8d3ef;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.is-error {
  color: var(--danger);
}

.form-success {
  display: grid;
  min-height: 430px;
  place-items: center;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(127, 209, 164, 0.4);
  border-radius: 50%;
  background: rgba(127, 209, 164, 0.1);
  color: var(--success);
  font-size: 28px;
}

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

.country-card,
.feature-card,
.document-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.country-card {
  min-height: 390px;
  padding: 40px;
}

.country-card::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.country-code {
  color: var(--violet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.country-card h3 {
  max-width: 400px;
  margin: 56px 0 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1;
}

.country-card p {
  max-width: 480px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #ddd8f8;
  font-weight: 650;
}

.country-card--korea {
  background: linear-gradient(145deg, rgba(39, 65, 101, 0.2), rgba(255, 255, 255, 0.02));
}

.country-card--china {
  background: linear-gradient(145deg, rgba(168, 148, 255, 0.12), rgba(255, 255, 255, 0.02));
}

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

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.feature-index {
  color: var(--violet);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.feature-card h3 {
  margin: 62px 0 10px;
  font-size: 19px;
  font-weight: 560;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.price-layout h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 510;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.price-layout > div > p {
  color: var(--muted);
  font-size: 17px;
}

.price-stack {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.price-row span:first-child {
  color: var(--violet);
  font-size: 12px;
}

.price-row strong {
  font-size: 14px;
  font-weight: 560;
}

.price-row small {
  color: var(--muted);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 84px 0.65fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item > span {
  color: var(--violet);
  font-size: 12px;
}

.timeline-item h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 540;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

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

.document-card {
  min-height: 250px;
  padding: 30px;
}

.document-card svg {
  width: 38px;
  height: 38px;
  color: var(--violet);
}

.document-card h3 {
  margin: 64px 0 10px;
  font-size: 20px;
}

.document-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews-section {
  overflow: clip;
}

.reviews-head {
  align-items: end;
}

.reviews-intro {
  display: grid;
  gap: 24px;
}

.reviews-nav {
  display: flex;
  gap: 10px;
}

.reviews-nav[hidden] {
  display: none;
}

.reviews-nav button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.reviews-nav button:hover:not(:disabled) {
  border-color: var(--violet);
  background: rgba(168, 148, 255, 0.12);
}

.reviews-nav button:disabled {
  cursor: default;
  opacity: 0.3;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

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

.review-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #090a0d;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  scroll-snap-align: start;
}

.review-video,
.review-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card--letterbox .review-video {
  object-fit: contain;
}

.review-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.2) 0%, transparent 36%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.24) 45%, transparent 68%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.review-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px 22px 58px;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.review-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ded6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.review-price {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 18px;
  font-weight: 620;
}

.review-copy p {
  margin: 0;
  color: rgba(242, 240, 235, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.review-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.58);
  color: var(--text);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.review-play:hover {
  background: rgba(126, 100, 237, 0.72);
  transform: translate(-50%, -50%) scale(1.05);
}

.review-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.review-sound {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.68);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.review-sound:hover,
.review-sound[aria-pressed="true"] {
  border-color: var(--violet);
  background: rgba(126, 100, 237, 0.78);
}

.review-sound-icon {
  font-size: 17px;
  line-height: 1;
}

.review-card.is-playing .review-play {
  opacity: 0;
  pointer-events: none;
}

.review-card.is-playing .review-copy {
  opacity: 0;
  transform: translateY(12px);
}

.review-card.is-playing .review-shade {
  opacity: 0.12;
}

.review-card--photo .review-copy {
  padding-bottom: 28px;
}

.reviews-hint {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 520;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--violet);
  content: "+";
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.faq-answer p {
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 20%, rgba(168, 148, 255, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.03);
}

.contact-copy,
.contact-details {
  padding: 54px;
}

.contact-copy {
  border-right: 1px solid var(--line);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.contact-copy p {
  max-width: 520px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 28px;
}

.contact-line small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong,
.contact-line a {
  font-size: 19px;
  font-weight: 540;
}

.social-list {
  line-height: 1.55;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer-note {
  max-width: 680px;
  margin: 22px 0 0;
  color: #77787f;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.inner-hero {
  padding: 190px 0 96px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 20%, rgba(168, 148, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.inner-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin: 64px 0 18px;
  font-size: 34px;
  font-weight: 540;
  letter-spacing: -0.035em;
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.prose p,
.prose li {
  color: #b2b2b7;
}

.prose a {
  color: #d8d3ef;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notice {
  margin: 32px 0;
  padding: 22px;
  border: 1px solid rgba(216, 198, 160, 0.3);
  border-radius: 16px;
  background: rgba(216, 198, 160, 0.06);
  color: #d9cfba;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 13, 16, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .header-contact {
    margin-left: 0;
  }

  .calculator-shell,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .calculator-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-copy {
    width: 62vw;
  }

  .reviews-track {
    grid-auto-columns: minmax(280px, 44%);
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .hero-inner {
    padding: 96px 0 38px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 72px);
  }

  .hero-lead {
    max-width: 560px;
    margin-top: 20px;
    font-size: 16px;
  }

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

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

  .hero-note {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
  }

  .header-contact small,
  .header-inner > .btn {
    display: none;
  }

  .header-contact a {
    font-size: 12px;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 18px;
  }

  .vehicle-canvas {
    display: none;
  }

  .vehicle-fallback {
    opacity: 1 !important;
  }

  .hero-inner {
    min-height: 760px;
  }

  .vehicle-media {
    object-position: center 62%;
  }

  .vehicle-shade {
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.95) 4%, rgba(8, 9, 11, 0.67) 48%, rgba(8, 9, 11, 0.28) 66%, var(--bg) 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.78), transparent);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 132px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-lead {
    max-width: 90%;
    font-size: 17px;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: -34px;
  }

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

  .stat {
    min-height: 102px;
    padding: 18px;
  }

  .stat + .stat {
    border-left: 0;
  }

  .stat:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .calculator-shell {
    border-radius: 22px;
  }

  .calculator-intro,
  .lead-form {
    padding: 30px 22px;
  }

  .lead-form {
    min-height: 620px;
  }

  .field-grid,
  .card-grid,
  .document-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .country-card {
    min-height: 330px;
    padding: 28px;
  }

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

  .feature-card {
    min-height: 190px;
  }

  .reviews-head {
    margin-bottom: 34px;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-track {
    grid-auto-columns: minmax(272px, 84%);
    gap: 14px;
    margin-right: -14px;
    padding-right: 14px;
  }

  .review-card {
    border-radius: 20px;
  }

  .review-copy {
    padding-inline: 20px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .timeline-item p {
    grid-column: 2;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-copy,
  .contact-details {
    padding: 34px 26px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .inner-hero {
    padding: 140px 0 70px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero {
    min-height: max(880px, 100svh);
  }

  .vehicle-canvas {
    display: none;
  }

  .vehicle-fallback {
    opacity: 1 !important;
  }
}
