/* ═══ servicehub full design system — ALL css bundled VERBATIM ═══ */
/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  --font:         'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', sans-serif;

  /* Background layers */
  --bg:        #1A1A1A;
  --surface:   #222222;
  --surface-2: #2A2A2A;
  --surface-3: #303030;
  --mid:       #2A2A2A;
  --panel:     #2E2E2E;

  /* Brand accents */
  --teal:       var(--brand);
  --teal-dark:  var(--brand-deep);
  --teal-glow:  rgba(var(--brand-rgb),0.22);
  --teal-tint:  rgba(var(--brand-rgb),0.12);
  --teal-border:rgba(var(--brand-rgb),0.25);
  --leaf:       var(--brand);
  --leaf-light: var(--brand-deep);

  /* Semantic brand colours */
  --oker:  #F9C86F;
  --blue:  #6587A5;
  --pink:  #F3849B;
  --green:      var(--brand);
  --green-dark: var(--brand-deep);
  --green-glow: rgba(var(--brand-rgb),0.22);
  --green-tint: rgba(var(--brand-rgb),0.12);

  /* Glass */
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);

  /* Text */
  --text:   #FFFFFF;
  --text-2: rgba(255,255,255,0.45);
  --text-3: rgba(255,255,255,0.20);

  --border: rgba(255,255,255,0.10);
  --shadow: 0 8px 32px rgba(0,0,0,0.40);

  --r-xl: 28px;
  --r-lg: 22px;
  --r:    18px;
  --r-sm: 14px;

  /* ── THEME TOKENS ── */
  --bg-gradient:   radial-gradient(circle at 78% -5%, #1e3937 0%, #1c1c1c 45%, #111111 100%);
  --c-g-card:      rgba(182, 182, 182, 0.26);
  --c-g-border:    rgba(255,255,255,0.10);
  --c-g-shadow:    0 8px 32px rgba(0,0,0,0.38);
  --c-sidebar:     rgba(0,0,0,0.62);
  --c-topbar:      rgba(0,0,0,0.42);
  --c-nav:         rgba(14,14,14,0.92);
  --c-stripe:      rgba(0,0,0,0.28);
}

/* ── LIGHT THEME ── */
:root[data-theme="light"] {
  --bg-gradient:   radial-gradient(circle at 78% -5%, #a8dfd8 0%, #dcdcdc 50%, #f2f2f2 100%);
  --c-g-card:      rgba(10,10,10,0.68);
  --c-g-border:    rgba(255,255,255,0.18);
  --c-g-shadow:    0 8px 32px rgba(0,0,0,0.30);
  --c-sidebar:     rgba(255,255,255,0.90);
  --c-topbar:      rgba(0,0,0,0.42);
  --c-nav:         rgba(6,6,6,0.90);
  --c-stripe:      rgba(var(--brand-rgb),0.10);
}

/* ── BASE ── */
html, body, #root { height: 100%; }

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Sora', sans-serif;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; }

/* ===================== HX — editorial "Hecta" design system ===================== */
/* Used across the active-driver pages. Page bg stays transparent so the body
   --bg-gradient shows through. Cards are fixed light/charcoal regardless of theme. */
.hx-page { max-width: 1100px; margin: 0 auto; padding: 22px; font-family: 'Inter', sans-serif; color: #1A1A1A; display: flex; flex-direction: column; gap: 18px; background: transparent; }
.hx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.hx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.hx-full { grid-column: 1 / -1; }

.hx-card { display: flex; flex-direction: column; border-radius: 28px; padding: 28px; box-sizing: border-box; }
.hx-light { background: #fff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 34px rgba(0,0,0,0.10); }
.hx-dark { background: #1A1A1A; color: #fff; border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 10px 34px rgba(0,0,0,0.18); }
.hx-soft { background: #f4f6f3; border: 1px solid rgba(0,0,0,0.05); }

.hx-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.hx-badge { align-self: flex-start; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); color: rgba(0,0,0,0.55); border-radius: 50px; padding: 6px 14px; font-size: 11px; font-weight: 600; }
.hx-badge-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }

.hx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hx-chip { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); border-radius: 50px; padding: 7px 14px; font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.6); cursor: pointer; }
.hx-chip.on { background: rgba(var(--brand-rgb),0.12); border-color: rgba(var(--brand-rgb),0.40); color: var(--brand-deep); }

.hx-h1 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(34px, 4.4vw, 52px); line-height: 0.98; letter-spacing: -2px; margin: 0; }
.hx-twotone { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(24px, 2.7vw, 34px); line-height: 1.15; letter-spacing: -0.8px; margin: 0; }
.hx-muted { color: rgba(0,0,0,0.32); }
.hx-h3 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin: 0; }
.hx-sub { font-size: 14.5px; color: rgba(0,0,0,0.5); line-height: 1.65; margin: 0; }
.hx-dark .hx-sub { color: rgba(255,255,255,0.6); }
.hx-dark .hx-muted { color: rgba(255,255,255,0.38); }

.hx-bigstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
.hx-bigstat-val { font-family: 'Sora', sans-serif; font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1; }
.hx-bigstat-lbl { font-size: 13px; color: rgba(0,0,0,0.45); margin-top: 7px; }

.hx-accent { background: var(--brand); color: var(--brand-ink); border-radius: 22px; padding: 24px; }
.hx-accent-num { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.hx-accent-num span { font-size: 19px; font-weight: 700; }
.hx-accent-lbl { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; margin-top: 14px; }
.hx-accent-sub { font-size: 12px; color: rgba(6,46,42,0.7); margin-top: 6px; line-height: 1.5; }

.hx-darkbtn { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; background: #1A1A1A; color: #fff; text-decoration: none; border-radius: 50px; padding: 13px 22px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; transition: background .2s; border: none; cursor: pointer; }
.hx-darkbtn:hover { background: var(--brand); }
.hx-dark .hx-darkbtn { background: var(--brand); }
.hx-dark .hx-darkbtn:hover { background: var(--brand-light); color: var(--brand-ink); }
.hx-btn-sq { width: 24px; height: 24px; border-radius: 7px; background: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hx-dark .hx-btn-sq { background: rgba(255,255,255,0.18); }
.hx-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; box-shadow: 0 6px 16px rgba(var(--brand-rgb),0.4); }

.hx-list { display: flex; flex-direction: column; }
.hx-list-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); width: 100%; text-align: left; background: none; }
.hx-list-row:last-child { border-bottom: none; }
.hx-ico-tile { width: 42px; height: 42px; border-radius: 12px; background: #f4f6f3; border: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.hx-status-pill { padding: 4px 12px; border-radius: 50px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* hero banner (full width, horizontal) */
.hx-hero { display: flex; gap: 30px; align-items: stretch; }
.hx-hero-main { flex: 1; display: flex; flex-direction: column; }
.hx-hero-side { width: 340px; flex-shrink: 0; display: flex; }
.hx-hero-side > * { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* product card + carousel dots */
.hx-product { position: relative; background: #f4f6f3; border: 1px solid rgba(0,0,0,0.05); border-radius: 22px; padding: 18px; }
.hx-product-km { position: absolute; top: 16px; left: 16px; z-index: 1; background: #fff; border-radius: 50px; padding: 5px 13px; font-size: 12px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.hx-product-img { height: 150px; border-radius: 14px; background-size: cover; background-position: center; margin: 8px 0 16px; }
.hx-dots { display: flex; gap: 7px; justify-content: center; margin-top: 18px; }
.hx-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(0,0,0,0.15); cursor: pointer; padding: 0; transition: all .2s; }
.hx-dot.on { width: 22px; border-radius: 50px; background: var(--brand); }

/* hero car showcase (giant brand word behind + PNG in front, slideshow) */
.hx-show { position: relative; flex: 1; align-self: stretch; min-height: 270px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hx-show-brand { position: absolute; z-index: 0; right: -4px; top: 50%; transform: translateY(-50%); font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(64px, 9vw, 150px); letter-spacing: -6px; color: rgba(255,255,255,0.07); line-height: 0.8; white-space: nowrap; pointer-events: none; user-select: none; }
.hx-show-car { position: relative; z-index: 2; width: 100%; max-height: 240px; object-fit: contain; object-position: center; filter: drop-shadow(0 26px 38px rgba(0,0,0,0.55)); animation: hxFade .55s ease; }
.hx-show-cap { position: absolute; left: 2px; bottom: 8px; z-index: 2; }
.hx-show-cap b { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: #fff; display: block; }
.hx-show-cap span { font-size: 12px; color: rgba(255,255,255,0.5); }
.hx-show-dots { position: absolute; right: 2px; bottom: 14px; z-index: 2; display: flex; gap: 7px; }
.hx-show-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); cursor: pointer; padding: 0; transition: all .2s; }
.hx-show-dots button.on { width: 22px; border-radius: 50px; background: var(--brand); }
@keyframes hxFade { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@media (min-width: 921px) {
  /* desktop: align the car + brand word toward the top, level with the headline */
  .hx-show { align-items: flex-start; padding-top: 8px; }
  .hx-show-brand { top: 32%; }
}
@media (max-width: 920px) {
  /* mobile: lift the brand word up, drop the car down so the left text stays clear */
  .hx-show { min-height: 250px; margin-top: 4px; }
  .hx-show-brand { font-size: clamp(58px, 18vw, 110px); top: 32%; }
  .hx-show-car { max-height: 185px; margin-top: 38px; }
}

/* OfferAccept hero — stays the dark (hx-dark) banner, but lays the car + brand
   on the right and stays side-by-side down to 760px (not the global 920px). */
.oa-hero { display: flex; flex-direction: row; gap: 30px; align-items: stretch; }
.oa-hero .hx-hero-main { flex: 1; display: flex; flex-direction: column; }
.oa-hero .hx-hero-side { width: 440px; flex-shrink: 0; display: flex; align-self: stretch; }
.oa-hero .hx-show { align-items: flex-end; min-height: 300px; }
/* full brand word, centered & higher; car sits lower so the word reads above it */
.oa-hero .hx-show-brand { top: 14%; left: 0; right: 0; transform: none; text-align: center; font-size: clamp(40px, 6vw, 78px); letter-spacing: -2px; }
.oa-hero .hx-show-car { margin-top: 50px; max-height: 220px; }
@media (max-width: 760px) {
  .oa-hero { flex-direction: column; gap: 14px; }
  .oa-hero .hx-hero-side { width: auto; }
  .oa-hero .hx-show-brand { font-size: clamp(40px, 14vw, 80px); }
}
@media (min-width: 761px) {
  /* desktop: bigger brand word, car raised to overlap it (word sits behind the car) */
  .oa-hero .hx-show { align-items: center; }
  .oa-hero .hx-show-brand { top: 34%; transform: translateY(-50%); font-size: clamp(54px, 8vw, 104px); letter-spacing: -3px; }
  .oa-hero .hx-show-car { margin-top: 0; max-height: 240px; }
}

/* App background — white with a soft blue/teal gradient behind every page/section.
   EV Renting (default) reads mint; Mobility Service (NL) reads a soft rose. This
   hardcoded rule wins over --bg-gradient, so the brand swap is applied here too. */
body { background: radial-gradient(circle at 78% -5%, #a9e0e6 0%, #dfeaec 48%, #f5f9fa 100%) fixed; }
/* MS (NL): a soft rose glow at the top that fades to plain white going down —
   deliberately lighter than EV Renting's full mint wash. */
[data-brand="ms"] body { background: #ffffff radial-gradient(120% 70% at 82% -12%, #f7d5e2 0%, rgba(247,213,226,0.45) 26%, rgba(247,213,226,0) 55%) fixed; }

/* Flow top bar (brand + sign-out) for standalone onboarding pages */
.hx-flowbar { display: flex; align-items: center; justify-content: space-between; }
.hx-flowbar-brand { display: inline-flex; align-items: center; gap: 8px; }
.hx-flowbar-brand b { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; color: #1A1A1A; letter-spacing: -0.3px; }
.hx-flowbar-name { font-size: 13px; color: rgba(0,0,0,0.55); font-weight: 600; }
.hx-flowbar-logout { width: 38px; height: 38px; border-radius: 50%; background: rgba(243,132,155,0.10); border: 1px solid rgba(243,132,155,0.22); color: #F3849B; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.hx-flowbar-logout:hover { background: rgba(243,132,155,0.18); }

@media (max-width: 920px) {
  .hx-grid, .hx-grid-3 { grid-template-columns: 1fr; gap: 14px; }
  .hx-bigstats { grid-template-columns: repeat(2, 1fr); }
  .hx-hero { flex-direction: column; gap: 20px; }
  .hx-hero-side { width: auto; }
}
@media (max-width: 680px) {
  .hx-page { padding: 14px; gap: 14px; }
  .hx-card { padding: 22px; border-radius: 24px; }
}

/* ── SCROLLBARS ── */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.10) transparent;
}
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 3px; }
*::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.92); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── UTILITY TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.40);
}

.golfio-number {
  font-size: clamp(48px, 8vw, 96px);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -3px;
  color: rgba(255,255,255,0.06);
}

/* ────────────────────────────────────────────────────
   CARDS
──────────────────────────────────────────────────── */

/* Glass card — core visual pattern */
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  border-radius: 32px;
}

/* Dark card — same as glass */
.dark-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}

/* Standard card */
.card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  overflow: hidden;
}

