@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:           #07080E;
  --bg-alt:       #0C0F18;
  --bg-card:      #111520;
  --bg-elevated:  #181C2A;
  --ink:          #E8ECF4;
  --ink-muted:    #7A8394;
  --accent:       #F0A500;
  --accent-light: rgba(240,165,0,0.10);
  --accent-2:     #EF4444;
  --white:        #FFFFFF;
  --border:       rgba(255,255,255,0.06);
  --border-accent:rgba(240,165,0,0.28);
  --r:            10px;
  --max:          1180px;
  --shadow:       0 8px 40px rgba(0,0,0,0.6);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── HEADER ───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-badge {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--ink-muted);
  transition: color .2s, background .2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--bg-card);
}

/* ── BUTTON ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn.secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn.secondary:hover { border-color: var(--border-accent); }

.whatsapp-btn {
  background: #25D366 !important;
  color: #fff !important;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  margin: 28px 0 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

/* diagonal stripe texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(240,165,0,0.07) 0%, transparent 55%),
    repeating-linear-gradient(
      -48deg,
      transparent,
      transparent 55px,
      rgba(255,255,255,0.013) 55px,
      rgba(255,255,255,0.013) 56px
    );
  z-index: 0;
}

/* amber glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 64px 72px;
  gap: 48px;
}

.hero-inner {
  flex: 1.2;
  display: grid;
  gap: 22px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-desc {
  color: var(--ink-muted);
  font-size: 16px;
  max-width: 400px;
  line-height: 1.65;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 2px;
  color: var(--accent);
  border: 1.5px solid var(--border-accent);
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--accent-light);
  width: fit-content;
  transition: background .2s, border-color .2s;
}

.hero-phone:hover {
  background: rgba(240,165,0,0.16);
  border-color: var(--accent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(240,165,0,0.12));
  animation: float 7s ease-in-out infinite;
}

/* ── STATS STRIP ──────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0 64px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}

.stat-item:hover { background: var(--bg-elevated); }
.stat-item:hover::before { opacity: 1; }
.stat-item:last-child { border-right: none; }

.stat-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin: 0 0 6px;
}

.stat-item p {
  margin: 0;
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── SECTION ──────────────────────────────────────── */
.section {
  margin-bottom: 72px;
}

.section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 50px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── GRID ─────────────────────────────────────────── */
.grid { display: grid; gap: 14px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* ── CARD ─────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color .25s, transform .25s, background .25s;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--bg-elevated);
}

.card:hover::after { opacity: 1; }

.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-icon { font-size: 30px; }

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

/* ── WHY US ───────────────────────────────────────── */
.why-us-centered {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 60px;
}

.vehicle-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
}

.main-image-container {
  flex: 1.5;
  animation: float 6s ease-in-out infinite;
}

.main-image-container img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(240,165,0,0.10));
}

.vehicle-badges {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── MINI BADGE ───────────────────────────────────── */
.mini-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .2s, transform .2s, color .2s;
}

.mini-badge:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateX(4px);
}

/* ── HIGHLIGHT BOX ────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--accent) 0%, #C97D00 100%);
  color: #000;
  padding: 52px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.highlight-box h3 {
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-box p {
  color: rgba(0,0,0,0.6);
  margin: 0;
  font-size: 15px;
}

/* ── PHONE HIGHLIGHT ──────────────────────────────── */
.phone-highlight {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.18);
  color: #000 !important;
  padding: 10px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1.5px solid rgba(0,0,0,0.12);
}

/* ── KEYWORD ──────────────────────────────────────── */
.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword {
  padding: 7px 14px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.3px;
}

.keyword-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--border-accent);
  margin-bottom: 6px;
}

/* ── CHECK LIST ───────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-muted);
}

.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SPLIT RICH ───────────────────────────────────── */
.split-rich {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 56px;
  border-radius: 20px;
}

.feature-image-group {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.main-image {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.main-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5));
}

.image-features { display: grid; gap: 10px; }

/* ── PRICE TABLE ──────────────────────────────────── */
.price-list { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  min-width: 120px;
  font-size: 14px;
}

.price-table th {
  background: var(--bg-elevated);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.price-tag {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.faq-item:hover { border-color: var(--border-accent); background: var(--bg-elevated); }
.faq-item.active { border-color: var(--border-accent); }

.faq-item h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item h4::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item.active h4::after { content: '−'; }

.faq-content {
  display: none;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.active .faq-content { display: block; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 14px;
  position: relative;
  transition: border-color .2s, transform .2s;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; left: 22px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--ink-muted);
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  position: relative;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.user-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  margin-top: 100px;
  padding: 72px 0 36px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}

.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-about strong { color: var(--ink); }

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color .2s, padding-left .15s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.3px;
}

/* ── FORM ─────────────────────────────────────────── */
.form { display: grid; gap: 12px; }

input, textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  background: var(--bg-elevated);
  color: var(--ink);
  transition: border-color .2s;
}

input::placeholder, textarea::placeholder { color: var(--ink-muted); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  background: var(--bg-card);
}

textarea { min-height: 120px; resize: vertical; }

.note {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── HELPERS ──────────────────────────────────────── */
.mt-30 { margin-top: 30px; }
.mt-60 { margin-top: 60px; }
.orb   { display: none; }

/* ── MOBILE FLOATING ACTIONS ──────────────────────── */
.mobile-actions {
  display: none !important;
  position: fixed;
  bottom: 26px;
  left: 0; right: 0;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}

.whatsapp-float, .phone-float {
  pointer-events: auto;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
  text-decoration: none;
}

.whatsapp-float { background: #25D366; color: #fff; }
.phone-float {
  background: var(--bg-card);
  color: var(--accent);
  border: 2px solid var(--border-accent);
  animation: pulse 2.5s infinite;
}

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(240,165,0,0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(240,165,0,0);   }
  100% { box-shadow: 0 0 0 0   rgba(240,165,0,0);    }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.fade-in { animation: rise 0.75s ease both; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .nav-links { display: none !important; }

  .split-rich {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 40px;
  }

  .feature-image-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    padding: 48px 28px;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-phone   { margin-inline: auto; }
  .hero-cta     { justify-content: center; }
  .hero-image   { justify-content: center; }
  .hero-desc    { margin-inline: auto; }

  .stats-strip  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .grid.cols-3,
  .grid.cols-2 { grid-template-columns: 1fr; }

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

  .vehicle-showcase { flex-direction: column; }
  .vehicle-badges   { grid-template-columns: 1fr; width: 100%; }

  .why-us-centered { padding: 48px 24px; }

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

  .mobile-actions { display: flex !important; }
}

@media (max-width: 600px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .highlight-box { padding: 36px 24px; }

  .hero-layout { padding: 40px 20px; }
}
