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

:root {
  --navy: #071b33;
  --navy-2: #0b2545;
  --green: #16c784;
  --orange: #ff9f43;
  --cream: #fff9ef;
  --text: #132238;
  --muted: #667085;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(7, 27, 51, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 199, 132, 0.12), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(255, 159, 67, 0.12), transparent 30%),
    var(--cream);
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 249, 239, 0.78);
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--navy));
  box-shadow: 0 12px 28px rgba(22, 199, 132, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #475467;
  font-size: 0.95rem;
  font-weight: 650;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), #0e9d72);
  box-shadow: 0 16px 34px rgba(22, 199, 132, 0.32);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(22, 199, 132, 0.4);
}

.btn-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid rgba(7, 27, 51, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-secondary.light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 26px rgba(7, 27, 51, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 20px;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 42px;
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
  pointer-events: none;
}

.shape-one {
  width: 160px;
  height: 160px;
  background: rgba(22, 199, 132, 0.18);
  left: -60px;
  top: 70px;
  animation: float 7s ease-in-out infinite;
}

.shape-two {
  width: 110px;
  height: 110px;
  background: rgba(255, 159, 67, 0.2);
  right: 24px;
  bottom: 40px;
  animation: float 8s ease-in-out infinite reverse;
}

.eyebrow {
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 720px;
}

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

.hero-text {
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 620px;
}

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

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-stats div,
.eco-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 51, 0.08);
  box-shadow: 0 14px 35px rgba(7, 27, 51, 0.08);
}

.hero-stats strong,
.eco-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
}

.hero-stats small,
.eco-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.map-card {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(7, 27, 51, 0.96), rgba(11, 37, 69, 0.92)),
    var(--navy);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(7, 27, 51, 0.36);
  border: 1px solid var(--line);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.06) 49%, rgba(255,255,255,.06) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.05) 49%, rgba(255,255,255,.05) 51%, transparent 52%);
  background-size: 70px 70px;
  opacity: 0.55;
}

.route-line {
  position: absolute;
  left: 16%;
  top: 28%;
  width: 68%;
  height: 42%;
  border: 4px dashed rgba(22, 199, 132, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 120px 0 0;
  animation: dash 1.5s linear infinite;
}

.pin {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
}

.pin span {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 159, 67, 0.16);
}

.pin-a { left: 12%; top: 24%; }
.pin-b { right: 16%; top: 31%; }
.pin-c { right: 12%; bottom: 22%; }

.road {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 95px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  overflow: hidden;
}

.road::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -80px;
  width: 200%;
  height: 4px;
  background: repeating-linear-gradient(90deg, white 0 34px, transparent 34px 64px);
  opacity: 0.42;
  animation: roadMove 1.2s linear infinite;
}

.car,
.moto {
  position: absolute;
  font-size: 2.4rem;
  bottom: 22px;
  filter: drop-shadow(0 12px 14px rgba(0,0,0,.25));
}

.car {
  left: 30px;
  animation: drive 7s ease-in-out infinite;
}

.moto {
  left: 120px;
  bottom: 18px;
  animation: drive 6s ease-in-out infinite reverse;
}

.floating-card {
  position: absolute;
  z-index: 8;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  animation: float 6s ease-in-out infinite;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.card-driver {
  left: 34px;
  bottom: 210px;
}

.card-price {
  right: 34px;
  top: 82px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

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

.section-head h2,
.eco-content h2,
.cta-section h2,
.contact-card h2 {
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-head p,
.eco-content p,
.cta-section p,
.contact-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.steps,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card,
.feature-card,
.benefit-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 51, 0.08);
  box-shadow: 0 16px 40px rgba(7, 27, 51, 0.07);
  transition: 0.25s ease;
}

.step-card:hover,
.feature-card:hover,
.benefit-panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(22, 199, 132, 0.12);
  color: var(--green);
  font-weight: 950;
}

.step-card h3,
.feature-card h3,
.benefit-panel h3 {
  margin-top: 20px;
  color: var(--navy);
  font-size: 1.18rem;
}

.step-card p,
.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.panel-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(22, 199, 132, 0.16), rgba(255, 159, 67, 0.18));
}

.benefit-panel ul {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.benefit-panel li {
  color: var(--muted);
  line-height: 1.5;
}

.benefit-panel li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(22, 199, 132, 0.14);
  color: var(--green);
  font-weight: 900;
}

.eco-section {
  width: min(1180px, calc(100% - 32px));
  margin: 50px auto;
  padding: 60px;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 199, 132, 0.38), transparent 34%),
    linear-gradient(135deg, var(--navy), #0d3b3a);
  box-shadow: 0 34px 90px rgba(7, 27, 51, 0.26);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.eco-content h2 {
  color: white;
}

.eco-content p {
  color: rgba(255, 255, 255, 0.78);
}

.eco-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.eco-stats div {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.eco-stats strong,
.eco-stats span {
  color: white;
}

.feature-card span {
  font-size: 2rem;
}

.ride-types {
  padding-top: 30px;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.tags span {
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(7, 27, 51, 0.07);
}

.cta-section {
  width: min(1040px, calc(100% - 32px));
  margin: 30px auto 90px;
  text-align: center;
  padding: 70px 30px;
  border-radius: 42px;
  color: white;
  background:
    linear-gradient(135deg, rgba(22, 199, 132, 0.88), rgba(7, 27, 51, 0.96)),
    var(--navy);
  box-shadow: 0 30px 70px rgba(7, 27, 51, 0.22);
}

.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section .hero-actions {
  justify-content: center;
}

.contact-section {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.contact-card {
  text-align: center;
  padding: 54px 28px;
  border-radius: 38px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 27, 51, 0.08);
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 199, 132, 0.08);
  color: var(--navy);
  font-weight: 900;
  transition: 0.25s ease;
}

.contact-list a:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(7, 27, 51, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.footer a {
  color: var(--green);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes dash {
  to { border-color: rgba(255, 159, 67, 0.8); }
}

@keyframes roadMove {
  to { transform: translateX(64px); }
}

@keyframes drive {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(250px) translateY(-4px); }
  100% { transform: translateX(0) translateY(0); }
}

@media (max-width: 980px) {
  .hero,
  .eco-section,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 64px;
  }

  .map-card {
    min-height: 460px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-stats,
  .steps,
  .feature-grid,
  .eco-stats {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .map-card {
    min-height: 390px;
    border-radius: 30px;
  }

  .card-driver {
    left: 18px;
    bottom: 176px;
  }

  .card-price {
    right: 18px;
    top: 66px;
  }

  .floating-card {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .eco-section {
    padding: 36px 22px;
    border-radius: 30px;
  }

  .section {
    padding: 58px 0;
  }

  .footer {
    flex-direction: column;
  }
}