.card-2 {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

/* ────────────────────────────────────────────────────
   APP SHELL
──────────────────────────────────────────────────── */
.app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: 80px;
  position: relative;
}

.app-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: transparent;
  position: relative;
}

.content-area {
  min-height: 100vh;
  padding-bottom: 80px;
  position: relative;
  background: transparent;
}

/* Sidebar + top bar: hidden on mobile */
.sidebar        { display: none; }
.top-header-bar { display: none; }

.page-heading-block {
  padding: 52px 20px 0;
}

/* ────────────────────────────────────────────────────
   BOTTOM NAV
──────────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: var(--c-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 32px max(16px, env(safe-area-inset-bottom));
  z-index: 100;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.30);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
  cursor: pointer;
  font-family: var(--font-display);
}
.nav-item.active { color: var(--teal); }

.nav-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(var(--brand-rgb),0.40);
  margin-top: -26px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.15s;
}
.nav-fab:hover { transform: scale(1.05); }
.nav-fab.active-fab { background: var(--teal); color: #fff; }

/* ────────────────────────────────────────────────────
   ICON BUTTON
──────────────────────────────────────────────────── */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
  color: #fff;
}
.icon-btn:hover { background: rgba(255,255,255,0.14); }
.icon-btn--sm  { width: 32px; height: 32px; }
.icon-btn--md  { width: 40px; height: 40px; }
.icon-btn--lg  { width: 48px; height: 48px; }
.icon-btn--dark  { background: var(--surface-2); border-color: var(--border); color: var(--text); }
.icon-btn--white { background: #fff; border-color: #fff; color: var(--bg); }
.icon-btn--leaf  { background: var(--leaf); border-color: var(--leaf); color: #fff; }
.icon-btn--teal  { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--brand-rgb),0.35);
}
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 6px 24px rgba(var(--brand-rgb),0.45); }

.btn-leaf    { background: var(--leaf); color: #fff; }

.btn-ghost-white {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.10); }

.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.btn-danger {
  background: rgba(243,132,155,0.10);
  color: var(--pink);
  border: 1px solid rgba(243,132,155,0.22) !important;
}

.btn-full { width: 100%; justify-content: center; }

.btn-pill-dark {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 10px 10px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
}

