:root{
  --ink:#102126;
  --muted:#5d7177;
  --line:#dbe5e8;
  --paper:#f6f8f8;
  --white:#fff;
  --taxi:#ffd23f;
  --taxi-dark:#d89b00;
  --night:#13272d;
  --green:#12805c;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--paper);
}

a{color:inherit}

.topbar{
  background:#071316;
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  max-width:1180px;
  margin:0 auto;
  padding:9px 20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 28px rgba(13,33,38,.08);
}

.header-inner{
  max-width:1180px;
  margin:0 auto;
  min-height:82px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-mark{
  width:54px;
  height:54px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--taxi),#ffef9c);
  color:#071316;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:28px;
  box-shadow:inset 0 -6px 0 rgba(0,0,0,.1);
}

.brand strong{
  display:block;
  font-size:22px;
  letter-spacing:0;
}

.brand span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:700;
  font-size:15px;
}

.nav a{
  text-decoration:none;
}

.nav a:hover{color:var(--taxi-dark)}

.phone-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  color:#071316;
  background:var(--taxi);
  border:2px solid #071316;
  border-radius:8px;
  padding:9px 16px;
  line-height:1.1;
  box-shadow:4px 4px 0 #071316;
}

.phone-card small{
  text-transform:uppercase;
  font-weight:800;
  font-size:10px;
}

.phone-card strong{
  font-size:20px;
}

.hero{
  min-height:650px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(7,19,22,.92),rgba(7,19,22,.72) 43%,rgba(7,19,22,.2)),
    url("hero-driver-woman-taxi.png") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-inner{
  max-width:1180px;
  width:100%;
  margin:0 auto;
  padding:70px 20px;
}

.hero-inner > *{
  position:relative;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(255,210,63,.16);
  border:1px solid rgba(255,210,63,.55);
  color:#ffe68c;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
}

h1{
  max-width:780px;
  margin:22px 0 12px;
  font-size:64px;
  line-height:1.02;
  letter-spacing:0;
}

.hero-lead{
  max-width:690px;
  margin:0 0 30px;
  color:#dbe5e8;
  font-size:21px;
  line-height:1.6;
  text-shadow:0 2px 18px rgba(0,0,0,.45);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  border:2px solid transparent;
}

.btn-primary{
  background:var(--taxi);
  color:#071316;
  border-color:#071316;
  box-shadow:4px 4px 0 #071316;
}

.btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.45);
  background:rgba(255,255,255,.08);
}

.trust-strip{
  background:#071316;
  color:#fff;
}

.trust-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-item{
  padding:24px 20px;
  border-right:1px solid rgba(255,255,255,.12);
}

.trust-item:last-child{
  border-right:0;
}

.trust-item strong{
  display:block;
  font-size:28px;
  color:var(--taxi);
}

.section{
  padding:86px 20px;
}

.section.white{background:#fff}

.container{
  max-width:1180px;
  margin:0 auto;
}

.section-head{
  max-width:760px;
  margin-bottom:32px;
}

.section-head h2{
  margin:0 0 12px;
  font-size:38px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:18px;
}

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

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:28px;
  box-shadow:0 14px 34px rgba(16,33,38,.08);
}

.card h3{
  margin:0 0 10px;
  font-size:22px;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

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

.area-link{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
}

.area-link span{
  color:var(--taxi-dark);
}

.area-link:hover{
  border-color:var(--taxi-dark);
  box-shadow:0 12px 28px rgba(16,33,38,.1);
}

.contact-panel{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.callout{
  background:var(--night);
  color:#fff;
  border-radius:8px;
  padding:34px;
}

.callout h2{
  margin:0 0 14px;
  font-size:34px;
}

.callout p{
  color:#dbe5e8;
  line-height:1.7;
}

.contact-box{
  background:var(--taxi);
  color:#071316;
  border-radius:8px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:2px solid #071316;
}

.contact-box small{
  font-weight:800;
  text-transform:uppercase;
}

.contact-box a{
  display:block;
  margin:10px 0;
  font-size:34px;
  font-weight:900;
  text-decoration:none;
}

.footer{
  background:#071316;
  color:#fff;
  padding:42px 20px;
}

.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.footer a{color:#fff}

.floating-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:30;
}

.floating-call a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  text-decoration:none;
  background:var(--taxi);
  color:#071316;
  border:2px solid #071316;
  border-radius:8px;
  padding:10px 16px;
  box-shadow:4px 4px 0 #071316;
  font-weight:900;
}

.floating-call small{
  font-size:10px;
  text-transform:uppercase;
}

@media(max-width:900px){
  .header-inner{flex-wrap:wrap;padding:14px 20px}
  .nav{order:3;width:100%;justify-content:center;flex-wrap:wrap}
  h1{font-size:46px}
  .trust-inner,.cards,.area-grid,.contact-panel{grid-template-columns:1fr 1fr}
}

@media(max-width:620px){
  .topbar-inner{justify-content:center;text-align:center}
  .header-inner{justify-content:center}
  .brand{width:100%;justify-content:center;text-align:center}
  .nav{gap:14px;font-size:14px}
  .hero{min-height:auto}
  .hero-inner{padding:48px 18px 70px}
  h1{font-size:36px}
  .hero-lead{font-size:18px}
  .btn,.phone-card{width:100%}
  .trust-inner,.cards,.area-grid,.contact-panel{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
  .section{padding:58px 18px}
  .section-head h2,.callout h2{font-size:30px}
  .contact-box a{font-size:28px}
  .floating-call{left:14px;right:14px}
}
