:root {
  --green: #199675;
  --green-dark: #0f6b52;
  --green-soft: #e8f6f1;
  --yellow: #f5c518;
  --ink: #141414;
  --muted: #5b6570;
  --line: #e6ebe9;
  --bg: #f6f8f7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 40, 32, 0.08);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 20px;
}

.brand img { height: 76px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #33403c;
  font-weight: 600;
  font-size: 15px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(25, 150, 117, 0.25);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d8e2de;
}

.hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(25, 150, 117, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(245, 197, 24, 0.18), transparent 24%),
    linear-gradient(180deg, #f3faf7 0%, #fff 72%);
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

h1 em {
  font-style: normal;
  color: var(--green);
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  color: #3d4a46;
  font-size: 14px;
  font-weight: 600;
}

.phone {
  background: #111;
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow);
  color: #fff;
}

.phone-screen {
  background: linear-gradient(180deg, #1c2a26, #12201c);
  border-radius: 26px;
  min-height: 460px;
  padding: 22px 18px;
}

.phone-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #8ee0c8;
  font-size: 12px;
}

.phone h3 {
  margin: 10px 0 18px;
  font-size: 26px;
}

.phone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
}

.phone-card strong { display: block; font-size: 15px; }
.phone-card span { color: #b7c7c1; font-size: 13px; }

.section { padding: 72px 0; }
.section.alt { background: var(--bg); }

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.section .intro {
  margin-top: 12px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 17px;
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

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

.card, .stat, .step, .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat { padding: 24px; }
.stat b { display: block; font-size: 32px; color: var(--green); }
.stat span { color: var(--muted); font-size: 14px; }

.card { padding: 24px; }
.emoji { font-size: 28px; margin-bottom: 12px; }
.card h3, .step h3 { font-size: 20px; margin-bottom: 8px; }
.card p, .step p, .faq-item p { color: var(--muted); }

.step {
  padding: 24px;
  counter-increment: ride;
}
.step b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.places {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.places span {
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
}

.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 22px 20px; }

.apps {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  background: #111;
  color: #fff;
  border-radius: 32px;
  padding: 42px;
}

.apps p { color: #c8d4cf; margin-top: 12px; }
.apps .hero-actions { margin-top: 22px; }

.footer {
  background: #111;
  color: #d7e0dc;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  height: 84px;
  width: auto;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
}

.footer strong { color: #fff; display: block; margin-bottom: 12px; }
.footer a { display: block; margin: 8px 0; color: #c8d4cf; }
.footer a:hover { color: #fff; }
.footer .copy {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
  font-size: 13px;
  color: #9aa8a3;
}

.menu-btn { display: none; }

.negocio {
  padding: 48px 0 80px;
  max-width: 640px;
}
.negocio h1 { margin: 8px 0 12px; }
.negocio-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.negocio-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}
.negocio-form input[type="text"],
.negocio-form input[type="tel"],
.negocio-form input[type="password"],
.negocio-form input:not([type]) {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.negocio-form fieldset {
  border: 0;
  padding: 0;
}
.negocio-form legend {
  font-weight: 800;
  margin-bottom: 10px;
}
.negocio-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.negocio-types label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}
.negocio-msg { font-weight: 700; }
.negocio-msg.is-ok { color: var(--green-dark); }
.negocio-msg.is-err { color: #b91c1c; }

@media (max-width: 900px) {
  .nav, .top-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-grid, .grid-4, .grid-3, .grid-2, .apps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 108px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  h1 { max-width: none; }
  .brand img { height: 60px; }
  .footer-logo { height: 68px; }
}