/* ────────────────────────────────────────────────────
   BADGE
──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font);
}
.badge--green, .badge--verified, .badge--accepted { background: rgba(var(--brand-rgb),0.16);  color: var(--teal); }
.badge--oker,  .badge--pending,  .badge--sent     { background: rgba(249,200,111,0.16); color: var(--oker); }
.badge--grey,  .badge--draft                       { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.badge--pink,  .badge--declined                    { background: rgba(243,132,155,0.14); color: var(--pink); }
.badge--blue                                       { background: rgba(101,135,165,0.14); color: var(--blue); }
.badge--lg { padding: 5px 14px; font-size: 12.5px; }

/* ────────────────────────────────────────────────────
   SECTION HEADERS
──────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--text);
}
.section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ────────────────────────────────────────────────────
   PAGE HEADING BLOCK
──────────────────────────────────────────────────── */
.page-heading-block { padding: 52px 20px 0; }
.page-back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  color: #fff;
}
.page-big-title {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.page-sub-loc {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 6px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ────────────────────────────────────────────────────
   STATUS BAR
──────────────────────────────────────────────────── */
.status-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 20px 14px;
}
.status-bar-label { font-size: 13px; font-weight: 700; color: #fff; flex: 1; font-family: 'Sora', sans-serif; }
.mini-bars { display: flex; align-items: flex-end; gap: 2px; height: 20px; }
.mini-bar  { width: 3px; border-radius: 2px; background: rgba(255,255,255,0.45); }

/* ────────────────────────────────────────────────────
   3-COL STATS GRID
──────────────────────────────────────────────────── */
.stats-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 20px 14px;
}
.stat-3col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 14px 8px;
  text-align: center;
}
.stat-3col-val { font-size: 13px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; margin-bottom: 3px; }
.stat-3col-lbl { font-size: 10px; color: var(--text-2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ────────────────────────────────────────────────────
   SCORE CARD (white accent)
──────────────────────────────────────────────────── */
.score-card-white {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 20px 14px;
}
.score-card-white-num  { font-size: 38px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; line-height: 1; letter-spacing: -1px; }
.score-card-white-lbl  { font-size: 10px; color: var(--text-2); margin-top: 4px; line-height: 1.3; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em; }
.score-card-white-img  { margin-left: auto; width: 96px; height: 64px; object-fit: cover; border-radius: 16px; flex-shrink: 0; }

/* ────────────────────────────────────────────────────
   TRACK CARD
──────────────────────────────────────────────────── */
.track-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 20px 14px;
}
.track-card-title { font-size: 13px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; }
.track-card-sub   { font-size: 10px; color: var(--text-2); }

/* ────────────────────────────────────────────────────
   QUANTITY ROW
──────────────────────────────────────────────────── */
.qty-row { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; margin-bottom: 24px; }
.qty-btn  { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 400; cursor: pointer; border: none; transition: all 0.15s; }
.qty-btn--minus { background: transparent; border: 1.5px solid rgba(255,255,255,0.25) !important; color: #fff; }
.qty-btn--plus  { background: var(--teal); color: #fff; }
.qty-display    { text-align: center; }
.qty-num        { font-size: 28px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; line-height: 1; }
.qty-unit       { font-size: 10px; color: var(--text-2); margin-top: 2px; }

/* ────────────────────────────────────────────────────
   ACTIVITY
──────────────────────────────────────────────────── */
.activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.activity-item:last-child { border-bottom: none; }
.activity-dot  { width: 7px; height: 7px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.activity-dot--green { background: var(--teal); }
.activity-dot--oker  { background: var(--oker); }
.activity-dot--blue  { background: var(--blue); }
.activity-dot--grey  { background: rgba(255,255,255,0.25); }
.activity-text { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.activity-time { font-size: 11px; color: var(--text-2); }

/* ────────────────────────────────────────────────────
   STATS SCROLL
──────────────────────────────────────────────────── */
.stats-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 20px 4px;
  scrollbar-width: none;
  margin-bottom: 20px;
}
.stats-scroll::-webkit-scrollbar { display: none; }

.stat-card {
  min-width: 150px;
  padding: 16px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.stat-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.stat-lbl  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-2); }
.stat-val  { font-size: 22px; font-weight: 700; font-family: 'Sora', sans-serif; letter-spacing: -0.5px; line-height: 1; margin-bottom: 3px; color: var(--text); }
.stat-sub  { font-size: 11px; color: var(--text-2); margin-bottom: 10px; }
.stat-chip { display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 10px; }
.chip--green { background: rgba(var(--brand-rgb),0.12);  color: var(--teal); }
.chip--oker  { background: rgba(249,200,111,0.12); color: var(--oker); }
.chip--grey  { background: rgba(255,255,255,0.08); color: var(--text-2); }

/* ────────────────────────────────────────────────────
   ONBOARDING / PROGRESS
──────────────────────────────────────────────────── */
.onboarding-inner  { padding: 20px; }
.onboarding-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.onboarding-title  { font-size: 15px; font-weight: 700; font-family: 'Sora', sans-serif; }
.onboarding-pct    { font-size: 14px; font-weight: 700; color: var(--teal); font-family: 'Sora', sans-serif; }
.onboarding-sub    { font-size: 12.5px; color: var(--text-2); margin-bottom: 14px; }

.progress-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.progress-fill  { height: 100%; background: var(--teal); border-radius: 3px; transition: width 0.6s ease; }

.checklist { display: flex; flex-direction: column; }
.checklist-item { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.checklist-item:last-child { border-bottom: none; }
.checklist-item.done { opacity: 0.40; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon.done { background: var(--teal); border-color: var(--teal); }
.checklist-label { font-size: 13.5px; font-weight: 600; flex: 1; }
.checklist-item.done .checklist-label { text-decoration: line-through; }

/* ────────────────────────────────────────────────────
   UPLOAD / DOCUMENTS
──────────────────────────────────────────────────── */
.upload-zone {
  margin: 0 20px 16px;
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  background: rgba(255,255,255,0.03);
}
.upload-zone:hover { border-color: var(--teal); background: rgba(var(--brand-rgb),0.06); }
.upload-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
}
.upload-title { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 3px; }
.upload-sub   { font-size: 12px; color: var(--text-2); }

.doc-list { margin: 0 20px; }
.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.doc-item:last-child { border-bottom: none; }
.doc-icon { width: 40px; height: 40px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon--contract  { background: rgba(var(--brand-rgb),0.14);  color: var(--teal); }
.doc-icon--insurance { background: rgba(101,135,165,0.14); color: var(--blue); }
.doc-icon--id        { background: rgba(249,200,111,0.14); color: var(--oker); }
.doc-icon--battery   { background: rgba(var(--brand-rgb),0.10);  color: var(--teal); }
.doc-icon--other     { background: rgba(255,255,255,0.07); color: var(--text-2); }
.doc-info { flex: 1; min-width: 0; }
.doc-name { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); font-family: 'Sora', sans-serif; }
.doc-meta { font-size: 11.5px; color: var(--text-2); }

/* ────────────────────────────────────────────────────
   RENEWAL
──────────────────────────────────────────────────── */
.renewal-banner {
  border-radius: 24px;
  background: rgba(249,200,111,0.08);
  border: 1px solid rgba(249,200,111,0.22);
  overflow: hidden;
}
.renewal-banner-inner { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.renewal-banner-icon  { font-size: 26px; flex-shrink: 0; }
.renewal-banner-title { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 3px; color: #fff; }
.renewal-banner-sub   { font-size: 12px; color: var(--text-2); line-height: 1.45; }

.renewal-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 0 20px 24px; scrollbar-width: none; }
.renewal-scroll::-webkit-scrollbar { display: none; }

.renewal-card {
  min-width: 160px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.renewal-card-emoji  { font-size: 28px; margin-bottom: 10px; line-height: 1; }
.renewal-tag { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; width: fit-content; }
.renewal-tag--similar { background: rgba(101,135,165,0.14); color: var(--blue); }
.renewal-tag--promo   { background: rgba(249,200,111,0.14); color: var(--oker); }
.renewal-tag--premium { background: rgba(243,132,155,0.14); color: var(--pink); }
.renewal-card-make   { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-2); margin-bottom: 2px; }
.renewal-card-model  { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 8px; line-height: 1.2; color: #fff; }
.renewal-card-specs  { font-size: 11.5px; color: var(--text-2); margin-bottom: 10px; }
.renewal-card-price  { display: flex; align-items: baseline; gap: 2px; margin-bottom: 14px; }
.renewal-price-amount { font-size: 20px; font-weight: 700; font-family: 'Sora', sans-serif; letter-spacing: -0.5px; color: #fff; }
.renewal-price-unit   { font-size: 11px; color: var(--text-2); }
.renewal-card-btn {
  width: 100%;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.15s;
}
.renewal-card-btn:hover { background: var(--teal-tint); border-color: var(--teal); color: var(--teal); }

/* ────────────────────────────────────────────────────
   SUPPORT
──────────────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 20px 20px; }
.support-card {
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.support-card:hover { transform: translateY(-2px); }
.support-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.support-card-title { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 3px; color: #fff; }
.support-card-sub   { font-size: 11.5px; color: var(--text-2); }

.faq-item { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: 13px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; margin-bottom: 4px; }
.faq-answer   { font-size: 12.5px; color: var(--text-2); line-height: 1.6; }

/* ────────────────────────────────────────────────────
   PROFILE / MENU
──────────────────────────────────────────────────── */
.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.12s;
  background: rgba(255,255,255,0.03);
}
.menu-item:first-child { border-radius: 24px 24px 0 0; }
.menu-item:last-child  { border-bottom: none; border-radius: 0 0 24px 24px; }
.menu-item:hover { background: rgba(255,255,255,0.06); }
.menu-icon    { width: 36px; height: 36px; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.menu-label   { font-size: 13.5px; font-weight: 600; flex: 1; color: #fff; }
.menu-chevron { color: var(--text-2); }

/* ────────────────────────────────────────────────────
   FORMS / INPUTS / WIZARD
──────────────────────────────────────────────────── */
.page { padding: 56px 20px 28px; }
.page-main { flex: 1; overflow-y: visible; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.40);
}
.form-value { font-size: 13px; font-weight: 700; color: var(--teal); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  color: #fff;
  font-family: var(--font);
}
.form-textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 80px;
}
.form-select { border-radius: 50px; appearance: none; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  background: rgba(var(--brand-rgb),0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-2); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.radio-group { display: flex; gap: 10px; }
.radio-card {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.12s;
  text-align: center;
  cursor: pointer;
}
.radio-card.selected { border-color: var(--teal); background: var(--teal-tint); color: var(--teal); }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  transition: all 0.12s;
  cursor: pointer;
}
.chip.selected { border-color: var(--teal); background: var(--teal-tint); color: var(--teal); }

.segment-group {
  display: flex;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  padding: 3px;
  gap: 2px;
}
.segment-btn {
  flex: 1;
  padding: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
  transition: all 0.12s;
  text-align: center;
  background: none;
  border-radius: 50px;
  border: none;
  font-family: var(--font);
  cursor: pointer;
}
.segment-btn.active { background: var(--teal); color: #fff; }

/* Wizard */
.wizard-steps {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}
.wizard-step { display: flex; align-items: center; flex: 1; }
.wizard-step:last-child { flex: 0; }
.wizard-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--text-2);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.wizard-step.active .wizard-step-dot,
.wizard-step.done   .wizard-step-dot { border-color: var(--teal); background: var(--teal); color: #fff; }
.wizard-step-label { font-size: 11px; font-weight: 600; color: var(--text-2); margin-left: 7px; white-space: nowrap; }
.wizard-step.active .wizard-step-label { color: #fff; font-weight: 700; }
.wizard-step.done   .wizard-step-label { color: var(--teal); }
.wizard-step-line { flex: 1; height: 2px; background: rgba(255,255,255,0.07); margin: 0 8px; }
.wizard-step.done .wizard-step-line { background: var(--teal); }

.step-content { padding: 24px 20px; }
.step-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: #fff;
}
.step-header  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.step-header .step-title { margin-bottom: 0; }
.step-sub     { font-size: 13px; color: var(--text-2); margin-bottom: 20px; margin-top: -12px; }

.wizard-actions {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  gap: 10px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: var(--teal-tint);
  color: var(--teal);
  font-family: var(--font);
}

/* ────────────────────────────────────────────────────
   VEHICLE GRID
──────────────────────────────────────────────────── */
.vehicle-grid { display: flex; flex-direction: column; gap: 10px; }
.vehicle-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.vehicle-card:hover,
.vehicle-card.selected { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.vehicle-image { width: 88px; min-height: 88px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vehicle-info  { padding: 14px; flex: 1; }
.vehicle-brand { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-2); margin-bottom: 2px; }
.vehicle-model { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 6px; color: #fff; }
.vehicle-specs { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.vehicle-specs span { font-size: 10.5px; color: var(--text-2); background: rgba(255,255,255,0.06); padding: 2px 7px; border-radius: 6px; }
.vehicle-price { display: flex; align-items: baseline; gap: 2px; }
.price-amount  { font-size: 17px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; }
.price-unit    { font-size: 11px; color: var(--text-2); }
.vehicle-card-right { padding: 12px 14px 12px 0; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.match-badge { font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.match-high  { background: rgba(var(--brand-rgb),0.12);  color: var(--teal); }
.match-mid   { background: rgba(249,200,111,0.12); color: var(--oker); }
.match-low   { background: rgba(255,255,255,0.07); color: var(--text-2); }
.vehicle-check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; }

/* Review grid */
.review-grid    { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.review-section { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 14px 16px; }
.review-label   { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; }
.review-value   { font-size: 15px; font-weight: 700; font-family: 'Sora', sans-serif; margin-bottom: 3px; color: #fff; }
.review-meta    { font-size: 12.5px; color: var(--text-2); }
.review-price   { font-size: 16px; font-weight: 700; color: var(--teal); margin-top: 5px; font-family: 'Sora', sans-serif; }

/* ────────────────────────────────────────────────────
   TABLE
──────────────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
  font-family: var(--font);
}
.table td { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 13.5px; color: #fff; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.text-muted { color: var(--text-2); font-size: 12.5px; }
.table-link { color: var(--text-2); transition: color 0.12s; display: flex; align-items: center; }
.table-link:hover { color: var(--teal); }
.customer-cell { display: flex; align-items: center; gap: 10px; }
.customer-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.customer-name    { font-size: 13px; font-weight: 600; color: #fff; }
.customer-company { font-size: 12px; color: var(--text-2); }

/* ────────────────────────────────────────────────────
   TOOLBAR / SEARCH / FILTERS
──────────────────────────────────────────────────── */
.offers-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 16px;
}
.filter-tabs { display: flex; gap: 4px; }
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  transition: all 0.12s;
  background: none;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.filter-tab:hover  { background: rgba(255,255,255,0.06); color: #fff; }
.filter-tab.active { background: var(--teal-tint); color: var(--teal); border: 1px solid rgba(var(--brand-rgb),0.25); }
.filter-count { font-size: 10px; background: rgba(255,255,255,0.07); color: var(--text-2); border-radius: 10px; padding: 1px 6px; font-weight: 700; }
.filter-tab.active .filter-count { background: rgba(var(--brand-rgb),0.18); color: var(--teal); }

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 14px;
  color: var(--text-2);
}
.search-input { border: none; background: none; outline: none; font-size: 13px; width: 150px; color: #fff; font-family: var(--font); }
.search-input::placeholder { color: var(--text-2); }

/* ────────────────────────────────────────────────────
   DETAIL / PRICING
──────────────────────────────────────────────────── */
.empty-state { padding: 48px; text-align: center; color: var(--text-2); font-size: 13.5px; }
.back-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-total { font-size: 22px; font-weight: 700; font-family: 'Sora', sans-serif; letter-spacing: -0.5px; color: #fff; }
.pricing-total span { font-size: 13px; font-weight: 400; color: var(--text-2); font-family: var(--font); }
.pricing-breakdown { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pricing-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); padding: 4px 0; }
.pricing-row:first-child { color: #fff; font-weight: 600; }

.services-list { padding: 12px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.service-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-2); }
.service-item svg { color: var(--teal); flex-shrink: 0; }

.customer-block { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.customer-avatar-lg { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; font-family: 'Sora', sans-serif; flex-shrink: 0; }

.detail-meta { padding: 10px 20px; }
.meta-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.meta-row:last-child { border-bottom: none; }
.meta-row span:first-child { color: var(--text-2); }
.meta-row span:last-child  { font-weight: 600; color: #fff; }

.action-card { padding: 18px 20px; }
.action-desc { font-size: 13px; color: var(--text-2); margin: 8px 0 14px; line-height: 1.5; }
.action-btns { display: flex; flex-direction: column; gap: 8px; }
.status-card-title { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; }
.status-card-sub   { font-size: 12px; opacity: 0.7; margin-top: 2px; }

/* ════════════════════════════════════════════════════
   DESKTOP  ≥ 768px  —  Sidebar layout
════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  .app-shell {
    max-width: 100%;
    margin: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
  }

  .content-area {
    flex: 1;
    min-width: 0;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .bottom-nav { display: none !important; }

  /* ── SIDEBAR ── */
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 260px;
    min-width: 260px;
    height: 100vh;
    background: var(--c-sidebar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .sidebar-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--teal);
    box-shadow: 0 4px 16px rgba(var(--brand-rgb),0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
  .sidebar-brand-name {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #fff;
    line-height: 1.2;
  }
  .sidebar-brand-sub {
    font-size: 10px;
    color: var(--text-2);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .sidebar-nav {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
  }
  .sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.15s;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
  }
  .sidebar-link:hover  { background: rgba(255,255,255,0.06); color: #fff; }
  .sidebar-link.active { background: var(--teal-tint); color: var(--teal); font-weight: 700; border: 1px solid rgba(var(--brand-rgb),0.20); }

  .sidebar-section-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    padding: 12px 14px 4px;
  }

  .sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .sidebar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #fff;
    flex-shrink: 0;
  }
  .sidebar-user-name { font-size: 13px; font-weight: 700; font-family: 'Sora', sans-serif; color: #fff; line-height: 1.2; }
  .sidebar-user-sub  { font-size: 10.5px; color: var(--text-2); }

  /* ── TOP HEADER BAR ── */
  .top-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 28px;
    background: var(--c-topbar);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 50;
    flex-shrink: 0;
  }
  .top-header-title {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #fff;
    letter-spacing: -0.2px;
  }
  .top-header-right { display: flex; align-items: center; gap: 12px; }
  .top-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #fff;
  }

  .page-main { flex: 1; overflow-y: visible; }

  /* Page overrides */
  .page-heading-block { padding: 28px 28px 0 !important; }
  .page-back { display: none !important; }

  .home-hero {
    height: 52vh !important;
    max-height: 520px !important;
    min-height: 360px !important;
  }

  .status-bar       { margin: 0 28px 14px !important; }
  .stats-3col       { margin: 0 28px 14px !important; }
  .score-card-white { margin: 0 28px 14px !important; }
  .track-card       { margin: 0 28px 14px !important; }
  .section-header   { padding: 0 28px !important; }
  .renewal-scroll   { padding: 0 28px 24px !important; }
  .support-grid     { margin: 0 28px 20px !important; }
  .upload-zone      { margin: 0 28px 16px !important; }
  .doc-list         { margin: 0 28px !important; }
  .stats-3col       { padding: 0 !important; }

  .desktop-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 28px;
    align-items: start;
  }

  .home-glass-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

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

  .page-photo-embed { margin: 0 28px 14px !important; }
  .inner-page-padder { padding: 0 28px 32px; }
  .profile-banner { margin-top: 0; }
  .doc-stack-visual { height: 180px !important; }
}

/* ════════════════════════════════════════════════════
   GOLFIO DASHBOARD
════════════════════════════════════════════════════ */
.dash-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  min-height: 100%;
  box-sizing: border-box;
}

.dash-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 260px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  flex-shrink: 0;
}

.dash-right {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  overflow: hidden;
}

.dash-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  overflow: hidden;
}

.dash-divider { height: 1px; background: rgba(255,255,255,0.07); }

.dash-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  font-family: var(--font);
}
.dash-val {
  font-size: 26px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.8px;
  line-height: 1;
  color: #fff;
}

@media (min-width: 768px) {
  .dash-wrap {
    gap: 14px;
    padding: 14px;
    min-height: calc(100vh - 64px);
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .dash-top {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 14px;
    min-height: 440px;
    flex: none;
  }

  .dash-hero {
    min-height: 0;
    height: 100%;
    border-radius: 28px;
  }

  .dash-right {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .dash-bottom {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 14px;
    height: 200px;
    flex: none;
  }

  .dash-card { height: 100%; }
}

/* ── GOLFIO DESIGN TOKENS ── */
.g-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.40);
}
.g-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem,4vw,2.6rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; color: #fff;
}
.g-num-accent {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem,4vw,2.6rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; color: var(--brand);
}
.g-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem,3vw,1.8rem); font-weight: 700;
  letter-spacing: -0.02em; color: #fff; line-height: 1.1;
}
.g-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem,6.5vw,3.8rem); font-weight: 800;
  letter-spacing: -0.04em; color: #fff; line-height: 0.95;
}
.g-card {
  background: var(--c-g-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-g-border);
  box-shadow: var(--c-g-shadow);
  border-radius: 32px;
}
.g-car-card {
  position: relative; overflow: hidden;
  border-radius: 2rem; aspect-ratio: 3/4;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  cursor: pointer;
}
.g-car-card:hover { transform: translateY(-8px); }
.g-car-card img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.g-car-card:hover img { transform: scale(1.1); }
.g-car-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.40) 40%, transparent 100%);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--brand-rgb),0.10); border: 1px solid rgba(var(--brand-rgb),0.25);
  color: var(--brand); border-radius: 50px; padding: 6px 16px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  animation: pulseLive 1.5s infinite;
}
@keyframes pulseLive {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.3; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Layout.css ── */
.sidebar.layout-sidebar {
  width: 260px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.layout-brand {
  padding: 24px 20px 20px;
}

.layout-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.30);
}

