:root {
  --orange: #ff5a1f;
  --orange-dark: #e54a10;
  --ink: #1a1a1a;
  --ink-soft: #444;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #fafafa;
  --card: #ffffff;
  --dark: #111418;
  --dark-card: #1a1f25;
  --dark-line: #2a3138;
  --max: 980px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

a { color: var(--orange-dark); }
a:hover { color: var(--orange); }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 14px; }
h1 { font-size: clamp(34px, 6.5vw, 60px); font-weight: 800; }
h1 em { font-style: normal; color: var(--orange); }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }

p { margin: 0 0 12px; }

.nav {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--orange); color: white;
  font-weight: 800; font-size: 20px;
}
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }

.nav-cta {
  background: var(--ink); color: white; text-decoration: none;
  padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
}
.nav-cta:hover { background: var(--orange); color: white; }

.hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.kicker {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 90, 31, 0.1); color: var(--orange-dark);
  font-weight: 600; font-size: 13px; margin-bottom: 18px;
}
.lead {
  font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft);
  max-width: 640px; margin-bottom: 26px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.btn {
  display: inline-block; text-decoration: none;
  padding: 14px 26px; border-radius: 12px;
  font-weight: 700; font-size: 16px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); color: white; }
.btn-ghost { background: white; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; padding: 16px; font-size: 17px; }

.microcopy { color: var(--muted); font-size: 14px; }
.microcopy strong { color: var(--ink); }

.contact-line {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.contact-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: white; border: 1.5px solid var(--line);
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 15px;
  transition: border-color 0.15s, background 0.15s;
}
.contact-pill:hover { border-color: var(--ink); color: var(--ink); }
.contact-pill strong { color: var(--ink); }
.contact-wa {
  background: #25D366; border-color: #25D366; color: white;
}
.contact-wa:hover { background: #1ebe5a; border-color: #1ebe5a; color: white; }

.fab-whatsapp {
  position: fixed; bottom: 22px; right: 22px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.18);
  z-index: 100;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.fab-whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  background: #1ebe5a;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0,0,0,0.22);
}
@media (max-width: 560px) {
  .fab-whatsapp { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .fab-whatsapp svg { width: 28px; height: 28px; }
}

.how { padding: 56px 0; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.steps li {
  padding: 22px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line);
}
.step-num {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: white;
  font-weight: 800; font-size: 15px; margin-bottom: 12px;
}
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.order, .driver { padding: 56px 0; }
.driver { background: var(--dark); color: white; }
.driver h2, .driver .lead-sm { color: white; }

.lead-sm { color: var(--ink-soft); font-size: 16px; margin-bottom: 22px; }
.driver .lead-sm { color: #c8cdd3; }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.card-dark {
  background: var(--dark-card); border-color: var(--dark-line); color: white;
}

label {
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 600; font-size: 14px;
}
.card-dark label { color: #e5e9ee; }

input[type="text"], input[type="tel"], textarea, select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white; color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.card-dark input, .card-dark textarea, .card-dark select {
  background: #0f1318; border-color: var(--dark-line); color: white;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
}
textarea { resize: vertical; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.geo-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; align-self: flex-start;
  padding: 9px 14px; font: inherit; font-size: 13px; font-weight: 600;
  background: var(--bg); color: var(--ink-soft);
  border: 1px dashed var(--line); border-radius: 9px;
  cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.geo-btn:hover  { background: white; border-color: var(--orange); color: var(--orange-dark); }
.geo-btn:disabled { cursor: progress; opacity: 0.75; }
.geo-loading { background: var(--bg); color: var(--ink-soft); }
.geo-ok  { background: #dcfce7; color: #166534; border-color: #86efac; border-style: solid; }
.geo-err { background: #fee2e2; color: #991b1b; border-color: #fca5a5; border-style: solid; }
.card-dark .geo-btn { background: #0f1318; color: #c8cdd3; border-color: var(--dark-line); }
.card-dark .geo-btn:hover { background: #161c22; }

.fineprint { color: var(--muted); font-size: 13px; margin: 0; }
.card-dark .fineprint { color: #8b929a; }

.trust { padding: 56px 0; background: white; border-top: 1px solid var(--line); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.trust h3 { color: var(--ink); }
.trust p { color: var(--ink-soft); margin: 0; }

.footer { padding: 36px 0 56px; background: var(--bg); border-top: 1px solid var(--line); text-align: center; }
.footer p { margin: 0 0 4px; color: var(--ink-soft); }
.footer-sm { font-size: 13px; color: var(--muted); }
.footer a { color: var(--orange-dark); }
