/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #111827; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --red: #EB0A1E;
  --red-dark: #c5081a;
  --dark: #0a0f1e;
  --dark2: #111827;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --header-h: 70px;
  --banner-h: 40px;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.top-banner a { color: #fff; font-weight: 800; text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,15,30,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--header-h);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line1 { font-size: .7rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; }
.logo-line2 { font-size: 1.05rem; font-weight: 900; color: #fff; }
.logo-light .logo-line1, .logo-light .logo-line2 { color: #fff; }
.logo-light .logo-line1 { color: rgba(255,255,255,.6); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 20px; flex: 1; }
.nav-dropdown { position: relative; }
.nav-btn {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-radius: 8px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-btn:hover, .nav-btn.active { color: #fff; background: rgba(255,255,255,.08); }
.chevron { font-size: .7rem; margin-top: 1px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all .15s;
}
.dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Header CTAs */
.header-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 10px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-wa:hover { background: var(--wa-dark); }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  white-space: nowrap;
}
.btn-call:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #111827;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0 24px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav { padding: 0 24px; }
.mobile-section { margin-bottom: 20px; }
.mobile-section-title { font-size: .72rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.mobile-section a { display: block; padding: 9px 0; color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-section a:hover { color: #fff; }
.mobile-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  font-size: .95rem;
}
.btn-call-full {
  display: block;
  text-align: center;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  font-size: .95rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h) - var(--banner-h));
  min-height: 500px;
  max-height: 780px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,15,30,.75) 0%, rgba(10,15,30,.3) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.hero-text { max-width: 560px; }
.hero-eyebrow { font-size: .8rem; font-weight: 700; color: var(--wa); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 10px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.hero-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ===== SECTION LAYOUT ===== */
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { font-size: .78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark2); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }
.section-gray { background: var(--gray-light); }

/* ===== VEHICLE CARD ===== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.vehicle-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vehicle-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.badge-new { background: var(--red); color: #fff; }
.badge-hybrid { background: #16a34a; color: #fff; }
.badge-ev { background: #2563eb; color: #fff; }
.vehicle-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vehicle-card-meta { font-size: .78rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.vehicle-card-name { font-size: 1.2rem; font-weight: 800; color: var(--dark2); margin-bottom: 8px; }
.vehicle-card-desc { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.vehicle-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag { background: var(--gray-light); color: #374151; font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.vehicle-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.vehicle-price { font-size: 1.1rem; font-weight: 900; color: var(--dark2); }
.vehicle-price span { font-size: .72rem; font-weight: 500; color: var(--gray); display: block; }
.btn-details {
  background: var(--red);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background .2s;
}
.btn-details:hover { background: var(--red-dark); }

/* ===== CATEGORY FILTER ===== */
.cat-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.cat-btn {
  padding: 9px 20px;
  border-radius: 24px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.cat-btn:hover, .cat-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--red); padding: 32px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: #fff; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; margin-top: 4px; }

/* ===== DEALS CARD ===== */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.deal-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.deal-card-header { padding: 24px; display: flex; align-items: center; gap: 14px; }
.deal-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; }
.deal-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.deal-sub { font-size: .82rem; color: rgba(255,255,255,.8); }
.deal-body { background: #fff; padding: 20px 24px; }
.deal-body p { font-size: .9rem; color: var(--gray); margin-bottom: 16px; }
.deal-detail { background: var(--gray-light); border-radius: 10px; padding: 12px 16px; margin-bottom: 14px; }
.deal-detail-label { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.deal-detail-val { font-size: 1.1rem; font-weight: 900; color: var(--dark2); }

/* ===== PAYMENT CARDS ===== */
.payment-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.payment-card-header {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-icon-inner {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-card-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.payment-card-sub { font-size: .85rem; color: rgba(255,255,255,.8); }
.payment-card-body { padding: 24px 28px; }
.payment-card-body p { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }
.copy-row {
  background: var(--gray-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.copy-label { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.copy-val { font-family: monospace; font-weight: 800; font-size: .95rem; color: var(--dark2); word-break: break-all; }
.copy-btn {
  background: var(--gray-light);
  border: 1px solid var(--border);
  color: #374151;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
}
.copy-btn:hover { background: #e5e7eb; }
.copy-btn.copied { background: #16a34a; color: #fff; border-color: #16a34a; }
.btn-wa-confirm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 10px;
  transition: background .2s;
}
.btn-wa-confirm:hover { background: var(--wa-dark); }
.bank-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

/* ===== SUPPORT / CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.contact-card p { font-size: .88rem; color: var(--gray); margin-bottom: 16px; }
.contact-card a.btn-card {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: .9rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== DEALERS ===== */
.dealer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.dealer-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.dealer-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.dealer-card .dealer-addr { font-size: .85rem; color: var(--gray); margin-bottom: 14px; }
.dealer-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dealer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  transition: all .2s;
}
.dealer-btn-wa { background: var(--wa); color: #fff; }
.dealer-btn-wa:hover { background: var(--wa-dark); }
.dealer-btn-call { background: var(--gray-light); color: var(--dark2); border: 1px solid var(--border); }
.dealer-btn-call:hover { background: #e5e7eb; }

/* ===== VEHICLE DETAIL ===== */
.detail-hero {
  height: 460px;
  position: relative;
  overflow: hidden;
  background: #1f2937;
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.detail-hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.detail-hero-info {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
}
.detail-hero-year { font-size: .85rem; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 6px; }
.detail-hero-name { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.1; }
.detail-hero-price { font-size: 1.4rem; font-weight: 800; color: var(--wa); margin-top: 8px; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 24px; max-width: 1200px; margin: 0 auto; }
.detail-main {}
.detail-sidebar { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.detail-section { margin-bottom: 36px; }
.detail-section h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.highlight-item {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.highlight-item::before { content: '✓'; color: #16a34a; font-weight: 900; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-item { background: var(--gray-light); border-radius: 10px; padding: 14px 16px; }
.spec-label { font-size: .72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.spec-val { font-size: 1rem; font-weight: 800; color: var(--dark2); }
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.sidebar-price { font-size: 1.8rem; font-weight: 900; color: var(--dark2); margin-bottom: 4px; }
.sidebar-price-note { font-size: .78rem; color: var(--gray); margin-bottom: 20px; }
.sidebar-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
  transition: all .2s;
}
.sidebar-btn-wa { background: var(--wa); color: #fff; }
.sidebar-btn-wa:hover { background: var(--wa-dark); }
.sidebar-btn-call { background: var(--gray-light); color: var(--dark2); border: 1px solid var(--border); }
.sidebar-btn-call:hover { background: #e5e7eb; }
.sidebar-btn-pay { background: var(--red); color: #fff; }
.sidebar-btn-pay:hover { background: var(--red-dark); }

/* ===== WA CTA BANNER ===== */
.wa-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  border-radius: 20px;
  padding: 28px 32px;
  flex-wrap: wrap;
  text-decoration: none;
  transition: opacity .2s;
}
.wa-banner:hover { opacity: .92; }
.wa-banner-left { display: flex; align-items: center; gap: 16px; }
.wa-banner-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-banner h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.wa-banner p { color: rgba(255,255,255,.85); font-size: .9rem; }
.wa-banner-btn {
  background: #fff;
  color: var(--wa-dark);
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 64px 24px 56px;
  text-align: center;
}
.page-hero-eyebrow { font-size: .8rem; font-weight: 700; color: var(--wa); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); padding: 64px 24px 32px; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; margin: 14px 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.social-icon:hover { background: rgba(255,255,255,.14); color: #fff; }
.social-wa { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.3); color: var(--wa); }
.social-wa:hover { background: var(--wa); color: #fff; }
.footer-col h4 { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: .88rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ===== FAB WhatsApp ===== */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ===== MISC UTILS ===== */
.alert-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: #c2410c;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color .2s;
}
.back-link:hover { color: var(--dark2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}
@media (max-width: 768px) {
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  :root { --header-h: 64px; }
  .hero { max-height: 600px; }
  .hero-content { padding: 0 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .highlights-list, .specs-grid { grid-template-columns: 1fr; }
  .detail-hero { height: 320px; }
  .wa-banner { padding: 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .payment-card-body { padding: 16px; }
  .payment-card-header { padding: 16px; }
  .page-hero { padding: 40px 20px 36px; }
  .section { padding: 48px 20px; }
}