.layout-brand-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.5px;
}

.sidebar-brand-name.layout-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.layout-brand-dot {
  color: var(--brand);
}

.layout-brand-pro {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  font-family: 'Sora', sans-serif;
}

.layout-brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.sidebar-nav.layout-nav {
  padding: 12px 12px;
  flex: 1;
  overflow-y: auto;
}

.layout-nav-heading {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px 8px;
}

.layout-theme-toggle-wrap {
  padding: 0 14px 8px;
}

.layout-locale-wrap {
  margin: 0 14px 14px;
  display: flex;
  gap: 3px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 4px;
}

.sidebar-user.layout-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  flex-shrink: 0;
}

.layout-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #6587A5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 2px 10px rgba(var(--brand-rgb), 0.25);
}

.layout-user-info {
  flex: 1;
  min-width: 0;
}

.layout-user-name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.layout-user-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: 2px;
}

.layout-topbar {
  height: 64px;
  background: var(--c-topbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-title.layout-topbar-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.top-header-right.layout-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.layout-topbar-locale-wrap {
  display: flex;
  gap: 4px;
}

.layout-topbar-locale-btn {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.15s;
}

.layout-topbar-theme-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.icon-btn.layout-topbar-bell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.top-avatar.layout-topbar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #6587A5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 2px 10px rgba(var(--brand-rgb), 0.25);
  flex-shrink: 0;
}

.layout-page-inner {
  position: relative;
  z-index: 1;
}

.bottom-nav.layout-bottom-nav {
  background: var(--c-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 8px 8px max(12px, env(safe-area-inset-bottom));
}

.layout-nav-item-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Sora', sans-serif;
}

.nav-fab.layout-nav-fab {
  width: 50px;
  height: 50px;
}

/* ── FlowHeader.css ── */
.flow-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── ContractSign.css ── */
/* ── ContractSign page styles ───────────────────────────────────────────────── */

/* Progress bar */
.sign-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.sign-progress-fill {
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 99px;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.45);
}

/* QR placeholder */
.sign-qr {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 160px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.sign-qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 16px);
  gap: 2px;
}
.sign-qr-cell {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #e8e8e8;
}
.sign-qr-cell.dark {
  background: #1A1A1A;
}
.sign-qr-id {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

/* Success view */
.sign-card-center {
  align-items: center;
  text-align: center;
}
.sign-check-wrap {
  position: relative;
  margin: 8px 0 28px;
}
.sign-check-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.20) 0%, transparent 70%);
}
.sign-check-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.10);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sign-badge-success {
  align-self: center;
  background: rgba(var(--brand-rgb), 0.12);
  border-color: rgba(var(--brand-rgb), 0.30);
  color: var(--brand-deep);
}
.sign-done-title {
  margin: 18px 0 10px;
}
.sign-done-accent {
  color: var(--brand);
}
.sign-done-sub {
  max-width: 300px;
}
.sign-ref-block {
  border-radius: 22px;
  padding: 26px;
  margin: 28px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
.sign-ref-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
}
.sign-ref-center {
  text-align: center;
}
.sign-ref-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.sign-ref-vehicle {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}
.sign-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.sign-cta {
  align-self: stretch;
  justify-content: center;
}

