:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;

  --primary: #0f766e;
  --primary-dark: #075e57;
  --accent: #6bcf32;
  --accent-2: #a3e635;

  --card: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] {
  --bg: #080d10;
  --bg-soft: #0d1519;
  --text: #f8fafc;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --card: #10191f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-style: italic;
  letter-spacing: -1.5px;
  font-size: 30px;
}

.logo-lines {
  width: 34px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.logo-lines::before,
.logo-lines::after,
.logo-lines {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
}

.logo-lines::before,
.logo-lines::after {
  content: "";
  position: absolute;
  right: 0;
  height: 4px;
}

.logo-lines {
  height: 4px;
}

.logo-lines::before {
  top: -7px;
  width: 26px;
}

.logo-lines::after {
  top: 7px;
  width: 18px;
}

.logo-text {
  color: var(--primary);
}

.logo-text span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 40px rgba(107, 207, 50, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  background: var(--card);
}

.btn-light {
  background: #ffffff;
  color: #0f172a;
}

.btn-dark {
  background: #0f172a;
  color: white;
}

/* Hero */

.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-2) 18%, transparent);
  color: var(--primary);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0 22px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -5px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 13px;
}

/* Hero Art */

.hero-art {
  min-height: 560px;
  position: relative;
  border-radius: 36px;
  background:
    radial-gradient(circle at 70% 52%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    radial-gradient(circle at 40% 40%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 35%);
}

.speed {
  position: absolute;
  right: 3%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent));
  transform: skewX(-24deg);
  opacity: 0.7;
}

.speed-1 {
  top: 150px;
  width: 440px;
}

.speed-2 {
  top: 205px;
  width: 350px;
  opacity: 0.5;
}

.speed-3 {
  top: 260px;
  width: 260px;
  opacity: 0.38;
}

.moto {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 620px;
  height: 350px;
  transform: translate(-50%, -50%);
}

.shadow {
  position: absolute;
  left: 95px;
  bottom: 38px;
  width: 460px;
  height: 42px;
  background: rgba(15, 23, 42, 0.13);
  filter: blur(18px);
  border-radius: 999px;
}

.wheel {
  position: absolute;
  bottom: 38px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #0b1220;
  box-shadow: inset 0 0 0 18px #1f2937, inset 0 0 0 42px #f8fafc, inset 0 0 0 56px #94a3b8;
  z-index: 4;
}

.wheel-left {
  left: 100px;
}

.wheel-right {
  right: 70px;
}

.bike-body {
  position: absolute;
  left: 180px;
  top: 175px;
  width: 260px;
  height: 74px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 80px 110px 50px 50px;
  transform: skewX(-12deg);
  z-index: 6;
}

.bike-front {
  position: absolute;
  right: 78px;
  top: 153px;
  width: 150px;
  height: 95px;
  background: var(--primary);
  border-radius: 30px 90px 50px 24px;
  transform: skewX(-10deg);
  z-index: 6;
}

.bike-front::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 28px;
  width: 44px;
  height: 16px;
  border-radius: 999px;
  background: #f8fafc;
}

.seat {
  position: absolute;
  left: 232px;
  top: 137px;
  width: 175px;
  height: 34px;
  background: #111827;
  border-radius: 999px 999px 18px 18px;
  z-index: 8;
}

.handle {
  position: absolute;
  right: 52px;
  top: 125px;
  width: 88px;
  height: 12px;
  background: #111827;
  border-radius: 999px;
  transform: rotate(-22deg);
  z-index: 9;
}

.courier {
  position: absolute;
  left: 215px;
  top: 35px;
  width: 240px;
  height: 240px;
  z-index: 12;
}

.helmet {
  position: absolute;
  left: 88px;
  top: 0;
  width: 88px;
  height: 70px;
  background: #111827;
  border-radius: 60px 60px 28px 28px;
}

.helmet::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 24px;
  width: 52px;
  height: 20px;
  background: #f8fafc;
  border-radius: 999px;
}

.body {
  position: absolute;
  left: 72px;
  top: 70px;
  width: 105px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 44px 44px 32px 32px;
  transform: rotate(-8deg);
}

.bag {
  position: absolute;
  left: -4px;
  top: 86px;
  width: 96px;
  height: 86px;
  background: #ffffff;
  border: 4px solid #e5e7eb;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-style: italic;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.bag span {
  color: var(--primary);
}

.bag b {
  color: var(--accent);
}

.arm {
  position: absolute;
  left: 142px;
  top: 92px;
  width: 118px;
  height: 20px;
  background: var(--primary);
  border-radius: 999px;
  transform: rotate(24deg);
}

.leg-one,
.leg-two {
  position: absolute;
  width: 110px;
  height: 22px;
  background: #111827;
  border-radius: 999px;
}

.leg-one {
  left: 112px;
  top: 182px;
  transform: rotate(28deg);
}

.leg-two {
  left: 70px;
  top: 183px;
  transform: rotate(132deg);
}

/* Sections */

.section {
  padding: 90px 0;
}

.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head span {
  display: inline-flex;
  color: var(--primary);
  background: color-mix(in srgb, var(--accent-2) 18%, transparent);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -2px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.mini-card,
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-2) 18%, transparent);
  font-size: 25px;
  margin-bottom: 22px;
}

.card h3,
.mini-card h3,
.step h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.card p,
.mini-card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.step b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 18px;
}

/* CTA */

.cta {
  padding: 80px 0;
}

.cta-box {
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(107, 207, 50, 0.3);
}

.cta-box h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -1.5px;
}

.cta-box p {
  margin: 0;
  opacity: 0.92;
}

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

/* Footer */

.footer {
  padding: 70px 0 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 42px;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.8;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer h3 {
  margin: 0 0 16px;
}

.footer-logo {
  margin-bottom: 16px;
}

.copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 950;
  box-shadow: 0 20px 50px rgba(107, 207, 50, 0.35);
  z-index: 60;
}

/* Responsive */

@media (max-width: 1020px) {
  .hero-grid,
  .cards-4,
  .cards-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 460px;
  }

  .moto {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .nav-menu {
    display: none;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: auto;
    padding: 16px 0;
  }

  .logo {
    font-size: 24px;
  }

  .hero {
    padding: 54px 0 60px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -3px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-art {
    min-height: 330px;
  }

  .moto {
    transform: translate(-50%, -50%) scale(0.58);
  }

  .speed-1 {
    width: 280px;
  }

  .speed-2 {
    width: 220px;
  }

  .speed-3 {
    width: 160px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 28px;
  }
}