:root {
  --red: oklch(0.49 0.24 27);
  --red-dark: oklch(0.36 0.20 27);
  --dark: #0c0c0d;
  --dark2: #161618;
  --dark3: #1e1e20;
  --silver: #8e8e8e;
  --silver-light: #c0c0c0;
  --white: #f7f5f3;
  --light-bg: #f2f0ee;
  --mid-bg: #e8e5e2;
  --border-dark: #2a2a2c;
  --border-light: #d8d5d0;
  --text-dark: #1a1a1c;
  --text-mid: #555;
  --green: oklch(0.55 0.18 145);
  --green-dim: oklch(0.55 0.18 145 / 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.login, body.success {
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 48px;
  height: 68px;
  flex-shrink: 0;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-login,
.nav-cta,
.btn-primary,
.btn-outline,
.outline-btn,
.vehicle-btn,
.login-btn,
.login-card .sso-btn,
.form-submit {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-login {
  border: 1px solid var(--border-dark);
  color: var(--silver-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  transition: all .2s;
}
.nav-login:hover { border-color: var(--silver); color: var(--white) !important; }
.nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }

.page-header {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 48px 72px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px);
  pointer-events: none;
}
.page-header-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.page-header-inner { position: relative; z-index: 1; max-width: 860px; }
.page-eyebrow,
.section-eyebrow,
.login-eyebrow,
.success-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-eyebrow::before,
.section-eyebrow::before,
.login-eyebrow::before,
.success-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
}
.page-header h1,
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
}
.page-header h1 {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 18px;
}
.page-header h1 em { color: var(--red); font-style: normal; }
.page-header p {
  font-size: 17px;
  color: var(--silver-light);
  max-width: 680px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
  color: var(--text-dark);
}
.section-eyebrow { margin-bottom: 14px; }

.content-section { background: var(--white); padding: 96px 48px; }
.article { max-width: 980px; }
.article p,
.article li,
.about-text p,
.contact-block p,
.register-intro p,
.login-left p,
.success-left p,
.footer-brand p,
.footer-col ul li a,
.footer-bottom p {
  line-height: 1.7;
}
.article p,
.article li { font-size: 16px; color: var(--text-mid); }
.article p { margin-bottom: 18px; max-width: 920px; }
.article h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  margin: 30px 0 10px;
}
.article ul { margin: 0 0 18px 22px; display: grid; gap: 8px; }
.note-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--border-light);
  background: var(--light-bg);
  color: var(--text-mid);
}

footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 64px 48px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 52px; width: auto; max-width: 200px; object-fit: contain; }
.footer-brand p { font-size: 14px; color: var(--silver); max-width: 280px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--silver); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 13px; color: var(--silver); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: var(--silver); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* Home */
.hero {
  background: var(--dark);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.018) 79px, rgba(255,255,255,0.018) 80px);
  pointer-events: none;
}
.hero-accent,
.hero-accent-2 {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--red);
  transform: skewX(-8deg);
}
.hero-accent {
  right: 38%;
  width: 6px;
  opacity: 0.7;
}
.hero-accent-2 {
  right: calc(38% + 14px);
  width: 2px;
  opacity: 0.3;
}
.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left { padding: 80px 64px 80px 48px; }
.hero-left > img {
  height: 160px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 24px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 17px;
  color: var(--silver-light);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-search {
  background: var(--dark2);
  border: 1px solid var(--border-dark);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
}
.hero-search-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.hero-select {
  background: var(--dark3);
  border: 1px solid var(--border-dark);
  color: var(--silver-light);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  outline: none;
}
.hero-select:hover { border-color: var(--red); }
.hero-search-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  transition: background .2s;
  width: 100%;
}
.hero-search-btn:hover { background: var(--red-dark); }
.hero-right {
  padding: 80px 48px 80px 64px;
  gap: 24px;
}
.hero-stat-stack { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.hero-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--red);
  padding: 22px 28px;
}
.hero-stat-card-accent {
  background: linear-gradient(135deg, rgba(204,17,17,0.16), rgba(255,255,255,0.05));
}
.hero-stat-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-card .num span { color: var(--red); }
.hero-stat-card .label { font-size: 13px; color: var(--silver); letter-spacing: 0.04em; margin-top: 4px; }
.hero-countries-pill { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.country-flag-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  padding: 5px 12px;
  font-size: 13px;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.brands-section {
  background:
    radial-gradient(circle at top, rgba(204,17,17,0.08), transparent 34%),
    linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.brands-header {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}
.brands-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 48px 10px;
  scrollbar-width: none;
  width: 100%;
  animation: none;
}
.brands-group {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  width: max-content;
  animation: brands-scroll 42s linear infinite;
  will-change: transform;
}
.brands-track:hover .brands-group { animation-play-state: paused; }
.brands-track::-webkit-scrollbar { display: none; }
.brand-badge-logo {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border-light);
  padding: 16px 28px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  cursor: default;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}