/* Not-found state */
.sign-notfound {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.sign-notfound-btn {
  align-self: center;
  margin-top: 6px;
}

/* Header */
.sign-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sign-back-btn {
  border-radius: 50%;
  cursor: pointer;
  width: 46px;
  height: 46px;
}
.sign-header-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
}
.sign-header-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 3px;
}

/* Summary card */
.sign-h3-tight {
  margin: 14px 0 0;
}
.sign-sub-tight {
  margin-top: 4px;
}
.sign-list-tight {
  margin-top: 14px;
}
.sign-row-body {
  flex: 1;
  min-width: 0;
}
.sign-row-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.sign-row-val {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  margin-top: 3px;
  color: #1A1A1A;
}
.sign-row-val.accent {
  color: var(--brand-deep);
}
.sign-row-sub {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

/* Documents verified */
.sign-doc-tile {
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.20);
}
.sign-doc-name {
  flex: 1;
  min-width: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: capitalize;
}
.sign-doc-pill {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
}

/* Signing progress */
.sign-badge-center {
  align-self: center;
}
.sign-proc-title {
  margin: 14px 0 4px;
}
.sign-proc-sub {
  margin-bottom: 22px;
}
.sign-proc-bar-wrap {
  width: 100%;
}
.sign-proc-status {
  margin-top: 12px;
}
.sign-proc-status-label {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
}
.sign-proc-pct {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1px;
}
.sign-steps {
  width: 100%;
  margin-top: 18px;
  text-align: left;
}
.sign-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f6f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}
.sign-step-num.done {
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.40);
  color: var(--brand-deep);
}
.sign-step-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.3s ease;
}
.sign-step-text.done {
  color: #1A1A1A;
}

.sign-hero-h1 { margin: 18px 0 0; }
.sign-hero-sub { margin: 16px 0 0; }
.sign-summary-h2 { margin: 14px 0 0; }

/* verified docs as side-by-side boxes */
.sign-docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 14px; }
.sign-doc-box { border-radius: 18px; padding: 20px 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.sign-doc-box .sign-doc-name { text-transform: capitalize; font-family: 'Sora', sans-serif; font-size: 15.5px; font-weight: 700; }
.sign-doc-box .sign-doc-pill { font-size: 11px; }
.sign-doc-box .sign-doc-tile { width: 48px; height: 48px; }

/* ── CustomerWizard.css ── */
@keyframes wiz-spin { to { transform: rotate(360deg); } }

.wiz-page { max-width: 720px; }

.wiz-status-pill-available {
  color: var(--brand-deep);
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
}

.wiz-status-pill-soon {
  color: #b07d22;
  background: rgba(249, 200, 111, 0.18);
  border: 1px solid rgba(249, 200, 111, 0.40);
}

.wiz-brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wiz-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.wiz-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wiz-step-chip {
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.04em;
  cursor: default;
}

.wiz-progress-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.wiz-progress-fill {
  height: 100%;
  background: var(--brand);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiz-card {
  gap: 32px;
}

.wiz-heading {
  margin-top: 14px;
}

.wiz-chips-spaced {
  margin-top: 14px;
}

.wiz-chip-borderless {
  border: none;
}

.wiz-budget-header {
  align-items: flex-end;
  margin-bottom: 20px;
}

.wiz-budget-value-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.wiz-budget-value {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: var(--brand-deep);
  letter-spacing: -2px;
  line-height: 1;
}

.wiz-budget-unit {
  font-size: 13px;
}

.wiz-slider-wrap {
  position: relative;
  padding-bottom: 4px;
}

.wiz-slider-bounds {
  font-size: 11px;
  margin-top: 8px;
}

.ev-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
  outline: none;
  cursor: pointer;
}
.ev-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.50), 0 4px 12px rgba(var(--brand-rgb), 0.40);
  cursor: pointer;
  transition: transform 0.15s;
}
.ev-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.ev-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  cursor: pointer;
}

.wiz-results-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wiz-results-count {
  margin-top: 10px;
}

.wiz-results-count-num {
  color: var(--brand-deep);
  font-weight: 700;
}

.wiz-thinking-card {
  padding: 60px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.wiz-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: wiz-spin 0.9s linear infinite;
}

.wiz-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wiz-car-card {
  padding: 0;
  overflow: hidden;
}

.wiz-car-media {
  height: 160px;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}

.wiz-car-media-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(var(--brand-rgb), 0.18) 0%, transparent 55%);
}

.wiz-car-img {
  position: absolute;
  right: -8px;
  bottom: 0;
  height: 96%;
  max-width: 65%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-8px 0 18px rgba(0, 0, 0, 0.50));
}

.wiz-car-match-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.wiz-car-body {
  padding: 20px 24px 24px;
}

.wiz-car-title-row {
  align-items: flex-start;
  margin-bottom: 12px;
}

.wiz-car-title {
  font-weight: 700;
  font-size: 18px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.4px;
}

.wiz-car-trim {
  font-size: 12px;
  margin-top: 3px;
}

.wiz-car-chips {
  margin-bottom: 20px;
}

.wiz-car-chip-range {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.wiz-car-chip-battery {
  cursor: default;
}

.wiz-car-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.wiz-car-price {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  letter-spacing: -1px;
  color: #1A1A1A;
}

.wiz-car-price-unit {
  font-size: 13px;
}

.wiz-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.wiz-nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.wiz-nav-next {
  flex: 1;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
}

/* ── Documents.css ── */
/* Documents page — extracted from inline styles. Prefix: docs- */

/* Hero */
.docs-accent { color: var(--brand); }
.docs-hero-h1 { margin: 18px 0 0; }
.docs-hero-sub { margin: 16px 0 24px; }
.docs-hero-btn { margin-top: auto; }

/* Upload drop zone */
.docs-drop {
  margin-top: 14px;
  border-radius: 22px;
  border: 1.5px dashed rgba(0,0,0,0.15);
  background: #f4f6f3;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.docs-drop.dragging {
  border: 1.5px dashed var(--brand);
  background: rgba(var(--brand-rgb),0.06);
}
.docs-drop-ico { width: 56px; height: 56px; border-radius: 50%; }
.docs-drop-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; }
.docs-drop-hint { font-size: 13.5px; color: rgba(0,0,0,0.45); }

/* Tabs */
.docs-tabs { margin: 20px 0 16px; }

/* Empty state */
.docs-empty { padding: 40px 0; text-align: center; color: rgba(0,0,0,0.4); }
.docs-empty-ico { margin-bottom: 10px; }
.docs-empty-title { font-family: 'Sora', sans-serif; font-weight: 700; }

/* List rows */
.docs-row-main { flex: 1; min-width: 0; }
.docs-row-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.docs-row-meta { font-size: 13px; color: rgba(0,0,0,0.45); margin-top: 3px; }

/* Status pill */
.docs-status { font-size: 11px; }
.docs-status.verified { background: rgba(var(--brand-rgb),0.12); color: var(--brand-deep); }
.docs-status.pending { background: rgba(249,200,111,0.16); color: #a07a1e; }

/* ── FleetDashboard.css ── */
.fleet-avatar {
  color: var(--fleet-ac);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.fleet-root {
  min-height: 100vh;
}

.fleet-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fleet-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 22px;
}

.fleet-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-header-badge {
  margin-left: 4px;
}

.fleet-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-username {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}

.fleet-logout-btn {
  background: rgba(243, 132, 155, 0.10);
  border: 1px solid rgba(243, 132, 155, 0.22);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #F3849B;
}

.fleet-hero-h1 {
  margin: 18px 0 0;
}

.fleet-hero-sub {
  margin: 16px 0 0;
  max-width: 460px;
}

.fleet-hero-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  background: rgba(var(--brand-rgb), 0.14);
  border: 1px solid rgba(var(--brand-rgb), 0.32);
  color: var(--brand-light);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
}
.fleet-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.fleet-stats-h2 {
  margin-top: 16px;
}

.fleet-stats-grid {
  margin-top: 24px;
}

/* signings trend chart (mirrors the driver dashboard KM chart) */
.fleet-trend-head { margin-top: 14px; align-items: flex-start; }
.fleet-trend-sub { font-size: 13px; font-weight: 500; }
.fleet-trend-figs { text-align: right; }
.fleet-trend-num { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -1px; color: var(--brand); line-height: 1; }
.fleet-trend-num-lbl { display: block; font-size: 9px; font-weight: 700; color: rgba(0,0,0,0.40); text-transform: uppercase; letter-spacing: 0.10em; margin-top: 3px; }
.fleet-chart { position: relative; height: 120px; margin: 20px 0 10px; }
.fleet-chart-months { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; }
.fleet-chart-month { font-size: 9px; font-weight: 700; text-transform: uppercase; color: rgba(0,0,0,0.22); }
.fleet-trend-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.06); }
.fleet-trend-delta { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.fleet-trend-delta span { font-weight: 500; color: rgba(0,0,0,0.40); }
.fleet-trend-total { font-size: 12px; color: rgba(0,0,0,0.45); }

/* recent activity (mirrors the driver dashboard activity list) */
.fleet-act-list { margin-top: 14px; }
.fleet-act-ico { width: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fleet-act-main { flex: 1; min-width: 0; }
.fleet-act-text { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.35; }
.fleet-act-time { font-size: 12.5px; font-weight: 500; color: rgba(0,0,0,0.42); white-space: nowrap; flex-shrink: 0; }

/* stat with icon on the LEFT of the number */
.fleet-stat { display: flex; align-items: center; gap: 13px; }
.fleet-stat-ico { width: 44px; height: 44px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* hero with full-bleed image background */
.fleet-hero {
  position: relative;
  overflow: hidden;
  border: none;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background-image: url(/assets/horizontal2.jpg);
  background-size: cover;
  background-position: center 50%;
}
.fleet-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,26,23,0.94) 0%, rgba(13,26,23,0.6) 55%, rgba(13,26,23,0.28) 100%);
}
.fleet-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 560px;
}
.fleet-hero .hx-sub { color: rgba(255,255,255,0.72); }

/* pending-contracts card — brand mint tone to signal urgency / importance */
.fleet-pending-card {
  background: linear-gradient(180deg, rgba(var(--brand-rgb),0.16) 0%, rgba(var(--brand-rgb),0.04) 100%);
  border: 1px solid rgba(var(--brand-rgb),0.45);
  box-shadow: 0 12px 34px rgba(var(--brand-rgb),0.16);
}
.fleet-pending-badge {
  background: rgba(var(--brand-rgb),0.16);
  border-color: rgba(var(--brand-rgb),0.42);
  color: var(--brand-deep);
}
.fleet-count-blue { color: var(--brand-deep); }
.fleet-pending-head { gap: 14px; flex-wrap: wrap; }
.fleet-pending-h2 { margin: 0; }
.fleet-pending-badge { flex-shrink: 0; }

