/* ========================================
   HERO EXTRAS
======================================== */

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.trust-bar{
  margin-top:35px;
}

.trust-bar p{
  font-size:14px;
  margin-bottom:12px;
  color:var(--text-muted);
}

.platform-logos{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.platform-logos span{
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
}

.platform-logos img{
  height:28px;
  width:auto;
  object-fit:contain;
}

/* ========================================
   STATS SECTION
======================================== */

.stats-section{
  padding:40px 8%;
  background:#050505;
}

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

.stat-card{
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:20px;
  padding:28px;
  text-align:center;
}

.stat-card h3{
  color:var(--primary);
  font-size:2rem;
  margin-bottom:8px;
}

/* ========================================
   HOW IT WORKS
======================================== */

.how-it-works{
  background:#fff;
  color:#000;
}

.how-it-works .section-header p{
  color:#666;
}

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

.step-card{
  text-align:center;
  position:relative;
  padding:10px;
}

.step-card .icon{
  width:80px;
  height:80px;

  margin:0 auto 20px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#000;
  border-radius:18px;

  color:var(--primary);
}

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

.step-card h3{
  color:#000;
  margin-bottom:12px;
}

.step-card p{
  color:#666;
  font-size:.95rem;
  max-width:220px;
  margin:0 auto;
}

.step-card:not(:last-child)::after{
  content:"→";

  position:absolute;
  top:38px;
  right:-22px;

  color:#999;
  font-size:26px;
  font-weight:700;
}

/* ========================================
   VEHICLES
======================================== */

.vehicle-card{
  overflow:hidden;
  padding:0;
}

.vehicle-card img{
  height:250px;
  object-fit:cover;
}

.vehicle-info{
  padding:24px;
}

.vehicle-info h3{
  margin-bottom:12px;
}

.card-actions{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.card-actions .btn{
  flex:1;
  padding:0 16px;
}

/* ========================================
   OWNERSHIP JOURNEY
======================================== */

.ownership-journey{
  background:#050505;
}

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

.journey-card{
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:24px;
  padding:30px;
}

.journey-card span{
  display:inline-block;
  background:var(--primary);
  color:#000;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.testimonial-card{
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:24px;
  padding:28px;
}

.testimonial-card img{
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:22px;
}

.testimonial-card p{
  margin-bottom:18px;
}

.testimonial-card h4{
  color:#fff;
}

/* ========================================
   DRIVER DASHBOARD
======================================== */

.driver-dashboard{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  background:var(--primary);
  color:#000;
}

.driver-dashboard p,
.driver-dashboard li{
  color:#111;
}

.dashboard-content h2{
  margin-bottom:20px;
}

.app-features{
  margin-top:25px;
}

.app-features li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  font-weight:600;
}

.dashboard-image img{
  max-width:460px;
  margin:auto;
  border-radius:28px;
}

/* ========================================
   APPLICATION CTA
======================================== */

.application-section{
  background:#0b0b0b;
  text-align:center;
}

.application-section .section-header{
  max-width:760px;
  margin:0 auto 40px;
}

.application-section .section-header h2{
  margin-bottom:16px;
}

.application-section .section-header p{
  max-width:600px;
  margin:0 auto;
  color:var(--text-secondary);
}

.application-cta-card{
  max-width:720px;
  margin:0 auto;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:28px;

  padding:50px 40px;

  transition:.3s ease;
}

.application-cta-card:hover{
  border-color:var(--primary);
  transform:translateY(-4px);
}

.application-cta-card h3{
  margin-bottom:12px;
  color:#fff;
}

.application-cta-card p{
  max-width:520px;
  margin:0 auto 28px;
  color:var(--text-secondary);
}

.application-cta-card .btn{
  min-width:240px;
}

.application-cta-card .btn-primary{
  height:56px;
}
/* ========================================
   PARTNERS
======================================== */

.partners-section{
  background:#050505;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-bottom:40px;
}

.partner-card{
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:20px;
  padding:28px;
  text-align:center;
}

.partner-card i{
  color:var(--primary);
  margin-bottom:18px;
}

/* ========================================
   NEWSLETTER
======================================== */

.newsletter-section{
  text-align:center;
  background:var(--primary);
  color:#000;
}

.newsletter-section p{
  color:#111;
  margin:15px auto 28px;
  max-width:620px;
}

.newsletter-form{
  max-width:600px;
  margin:auto;
  display:flex;
  gap:12px;
}

.newsletter-form input{
  flex:1;
  height:52px;
  padding:0 18px;
  border:none;
  border-radius:12px;
  outline:none;
}

.application-cta-card{
  max-width:950px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:28px;
  padding:36px;
}

.application-cta-card h3{
  margin-bottom:10px;
}

.application-cta-card p{
  max-width:620px;
}

/* ========================================
   HOME FAQ
======================================== */

.faq{
  background:#0b0b0b;
  text-align:center;
}

.faq h2{
  margin-bottom:50px;
}

.faq-list{
  max-width:950px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  overflow:hidden;
  text-align:left;
  transition:.3s ease;
}

.faq-item:hover{
  border-color:rgba(250,204,21,.35);
}

.faq-question{
  width:100%;
  padding:24px 28px;
  background:transparent;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#fff;
  cursor:pointer;
  text-align:left;
}

.faq-question span{
  font-size:1.05rem;
  font-weight:700;
}

.faq-question svg{
  color:var(--primary);
  transition:.3s ease;
}

.faq-answer{
  display:none;
  padding:0 28px 24px;
}

.faq-answer p{
  color:#bdbdbd;
  line-height:1.8;
}

.faq-item.open{
  border-color:var(--primary);
}

.faq-item.open .faq-question svg{
  transform:rotate(45deg);
}

.faq-item.open .faq-answer{
  display:block;
}

.logo-img {
  height: 40px;   /* the only knob you need — width follows automatically */
  width: auto;
  display: block;
}