.brand-badge-logo:hover { background: #fff; }
.brand-badge-logo img {
  height: 44px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.86;
  transition: opacity .3s, filter .3s;
  filter: none;
}
.brand-badge-logo:hover img { opacity: 1; filter: none; }
.brand-badge-logo .bname {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}
.how-section,
.register-section,
.about-section,
.values-section,
.contact-section,
.content-section {
  padding-left: 48px;
  padding-right: 48px;
}
.how-section { background: var(--white); padding-top: 96px; padding-bottom: 96px; }
.countries-section { background: var(--dark2); padding: 96px 48px; }
.countries-section .section-title,
.why-section .section-title { color: var(--white); }
.countries-section .section-eyebrow,
.why-section .section-eyebrow { color: var(--red); }
.steps-grid,
.countries-grid,
.vehicles-grid,
.why-grid,
.values-grid {
  display: grid;
  gap: 2px;
}
.countries-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step-card,
.country-card,
.vehicle-card,
.why-card,
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.step-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.step-card:hover::before,
.value-card:hover::before { transform: scaleX(1); }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: var(--mid-bg);
  line-height: 1;
  margin-bottom: 18px;
}
.step-card h3,
.why-card h3,
.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.step-card p,
.why-card p,
.value-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.country-card {
  background: rgba(255,255,255,0.02);
  border-color: var(--border-dark);
  display: flex;
  align-items: center;
  gap: 16px;
}
.country-card:hover { border-color: var(--red); background: rgba(204,17,17,0.06); }
.country-flag { font-size: 32px; line-height: 1; flex-shrink: 0; }
.country-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.country-count { font-size: 13px; color: var(--silver); margin-top: 2px; }
.vehicles-section { background: var(--light-bg); padding: 96px 48px; }
.vehicles-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.vehicle-card {
  background: var(--white);
  border-color: var(--border-light);
  padding: 0;
}
.vehicle-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.vehicle-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}
.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vehicle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.65) 100%);
}
.vehicle-img-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vehicle-img-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vehicle-img-model { font-size: 13px; color: var(--silver); letter-spacing: 0.04em; }
.vehicle-body { padding: 24px; }
.vehicle-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.vehicle-origin {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vehicle-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
}
.spec-key { font-size: 11px; color: var(--silver); text-transform: uppercase; letter-spacing: 0.06em; }
.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.vehicle-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--red);
}
.vehicle-price-note { font-size: 11px; color: var(--silver); }
.vehicle-btn,
.outline-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
}
.vehicle-btn {
  background: var(--dark);
  color: var(--white);
  transition: background .2s;
}
.vehicle-btn:hover { background: var(--red); }
.vehicles-cta { text-align: center; margin-top: 48px; }
.outline-btn {
  border: 1px solid var(--border-dark);
  color: var(--text-dark);
  background: transparent;
  transition: all .2s;
}
.outline-btn:hover { background: var(--text-dark); color: var(--white); }
.why-section { background: var(--dark); padding: 96px 48px; }
.why-grid { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
.why-card {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-dark);
}
.why-card:hover { border-color: rgba(204,17,17,0.5); }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,17,17,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { color: var(--red); }
.why-card h3 { color: var(--white); }
.why-card p { color: var(--silver-light); }
.register-section { background: var(--white); padding: 96px 48px; }
.register-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.register-intro h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.register-intro p { font-size: 16px; color: var(--text-mid); margin-bottom: 32px; }
.register-perks { display: flex; flex-direction: column; gap: 14px; }
.perk { display: flex; align-items: flex-start; gap: 14px; }
.perk-dot { width: 8px; height: 8px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.perk-text { font-size: 15px; color: var(--text-mid); }
.register-form,
.enquiry-form {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 48px;
}
.register-form h3,
.enquiry-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 28px;
}
.form-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 24px 0 14px;
}
.register-form .form-row,
.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.register-form .form-row.full,
.enquiry-form .form-row.full { grid-template-columns: 1fr; }
.register-form .form-group,
.enquiry-form .form-group,
.login-card .form-group { display: flex; flex-direction: column; gap: 6px; }
.register-form .form-group label,
.enquiry-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.register-form .form-group label .req,
.enquiry-form .form-group label .req { color: var(--red); margin-left: 2px; }
.register-form .form-input,
.register-form .form-select,
.register-form .form-textarea,
.enquiry-form .form-input,
.enquiry-form .form-select,
.enquiry-form .form-textarea {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.register-form .form-input:focus,
.register-form .form-select:focus,
.register-form .form-textarea:focus,
.enquiry-form .form-input:focus,
.enquiry-form .form-select:focus,
.enquiry-form .form-textarea:focus { border-color: var(--red); }
.register-form .form-textarea,
.enquiry-form .form-textarea { resize: vertical; min-height: 120px; }
.register-form .form-select,
.enquiry-form .form-select,
.login-card .form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}
.form-checkbox {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.form-checkbox-label { font-size: 13px; color: var(--text-mid); line-height: 1.55; }
.form-checkbox-label a { color: var(--red); text-decoration: none; }
.form-submit {
  width: 100%;
  margin-top: 22px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  transition: background .2s;
}
.form-submit:hover { background: var(--red-dark); }

/* About */
.about-section { background: var(--white); padding-top: 96px; padding-bottom: 96px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text-dark); }
.about-stats { display: flex; flex-direction: column; gap: 2px; }
.about-stat {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--red);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 90px;
}
.about-stat-label { font-size: 14px; color: var(--text-mid); line-height: 1.4; }
.about-stat-label strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.legal-sub { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-light); }
.legal-sub h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-sub h3::before { content: ''; display: inline-block; width: 20px; height: 3px; background: var(--red); flex-shrink: 0; }
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.legal-card {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.legal-card-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; color: var(--text-dark); }
.legal-card-value.small { font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 500; line-height: 1.6; }
.values-section { background: var(--light-bg); padding-top: 96px; padding-bottom: 96px; border-top: 1px solid var(--border-light); }
.values-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--border-light); transition: border-color .2s; }
.value-card:hover { border-color: var(--red); }
.value-card::before { transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--mid-bg);
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}
.contact-section { background: var(--white); padding-top: 96px; padding-bottom: 96px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.contact-block a { color: var(--text-dark); text-decoration: none; font-size: 16px; font-weight: 500; transition: color .2s; display: block; }
.contact-block a:hover { color: var(--red); }
.contact-block p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.contact-divider { height: 1px; background: var(--border-light); }
.contact-hours { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; gap: 12px; }
.hours-row .day { color: var(--text-mid); }
.hours-row .time { font-weight: 600; color: var(--text-dark); text-align: right; }
.map-placeholder {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  height: 200px;
  margin-top: 32px;
  overflow: hidden;
}
.map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) saturate(0%) contrast(0.95) brightness(0.92);
}

