* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  color: #111;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
}

.btn-outline {
  border: 1px solid #111;
  padding: 8px 14px;
  border-radius: 6px;
}

.highlight {
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 80px 0;
  background: #f7f7f7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #444;
}

.hero-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero-form small {
  display: block;
  margin-top: 10px;
  color: #666;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 70px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step span {
  font-size: 28px;
  font-weight: bold;
}

/* DRIVER CTA */
.driver-cta {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

.driver-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* TRUST */
.trust {
  padding: 70px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* FOOTER */
.footer {
  background: #f7f7f7;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer-links a {
  margin-left: 15px;
  text-decoration: none;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .driver-box {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }
}
