
*{box-sizing:border-box}
:root{
  --ink:#101828;
  --muted:#667085;
  --line:#e4e7ec;
  --soft:#f7f9fc;
  --brand:#1f4fc9;
  --brand-dark:#163b9f;
  --night:#0d1b45;
  --white:#fff;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:14px;
  font-weight:700;
}
nav a:hover{color:var(--brand)}
.nav-cta{
  padding:10px 16px;
  border-radius:10px;
  color:#fff;
  background:var(--brand);
}

.hero{
  padding:88px 0 72px;
  background:
    radial-gradient(circle at 80% 20%,rgba(31,79,201,.14),transparent 28%),
    linear-gradient(180deg,#fff 0%,#fbfcff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--brand);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:12px;
}
h1{
  margin:0;
  max-width:780px;
  font-size:clamp(42px,6vw,72px);
  line-height:1.03;
  letter-spacing:-.045em;
}
h2{
  margin:0;
  font-size:clamp(32px,4.3vw,52px);
  line-height:1.08;
  letter-spacing:-.035em;
}
h3{line-height:1.25}
.hero-copy{
  max-width:680px;
  margin:24px 0 0;
  font-size:19px;
  color:var(--muted);
}
.hero-actions{
  display:flex;
  gap:12px;
  margin-top:30px;
  flex-wrap:wrap;
}
.button{
  border:0;
  border-radius:12px;
  padding:14px 20px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}
.button:hover{transform:translateY(-1px)}
.primary{background:var(--brand);color:#fff}
.primary:hover{background:var(--brand-dark)}
.secondary{border:1px solid var(--line);background:#fff}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:30px;
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}
.hero-card{
  padding:30px;
  border-radius:24px;
  background:var(--night);
  color:#fff;
  box-shadow:0 24px 70px rgba(16,24,40,.18);
}
.vehicle-card{display:flex;gap:16px;align-items:center}
.vehicle-icon{
  width:54px;height:54px;
  display:grid;place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.1);
  font-size:25px;
}
.card-label{
  margin:0;
  color:#aeb7c6;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.vehicle-card h3{margin:2px 0 0}
.route-line{
  height:28px;
  width:2px;
  margin:6px 0 6px 27px;
  background:linear-gradient(var(--brand),rgba(31,79,201,.2));
}

.stats{background:var(--night);color:#fff}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  min-height:112px;
  align-items:center;
}
.stats-grid div{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:22px 28px;
  border-right:1px solid rgba(255,255,255,.12);
}
.stats-grid div:last-child{border-right:0}
.stats-grid strong{font-size:24px}


.parts-focus-section{padding:30px 0 0}
.parts-focus-notice{
  border:1px solid #cfd8ee;
  border-left:5px solid var(--brand);
  border-radius:18px;
  padding:28px;
  background:linear-gradient(135deg,#f7f9ff 0%,#fff 100%);
  box-shadow:0 12px 34px rgba(16,24,40,.06);
}
.parts-focus-notice h2{margin:4px 0 12px}
.parts-focus-notice p:not(.eyebrow){max-width:860px;color:var(--muted)}
.parts-focus-notice .button{margin-top:10px}

.section{padding:64px 0}
.soft-section,.request-section{background:var(--soft)}
.section-heading{max-width:760px;margin-bottom:28px}
.section-heading p:not(.eyebrow){color:var(--muted)}

.steps,.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.steps article,.card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:#fff;
}
.steps article span{
  color:var(--brand);
  font-weight:800;
  font-size:13px;
}
.steps h3,.card h3{margin:20px 0 8px}
.steps p,.card p{margin:0;color:var(--muted);font-size:14px}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag-list span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--ink);
  font-size:14px;
  line-height:1.2;
  white-space:nowrap;
}

.request-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:58px;
  align-items:start;
}
.request-copy{position:sticky;top:110px}
.request-copy>p:not(.eyebrow){color:var(--muted)}
.request-copy ul{margin:28px 0;padding-left:20px}
.notice{
  border-left:4px solid var(--brand);
  background:#fff;
  padding:16px;
  border-radius:0 12px 12px 0;
  color:var(--muted);
  font-size:14px;
}
.request-form{
  background:#fff;
  padding:30px;
  border-radius:22px;
  box-shadow:0 16px 45px rgba(16,24,40,.08);
}
.form-row{display:grid;gap:16px}
.form-row.two{grid-template-columns:repeat(2,1fr)}
.form-row.three{grid-template-columns:repeat(3,1fr)}
label{
  display:grid;
  gap:7px;
  margin-bottom:16px;
  font-size:13px;
  font-weight:700;
}
input,select,textarea{
  width:100%;
  border:1px solid #d0d5dd;
  border-radius:10px;
  padding:12px 13px;
  font:inherit;
  color:var(--ink);
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(31,79,201,.12);
}
textarea{resize:vertical}
.checkbox{
  grid-template-columns:18px 1fr;
  align-items:start;
  font-weight:500;
  color:var(--muted);
}
.checkbox input{margin-top:3px}
.submit-button{width:100%;min-height:52px}
.form-note{
  text-align:center;
  color:var(--muted);
  font-size:12px;
  margin-bottom:0;
}