/* Login */
.login-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.login-wrap::before,
.success-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.login-wrap::before {
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}
.login-left {
  background: var(--dark2);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-dark);
}
.login-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
  pointer-events: none;
}
.login-left::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}
.login-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.login-left h1 em { color: var(--red); font-style: normal; }
.login-left p { font-size: 16px; color: var(--silver-light); max-width: 380px; margin-bottom: 48px; }
.login-perks { display: flex; flex-direction: column; gap: 16px; }
.login-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 16px 20px;
}
.perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,17,17,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { color: var(--red); }
.perk-body { display: flex; flex-direction: column; gap: 2px; }
.perk-body strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.perk-body span { font-size: 13px; color: var(--silver); }
.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: var(--dark);
}
.login-card { width: 100%; max-width: 420px; }
.login-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}
.login-card .subtitle { font-size: 14px; color: var(--silver); margin-bottom: 40px; }
.login-card .subtitle a { color: var(--red); text-decoration: none; }
.login-card .subtitle a:hover { text-decoration: underline; }
.login-card .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--silver-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.login-card .form-input {
  background: var(--dark3);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.login-card .form-input::placeholder { color: var(--silver); }
.login-card .form-input:focus { border-color: var(--red); }
.form-row-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.remember-row { display: flex; align-items: center; gap: 8px; }
.remember-row input { accent-color: var(--red); width: 15px; height: 15px; cursor: pointer; }
.remember-row label { font-size: 13px; color: var(--silver); cursor: pointer; }
.forgot-link { font-size: 13px; color: var(--red); text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }
.login-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: background .2s;
  margin-bottom: 24px;
}
.login-btn:hover { background: var(--red-dark); }
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-dark);
}
.divider span { font-size: 12px; color: var(--silver); letter-spacing: 0.08em; white-space: nowrap; }
.sso-btn {
  width: 100%;
  background: transparent;
  color: var(--silver-light);
  border: 1px solid var(--border-dark);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px;
  cursor: pointer;
  gap: 10px;
  transition: border-color .2s, color .2s;
  margin-bottom: 10px;
}
.sso-btn:hover { border-color: var(--silver); color: var(--white); }
.register-prompt {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 14px;
  color: var(--silver);
}
.register-prompt a { color: var(--red); text-decoration: none; font-weight: 600; }
.register-prompt a:hover { text-decoration: underline; }
.error-msg {
  background: rgba(204,17,17,0.1);
  border: 1px solid rgba(204,17,17,0.3);
  color: var(--red);
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: none;
}

