/* ============================================================
   VP AUTO — SHARED CSS — MOBILE-FIRST
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0c1f38;
  --navy-mid: #162d4d;
  --navy-light: #1e3d64;
  --accent: #d4952a;
  --accent-hover: #b8801f;
  --accent-soft: #f5e6cc;
  --green: #1a9a5c;
  --green-soft: #e8f7ef;
  --red: #d43333;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eba59;
  --text: #1a1d26;
  --text-mid: #4a5066;
  --text-light: #7d8399;
  --text-faint: #a6adc2;
  --border: #e2e5ee;
  --border-light: #eef0f5;
  --bg: #ffffff;
  --bg-cool: #f5f7fb;
  --bg-warm: #faf8f5;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(12,31,56,0.05);
  --shadow: 0 4px 16px rgba(12,31,56,0.07);
  --shadow-lg: 0 12px 40px rgba(12,31,56,0.1);
  --shadow-xl: 0 20px 60px rgba(12,31,56,0.14);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --header-h: 62px;
  --max-w: 1260px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   HEADER — MOBILE-FIRST
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: var(--transition);
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 10px rgba(12,31,56,0.05); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 8px; cursor: pointer; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-text-main { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; line-height: 1; }
.logo-text-sub { font-size: 8px; font-weight: 600; color: var(--text-light); letter-spacing: 1.8px; text-transform: uppercase; }

.nav-desktop { display: none; align-items: center; gap: 26px; }
.nav-desktop a {
  font-size: 13px; font-weight: 500; color: var(--text-mid); padding: 4px 0;
  border-bottom: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--navy); border-bottom-color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 10px; }
.btn-phone {
  display: none; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--navy); color: #fff;
  border-radius: var(--radius); font-size: 12.5px; font-weight: 600; transition: var(--transition);
}
.btn-phone:hover { background: var(--navy-light); }
.btn-phone svg { width: 13px; height: 13px; flex-shrink: 0; }

.menu-toggle { display: flex; align-items: center; justify-content: center; padding: 8px; -webkit-tap-highlight-color: transparent; }
.menu-toggle svg { width: 24px; height: 24px; color: var(--navy); }

.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 899; padding: 8px 16px 32px; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 4px; font-size: 15px; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--border-light);
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-phone {
  margin-top: 20px; padding: 14px 20px; background: var(--navy); color: #fff;
  border-radius: var(--radius); text-align: center; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

@media (min-width: 920px) {
  .header-inner { padding: 0 28px; }
  .nav-desktop { display: flex; }
  .btn-phone { display: flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   HERO — MOBILE-FIRST
   ============================================================ */
.hero {
  padding: 82px 16px 40px; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #070e1a 0%, var(--navy) 35%, var(--navy-light) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 25% 50%, #fff 1px, transparent 1px); background-size: 40px 40px;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: 20px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,149,42,0.1), transparent 70%);
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.09); padding: 6px 14px; border-radius: 20px;
  margin-bottom: 18px; border: 1px solid rgba(255,255,255,0.08);
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-badge span { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero h1 {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -1px; margin-bottom: 14px;
}
.hero p { font-size: 14.5px; color: rgba(255,255,255,0.6); max-width: 530px; margin-bottom: 26px; line-height: 1.65; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }

.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius); font-size: 14.5px; font-weight: 700;
  transition: var(--transition); -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-accent:hover { background: var(--accent-hover); }
.btn-accent:active { transform: scale(0.98); }
.btn-accent svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-accent.navy { background: var(--navy); }
.btn-accent.navy:hover { background: var(--navy-light); }

.btn-outline-light {
  padding: 14px 22px; background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  font-size: 14.5px; font-weight: 500; transition: var(--transition); text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }

/* SEARCH BAR */
.search-bar {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 18px 16px; backdrop-filter: blur(10px);
}
.search-bar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: end; }
.search-bar label { display: block; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.8px; }
.search-bar select {
  width: 100%; padding: 10px 12px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  color: rgba(255,255,255,0.75); font-size: 13px; outline: none; appearance: none; cursor: pointer;
}
.search-bar .btn-accent { width: 100%; padding: 10px 16px; grid-column: 1 / -1; }

@media (min-width: 700px) {
  .hero { padding: 100px 28px 56px; }
  .hero h1 { font-size: clamp(32px, 5vw, 50px); }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: row; }
  .search-bar { padding: 22px 24px; }
  .search-bar-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .search-bar .btn-accent { grid-column: auto; }
}

/* STATS */
.stats-bar { background: var(--bg-cool); border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 11px; color: var(--text-light); font-weight: 500; }
@media (min-width: 600px) {
  .stats-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px; padding: 18px 28px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { max-width: var(--max-w); margin: 0 auto; padding: 44px 16px; }
.section-full { padding: 44px 16px; }
.section-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.section-subtitle { color: var(--text-light); font-size: 14px; margin-top: 5px; }
@media (min-width: 700px) {
  .section { padding: 60px 28px; }
  .section-full { padding: 60px 28px; }
  .section-title { font-size: clamp(24px, 3vw, 32px); }
  .section-subtitle { font-size: 15px; }
}

/* ============================================================
   VEHICLE CARDS — MOBILE-FIRST
   ============================================================ */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 920px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.v-card {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.v-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212,149,42,0.2); }