.page-hero{padding:52px 0;background:var(--soft)}
.breadcrumb{color:var(--muted);font-size:13px;margin-bottom:10px}

.coverage{background:var(--night);color:#fff}
.coverage-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.coverage-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.coverage-tags span{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#d6dae2;
}

.delivery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.delivery-card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  background:#fff;
}
.delivery-card strong{
  display:block;
  font-size:36px;
  color:var(--brand);
  line-height:1.1;
  margin:10px 0;
}
.payment-box{
  background:var(--night);
  color:#fff;
  border-radius:22px;
  padding:30px;
}
.payment-steps{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:22px;
}
.payment-step{
  padding:20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
}
.payment-step strong{
  display:block;
  font-size:30px;
  margin-bottom:4px;
}
.office-box{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:#fff;
}

.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px 18px;
  margin-bottom:12px;
}
.faq summary{font-weight:800;cursor:pointer}

footer{
  background:#090d14;
  color:#fff;
  padding:44px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.footer-grid p{color:#9ca3af;font-size:13px}
.footer-brand{margin-bottom:12px}
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:40;
  padding:13px 18px;
  background:#25D366;
  color:#fff;
  font-weight:800;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.success{
  max-width:720px;
  margin:80px auto;
  text-align:center;
  padding:0 20px;
}

@media(max-width:900px){
  .hero-grid,.request-grid,.coverage-grid{grid-template-columns:1fr}
  .steps,.cards{grid-template-columns:repeat(2,1fr)}
  .request-copy{position:static}
}
@media(max-width:640px){
  nav a:not(.nav-cta){display:none}
  .page-hero{padding:40px 0}
  
  .hero{padding-top:58px}
  .section{padding:48px 0}
  .steps,.cards,.delivery-grid,.payment-steps,.form-row.two,.form-row.three,.footer-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:1fr;padding:12px 0}
  .stats-grid div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  .stats-grid div:last-child{border-bottom:0}
  .request-form{padding:20px}
  .tag-list{gap:8px}
  .tag-list span{padding:9px 12px;font-size:13px}
}


.delivery-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.delivery-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(16,24,40,.06);
}
.delivery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  background:var(--soft);
}
.delivery-item-content{padding:18px}
.delivery-item h3{margin:0 0 6px}
.delivery-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.delivery-meta span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:var(--soft);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.admin-panel{
  max-width:760px;
  margin:0 auto;
}
.admin-message{
  padding:14px 16px;
  border-radius:10px;
  margin-bottom:18px;
  background:var(--soft);
}
.empty-gallery{
  text-align:center;
  padding:50px 20px;
  border:1px dashed var(--line);
  border-radius:18px;
  color:var(--muted);
}
@media(max-width:900px){
  .delivery-gallery{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .delivery-gallery{grid-template-columns:1fr}
}

footer .brand {
  color: #ffffff;
  font-size: 19px;
}

.market-line{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px 16px;
}
.market-line strong{
  font-size:clamp(20px,3vw,30px);
  line-height:1.3;
  max-width:900px;
}
.tag-list{
  row-gap:12px;
  column-gap:12px;
}
.tag-list span{
  margin:0;
}

.tag-list span:not(:last-child)::after,
.coverage-tags span:not(:last-child)::after{
  content:"";
}


/* Mobile navigation fix — 2026-07-26 */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  border-radius:2px;
  background:var(--ink);
}

@media(max-width:640px){
  .nav-wrap{position:relative;min-height:64px}
  .menu-toggle{display:flex;flex:0 0 auto}
  .site-navigation{
    display:none;
    position:absolute;
    top:calc(100% + 1px);
    left:0;
    right:0;
    z-index:60;
    padding:12px;
    border:1px solid var(--line);
    border-top:0;
    border-radius:0 0 14px 14px;
    background:#fff;
    box-shadow:0 18px 35px rgba(16,24,40,.14);
    flex-direction:column;
    align-items:stretch;
    gap:4px;
  }
  .site-navigation.is-open{display:flex}
  .site-navigation a,
  .site-navigation a:not(.nav-cta){
    display:block;
    width:100%;
    padding:12px 14px;
    border-radius:9px;
  }
  .site-navigation a:hover{background:var(--soft)}
  .site-navigation .nav-cta{
    margin-top:6px;
    text-align:center;
    color:#fff;
  }
  .site-navigation .nav-cta:hover{background:var(--brand-dark);color:#fff}
}

/* Final homepage review updates — 2026-07-27 */
.hero-parts-visual{
  width:100%;
  min-width:0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(16,24,40,.18);
  background:var(--night);
}
.hero-parts-visual img{
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:cover;
}
.payment-inline{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:26px;
}
.payment-inline>div{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:22px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.payment-inline strong{
  flex:0 0 auto;
  color:var(--brand);
  font-size:28px;
  line-height:1;
}
.payment-inline span{color:var(--muted);font-size:14px}
.home-delivery-gallery{margin-top:4px}
@media(max-width:640px){
  .payment-inline{grid-template-columns:1fr}
  .hero-parts-visual{border-radius:20px}
}