/* Success */
.success-wrap {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.success-wrap::before {
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.016) 79px, rgba(255,255,255,0.016) 80px);
}
.success-left,
.success-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.success-left { padding: 80px 96px 80px 48px; max-width: 760px; }
.success-right { padding: 80px 48px 80px 64px; }
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-dim);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  animation: popIn .5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-icon svg { color: var(--green); }
.success-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}
.success-left h1 em { color: var(--green); font-style: normal; }
.success-left p { font-size: 17px; color: var(--silver-light); max-width: 440px; margin-bottom: 40px; }
.next-steps { display: flex; flex-direction: column; gap: 2px; margin-bottom: 44px; }
.next-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--border-dark);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-left-color .2s;
}
.next-step.done { border-left-color: var(--green); }
.next-step.pending { border-left-color: var(--red); }
.step-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-badge.done { background: var(--green-dim); color: var(--green); }
.step-badge.pending { background: rgba(204,17,17,0.12); color: var(--red); }
.step-body strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.step-body span { font-size: 13px; color: var(--silver); }
.action-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary,
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--silver); color: var(--white); }
.summary-card { background: var(--dark2); border: 1px solid var(--border-dark); }
.summary-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.summary-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.summary-ref { font-family: 'Barlow', sans-serif; font-size: 12px; color: var(--silver); letter-spacing: 0.04em; }
.summary-ref span { color: var(--white); font-weight: 600; }
.summary-body { padding: 8px 0; }
.summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border-dark);
  gap: 16px;
}
.summary-row:last-child { border-bottom: none; }
.summary-key { font-size: 12px; color: var(--silver); letter-spacing: 0.04em; flex-shrink: 0; padding-top: 2px; }
.summary-val { font-size: 14px; color: var(--white); font-weight: 500; text-align: right; line-height: 1.5; }
.timeline {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--dark2);
  border: 1px solid var(--border-dark);
}
.timeline-header {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-dark);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.timeline-dot.done { background: var(--green); box-shadow: 0 0 8px var(--green); }
.timeline-dot.active { background: var(--red); box-shadow: 0 0 8px var(--red); animation: pulse 1.5s infinite; }
.timeline-dot.waiting { background: var(--border-dark); border: 2px solid var(--silver); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 4px var(--red); }
  50% { box-shadow: 0 0 12px var(--red); }
}
.timeline-text { display: flex; flex-direction: column; gap: 2px; }
.timeline-text strong { font-size: 14px; font-weight: 600; color: var(--white); }
.timeline-text span { font-size: 12px; color: var(--silver); }

