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

html {
  font-family: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #070d07;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 75% 55% at 50% 20%, rgba(22,163,74,.16) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,.35) 0%, transparent 70%),
    #070d07;
}

/* Floating tag decorations */
.deco {
  position: absolute;
  top: 16%;
  width: 58px;
  opacity: .8;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}
.deco-left  { left:  -6px; transform: rotate(-22deg); }
.deco-right { right: -6px; transform: rotate(22deg);  }

/* Access badge pill */
.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(34,197,94,.45);
  background: rgba(22,163,74,.1);
  color: #86efac;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 1.6rem;
}

/* Logo circle */
.logo-wrap { display: flex; justify-content: center; margin-bottom: .5rem; }
.logo-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,.45);
  background: rgba(22,163,74,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 48px rgba(34,197,94,.18);
}
.icon-car { width: 66px; height: auto; }

/* Brand */
.brand-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: #d1fae5;
  margin-bottom: .9rem;
}
.brand-label span { color: #22c55e; }

/* Headline */
h1 {
  font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: .85rem;
}
.txt-green { color: #22c55e; }
.br-mobile { display: block; }

/* Subtitle */
.hero-sub {
  font-size: .95rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}
.hero-sub strong { color: #86efac; }

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  padding: 1rem 1.6rem;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .07em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(34,197,94,.32), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .15s ease, box-shadow .15s ease;
  margin-bottom: 1rem;
}
.cta-btn:hover, .cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(34,197,94,.42), 0 4px 12px rgba(0,0,0,.4);
  outline: 2px solid #4ade80;
  outline-offset: 3px;
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* Trust */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}
.sep { color: #4b5563; }
.trust-sm { font-size: .78rem; margin-bottom: 0; margin-top: .9rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(34,197,94,.16);
  border-radius: 12px;
  padding: .8rem .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-icon  { font-size: 1.1rem; }
.stat-card strong { font-size: 1.05rem; font-weight: 800; }
.stat-card small  { font-size: .68rem; color: #9ca3af; text-align: center; line-height: 1.3; }

/* ─── SECOND SECTION ─── */
.second-sec {
  background: #0a130a;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(34,197,94,.1);
}
.second-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.second-illo { width: 260px; max-width: 82%; }
.illo-car    { width: 100%; height: auto; }

.second-copy { width: 100%; max-width: 440px; }
.second-copy h2 {
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .9rem;
}
.second-copy p {
  font-size: .9rem;
  color: #9ca3af;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #060c06;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(34,197,94,.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #d1fae5;
}
.brand-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(34,197,94,0.08), 0 2px 6px rgba(0,0,0,0.25);
}
.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 100%;
}

@media (max-width: 520px) {
  .brand-logo { width: 88px; height: 88px; }
  .footer-logo { width: 28px; height: 28px; }
}
.footer-logo-c {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22,163,74,.2);
  border: 1px solid rgba(34,197,94,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.footer-copy { font-size: .72rem; color: #6b7280; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.social-icon:hover { background: rgba(34,197,94,.2); color: #22c55e; }
.social-icon svg   { width: 15px; height: 15px; }

/* ─── Responsive ─── */
@media (min-width: 560px) {
  .second-inner { flex-direction: row; text-align: left; align-items: center; }
  .trust-sm     { justify-content: flex-start; }
  .cta-btn      { width: auto; }
}

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .br-mobile    { display: none; }
}