/* styles.css */
:root{
  --bg:#0b0b0c;
  --surface:#101114;
  --surface-2:#16171b;
  --text:#0f1115;
  --muted:#6b7280;
  --brand:#ffd100;
  --brand-ink:#0a0a0a;
  --white:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.2);
  --radius:16px;
  --radius-sm:10px;
  --radius-lg:24px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  color:#0f1115;
  background:#ffffff;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.container{width:min(1080px, 92vw); margin-inline:auto}

.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  position:fixed;left:1rem;top:1rem;width:auto;height:auto;background:#000;color:#fff;
  padding:.6rem .8rem;border-radius:10px;z-index:9999;
}

/* Header */
.site-header{
  position:sticky;top:0;z-index:1000;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.06);
}
.header__row{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0;
}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:inherit;font-weight:700}
.brand__logo{font-size:1.4rem}
.brand__name{letter-spacing:.2px}

.nav{display:flex;align-items:center;gap:1.25rem}
.nav ul{display:flex;align-items:center;gap:1.25rem;list-style:none;margin:0;padding:0}
.nav a{color:#0f1115;text-decoration:none}
.nav a:hover{text-decoration:underline}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border-radius:999px;padding:.9rem 1.2rem;font-weight:700;text-decoration:none;
  border:1px solid transparent;transition:transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn--small{padding:.55rem .9rem;font-size:.92rem}
.btn--primary{background:var(--brand);color:var(--brand-ink);box-shadow:var(--shadow)}
.btn--primary:hover{filter:brightness(.95)}
.btn--ghost{background:transparent;border-color:#d1d5db;color:#111827}
.btn--ghost:hover{background:#f3f4f6}
.btn--dark{background:#111827;color:#fff}
.btn--dark:hover{filter:brightness(1.05)}
.btn--ghost-dark{background:transparent;border-color:#374151;color:#111827}
.btn--ghost-dark:hover{background:#111827;color:#fff}

/* Mobile nav (checkbox hack) */
.nav-toggle{display:none}
.nav-toggle__btn{display:none;cursor:pointer}
.nav-toggle__btn span{display:block;width:26px;height:2px;background:#111;margin:6px 0;transition:.2s}

@media (max-width: 880px){
  .nav{position:fixed;inset:60px 0 auto 0;background:#fff;box-shadow:var(--shadow);padding:1rem 1rem 1.5rem;display:none;flex-direction:column;align-items:flex-start;gap:1rem}
  .nav ul{flex-direction:column;align-items:flex-start;gap:0}
  .nav ul li a{display:block;padding:.6rem .2rem}
  .nav .btn{width:100%}
  .nav-toggle__btn{display:block}
  .nav-toggle:checked ~ .nav{display:flex}
}

/* HERO base */
.hero{padding: clamp(3rem, 6vw, 6rem) 0}
.hero__grid{
  display:grid;grid-template-columns: 1.2fr 1fr;gap: clamp(1.5rem, 3vw, 3rem);align-items:center;
}
.hero__col{min-width:0}
.hero .lead{font-size: clamp(1.05rem, 2.2vw, 1.25rem);color:#4b5563;max-width:52ch}
.cta{display:flex;gap:.8rem;flex-wrap:wrap;margin:.8rem 0 1.2rem}
.trust{display:flex;flex-wrap:wrap;gap:.8rem 1.2rem;color:#6b7280;padding:0;margin:0;list-style:none}

.hero__visual{display:flex;align-items:center;justify-content:center}

/* HERO 1 styling */
.hero--primary{
  background:
    radial-gradient(1200px 500px at 90% -20%, rgba(255,209,0,.15), transparent 70%),
    radial-gradient(800px 300px at -10% 100%, rgba(17,24,39,.06), transparent 60%),
    #fff;
}
.phone-mock{
  width:min(360px, 80vw); aspect-ratio: 9/19; background:#0b0c10; border-radius:36px; box-shadow: 0 30px 60px rgba(0,0,0,.25);
  position:relative; padding:14px; border:2px solid #0f1115;
}
.phone__notch{position:absolute;left:50%;top:10px;transform:translateX(-50%);width:40%;height:20px;background:#0f1115;border-radius:0 0 16px 16px}
.phone__screen{position:absolute;inset:14px;border-radius:26px;background:linear-gradient(180deg,#0e131a, #0a0c10)}
.phone__home{position:absolute;left:50%;bottom:8px;transform:translateX(-50%);width:34%;height:4px;border-radius:99px;background:#333}

.map-skeleton{position:absolute;inset:0;border-radius:26px;overflow:hidden}
.map-skeleton:before{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.06) 50%, rgba(255,255,255,.02) 100%),
    repeating-linear-gradient(0deg, #0c1118 0 12px, #0e141c 12px 24px);
  opacity:.9;
}
.pin{position:absolute;left:58%;top:36%;width:12px;height:12px;background:var(--brand);border-radius:50%;box-shadow:0 0 0 6px rgba(255,209,0,.15)}
.route{position:absolute;left:18%;top:58%;width:64%;height:3px;background:linear-gradient(90deg, var(--brand), #fff);opacity:.6;border-radius:99px}
.car{position:absolute;left:24%;top:56%;width:18px;height:10px;background:#fff;border-radius:4px}

.card{
  position:absolute; left:10%; right:10%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  color:#fff; backdrop-filter: blur(8px); border-radius:16px; padding:.7rem .9rem; display:flex; justify-content:space-between; align-items:center; font-size:.9rem;
}
.card--fare{bottom:80px}
.card--eta{bottom:26px}

/* HERO 2: Alternate */
.hero--alt{
  background: radial-gradient(900px 400px at 10% -10%, rgba(17,24,39,.06), transparent 60%), #111827;
  color:#e5e7eb;
}
.hero--alt .lead{color:#cbd5e1}
.hero__grid--alt{grid-template-columns:1fr 1fr}
.btn--ghost-dark{border-color:#9ca3af;color:#e5e7eb}
.btn--ghost-dark:hover{background:#e5e7eb;color:#111827}
.fleet{display:flex;gap:.8rem;flex-wrap:wrap}
.car-card{
  background:#0f172a;border:1px solid #1f2937;border-radius:12px;padding:.8rem 1rem;box-shadow:var(--shadow);
}
.car-card .dot{display:inline-block;width:8px;height:8px;background:var(--brand);border-radius:50%;margin-right:.5rem}

/* Generic sections */
.section{padding:3rem 0;border-top:1px solid #f1f5f9}
.section h3{margin-top:0}

/* Footer */
.site-footer{background:#0b0b0c;color:#cbd5e1;margin-top:2rem}
.footer__grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:2rem;padding:2.4rem 0;border-bottom:1px solid #1f2937}
.brand--footer{color:#fff;text-decoration:none}
.footer-nav h4{margin:.2rem 0 .6rem;font-size:1rem;color:#e5e7eb}
.footer-nav ul{list-style:none;margin:0;padding:0}
.footer-nav li{margin:.35rem 0}
.footer-nav a{color:#cbd5e1;text-decoration:none}
.footer-nav a:hover{text-decoration:underline}
.muted{color:#94a3b8}
.footer__bottom{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.social{display:flex;gap:.8rem;list-style:none;margin:0;padding:0}
.social a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:#111827;color:#e5e7eb;text-decoration:none}
.social a:hover{filter:brightness(1.1)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid, .hero__grid--alt{grid-template-columns:1fr}
  .hero__visual{order:2}
}

@media (prefers-reduced-motion: no-preference){
  .btn{transition:transform .06s ease, filter .2s ease, background .2s ease, box-shadow .2s ease}
  .phone-mock, .car-card{transition:transform .2s ease, box-shadow .2s ease}
  .phone-mock:hover, .car-card:hover{transform:translateY(-2px)}
}



.footer {
  background: #0b0d11;
  color: #d1d5db;
  padding: 60px 0 30px;
  border-top: 1px solid #1f2937;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__brand h3 {
  margin: 8px 0 6px;
  font-size: 22px;
  color: #fff;
}
.footer__brand p {
  color: #9ca3af;
  max-width: 240px;
  line-height: 1.5;
}

.footer__logo {
  font-size: 36px;
}

.footer__links h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff;
}
.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  margin: 6px 0;
}
.footer__links a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.2s;
}
.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9ca3af;
}

.footer__social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1f2937;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}
.footer__social a:hover {
  background: #374151;
}

@media (max-width: 850px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}



/* cta */


/* cta 2 */

.app-cta{
  background:#111827;
  color:#e5e7eb;
  text-align:center;
  padding:60px 0;
  border-radius:18px;
  margin:60px auto;
  width:min(1000px, 94vw);
}
.app-cta__wrap{
  width:min(600px, 90%);
  margin:auto;
}
.app-cta h2{
  margin:0;
  font-size:clamp(1.7rem, 3vw, 2.2rem);
  font-weight:700;
}
.app-cta p{
  margin:10px 0 28px;
  color:#cbd5e1;
  font-size:1rem;
}
.app-cta__buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.store-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff;
  transition:.2s ease;
}
.store-btn:hover{
  background:rgba(255,255,255,.16);
}

.store-btn--apple::before{
  content:"";
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  margin-right:8px;
}
.store-btn--google::before{
  content:"▶";
  margin-right:8px;
}


/* faq */
.faq{
  width:min(800px,90%);
  margin:60px auto;
  font-family:system-ui, sans-serif;
}
.faq h2{
  text-align:center;
  margin-bottom:24px;
  font-size:1.9rem;
}
.faq-item{
  border-bottom:1px solid #e5e7eb;
  padding:14px 0;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:none;
  border:none;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  padding:10px 0;
}
.faq-question .icon{
  font-size:1.4rem;
  transition:0.25s;
}
.faq-answer{
  display:none;
  padding:6px 0 0;
  color:#4b5563;
  font-size:.95rem;
  line-height:1.45;
}
.faq-item.active .faq-answer{
  display:block;
}
.faq-item.active .faq-question .icon{
  transform:rotate(180deg);
  content:"–";
}
.faq-item.active .faq-question .icon::before{
  content:"–";
}
.faq-question .icon::before{
  content:"+";
}
