:root {
  --primary: #ff5a1f;
  --primary-dark: #e84910;
  --dark: #101828;
  --text: #344054;
  --muted: #667085;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e4e7ec;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,231,236,.8);
  transition: .25s ease;
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(16,24,40,.08);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.logo > span:last-child > span {
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  color: #475467;
}

.nav-links a {
  transition: .2s;
}

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

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 10px;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 2px;
  display: block;
  margin: 5px;
  background: var(--dark);
}

.hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,90,31,.18), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -3px;
  margin-bottom: 24px;
}

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

.hero-content > p {
  max-width: 620px;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255,90,31,.26);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 23px;
  color: var(--dark);
}

.hero-stats span {
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  background: var(--dark);
  padding: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.delivery-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    #172033;
  background-size: 36px 36px;
}

.map-line {
  position: absolute;
  width: 65%;
  height: 180px;
  left: 18%;
  top: 28%;
  border: 4px dashed rgba(255,90,31,.9);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.pin {
  position: absolute;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(255,90,31,.3);
}

.pin::after {
  content: attr(class);
}

.pin.start {
  left: 12%;
  bottom: 18%;
}

.pin.end {
  right: 12%;
  top: 16%;
  background: #12b76a;
}

.pin.start, .pin.end {
  font-size: 0;
}

.pin.start::before, .pin.end::before {
  content: "A";
  transform: rotate(45deg);
  font-size: 16px;
}

.pin.end::before {
  content: "B";
}

.scooter {
  position: absolute;
  left: 48%;
  top: 45%;
  font-size: 64px;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,.35));
}

.status-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
}

.status-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 6px rgba(18,183,106,.12);
}

.progress {
  height: 8px;
  margin: 16px 0;
  border-radius: 99px;
  background: #eaecf0;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--primary);
}

.status-info {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.status-info b {
  color: var(--dark);
}

.trust-strip {
  background: var(--primary);
  color: var(--white);
}

.trust-items {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}

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

.section-head h2, .calculator-grid h2, .about-content h2, .contact-copy h2 {
  color: var(--dark);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.section-head p, .muted {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,90,31,.4);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,90,31,.1);
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.calculator-section {
  background: var(--light);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.calculator {
  margin-top: 32px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16,24,40,.07);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  font: inherit;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,90,31,.1);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 18px;
  align-items: center;
}

input[type="range"] {
  accent-color: var(--primary);
  padding: 0;
}

.range-row span {
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  background: var(--light);
  color: var(--dark);
}

.price-box {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  background: var(--dark);
  color: var(--white);
}

.price-box strong {
  font-size: 38px;
  color: var(--primary);
}

.price-box small {
  color: #98a2b3;
}

.feature-panel {
  padding: 36px;
  border-radius: 24px;
  background: var(--dark);
  color: var(--white);
}

.feature-panel h3 {
  font-size: 28px;
  margin-bottom: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-item > span {
  color: var(--primary);
  font-weight: 800;
}

.feature-item p {
  color: #98a2b3;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 25%),
    var(--primary);
}

.about-shape {
  font-size: 150px;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.25));
}

.about-badge {
  position: absolute;
  right: -25px;
  bottom: 35px;
  width: 160px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  color: var(--dark);
  font-size: 34px;
}

.about-badge span {
  color: var(--muted);
  font-size: 13px;
}

.about-content > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.about-content ul {
  list-style: none;
  margin-bottom: 28px;
}

.about-content li {
  margin-bottom: 11px;
}

.about-content li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary);
  font-weight: 800;
}

.contact-section {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.eyebrow.light {
  color: #ffb89f;
}

.contact-copy h2, .contact-copy p {
  color: var(--white);
}

.contact-copy > p {
  color: #98a2b3;
}

.contact-list {
  margin-top: 35px;
}

.contact-list > div {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.contact-list > div > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}

.contact-list small, .contact-list b {
  display: block;
}

.contact-list small {
  color: #98a2b3;
}

.contact-form {
  padding: 34px;
  border-radius: 22px;
  background: var(--white);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.form-message.success {
  display: block;
  color: #067647;
  background: #ecfdf3;
}

.form-message.error {
  display: block;
  color: #b42318;
  background: #fef3f2;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  font-size: 26px;
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
  transition: transform .2s;
}

.whatsapp:hover {
  transform: scale(1.08);
}

.footer {
  padding: 70px 0 25px;
  background: #0b1220;
  color: #98a2b3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 18px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer a, .footer p {
  display: block;
  margin-bottom: 10px;
}

.footer strong {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

@media (max-width: 960px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
  }

  .hero-grid,
  .calculator-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

  .about-visual {
    min-height: 380px;
  }

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

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

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-stats,
  .trust-items,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 16px;
  }

  .trust-items {
    padding: 22px 0;
  }

  .service-grid,
  .input-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 0;
  }

  .calculator,
  .feature-panel,
  .contact-form {
    padding: 22px;
  }

  .about-badge {
    right: 15px;
  }

  .delivery-visual {
    min-height: 320px;
  }
}

.whatsapp-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
