/* Variables */
:root {
  --primary: #ffcc00; /* Dergoje yellow base on logo approximation */
  --primary-hover: #e6b800;
  --secondary: #1e1e1e;
  --dark: #111111;
  --dark-grey: #333333;
  --light: #fafafa;
  --white: #ffffff;
  --text: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--primary);
}

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

.bg-light {
  background-color: #f3f4f6;
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

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

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.btn-outline {
  border-color: var(--border);
  color: var(--dark);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--dark);
}

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

.btn-secondary:hover {
  background-color: var(--dark-grey);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 15px 0;
  border-bottom-color: var(--border);
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark-grey);
}

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

.nav-buttons {
  display: flex;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background-color: var(--light);
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(255, 204, 0, 0.15);
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.03);
  bottom: 50px;
  left: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 204, 0, 0.15);
  color: #b38f00;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 4rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title .underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero-title .underline::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--primary);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img,
.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  background-color: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 1;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.tracking-card {
  top: 40px;
  right: -30px;
  width: 250px;
}

.driver-card {
  bottom: 60px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation-delay: 2s;
}

.driver-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  color: var(--primary);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--success);
  border-radius: 4px;
}

.eta {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

/* Problem Solution */
.problem-solution {
  padding-top: 40px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.box {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.box h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.box-problem {
  background-color: #fafafa;
  border: 1px solid var(--border);
}

.box-solution {
  background-color: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.box-solution h3 {
  color: var(--white);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.error-list i {
  color: var(--error);
}

.success-list i {
  color: var(--success);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.step-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--primary-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-icon i {
  width: 32px;
  height: 32px;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
}

.step-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.audience-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.audience-card:hover {
  box-shadow: var(--shadow-lg);
}

.audience-img {
  height: 200px;
  overflow: hidden;
}

.audience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.audience-card:hover .audience-img img {
  transform: scale(1.05);
}

.audience-content {
  padding: 32px;
}

.audience-content h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.audience-content p {
  color: var(--text-light);
}

/* Differentiation */
.diff-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.diff-text h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.diff-text p {
  color: #9ca3af;
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-list p {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.diff-image-wrapper {
  width: 100%;
}

.mockup {
  background-color: #1f2937;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid #374151;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 30px;
  background-color: #374151;
  padding: 16px;
  border-radius: var(--radius);
}

.mockup-map {
  height: 200px;
  background-color: #111827;
  border-radius: var(--radius);
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-line {
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--success));
  position: absolute;
  border-radius: 2px;
}

.pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  border: 4px solid var(--white);
}

.pin.start {
  left: 15%;
  background-color: var(--primary);
}

.pin.end {
  right: 15%;
  background-color: var(--success);
}

.caring {
  position: absolute;
  background-color: var(--white);
  color: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 45%;
  box-shadow: var(--shadow-md);
  animation: moveCar 4s infinite alternate ease-in-out;
}

@keyframes moveCar {
  0% {
    left: 15%;
  }
  100% {
    left: calc(85% - 40px);
  }
}

.mockup-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* CTA */
.cta-section {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-section .btn-outline {
  border-color: var(--dark);
}

.cta-section .btn-outline:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  color: #9ca3af;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.socials a:hover {
  background-color: var(--primary);
  color: var(--dark);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 30px;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 60px;
  }

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

  .diff-flex {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--error);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 204, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon.success-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.modal-icon i {
  width: 32px;
  height: 32px;
}

.modal h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.modal p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Form waitlist */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 16px;
  background-color: #fafafa;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  color: var(--primary);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars i { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card p { font-style: italic; color: var(--text-light); margin-bottom: 24px; flex-grow: 1; }
.user-info { display: flex; align-items: center; gap: 12px; }
.user-info img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.user-info strong { display: block; color: var(--dark); font-size: 1rem; }
.user-info span { font-size: 0.875rem; color: var(--text-light); }

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  font-weight: 600;
  color: var(--dark);
}
.faq-question h3 { margin: 0; font-size: 1.125rem; font-weight: 600; }
.faq-question i { transition: transform 0.3s ease; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafafa;
}
.faq-answer p { margin: 20px 0; color: var(--text-light); }
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* App Badges */
.app-download-badges {
  margin-top: 60px;
  padding-top: 40px;
}
.app-download-badges p {
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 20px;
}
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.store-btn {
  background-color: var(--dark);
  color: var(--white) !important;
  font-size: 1.125rem;
  padding: 12px 24px;
  border-radius: var(--radius);
}
.store-btn:hover { background-color: var(--dark-grey); }

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
