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

:root {
  --bg: #09090b;
  --surface: #111113;
  --surface2: #18181b;
  --fg: #fafafa;
  --muted: #71717a;
  --border: #27272a;
  --accent: #FF6B2B;
  --accent-dim: rgba(255, 107, 43, 0.12);
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-text h1 br { display: block; }

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-silhouette svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 40px 60px rgba(255, 107, 43, 0.1));
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--muted);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 48px 0 0;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
}

/* FEATURES */
.features {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 64px;
}

.features-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--fg);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--bg);
  padding: 40px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--surface);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.services-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.services-list span {
  font-size: 0.85rem;
  color: var(--fg);
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
}

.services-list .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  padding: 0;
  border: none;
  background: var(--accent);
}

/* DIFFERENCE */
.difference {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.diff-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.diff-left h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--fg);
  line-height: 1.1;
}

.diff-right p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.diff-right p:last-child { margin-bottom: 0; }

/* PACKAGES */
.packages {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.packages-header {
  margin-bottom: 56px;
}

.pkg-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.packages-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--fg);
  margin-bottom: 16px;
}

.pkg-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.pkg-card {
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.2s;
  position: relative;
}

.pkg-card:hover { background: var(--surface); }

.pkg-card--featured {
  background: var(--surface2);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* Subtle glow on the featured card */
.pkg-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,107,43,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.pkg-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-icon {
  margin-bottom: 4px;
}

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.pkg-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 40px;
  width: fit-content;
}

.pkg-badge--basic {
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
}

.pkg-badge--featured {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,43,0.25);
}

.pkg-badge--premium {
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pkg-currency {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.pkg-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pkg-unit {
  font-size: 0.85rem;
  color: var(--muted);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg-features li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.pkg-card--featured .pkg-features li::before {
  opacity: 1;
}

.pkg-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.pkg-btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.pkg-btn--phone {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.pkg-btn--phone:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.pkg-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 0 40px;
}

/* CLOSING */
.closing {
  padding: 100px 0 120px;
  background: var(--surface);
  text-align: center;
}

.closing h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.2;
}

.closing p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

/* CLOSING CTAs */
.closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn--primary {
  background: #25D366;
  color: #fff;
}

.cta-btn--primary:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.cta-btn--secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .hero { padding: 60px 0 40px; }
  .hero-visual { order: -1; }
  .car-silhouette svg { max-width: 320px; }
  .hero-stats { padding: 32px 24px 0; gap: 0; flex-wrap: wrap; }
  .stat { padding: 0 24px 0 0; }
  .stat-value { font-size: 1.4rem; }

  .features { padding: 64px 0; }
  .features-header { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px; }
  .services-bar { padding: 0 24px; }

  .difference { padding: 64px 0; }
  .difference-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }

  .closing { padding: 64px 24px 80px; }

  .packages { padding: 64px 0; }
  .packages-inner { padding: 0 24px; }
  .packages-header { margin-bottom: 36px; }
  .packages-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .pkg-card { padding: 28px 24px; }
  .pkg-card--featured { border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .pkg-ctas { flex-direction: row; }
  .pkg-btn { flex: 1; padding: 11px 12px; font-size: 0.82rem; }
  .pkg-note { padding: 0; }

  .closing-ctas { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .cta-btn { justify-content: center; }

  .footer-inner { padding: 0 24px; flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .services-list .dot { display: none; }
  .services-list { gap: 8px; }
  .pkg-ctas { flex-direction: column; }
}