.fleet-count {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--brand);
}

.fleet-section-h3 {
  margin: 14px 0 0;
}

.fleet-list {
  margin-top: 8px;
}

.fleet-list-row-wrap {
  flex-wrap: wrap;
}

.fleet-row-main {
  flex: 1;
  min-width: 140px;
}

.fleet-row-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.fleet-row-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
  font-weight: 500;
}

/* Emphasise the vehicle in the meta line; the date stays muted → livelier hierarchy. */
.fleet-row-veh {
  color: rgba(0, 0, 0, 0.78);
  font-weight: 600;
}

.fleet-row-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.fleet-row-price-dark {
  color: #1A1A1A;
}

.fleet-row-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}

.fleet-small-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.fleet-btn-approve {
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 2px 6px rgba(4, 35, 31, 0.12);
}

.fleet-btn-sign {
  background: var(--brand);
  color: var(--brand-ink);
  box-shadow: 0 2px 6px rgba(4, 35, 31, 0.12);
}

.fleet-empty {
  padding: 28px 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.fleet-list-row-clickable {
  cursor: pointer;
  flex-wrap: wrap;
}

.fleet-active-h3 {
  margin: 14px 0 16px;
}

/* Dealer portal — order rows with an inline "set a delivery date" control */
.dealer-order-row {
  flex-wrap: wrap;
  row-gap: 14px;
  padding: 18px 0;
}
.dealer-order-row .fleet-row-main {
  min-width: 200px;
}
/* Bigger, more readable typography — this list is the page's main content. */
.dealer-order-row .fleet-row-name {
  font-size: 18px;
}
.dealer-order-row .fleet-row-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 4px;
}
.dealer-order-row .hx-status-pill {
  font-size: 12px;
}
/* Two-step delivery chip — calm, palette-only. Neutral = waiting on the exact
   day; brand tint = we've asked for it. Same tokens as the filter chips so the
   board keeps one restrained colour language. */
.deliv-week-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 50px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.07);
}
.deliv-week-pill.is-asked {
  background: rgba(var(--brand-rgb),0.10); color: var(--brand-deep);
  border-color: rgba(var(--brand-rgb),0.28);
}
[data-theme="dark"] .deliv-week-pill {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.10);
}
[data-theme="dark"] .deliv-week-pill.is-asked {
  background: rgba(var(--brand-rgb),0.16); color: var(--brand-light);
  border-color: rgba(var(--brand-rgb),0.34);
}
.dealer-date-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.dealer-date-input {
  width: 172px;
  padding: 10px 14px;
  font-size: 14px;
}
.dealer-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}
.dealer-date-err {
  flex-basis: 100%;
  margin: 0;
  text-align: right;
}

.fleet-active-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.fleet-active-card {
  flex-shrink: 0;
  width: 210px;
  border-radius: 20px;
  padding: 18px;
}

.fleet-active-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
}

.fleet-active-vehicle {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

.fleet-active-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.fleet-active-price {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}

/* ── Home.css ── */
.home-hero-title { margin: 18px 0 0; }

.home-hero-sub {
  margin: 18px 0 20px;
  max-width: 460px;
}

.home-days-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  background: rgba(var(--brand-rgb), 0.14);
  border: 1px solid rgba(var(--brand-rgb), 0.32);
  color: var(--brand-light);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.home-days-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.home-hero-btn { margin-top: auto; }

.home-show-brand { animation: hxFade .55s ease; }

.home-status-h2 { margin-top: 16px; }

.home-status-sub { margin-top: 12px; }

.home-chips { margin: 18px 0 24px; }

.home-chip { cursor: default; }

.home-drive-row {
  margin-top: 14px;
  align-items: flex-start;
}

.home-drive-h3-sub {
  font-size: 13px;
  font-weight: 500;
}

.home-drive-figs { text-align: right; }

.home-drive-km {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand);
  line-height: 1;
}

.home-drive-km-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-top: 3px;
}

.home-chart {
  position: relative;
  height: 120px;
  margin: 20px 0 10px;
}

.home-chart-months {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.home-chart-month {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.22);
}

.home-drive-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-drive-trend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.home-drive-trend-sub {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.40);
}

.home-drive-next {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}

.home-drive-next b { color: var(--brand); }

.home-act-count {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
}

.home-act-list { margin-top: 14px; }

.home-act-row { gap: 16px; }

.home-act-ico {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-act-sticker {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.home-act-main {
  flex: 1;
  min-width: 0;
}

.home-act-text {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.home-act-time {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.42);
  white-space: nowrap;
  flex-shrink: 0;
}

.home-upg-title {
  font-size: clamp(30px, 3.4vw, 42px);
  margin: 14px 0 0;
}

.home-product { margin-top: 18px; }

.home-product-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.home-product-tag {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

.home-manage-h2 { margin-top: 16px; }

.home-manage-sub { margin-top: 12px; }

.home-manage-btn { margin-top: 20px; }

.home-manage-img {
  height: 160px;
  border-radius: 18px;
  background-image: url(/assets/car-2.jpg);
  background-size: cover;
  background-position: center;
  margin-top: auto;
}

/* ── KycUpload.css ── */
@keyframes kyc-spin { to { transform: rotate(360deg); } }

.kyc-done-card {
  align-items: center;
  text-align: center;
}

.kyc-done-title {
  margin: 20px 0 0;
}

.kyc-done-sub {
  margin: 16px 0 28px;
  max-width: 360px;
}

.kyc-done-btn {
  align-self: center;
}

.kyc-hero-back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  margin-bottom: 16px;
}

.kyc-hero-title {
  margin: 18px 0 0;
}

.kyc-hero-title-accent {
  color: var(--brand);
}

.kyc-hero-sub {
  margin: 16px 0 0;
}

.kyc-count {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}
.kyc-count.has-uploads {
  color: var(--brand);
}

.kyc-bars {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.kyc-bar {
  flex: 1;
  height: 5px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.4s ease;
  box-shadow: none;
}
.kyc-bar.filled {
  background: var(--brand);
  box-shadow: 0 0 8px rgba(var(--brand-rgb), 0.50);
}

.kyc-list {
  margin-top: 8px;
}

.kyc-slot {
  cursor: pointer;
}

.kyc-slot-icon {
  font-size: 20px;
  background: #f4f6f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.kyc-slot.filled .kyc-slot-icon {
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
}

.kyc-slot-body {
  flex: 1;
  min-width: 0;
}

.kyc-slot-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.kyc-slot-filename {
  font-size: 13px;
  color: var(--brand-deep);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
  margin-top: 3px;
}

.kyc-slot-hint {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 3px;
}

.kyc-slot-pill {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.kyc-slot.filled .kyc-slot-pill {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
}

.kyc-file-input {
  display: none;
}

.kyc-privacy {
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.kyc-privacy-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.kyc-privacy-text {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.kyc-cta {
  margin-top: 22px;
  justify-content: center;
  opacity: 0.4;
  cursor: default;
}
.kyc-cta.enabled {
  opacity: 1;
}
.kyc-cta.enabled:not(.submitting) {
  cursor: pointer;
}

.kyc-cta-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: kyc-spin 0.7s linear infinite;
}

.kyc-cta-note {
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.4);
}

/* ── Login.css ── */
.login-page {
  min-height: 100dvh;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}

.login-brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.login-title {
  margin-top: 14px;
}

.login-sub {
  margin-top: 10px;
  margin-bottom: 26px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 7px;
}

.login-input {
  width: 100%;
  background: #f7f8f6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}

.login-input-pass {
  padding-right: 48px;
}

.login-pass-wrap {
  position: relative;
}

.login-pass-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.40);
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 0;
}

.login-error {
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(216, 77, 110, 0.10);
  border: 1px solid rgba(216, 77, 110, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: #d84d6e;
}

.login-submit {
  align-self: stretch;
  justify-content: center;
  padding: 15px 22px;
}

.login-spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.30);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: hxSpin 0.7s linear infinite;
}

.login-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 20px;
  margin-bottom: 0;
}

.login-footer-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

@keyframes hxSpin { to { transform: rotate(360deg); } }
.hx-input::placeholder { color: rgba(0, 0, 0, 0.30); }
.hx-input:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12); }

/* ── MyLease.css ── */
.lease-hero-title { margin: 18px 0 0; }

.lease-hero-model { color: var(--brand); }

.lease-hero-sub { margin: 16px 0 24px; }

.lease-hero-btn { margin-top: auto; }

.lease-health-h2 { margin-top: 16px; }

.lease-health-sub { margin-top: 12px; }

.lease-health-stats { margin-top: 26px; }

.lease-contract-h3 { margin: 14px 0 0; }

.lease-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lease-contract-tile {
  border-radius: 18px;
  padding: 16px 18px;
}

