:root {
  --orange: #ff6900;
  --orange-dark: #e65a00;
  --orange-soft: #fff1e8;
  --gray-dark: #1f1f25;
  --gray: #5a5a66;
  --gray-light: #9c9ca9;
  --white: #ffffff;
  --bg: #f7f5f2;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--gray-dark);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 105, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
}

.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.brand-logo,
.brand-footer img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  transform: none;
}

.site-nav a {
  font-weight: 600;
  color: var(--gray-dark);
  padding: 0;
  background: transparent;
  transition: color 0.2s ease;
}

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

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #333;
}

.hero-section {
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at 85% 15%, rgba(255, 105, 0, 0.18), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(255, 105, 0, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f9f7f4 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.app-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text,
.why-copy p,
.app-copy p,
.feature-card p,
.news-card p,
.driver-copy p,
.site-footer p {
  color: var(--gray);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(255, 105, 0, 0.18);
}

.btn-secondary {
  background: rgba(255, 105, 0, 0.08);
  color: var(--orange-dark);
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  position: relative;
}

.hero-stats strong {
  display: block;
  font-size: 1.75rem;
  color: #000;
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mobile-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
  z-index: 2;
  border-radius: 40px;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card .icon {
  width: 44px;
  height: 44px;
  background: var(--orange-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.hero-floating-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-floating-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.card-1 {
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  right: -15%;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.section-light,
.section-white {
  padding: 4rem 0;
}

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

.section-heading,
.section-heading-centered {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-heading-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-grid,
.news-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(20, 20, 35, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 105, 0, 0.12);
  margin-bottom: 1.2rem;
  font-size: 1.35rem;
}

.why-grid,
.app-grid,
.driver-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.why-media,
.app-media,
.driver-media {
  text-align: center;
}

.why-media img,
.app-media img,
.driver-media img {
  max-width: 520px;
  width: 100%;
  border-radius: 32px;
}

.why-list,
.driver-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.why-list li,
.driver-list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--gray-dark);
}

.why-list li::before,
.driver-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.app-badge {
  display: inline-block;
  transition: transform 0.2s ease;
}

.app-badge img {
  height: 48px;
  width: auto;
  display: block;
}

.app-badge:hover {
  transform: translateY(-3px);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-width: 150px;
  height: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.partner-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-5px);
}

.section-partners {
  background: var(--white);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #1f1f25;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links a {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
  margin-top: 3rem;
  font-size: 0.9rem;
  opacity: 0.5;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  border-radius: 24px;
  padding: 2rem;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(20, 20, 35, 0.08);
}

.news-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

@media (max-width: 980px) {

  .hero-grid,
  .why-grid,
  .app-grid,
  .driver-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    backdrop-filter: none;
  }

  main {
    padding-top: 82px;
  }

  .header-inner {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff;
    padding: 100px 2rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: var(--orange-soft);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 4px;
    gap: 5px;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
  }

  .hero-section {
    padding-top: 5rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-image-wrapper {
    margin-top: 2rem;
  }

  .hero-floating-card {
    padding: 0.75rem 1rem;
    border-radius: 16px;
  }

  .card-1 {
    left: 0;
    top: 5%;
  }

  .card-2 {
    right: 0;
    bottom: 10%;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-card-info {
    padding: 1.2rem;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-form-wrapper p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fcfaf7;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 105, 0, 0.08);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-soft);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.contact-info-item p {
  margin: 0;
  color: var(--gray);
}

.map-wrapper {
  margin-top: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