@media (hover: none) { .v-card:hover { transform: none; box-shadow: none; } }

.v-card-img {
  position: relative; padding-top: 60%; overflow: hidden; background: var(--bg-cool);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.v-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (hover: hover) {
  .v-card-img img { transition: transform 0.5s; }
  .v-card:hover .v-card-img img { transform: scale(1.04); }
}

.v-card-badge {
  position: absolute; top: 10px; left: 10px; background: var(--navy);
  color: #fff; padding: 5px 11px; border-radius: var(--radius-sm);
  font-size: 11.5px; font-weight: 700; display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.v-card-badge svg { width: 11px; height: 11px; }
.v-card-tag {
  position: absolute; top: 10px; right: 10px; padding: 3px 9px;
  border-radius: var(--radius-sm); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-electric { background: var(--green); color: #fff; }
.tag-hybrid { background: #0ea5e9; color: #fff; }

.v-card-body { padding: 14px 16px 16px; }
.v-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.v-card-version { font-size: 11.5px; color: var(--text-faint); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v-card-specs { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 11.5px; color: var(--text-light); }
.v-card-specs span { display: flex; align-items: center; gap: 3px; }
.v-card-specs svg { width: 12px; height: 12px; opacity: 0.5; }
.v-card-footer {
  border-top: 1px solid var(--border-light); margin-top: 12px; padding-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.v-card-loc { font-size: 11px; color: var(--text-faint); display: flex; align-items: center; gap: 3px; }
.v-card-loc svg { width: 12px; height: 12px; }
.v-card-price { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--navy); }

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; gap: 16px; }
.carousel-arrows { display: flex; gap: 6px; flex-shrink: 0; }
.carousel-arrow {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; display: flex; align-items: center; justify-content: center; transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.carousel-arrow:active { background: var(--navy); border-color: var(--navy); color: #fff; }
@media (hover: hover) { .carousel-arrow:hover { background: var(--navy); border-color: var(--navy); color: #fff; } }
.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-track {
  overflow: hidden; margin: 0 -4px; padding: 0 4px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.carousel-slide {
  display: flex; gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
@media (min-width: 700px) { .carousel-slide { gap: 20px; } }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: #fff; border-radius: var(--radius-lg); padding: 26px 20px;
  border: 1px solid var(--border); transition: var(--transition); position: relative;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-display); font-size: 44px; font-weight: 900; color: var(--border-light); line-height: 1;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #eef1f8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--navy);
}
.step-icon svg { width: 22px; height: 22px; }
.step-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   GUARANTEES
   ============================================================ */
.guarantees-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .guarantees-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 920px) { .guarantees-grid { grid-template-columns: repeat(6, 1fr); } }
.g-card {
  text-align: center; padding: 22px 12px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.g-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.g-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #f0f3fa;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--navy);
}
.g-icon svg { width: 20px; height: 20px; }
.g-card h4 { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.g-card p { font-size: 11.5px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   TRUST BANNER
   ============================================================ */
.trust-banner { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 44px 16px; }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.trust-inner h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.trust-inner > div:first-child p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; }
.trust-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-tag {
  display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08);
  padding: 9px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px; font-weight: 500; color: #fff;
}
.trust-tag svg { width: 15px; height: 15px; color: #4ade80; flex-shrink: 0; }
@media (min-width: 700px) {
  .trust-banner { padding: 56px 28px; }
  .trust-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .trust-inner h2 { font-size: clamp(22px, 3vw, 30px); }
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.brand-chip {
  padding: 8px 16px; background: var(--bg-cool); border: 1px solid var(--border);
  border-radius: 8px; font-size: 12.5px; font-weight: 500; color: var(--text-mid);
  transition: var(--transition); -webkit-tap-highlight-color: transparent; cursor: pointer;
}
.brand-chip:hover, .brand-chip:active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* CTA */
.cta-final { background: var(--bg-cool); padding: 44px 16px; text-align: center; }
@media (min-width: 700px) { .cta-final { padding: 56px 28px; } }

/* ============================================================
   LISTING PAGE
   ============================================================ */
.listing-header {
  background: linear-gradient(135deg, #070e1a, var(--navy));
  padding: 26px 16px; padding-top: calc(var(--header-h) + 20px);
}
.listing-header-inner { max-width: var(--max-w); margin: 0 auto; }
.listing-header h1 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; }
.listing-header p { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 4px; }
@media (min-width: 700px) {
  .listing-header { padding: 34px 28px; padding-top: calc(var(--header-h) + 28px); }
  .listing-header h1 { font-size: clamp(24px, 3vw, 32px); }
}

.listing-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; align-items: center; }
.search-input-wrap { flex: 1 1 100%; position: relative; }
@media (min-width: 560px) { .search-input-wrap { flex: 1 1 250px; } }
.search-input-wrap svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-faint); pointer-events: none; }
.search-input-wrap input {
  width: 100%; padding: 11px 14px 11px 40px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; outline: none; transition: var(--transition);
}
.search-input-wrap input:focus { border-color: var(--navy); }

.btn-filter {
  display: flex; align-items: center; gap: 6px; padding: 11px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; font-size: 13px; font-weight: 500; color: var(--text-mid);
  transition: var(--transition); -webkit-tap-highlight-color: transparent;
}
.btn-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-filter svg { width: 15px; height: 15px; }

.sort-select {
  padding: 11px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 12.5px; color: var(--text-mid); background: #fff; outline: none; appearance: none; cursor: pointer;
  flex: 1 1 auto; min-width: 0;
}
@media (min-width: 560px) { .sort-select { flex: 0 0 auto; } }

.filters-panel {
  display: none; background: var(--bg-cool); border-radius: var(--radius-lg);
  padding: 18px 16px; margin-bottom: 18px; border: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}
.filters-panel.open { display: block; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }

.filters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 700px) { .filters-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); } }
.filter-group label {
  display: block; font-size: 10px; font-weight: 700; color: var(--text-light);
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.6px;
}
.filter-group select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; color: var(--text-mid);
  background: #fff; outline: none; appearance: none; cursor: pointer;
}
.btn-clear {
  display: inline-flex; align-items: center; gap: 5px; padding: 9px 16px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  font-size: 12.5px; color: var(--text-light); margin-top: 14px; transition: var(--transition);
}
.btn-clear:hover { border-color: var(--navy); color: var(--navy); }
.btn-clear svg { width: 13px; height: 13px; }

.load-more-wrap { text-align: center; margin-top: 28px; }
.btn-load-more {
  padding: 13px 28px; background: var(--navy); color: #fff; border: none;
  border-radius: var(--radius); font-size: 14px; font-weight: 600; width: 100%;
  max-width: 360px; transition: var(--transition);
}
.btn-load-more:hover { background: var(--navy-light); }

.empty-state { text-align: center; padding: 60px 16px; color: var(--text-faint); }
.empty-state svg { width: 44px; height: 44px; margin: 0 auto 14px; opacity: 0.25; }

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.breadcrumb {
  background: var(--bg-cool); border-bottom: 1px solid var(--border);
  padding: 12px 16px; padding-top: calc(var(--header-h) + 12px);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-faint);
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-light); cursor: pointer; -webkit-tap-highlight-color: transparent; }
.breadcrumb-inner span.current { color: var(--navy); font-weight: 500; }
.breadcrumb-inner svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (min-width: 700px) { .breadcrumb { padding: 13px 28px; padding-top: calc(var(--header-h) + 13px); } }

.detail-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 20px 16px;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start;
}
@media (min-width: 920px) {
  .detail-layout { grid-template-columns: 1fr 370px; gap: 32px; padding: 28px; }
}