/* Mobile */
@media (max-width: 980px) {
  nav,
  .page-header,
  .content-section,
  footer,
  .hero,
  .how-section,
  .countries-section,
  .vehicles-section,
  .why-section,
  .register-section,
  .about-section,
  .values-section,
  .contact-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  nav {
    height: auto;
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 12px;
  }
  .nav-links a,
  .nav-login,
  .nav-cta {
    font-size: 13px;
  }
  .nav-login,
  .nav-cta {
    padding: 8px 14px;
  }

  .page-header { padding-top: 64px; padding-bottom: 60px; }
  .how-section,
  .countries-section,
  .vehicles-section,
  .why-section,
  .register-section,
  .about-section,
  .values-section,
  .contact-section,
  .content-section,
  footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .page-header p { font-size: 16px; max-width: none; }
  .section-header { margin-bottom: 36px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left,
  .hero-right { padding: 24px 0; }
  .hero-left > img {
    height: 120px !important;
    max-width: 240px !important;
    margin-bottom: 10px !important;
  }
  .hero-right { padding-top: 0; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; }
  .hero-search { padding: 18px; gap: 10px; }
  .hero-right { gap: 16px; }
  .hero-stat-stack { gap: 14px; }
  .hero-stat-card { padding: 18px 20px; }
  .hero-search-row,
  .register-form .form-row,
  .enquiry-form .form-row,
  .form-row,
  .form-row.full {
    grid-template-columns: 1fr;
  }
  .hero-stat-card .num { font-size: 40px; }
  .brands-track { padding-left: 24px; padding-right: 24px; }
  .steps-grid,
  .vehicles-grid,
  .why-grid,
  .values-grid,
  .legal-grid,
  .footer-top,
  .about-grid,
  .contact-layout,
  .register-layout,
  .login-wrap,
  .success-wrap {
    grid-template-columns: 1fr;
  }
  .steps-grid,
  .countries-grid,
  .vehicles-grid,
  .why-grid,
  .values-grid,
  .legal-grid {
    margin-top: 32px;
  }
  .step-card,
  .country-card,
  .vehicle-body,
  .why-card,
  .value-card {
    padding: 24px;
  }
  .vehicle-specs { grid-template-columns: repeat(2, 1fr); }
  .vehicle-footer { justify-content: flex-start; }
  .about-grid,
  .contact-layout,
  .register-layout {
    gap: 32px;
    margin-top: 32px;
  }
  .about-stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .about-stat-num { min-width: 0; }
  .register-form,
  .enquiry-form { padding: 32px; }
  .contact-section .map-placeholder { height: 160px; }
  .login-left,
  .success-left {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
  .login-right,
  .success-right { padding: 48px 24px; }
  .login-card,
  .summary-card { max-width: none; width: 100%; }
  .form-row-split,
  .action-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .countries-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .summary-val { text-align: left; }
  .timeline-item { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  nav { padding-left: 18px; padding-right: 18px; }
  .nav-logo img { height: 38px; }
  .nav-logo-text span:first-child { font-size: 14px; }
  .nav-logo-text span:last-child { font-size: 12px; }
  .page-header,
  .content-section,
  footer,
  .hero,
  .how-section,
  .countries-section,
  .vehicles-section,
  .why-section,
  .register-section,
  .about-section,
  .values-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-header { padding-top: 56px; padding-bottom: 52px; }
  .page-header h1 { font-size: clamp(36px, 11vw, 52px); }
  .section-title { font-size: clamp(28px, 9vw, 38px); }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-sub,
  .page-header p { font-size: 15px; }
  .hero-left,
  .hero-right { padding: 18px 0; }
  .hero-left > img { margin-bottom: 8px !important; }
  .hero-search { padding: 16px; }
  .hero-search,
  .register-form,
  .enquiry-form,
  .login-card,
  .summary-card {
    padding: 20px;
  }
  .brand-badge-logo { min-width: 120px; padding: 14px 20px; }
  .steps-grid,
  .countries-grid,
  .vehicles-grid,
  .why-grid,
  .values-grid,
  .legal-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .countries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-search-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  nav .nav-links {
    gap: 8px 10px;
  }
  nav .nav-links a:not(.nav-login):not(.nav-cta) {
    flex: 0 1 auto;
  }
  .nav-login,
  .nav-cta {
    flex: 1 1 calc(50% - 5px);
    order: 10;
  }
  .vehicle-title { font-size: 24px; }
  .vehicle-specs { grid-template-columns: 1fr; }
  .vehicle-body { padding: 20px; }
  .country-card,
  .step-card,
  .why-card,
  .value-card,
  .legal-card { padding: 20px; }
  .about-stat-num { font-size: 34px; }
  .register-intro h2 { font-size: 38px; }
  .footer-brand p { max-width: none; }
  .footer-top { gap: 28px; }
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-group { animation: none; }
}