.lease-contract-tile-head {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lease-contract-tile-lbl {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.lease-contract-tile-val {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

.lease-included-h3 { margin: 14px 0 0; }

.lease-included-tile {
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lease-included-ico {
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.20);
}

.lease-included-main {
  flex: 1;
  min-width: 0;
}

.lease-included-lbl {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.lease-included-sub {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

.lease-included-check { flex-shrink: 0; }

/* ── OfferAccept.css ── */
/* OfferAccept page — extracted from inline styles. Prefix: oaccept- */

@keyframes spin { to { transform: rotate(360deg); } }

/* Not-found state */
.oaccept-notfound { align-items: center; text-align: center; gap: 16px; }
.oaccept-notfound-ico { width: 64px; height: 64px; border-radius: 50%; font-size: 28px; }
.oaccept-notfound-btn { align-self: center; }

/* Success state */
.oaccept-success { align-items: center; text-align: center; }
.oaccept-success-h1 { margin: 20px 0 0; }
.oaccept-accent { color: var(--brand); }
.oaccept-accent-bold { color: var(--brand); font-weight: 700; }
.oaccept-success-sub { margin: 16px 0 28px; max-width: 380px; }
.oaccept-success-accent { width: 100%; max-width: 380px; margin-bottom: 24px; }
.oaccept-success-btn { align-self: center; }

/* Hero */
.oaccept-hero-h1 { margin: 18px 0 0; }
.oaccept-hero-sub { margin: 16px 0 24px; }
.oaccept-hero-btn { margin-top: auto; }

/* Loading spinner */
.oaccept-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.30);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
.oaccept-spinner-lg {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.30);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}

/* Pricing summary */
.oaccept-price-row { align-items: flex-end; margin-top: 18px; }
.oaccept-bigprice {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--brand);
  line-height: 1;
}
.oaccept-right { text-align: right; }
.oaccept-duration { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; }
.oaccept-duration-unit { font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.40); }
.oaccept-total {
  border-radius: 18px;
  padding: 14px 18px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.oaccept-total-val { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--brand); }

/* Specs */
.oaccept-specs-grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.oaccept-chips { margin-top: 24px; }
.oaccept-valid {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 12.5px;
  color: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Included */
.oaccept-included-h3 { margin: 14px 0 0; }
.oaccept-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.oaccept-tile {
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.oaccept-tile-ico { background: rgba(var(--brand-rgb),0.10); border: 1px solid rgba(var(--brand-rgb),0.20); }
.oaccept-tile-label { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 700; flex: 1; min-width: 0; line-height: 1.25; overflow-wrap: anywhere; }

/* Actions */
.oaccept-monthly-lbl { margin-top: 0; }
.oaccept-monthly {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brand);
  line-height: 1.1;
}
.oaccept-months { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; }
.oaccept-allincl { margin-top: 2px; }
.oaccept-actions { display: flex; gap: 10px; margin-top: 20px; }
.oaccept-back-btn { width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.oaccept-accept-btn { flex: 1; justify-content: center; align-self: stretch; }

/* ── OfferDetail.css ── */
/* OfferDetail page — extracted from inline styles */

.odetail-notfound {
  align-items: center;
  text-align: center;
  padding: 56px 32px;
}

.odetail-notfound-btn {
  margin-top: 18px;
  align-self: center;
}

/* HERO */
.odetail-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 7px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-bottom: 18px;
}

.odetail-hero-title {
  margin: 16px 0 0;
}

.odetail-model {
  color: var(--brand);
}

.odetail-hero-sub {
  margin: 16px 0 18px;
}

.odetail-hero-pill {
  align-self: flex-start;
  margin-top: auto;
}

/* VEHICLE SPECS */
.odetail-h3 {
  margin: 14px 0 0;
}

.odetail-specs {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.odetail-spec-icon {
  margin-bottom: 8px;
}

.odetail-spec-val {
  font-size: clamp(22px, 2.4vw, 30px);
}

/* PRICING */
.odetail-price-row {
  align-items: flex-end;
  margin-top: 14px;
}

.odetail-price-big {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1;
}

.odetail-price-big-unit {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0;
}

.odetail-allin {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
}

.odetail-list {
  margin-top: 18px;
}

.odetail-list-row {
  justify-content: space-between;
}

.odetail-price-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.odetail-price-value {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* INCLUDED SERVICES */
.odetail-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.odetail-service {
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.odetail-service-icon {
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.20);
}

.odetail-service-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

/* CUSTOMER */
.odetail-customer-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 4px;
}

.odetail-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.30), rgba(101, 135, 165, 0.30));
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1A1A1A;
  flex-shrink: 0;
}

.odetail-customer-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.odetail-customer-company {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}

.odetail-customer-list {
  margin-top: 8px;
}

.odetail-customer-key {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.odetail-customer-value {
  font-size: 14px;
  font-weight: 600;
}

/* CONTRACT TERMS */
.odetail-contract-tile {
  border-radius: 18px;
  padding: 16px 18px;
}

.odetail-contract-head {
  display: flex;
  align-items: center;
  gap: 7px;
}

.odetail-contract-lbl {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.odetail-contract-val {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

/* ACTION AREA */
.odetail-action-sub {
  margin: 12px 0 18px;
}

.odetail-btn-accept {
  width: 100%;
  background: var(--brand);
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.odetail-btn-decline {
  width: 100%;
  background: rgba(243, 132, 155, 0.10);
  border: 1px solid rgba(243, 132, 155, 0.25);
  border-radius: 50px;
  padding: 13px 32px;
  color: #c4576f;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.odetail-btn-send {
  width: 100%;
  background: var(--brand);
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.odetail-result {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.odetail-result--accepted {
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
}

.odetail-result--declined {
  background: rgba(243, 132, 155, 0.08);
  border: 1px solid rgba(243, 132, 155, 0.25);
}

.odetail-result-icon--accepted {
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.18);
  border: 1px solid rgba(var(--brand-rgb), 0.30);
}

.odetail-result-icon--declined {
  border-radius: 50%;
  background: rgba(243, 132, 155, 0.15);
  border: 1px solid rgba(243, 132, 155, 0.30);
}

.odetail-result-title--accepted {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-deep);
}

.odetail-result-title--declined {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #c4576f;
}

.odetail-result-sub {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
}

/* ── Offers.css ── */
/* Offers page — extracted from inline styles */

/* HEADER */
.offers-header-row {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.offers-title {
  margin: 16px 0 0;
}

.offers-title-accent {
  color: var(--brand);
}

.offers-subtitle {
  margin-top: 14px;
}

/* SEARCH */
.offers-search {
  position: relative;
  max-width: 560px;
  margin-top: 24px;
}

.offers-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.offers-search-input {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  padding: 13px 20px 13px 44px;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.offers-search-input:focus {
  border-color: var(--brand);
}

/* FILTER TABS */
.offers-chips {
  margin-top: 16px;
}

.offers-chip-count {
  margin-left: 7px;
  opacity: 0.7;
  font-weight: 700;
}

/* OFFERS GRID */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.offers-card {
  padding: 22px;
  gap: 14px;
}

.offers-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.40);
}

/* status pill variants */
.offers-status--accepted {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
}

.offers-status--sent {
  background: rgba(101, 135, 165, 0.16);
  color: #46688a;
}

.offers-status--draft {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.5);
}

.offers-status--declined {
  background: rgba(243, 132, 155, 0.16);
  color: #c4576f;
}

.offers-model {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.offers-customer {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 4px;
}

.offers-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.offers-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f6f3;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.offers-cta-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.offers-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.offers-price-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1.5px;
  line-height: 1;
}

.offers-price-unit {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.40);
  font-weight: 500;
}

.offers-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 50px;
  padding: 9px 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

/* EMPTY STATE */
.offers-empty {
  align-items: center;
  text-align: center;
  padding: 64px 32px;
}

.offers-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.offers-empty-sub {
  margin-top: 8px;
}

/* ── Pending.css ── */
/* ── Pending page styles ────────────────────────────────────────────────────── */

@keyframes pendingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.40); }
  50% { box-shadow: 0 0 0 10px rgba(var(--brand-rgb), 0.00); }
}

/* Hero */
.pending-hero {
  align-items: center;
  text-align: center;
}
.pending-hero-title {
  margin: 20px 0 0;
}
.pending-hero-title-accent {
  color: var(--brand);
}
.pending-hero-sub {
  margin: 18px 0 0;
  max-width: 360px;
}

/* Timeline */
.pending-timeline-title {
  margin: 14px 0 22px;
}
.pending-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pending-step {
  display: flex;
  gap: 16px;
}
.pending-step-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* Step circle — default (upcoming) */
.pending-step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f6f3;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.pending-step.done .pending-step-circle {
  background: var(--brand);
  border: 1px solid var(--brand);
}
.pending-step.active .pending-step-circle {
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.60);
  animation: pendingPulse 2s ease-in-out infinite;
}

/* Step number */
.pending-step-num {
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: rgba(0, 0, 0, 0.3);
}
.pending-step.active .pending-step-num {
  color: var(--brand);
}

/* Connector line */
.pending-step-connector {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: rgba(0, 0, 0, 0.08);
  margin: 4px 0;
  border-radius: 2px;
}
.pending-step.done .pending-step-connector {
  background: var(--brand);
}

/* Step body */
.pending-step-body {
  padding-bottom: 28px;
  padding-top: 9px;
}
.pending-step-body.last {
  padding-bottom: 0;
}
.pending-step-name {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 4px;
  line-height: 1.3;
}
.pending-step.done .pending-step-name {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}
.pending-step.active .pending-step-name {
  font-weight: 700;
  color: #1A1A1A;
}
.pending-step-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.5;
}

/* Actions */
.pending-actions {
  align-items: center;
  gap: 14px;
}
.pending-docs-btn {
  align-self: stretch;
  justify-content: center;
}
.pending-support-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 4px 12px;
}

/* ── Profile.css ── */
.profile-head-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 4px;
  flex-wrap: wrap;
}

.profile-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #1a8a7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.profile-head-main {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-size: clamp(26px, 3vw, 34px);
}

.profile-email {
  margin-top: 4px;
}

.profile-status-pill {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.profile-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-stat-val {
  color: var(--profile-stat-color);
  font-size: 22px;
}

.profile-list {
  margin-top: 12px;
}

.profile-list-row {
  cursor: pointer;
}

.profile-item-label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.profile-item-value {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
}

.profile-signout-tile {
  background: rgba(243, 132, 155, 0.10);
  border: 1px solid rgba(243, 132, 155, 0.25);
}

.profile-signout-label {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #F3849B;
}

.profile-locale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

.profile-locale-chips {
  display: flex;
  gap: 10px;
}

.profile-locale-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
}

.profile-locale-flag {
  font-size: 14px;
}

/* ── Register.css ── */
.register-page {
  min-height: 100dvh;
  justify-content: center;
  align-items: center;
}

.register-card {
  width: 100%;
  max-width: 420px;
}

.register-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.register-title {
  margin-top: 14px;
}

.register-sub {
  margin-top: 10px;
  margin-bottom: 26px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 7px;
}

.register-input {
  width: 100%;
  background: #f7f8f6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}

.register-input-pass {
  padding-right: 48px;
}

.register-pass-wrap {
  position: relative;
}

.register-pass-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.40);
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 0;
}

.register-chip-row {
  display: flex;
  gap: 8px;
}

.register-chip {
  flex: 1;
  padding: 11px 16px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
}