.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  padding-top: 62%; background: var(--bg-cool); margin-bottom: 10px;
}
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-lot {
  position: absolute; top: 12px; left: 12px; background: var(--navy);
  color: #fff; padding: 5px 13px; border-radius: var(--radius); font-size: 12px; font-weight: 700;
}
.gallery-thumbs { display: flex; gap: 6px; margin-bottom: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.gallery-thumb {
  width: 72px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  border: 2px solid transparent; cursor: pointer; opacity: 0.55; transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--navy); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
@media (min-width: 700px) { .detail-title { font-size: clamp(26px, 3vw, 32px); } }
.detail-version { font-size: 14px; color: var(--text-faint); margin-bottom: 20px; }

.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 28px; }
@media (min-width: 560px) { .specs-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-box { background: var(--bg-cool); border-radius: var(--radius); padding: 13px 14px; border: 1px solid var(--border-light); }
.spec-box-label { font-size: 11px; color: var(--text-faint); margin-bottom: 3px; display: flex; align-items: center; gap: 4px; }
.spec-box-label svg { width: 13px; height: 13px; }
.spec-box-value { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); }

.info-block { margin-bottom: 28px; }
.info-block h3 { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.info-table { background: var(--bg-cool); border-radius: var(--radius-lg); padding: 18px; border: 1px solid var(--border-light); }
.info-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; gap: 8px; }
.info-row:last-child { border-bottom: none; }
.info-row-key { color: var(--text-light); flex-shrink: 0; }
.info-row-val { font-weight: 600; color: var(--navy); text-align: right; }
.info-desc { margin-top: 14px; font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

.equip-grid { display: grid; grid-template-columns: 1fr; gap: 7px; }
@media (min-width: 480px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
.equip-item {
  display: flex; align-items: center; gap: 7px; padding: 10px 12px;
  background: var(--bg-cool); border-radius: 8px; border: 1px solid var(--border-light);
  font-size: 13px; color: var(--text-mid);
}
.equip-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

.trust-box { background: #eef2fb; border-radius: var(--radius-lg); padding: 20px; border: 1px solid #dae0f0; }
.trust-box h4 { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.trust-box-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trust-box-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-mid); }
.trust-box-item svg { width: 14px; height: 14px; color: var(--navy); flex-shrink: 0; }

/* SIDEBAR */
.bid-sidebar { position: relative; }
@media (min-width: 920px) { .bid-sidebar { position: sticky; top: calc(var(--header-h) + 20px); } }
.bid-card { border-radius: var(--radius-xl); border: 1px solid var(--border); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.bid-card-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 24px; color: #fff; }
.bid-card-label { font-size: 12px; font-weight: 500; opacity: 0.6; margin-bottom: 3px; }
.bid-card-price { font-family: var(--font-display); font-size: 34px; font-weight: 900; letter-spacing: -1px; }
.bid-card-lot { font-size: 12.5px; opacity: 0.5; margin-top: 3px; }
.bid-card-body { padding: 22px 24px; }

.btn-bid {
  width: 100%; padding: 15px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius); font-size: 16px; font-weight: 700;
  transition: var(--transition); margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}
.btn-bid:hover { background: var(--accent-hover); }
.btn-bid:active { transform: scale(0.98); }

.btn-fav {
  width: 100%; padding: 12px; background: transparent; color: var(--navy);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13.5px; font-weight: 500; display: flex; align-items: center;
  justify-content: center; gap: 7px; transition: var(--transition);
}
.btn-fav svg { width: 15px; height: 15px; }
.bid-card-info { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 12px; }
.bid-card-info-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-light); }
.bid-card-info-item svg { width: 14px; height: 14px; color: var(--navy); flex-shrink: 0; }

/* ============================================================
   MODALS — MOBILE-FIRST
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100; display: none;
  align-items: flex-end; justify-content: center; padding: 0;
}
.modal-overlay.open { display: flex; }
@media (min-width: 560px) {
  .modal-overlay { align-items: center; padding: 20px; }
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(12,31,56,0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.modal-content {
  position: relative; background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-width: 530px; width: 100%; box-shadow: var(--shadow-xl);
  overflow: hidden; animation: modalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
@media (min-width: 560px) {
  .modal-content { border-radius: var(--radius-xl); animation: modalEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1); max-height: 90vh; }
}
@keyframes modalSlideUp { from{transform:translateY(100%)} to{transform:none} }
@keyframes modalEnter { from{opacity:0;transform:scale(0.95) translateY(12px)} to{opacity:1;transform:none} }

.modal-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 24px 20px; color: #fff; position: relative; }
@media (min-width: 560px) { .modal-header { padding: 28px 32px; } }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  background: rgba(255,255,255,0.12); border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.modal-close svg { width: 16px; height: 16px; color: #fff; }
.modal-lot { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.modal-lot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.modal-lot span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.modal-header h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.modal-header p { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.modal-body { padding: 22px 20px; }
@media (min-width: 560px) { .modal-body { padding: 28px 32px; } }
.modal-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 22px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 16px; outline: none;
  transition: var(--transition); background: #fff;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,61,100,0.08); }
.form-input.error { border-color: var(--red); }
.form-hint { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; align-items: center; gap: 4px; }
.form-error.show { display: flex; }
.form-error svg { width: 13px; height: 13px; flex-shrink: 0; }

.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
@media (min-width: 480px) { .modal-actions { flex-direction: row; gap: 12px; } }
.btn-continue {
  flex: 1; padding: 15px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition);
}
.btn-continue:hover { background: var(--accent-hover); }
.btn-continue svg { width: 16px; height: 16px; }
.btn-cancel {
  padding: 14px 20px; background: transparent; color: var(--text-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 500; transition: var(--transition); text-align: center;
}

/* ============================================================
   AUCTION ROOM — MOBILE-FIRST
   ============================================================ */
.auction-room {
  padding-top: var(--header-h);
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 16px 24px;
}
@media (min-width: 700px) {
  .auction-room { padding: calc(var(--header-h) + 40px) 24px 40px; }
}

/* White background for won screen */
.auction-room.ar-won-bg {
  background: var(--bg-cool);
  align-items: flex-start;
  padding-top: calc(var(--header-h) + 24px);
}