.register-error {
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(216, 77, 110, 0.10);
  border: 1px solid rgba(216, 77, 110, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: #d84d6e;
}

.register-submit {
  align-self: stretch;
  justify-content: center;
  padding: 15px 22px;
}

.register-spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255, 255, 255, 0.30);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: hxSpin 0.7s linear infinite;
}

.register-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 22px;
  margin-bottom: 0;
}

.register-footer-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

@keyframes hxSpin { to { transform: rotate(360deg); } }
.hx-input::placeholder { color: rgba(0, 0, 0, 0.30); }
.hx-input:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12); }

/* ── Support.css ── */
/* Support page — extracted from inline styles. Prefix: support- */

/* Hero */
.support-accent { color: var(--brand); }
.support-hero-h1 { margin: 18px 0 0; }
.support-hero-sub { margin: 16px 0 24px; }
.support-hero-btn { margin-top: auto; }

/* Channels — data-driven color via --c-bg / --c-border custom properties */
.support-channel {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-decoration: none;
  cursor: pointer;
}
.support-channel-ico {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  flex-shrink: 0;
}
.support-channel-main { flex: 1; min-width: 0; }
.support-channel-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; }
.support-channel-desc { font-size: 13px; color: rgba(0,0,0,0.45); margin-top: 3px; }
.support-channel-value { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-top: 8px; }
.support-channel-arrow { flex-shrink: 0; }

/* FAQ */
.support-faq-h3 { margin: 14px 0 6px; }
.support-faq-list { margin-top: 8px; }
.support-faq { border-bottom: 1px solid rgba(0,0,0,0.06); }
.support-faq.last { border-bottom: none; }
.support-faq-btn { border-bottom: none; cursor: pointer; padding: 16px 0; }
.support-faq-q { flex: 1; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.4; }
.support-faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: #f4f6f3; }
.support-faq-toggle.open { background: rgba(var(--brand-rgb),0.14); }
.support-faq-a { font-size: 13px; color: rgba(0,0,0,0.55); line-height: 1.7; padding: 0 0 18px; }

/* CTA */
.support-cta { flex-direction: row; align-items: center; gap: 16px; }
.support-cta-ico { width: 46px; height: 46px; border-radius: 50%; background: rgba(var(--brand-rgb),0.12); }
.support-cta-main { flex: 1; }
.support-cta-title { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; }
.support-cta-sub { margin-top: 2px; }

/* ============================================================================
   DARK MODE — full page-content coverage
   The HX design system hardcodes light cards/charcoal text and is theme-agnostic
   by default. This block darkens ALL app page content (everything rendered inside
   .hx-page: portal, flow, wizard, register) when data-theme="dark". The app shell
   (sidebar/topbar/bottom-nav) is themed separately in ev.css. Tailwind-based auth
   and settings pages carry their own dark: variants and are intentionally untouched.
   ========================================================================== */

/* Base ink + page canvas */
[data-theme="dark"] .hx-page { color: #ececed; }

/* Cards & surfaces */
[data-theme="dark"] .hx-light {
  background: #1e1e20;
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 10px 34px rgba(0,0,0,0.55);
}
[data-theme="dark"] .hx-soft,
[data-theme="dark"] .hx-ico-tile,
[data-theme="dark"] .hx-product {
  background: #27272a;
  border-color: rgba(255,255,255,0.09);
}
[data-theme="dark"] .hx-product-km { background: #3a3a3e; color: #fff; box-shadow: none; }

/* Badges & chips */
[data-theme="dark"] .hx-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}
[data-theme="dark"] .hx-chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.72);
}
[data-theme="dark"] .hx-chip.on {
  background: rgba(var(--brand-rgb),0.22);
  border-color: rgba(var(--brand-rgb),0.5);
  color: var(--brand-light);
}

/* Dividers / list separators */
[data-theme="dark"] .hx-list-row { border-bottom-color: rgba(255,255,255,0.09); }

/* Primary dark button → brand on dark cards (a charcoal button would vanish) */
[data-theme="dark"] .hx-page .hx-darkbtn { background: var(--brand); color: #04231f; }
[data-theme="dark"] .hx-page .hx-darkbtn:hover { background: var(--brand-light); }
[data-theme="dark"] .hx-btn-sq { background: rgba(0,0,0,0.22); }

/* Strong / active text (was near-black) → near-white */
[data-theme="dark"] .hx-flowbar-brand b,
[data-theme="dark"] .fleet-username,
[data-theme="dark"] .fleet-row-price-dark,
[data-theme="dark"] .fleet-trend-total,
[data-theme="dark"] .profile-item-value,
[data-theme="dark"] .sign-row-val,
[data-theme="dark"] .wiz-car-price,
[data-theme="dark"] .pending-step.active .pending-step-name,
[data-theme="dark"] .pending-step.done .pending-step-name { color: #f4f4f5; }

/* Muted / secondary text (was rgba(0,0,0,.4–.6)) → light muted */
[data-theme="dark"] .hx-sub,
[data-theme="dark"] .hx-muted,
[data-theme="dark"] .hx-bigstat-lbl,
[data-theme="dark"] .hx-flowbar-name,
[data-theme="dark"] .docs-row-meta,
[data-theme="dark"] .docs-drop-hint,
[data-theme="dark"] .docs-empty,
[data-theme="dark"] .fleet-row-veh { color: rgba(255, 255, 255, 0.9); }
[data-theme="dark"] .fleet-row-meta,
[data-theme="dark"] .fleet-act-time,
[data-theme="dark"] .fleet-chart-month,
[data-theme="dark"] .fleet-empty,
[data-theme="dark"] .fleet-trend-delta span,
[data-theme="dark"] .fleet-trend-num-lbl,
[data-theme="dark"] .fleet-active-vehicle,
[data-theme="dark"] .home-act-count,
[data-theme="dark"] .home-act-time,
[data-theme="dark"] .home-chart-month,
[data-theme="dark"] .home-drive-km-lbl,
[data-theme="dark"] .home-drive-next,
[data-theme="dark"] .home-drive-trend-sub,
[data-theme="dark"] .home-product-tag,
[data-theme="dark"] .kyc-count,
[data-theme="dark"] .kyc-cta-note,
[data-theme="dark"] .kyc-privacy-text,
[data-theme="dark"] .kyc-slot-hint,
[data-theme="dark"] .lease-contract-tile-lbl,
[data-theme="dark"] .lease-included-sub,
[data-theme="dark"] .oaccept-duration-unit,
[data-theme="dark"] .oaccept-valid,
[data-theme="dark"] .odetail-contract-lbl,
[data-theme="dark"] .odetail-customer-company,
[data-theme="dark"] .odetail-customer-key,
[data-theme="dark"] .odetail-price-label,
[data-theme="dark"] .odetail-result-sub,
[data-theme="dark"] .offers-brand,
[data-theme="dark"] .offers-customer,
[data-theme="dark"] .offers-price-unit,
[data-theme="dark"] .offers-search-icon,
[data-theme="dark"] .pending-step-desc,
[data-theme="dark"] .pending-step-name,
[data-theme="dark"] .pending-step-num,
[data-theme="dark"] .sign-header-eyebrow,
[data-theme="dark"] .sign-proc-status-label,
[data-theme="dark"] .sign-qr-id,
[data-theme="dark"] .sign-ref-label,
[data-theme="dark"] .sign-row-label,
[data-theme="dark"] .sign-row-sub,
[data-theme="dark"] .sign-step-text,
[data-theme="dark"] .support-channel-desc,
[data-theme="dark"] .support-channel-value,
[data-theme="dark"] .support-faq-a,
[data-theme="dark"] .register-label,
[data-theme="dark"] .register-footer,
[data-theme="dark"] .login-label,
[data-theme="dark"] .login-footer { color: rgba(255,255,255,0.56); }

/* Inputs */
[data-theme="dark"] .hx-input,
[data-theme="dark"] .login-input,
[data-theme="dark"] .register-input,
[data-theme="dark"] .offers-search-input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  color: #f4f4f5;
}
[data-theme="dark"] .hx-input::placeholder,
[data-theme="dark"] .login-input::placeholder,
[data-theme="dark"] .register-input::placeholder,
[data-theme="dark"] .offers-search-input::placeholder { color: rgba(255,255,255,0.4); }

/* Inner light tiles / pills / drop zones / tracks */
[data-theme="dark"] .docs-drop,
[data-theme="dark"] .kyc-slot-icon,
[data-theme="dark"] .kyc-bar,
[data-theme="dark"] .kyc-slot-pill,
[data-theme="dark"] .support-faq-toggle,
[data-theme="dark"] .offers-stat-chip,
[data-theme="dark"] .sign-step-num {
  background: #2a2a2e;
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.72);
}
[data-theme="dark"] .sign-progress-track,
[data-theme="dark"] .wiz-progress-track,
[data-theme="dark"] .sign-qr-track,
[data-theme="dark"] .pending-step-connector { background: rgba(255,255,255,0.12); }
[data-theme="dark"] .pending-step-circle { background: #2a2a2e; color: rgba(255,255,255,0.6); }

/* Neutral "draft" status pill (coloured pills stay as-is) */
[data-theme="dark"] .offers-status--draft {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Range slider track */
[data-theme="dark"] .ev-slider { background: rgba(255,255,255,0.14); }

/* Page canvas behind the cards (body gradient is hardcoded light at :213) */
[data-theme="dark"] body {
  background: radial-gradient(circle at 78% -5%, #17302e 0%, #141414 45%, #0d0d0d 100%) fixed;
}
/* MS (NL): a plum glow at the top fading to the dark base (mirrors the light glow). */
[data-brand="ms"][data-theme="dark"] body {
  background: #0d0d0d radial-gradient(120% 70% at 82% -12%, #3a1f28 0%, rgba(58,31,40,0.5) 26%, rgba(58,31,40,0) 55%) fixed;
}

/* Accept page: duration number + units sit on the (now dark) summary card.
   Scoped to .hx-light so the teal "Offer accepted" success card keeps dark ink. */
[data-theme="dark"] .hx-light .oaccept-bigprice--sm { color: #f4f4f5; }
[data-theme="dark"] .hx-light .oaccept-price-unit { color: rgba(255,255,255,0.5); }

/* Mobile: stack paired form fields so inputs aren't cramped on narrow screens */
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 10px; }
}