.auction-room-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.ar-main-card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 18px; }
.ar-main-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 24px 18px; color: #fff; }
@media (min-width: 560px) { .ar-main-header { padding: 30px 32px; } }
.ar-status-line { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ar-status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.ar-status-label { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.2px; }
.ar-main-header h1 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 3px; color: #fff; }
@media (min-width: 560px) { .ar-main-header h1 { font-size: 26px; } }
.ar-main-header p { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.ar-main-header p strong { color: #4ade80; }

.ar-progress { padding: 22px 18px; border-bottom: 1px solid var(--border-light); overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (min-width: 560px) { .ar-progress { padding: 26px 32px; } }
.ar-progress-track { display: flex; align-items: center; justify-content: space-between; position: relative; min-width: 360px; }
.ar-progress-line { position: absolute; top: 15px; left: 10%; right: 10%; height: 3px; background: var(--border); border-radius: 2px; }
.ar-progress-fill { position: absolute; top: 15px; left: 10%; width: 22%; height: 3px; background: var(--navy); border-radius: 2px; }
.ar-progress-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.ar-progress-dot {
  width: 30px; height: 30px; border-radius: 50%; margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
}
.ar-progress-dot.done { background: var(--navy); }
.ar-progress-dot.active { background: var(--accent); border: 3px solid rgba(212,149,42,0.25); }
.ar-progress-dot.pending { background: var(--border); }
.ar-progress-dot svg { width: 14px; height: 14px; color: #fff; }
.ar-progress-dot-inner { width: 7px; height: 7px; border-radius: 50%; background: #c5c9d4; }
.ar-progress-label { font-size: 10px; font-weight: 600; white-space: nowrap; }
.ar-progress-label.done, .ar-progress-label.active { color: var(--navy); }
.ar-progress-label.pending { color: var(--text-faint); }

.ar-vehicle { padding: 20px 18px; }
@media (min-width: 560px) { .ar-vehicle { padding: 26px 32px; } }
.ar-vehicle-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ar-vehicle-img { width: 90px; height: 62px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
@media (min-width: 560px) { .ar-vehicle-img { width: 120px; height: 80px; } }
.ar-vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.ar-vehicle-info { flex: 1; min-width: 140px; }
.ar-vehicle-info h3 { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #0c1f38; }
.ar-vehicle-info p { font-size: 12.5px; color: #0c1f38; opacity: 0.7; }
.ar-vehicle-meta { font-size: 11.5px; color: #0c1f38; opacity: 0.5; }

.ar-data-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
@media (min-width: 480px) { .ar-data-grid { grid-template-columns: repeat(3, 1fr); } }
.ar-data-box { border-radius: var(--radius); padding: 14px 16px; border: 1px solid var(--border-light); }
.ar-data-box.blue { background: var(--bg-cool); }
.ar-data-box.green { background: #f0fdf4; border-color: #bbf7d0; }
.ar-data-box.amber { background: #fffbeb; border-color: #fde68a; }
.ar-data-box-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.ar-data-box.blue .ar-data-box-label { color: var(--text-faint); }
.ar-data-box.green .ar-data-box-label { color: #16a34a; }
.ar-data-box.amber .ar-data-box-label { color: #d97706; }
.ar-data-box-value { font-family: var(--font-display); font-size: 19px; font-weight: 800; }
.ar-data-box.blue .ar-data-box-value { color: var(--navy); }
.ar-data-box.green .ar-data-box-value { color: #15803d; }
.ar-data-box.amber .ar-data-box-value { color: #92400e; font-size: 13.5px; display: flex; align-items: center; gap: 5px; }
.ar-data-box.amber .ar-data-box-value svg { width: 14px; height: 14px; }

.ar-timer-card { background: #fff; border-radius: var(--radius-xl); padding: 24px 18px; border: 1px solid var(--border); text-align: center; margin-bottom: 18px; }
@media (min-width: 560px) { .ar-timer-card { padding: 28px 32px; } }
.ar-timer-label { font-size: 11px; color: var(--text-faint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.ar-timer-display { font-family: var(--font-display); font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: 2px; font-variant-numeric: tabular-nums; }
.ar-timer-note {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fffbeb; padding: 6px 14px; border-radius: 8px;
  font-size: 11.5px; color: #92400e; font-weight: 500; margin-top: 12px;
}
.ar-timer-note svg { width: 13px; height: 13px; flex-shrink: 0; }

.ar-activate-card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); margin-bottom: 18px; }
.ar-activate-header { padding: 22px 18px; border-bottom: 1px solid var(--border-light); }
@media (min-width: 560px) { .ar-activate-header { padding: 28px 32px; } }
.ar-activate-header h3 { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
.ar-activate-header h3 svg { width: 20px; height: 20px; color: var(--whatsapp); flex-shrink: 0; }
.ar-activate-header p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.ar-activate-body { padding: 22px 18px; background: var(--bg-cool); }
@media (min-width: 560px) { .ar-activate-body { padding: 26px 32px; } }
.ar-activate-body p { font-size: 13.5px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
.ar-activate-actions { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 480px) { .ar-activate-actions { flex-direction: row; gap: 12px; } }

.btn-whatsapp {
  padding: 14px 24px; background: var(--whatsapp); color: #fff; border: none;
  border-radius: var(--radius); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition); -webkit-tap-highlight-color: transparent; width: 100%;
}
@media (min-width: 480px) { .btn-whatsapp { width: auto; } }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-whatsapp:active { transform: scale(0.98); }
.btn-whatsapp svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-back {
  padding: 14px 20px; background: transparent; color: var(--text-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 500; transition: var(--transition); text-align: center; width: 100%;
}
@media (min-width: 480px) { .btn-back { width: auto; } }

.ar-steps-card { background: #fff; border-radius: var(--radius-xl); padding: 24px 18px; border: 1px solid var(--border); }
@media (min-width: 560px) { .ar-steps-card { padding: 30px 32px; } }
.ar-steps-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.ar-step-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.ar-step-row:last-child { margin-bottom: 0; }
.ar-step-dot {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700;
}
.ar-step-dot.done { background: var(--navy); color: #fff; }
.ar-step-dot.done svg { width: 15px; height: 15px; }
.ar-step-dot.pending { background: var(--bg-cool); color: var(--text-faint); }
.ar-step-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.ar-step-title.done { color: var(--navy); }
.ar-step-title.pending { color: var(--text-light); }
.ar-step-desc { font-size: 12.5px; color: var(--text-faint); line-height: 1.5; }

/* WHATSAPP MODAL */
.wa-modal-body { padding: 28px 20px; text-align: center; }
@media (min-width: 560px) { .wa-modal-body { padding: 34px; } }
.wa-icon { width: 60px; height: 60px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.wa-icon svg { width: 28px; height: 28px; color: var(--whatsapp); }
.wa-modal-body h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.wa-modal-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; }

/* ============================================================
   FOOTER — PROFESSIONAL DARK THEME
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #080f1c 0%, #050a14 100%);
  color: #fff;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
@media (min-width: 700px) { .footer-inner { padding: 0 28px; } .footer { padding-top: 60px; } }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 36px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 920px) { .footer-brand { grid-column: auto; } }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 10px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500;
}

.footer-col h4 {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.35);
  padding: 6px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 28px 0;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 600px) { .footer-newsletter { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-newsletter h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-newsletter p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-newsletter-form { display: flex; gap: 10px; }
.footer-newsletter-form input {
  padding: 12px 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  color: #fff; font-size: 13px; flex: 1; min-width: 0; outline: none;
  -webkit-appearance: none; transition: var(--transition);
}
.footer-newsletter-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.06); }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter-form button {
  padding: 12px 20px; background: var(--accent); color: #fff; border: none;
  border-radius: 8px; font-size: 13px; font-weight: 700; flex-shrink: 0;
  transition: var(--transition); cursor: pointer;
}
.footer-newsletter-form button:hover { background: #c28a26; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
  display: flex; flex-direction: column; gap: 12px; text-align: center;
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; } }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
@media (min-width: 600px) { .footer-legal { justify-content: flex-end; } }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   SUB-PAGE CONTENT
   ============================================================ */
.subpage-hero {
  background: linear-gradient(135deg, #070e1a, var(--navy)); padding: 28px 16px;
  padding-top: calc(var(--header-h) + 28px);
}
@media (min-width: 700px) { .subpage-hero { padding: 40px 28px; padding-top: calc(var(--header-h) + 36px); } }
.subpage-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.subpage-hero h1 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #fff; }
@media (min-width: 700px) { .subpage-hero h1 { font-size: clamp(26px, 3vw, 36px); } }
.subpage-hero p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 6px; max-width: 560px; line-height: 1.6; }

.content-section { max-width: var(--max-w); margin: 0 auto; padding: 36px 16px; }
@media (min-width: 700px) { .content-section { padding: 52px 28px; } }
.content-section h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
@media (min-width: 700px) { .content-section h2 { font-size: 24px; } }
.content-section p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.content-section p:last-child { margin-bottom: 0; }

.content-card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 560px) { .content-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .content-card-grid { grid-template-columns: repeat(3, 1fr); } }
.content-card {
  background: #fff; border-radius: var(--radius-lg); padding: 26px 22px;
  border: 1px solid var(--border); transition: var(--transition);
}
.content-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.content-card-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #eef1f8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--navy);
}
.content-card-icon svg { width: 22px; height: 22px; }
.content-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.content-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

.contact-form { max-width: 600px; }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 15px; outline: none; resize: vertical;
  min-height: 120px; transition: var(--transition); font-family: inherit;
  -webkit-appearance: none;
}
.contact-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,61,100,0.08); }

.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
@media (min-width: 560px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px 16px;
  background: var(--bg-cool); border-radius: var(--radius); border: 1px solid var(--border-light);
}
.contact-info-item-icon { width: 40px; height: 40px; border-radius: 10px; background: #e8ebf4; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.contact-info-item-icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-info-item p { font-size: 13px; color: var(--text-light); }

/* Accordion for FAQ */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 0; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.faq-question h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); }
.faq-question svg { width: 18px; height: 18px; color: var(--text-faint); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 18px; font-size: 14px; color: var(--text-light); line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   WON AUCTION STYLES
   ============================================================ */
.ar-main-card.ar-won { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); border: 2px solid #10b981; }
.ar-won-status .ar-status-dot { background: #10b981; }
.ar-won-status .ar-status-label { color: rgba(255,255,255,0.8); }
.ar-won-dot { animation: none; }
.ar-won-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #10b981; color: #fff; padding: 10px 20px;
  border-radius: 30px; font-size: 16px; font-weight: 800;
  font-family: var(--font-display); margin: 12px 0;
}
.ar-won-badge svg { width: 20px; height: 20px; }
.ar-main-card.ar-won .ar-main-header h1 { color: #fff; }
.ar-main-card.ar-won .ar-main-header p { color: rgba(255,255,255,0.9); }
.ar-main-card.ar-won .ar-main-header p strong { color: #fff; }
.ar-progress-fill.ar-full { width: 85% !important; background: linear-gradient(90deg, #10b981, #34d399); }
.ar-data-box.ar-highlight { background: linear-gradient(135deg, #10b981, #059669); }
.ar-data-box.ar-highlight .ar-data-box-label { color: rgba(255,255,255,0.85); }
.ar-data-box.ar-highlight .ar-data-box-value { color: #fff; font-size: 26px; }
.ar-data-box.ar-success { background: linear-gradient(135deg, #34d399, #10b981); }
.ar-data-box.ar-success .ar-data-box-label { color: rgba(255,255,255,0.85); }
.ar-data-box.ar-success .ar-data-box-value { color: #fff; display: flex; align-items: center; gap: 8px; font-size: 15px; }
.ar-data-box.ar-success svg { width: 18px; height: 18px; }
.ar-won-timer { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-color: #a7f3d0; }
.ar-won-timer .ar-timer-label { color: #047857; }
.ar-won-timer .ar-timer-display { color: #059669; }
.ar-won-timer .ar-timer-note { background: rgba(5,150,105,0.1); color: #065f46; }
.ar-finalize-card { border-color: #10b981; }
.btn-whatsapp-lg {
  padding: 16px 32px; font-size: 16px; border-radius: 14px;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================================
   WHATSAPP MODAL ENHANCED
   ============================================================ */
.wa-modal-lg { max-width: 520px; }
.wa-icon.wa-success { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.wa-icon.wa-success svg { color: #059669; }
.wa-modal-body .wa-subtitle { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.wa-steps { margin: 24px 0; text-align: left; }
.wa-step {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.wa-step:last-child { border-bottom: none; }
.wa-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2a4a7a);
  color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-step-content { flex: 1; }
.wa-step-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wa-step-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.wa-info-box {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fef3c7; border: 1px solid #fcd34d;
  border-radius: var(--radius); padding: 12px 14px;
  margin-bottom: 20px;
}
.wa-info-box svg { color: #d97706; flex-shrink: 0; margin-top: 1px; }
.wa-info-box span { font-size: 12.5px; color: #92400e; line-height: 1.5; }
.wa-actions { flex-direction: column; gap: 10px; }
.btn-whatsapp-full {
  width: 100%; justify-content: center; padding: 16px 24px;
  font-size: 15px; border-radius: 12px; text-decoration: none;
  animation: pulse-green 2s ease-in-out infinite;
}
.btn-cancel-sm {
  background: transparent; border: none; color: var(--text-light);
  font-size: 13px; cursor: pointer; padding: 8px;
}
.btn-cancel-sm:hover { color: var(--navy); }

/* App Download Modal */
.wa-icon.wa-app { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.wa-icon.wa-app svg { color: #2563eb; }
.app-security-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #86efac;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 24px 0;
  text-align: left;
}
.app-security-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-security-icon svg { color: #fff; }
.app-security-text { flex: 1; }
.app-security-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 4px;
}
.app-security-text span {
  font-size: 13px;
  color: #15803d;
  line-height: 1.4;
}

/* ============================================================
   LIVE AUCTION SIMULATION
   ============================================================ */
.ar-loading-card { text-align: center; }
.ar-loading-animation { padding: 40px 0; }
.ar-loader { position: relative; width: 100px; height: 100px; margin: 0 auto 24px; }
.ar-loader-ring {
  position: absolute; inset: 0; border: 4px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ar-loader-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.ar-loader-icon svg { width: 36px; height: 36px; }
.ar-loading-text { font-size: 14px; color: var(--text-light); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.ar-live-card { background: linear-gradient(135deg, #0f172a, #1e3a5f); }
.ar-live-card h1, .ar-live-card p { color: #fff; }
.ar-live-dot { background: #ef4444; animation: live-pulse 1s ease-in-out infinite; }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); } 50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); } }
.ar-live-label { color: #ef4444; font-weight: 700; letter-spacing: 1px; }

/* ============================================================
   LIVE AUCTION - PROFESSIONAL MOBILE-FIRST
   ============================================================ */
.live-auction {
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Top Bar - Timer & Live */
.la-top {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.la-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.la-live-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: live-blink 1s infinite;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
@keyframes live-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.la-connecting { opacity: 0.7; }
.la-timer-wrap { text-align: right; }
.la-timer {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.la-timer-loading { opacity: 0.5; }
.la-timer-urgent { animation: urgent-blink 0.5s infinite; }
@keyframes urgent-blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.la-timer-bar {
  height: 5px;
  background: rgba(0,0,0,0.3);
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}
.la-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, #fecaca 100%);
  border-radius: 3px;
  transition: width 1s linear;
  width: 100%;
}

/* Vehicle Strip */
.la-vehicle-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.la-vehicle-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}
.la-vehicle-info { flex: 1; min-width: 0; }
.la-vehicle-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.la-vehicle-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}
.la-participants {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Bids Section */
.la-bids-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: #111827;
}
.la-current-bid {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(30,64,175,0.3);
}
.la-bid-label {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}
.la-bid-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  transition: transform 0.2s, color 0.2s;
}
.la-bid-amount.la-bid-flash {
  transform: scale(1.1);
  color: #fbbf24;
}
.la-bid-leader {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  min-height: 16px;
}
.la-leader-you {
  color: #4ade80;
  font-weight: 600;
}

.la-your-bid {
  background: linear-gradient(135deg, rgba(212,149,42,0.15) 0%, rgba(212,149,42,0.08) 100%);
  border: 2px solid rgba(212,149,42,0.4);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.la-your-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}
.la-your-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.la-your-status {
  margin-top: 8px;
  min-height: 16px;
}
.la-status-wait {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.la-status-winning {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4ade80;
  font-weight: 600;
}

/* History */
.la-history {
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, #111827 0%, #0d1117 100%);
}
.la-history-header {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
}
.la-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
}
.la-history-list::-webkit-scrollbar { width: 4px; }
.la-history-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 2px; }
.la-history-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.la-history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
.la-history-item.la-h-new {
  animation: new-bid 0.5s ease-out;
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.2);
}
.la-history-item.la-h-you {
  background: linear-gradient(135deg, rgba(74,222,128,0.1) 0%, rgba(34,197,94,0.05) 100%);
  border-color: rgba(74,222,128,0.25);
}
@keyframes new-bid {
  0% { background: rgba(37,99,235,0.3); transform: translateY(-8px); opacity: 0; }
  100% { background: rgba(37,99,235,0.12); transform: translateY(0); opacity: 1; }
}
.la-h-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.la-h-icon.la-h-you-icon {
  background: linear-gradient(135deg, rgba(74,222,128,0.3) 0%, rgba(34,197,94,0.2) 100%);
  color: #4ade80;
}
.la-h-icon.la-h-start {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.25);
}
.la-h-content { flex: 1; min-width: 0; }
.la-h-text {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.la-h-time {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
  margin-top: 2px;
}
.la-h-amount {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Loading State */
.la-loading .la-vehicle-strip { opacity: 0.7; }
.la-loading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 20px;
  background: #111827;
}
.la-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255,255,255,0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.la-loading-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Desktop adjustments */
@media (min-width: 600px) {
  .live-auction { max-width: 520px; }
  .la-top { padding: 24px; }
  .la-timer { font-size: 42px; }
  .la-vehicle-strip { padding: 18px 24px; }
  .la-vehicle-thumb { width: 72px; height: 54px; }
  .la-vehicle-name { font-size: 18px; }
  .la-bids-section { padding: 24px; gap: 16px; }
  .la-bid-amount, .la-your-amount { font-size: 30px; }
  .la-history { padding: 20px 24px 24px; }
}

/* Won Animation */
.ar-won-animation {
  text-align: center; padding: 60px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.ar-confetti {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='10' cy='10' r='3' fill='%23fbbf24'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%2322c55e'/%3E%3Ccircle cx='30' cy='50' r='3' fill='%233b82f6'/%3E%3Ccircle cx='45' cy='5' r='2' fill='%23ef4444'/%3E%3C/svg%3E");
  animation: confetti-fall 2s linear infinite;
  opacity: 0.6;
}
@keyframes confetti-fall { 0% { background-position: 0 0; } 100% { background-position: 60px 120px; } }
.ar-trophy {
  width: 100px; height: 100px; margin: 0 auto 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: trophy-bounce 0.6s ease-out;
}
@keyframes trophy-bounce { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.ar-trophy svg { width: 50px; height: 50px; color: #fff; }
.ar-won-animation h1 { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: #fbbf24; margin-bottom: 8px; animation: fade-in 0.5s ease-out 0.3s both; }
.ar-won-animation h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; animation: fade-in 0.5s ease-out 0.5s both; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   PASSWORD MODAL
   ============================================================ */
.password-modal-body { text-align: center; padding: 28px 24px; }
.password-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.password-icon svg { color: #1d4ed8; }
.password-modal-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.password-modal-body > p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 24px; }

.password-input-wrap { margin-bottom: 20px; }
.password-input-wrap label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.password-digits { display: flex; justify-content: center; gap: 10px; }
.password-digit {
  width: 48px; height: 56px; border: 2px solid var(--border);
  border-radius: 12px; font-size: 24px; font-weight: 700;
  text-align: center; color: var(--navy); background: #fff;
  transition: all 0.2s; outline: none;
  -webkit-appearance: none;
}
.password-digit:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,149,42,0.15); }
.password-digit.filled { background: #fef9ee; border-color: var(--accent); }
.password-error { font-size: 12px; color: #dc2626; margin-top: 10px; display: none; }
.password-error.show { display: block; }

.password-info {
  display: flex; align-items: flex-start; gap: 8px;
  background: #f0f9ff; border: 1px solid #bae6fd;
  border-radius: var(--radius); padding: 12px 14px;
  margin-bottom: 20px; text-align: left;
}
.password-info svg { color: #0284c7; flex-shrink: 0; margin-top: 1px; }
.password-info span { font-size: 12px; color: #0369a1; line-height: 1.5; }

.btn-confirm-password {
  width: 100%; padding: 16px 24px;
  background: linear-gradient(135deg, var(--whatsapp), #1da851);
  color: #fff; border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.btn-confirm-password:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-confirm-password:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.8s linear infinite; display: inline-block;
}
#btnPasswordLoading { display: inline-flex; align-items: center; gap: 8px; }
