/* ============================================================
   FlexiGo Location — Design System
   Royal blue / navy / white. Archivo (display) + Manrope (text)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --blue:#1f5fe0;        /* royal blue (the "Go") */
  --blue-600:#1a52c7;
  --blue-700:#1545a6;
  --blue-050:#eef3fe;
  --blue-100:#dbe6fd;
  --navy:#0e1b3d;        /* deep navy (the "Flexi") */
  --navy-700:#16264f;
  --navy-600:#1d3160;
  --ink:#11151c;
  --muted:#5d6678;
  --muted-2:#8a92a3;
  --line:#e6eaf3;
  --line-2:#eef1f8;
  --bg:#ffffff;
  --bg-soft:#f5f7fc;
  --bg-soft-2:#eef2f9;
  --star:#f5a623;
  --ok:#1b9e64;

  --shadow-sm:0 1px 2px rgba(14,27,61,.06), 0 1px 3px rgba(14,27,61,.07);
  --shadow-md:0 6px 18px rgba(14,27,61,.08), 0 2px 6px rgba(14,27,61,.06);
  --shadow-lg:0 24px 60px rgba(14,27,61,.16), 0 8px 24px rgba(14,27,61,.10);

  --r-sm:8px; --r:12px; --r-lg:18px; --r-xl:26px; --pill:999px;
  --maxw:1200px;
  --head:'Archivo',-apple-system,system-ui,sans-serif;
  --body:'Manrope',-apple-system,system-ui,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; font-family:var(--body);
  color:var(--ink); background:var(--bg);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  font-size:17px; line-height:1.6;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit;}

h1,h2,h3,h4{font-family:var(--head); color:var(--navy); margin:0; line-height:1.06; letter-spacing:-.018em; font-weight:800;}
h1{font-size:clamp(2.3rem,5vw,4.2rem);}
h2{font-size:clamp(1.85rem,3.4vw,2.9rem);}
h3{font-size:1.35rem;}
p{margin:0;}
.italic{font-style:italic;}

.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.section{padding:96px 0;}
.section-sm{padding:64px 0;}
.center{text-align:center;}
.eyebrow{
  font-family:var(--head); font-weight:700; font-size:.82rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--blue);
  display:inline-flex; align-items:center; gap:9px;
}
.eyebrow::before{content:""; width:26px; height:2px; background:var(--blue); display:inline-block;}
.eyebrow.center-line{justify-content:center;}
.lead{font-size:1.18rem; color:var(--muted); line-height:1.65; max-width:62ch;}
.muted{color:var(--muted);}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head.center{margin-left:auto; margin-right:auto;}
.section-head h2{margin:14px 0 16px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--head); font-weight:700; font-size:1rem; letter-spacing:.005em;
  padding:15px 26px; border-radius:var(--r); border:1.5px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s, border-color .2s;
  white-space:nowrap;
}
.btn svg{width:19px; height:19px;}
.btn-primary{background:var(--blue); color:#fff; box-shadow:0 8px 20px rgba(31,95,224,.28);}
.btn-primary:hover{background:var(--blue-600); transform:translateY(-2px); box-shadow:0 14px 30px rgba(31,95,224,.36);}
.btn-navy{background:var(--navy); color:#fff;}
.btn-navy:hover{background:var(--navy-700); transform:translateY(-2px);}
.btn-outline{background:#fff; color:var(--navy); border-color:var(--line);}
.btn-outline:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px); box-shadow:var(--shadow-sm);}
.btn-ghost-light{background:rgba(255,255,255,.1); color:#fff; border-color:rgba(255,255,255,.32);}
.btn-ghost-light:hover{background:rgba(255,255,255,.18); transform:translateY(-2px);}
.btn-lg{padding:18px 32px; font-size:1.08rem;}
.btn-block{width:100%;}

/* ---------- Top utility bar ---------- */
.topbar{background:var(--navy); color:#cdd6ea; font-size:.86rem;}
.topbar .wrap{display:flex; align-items:center; justify-content:space-between; height:42px;}
.topbar a{display:inline-flex; align-items:center; gap:7px; color:#cdd6ea; font-weight:500; white-space:nowrap;}
.topbar .tb-tag{white-space:nowrap;}
.topbar a:hover{color:#fff;}
.topbar svg{width:15px; height:15px; opacity:.85;}
.topbar .tb-left{display:flex; gap:26px;}
.topbar .tb-right{display:flex; gap:20px; align-items:center;}
.topbar .tb-tag{color:#8ea0c6;}

/* ---------- Header / nav ---------- */
.site-header{position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92); backdrop-filter:saturate(140%) blur(10px); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; height:78px; gap:18px;}
.brand img{height:38px; width:auto;}
.nav-links{display:flex; align-items:center; gap:4px;}
.nav-links a{
  font-family:var(--head); font-weight:600; font-size:.97rem; color:var(--navy);
  padding:10px 13px; border-radius:var(--r-sm); transition:color .15s, background .15s; position:relative; white-space:nowrap;
}
.nav-links a:hover{color:var(--blue); background:var(--blue-050);}
.nav-links a.active{color:var(--blue);}
.nav-links a.active::after{content:""; position:absolute; left:15px; right:15px; bottom:2px; height:2px; background:var(--blue); border-radius:2px;}
.nav-cta{display:flex; align-items:center; gap:12px;}
.nav-phone{font-family:var(--head); font-weight:700; color:var(--navy); display:inline-flex; align-items:center; gap:8px; white-space:nowrap;}
@media(max-width:1160px){.nav-phone{display:none;}}
.nav-phone:hover{color:var(--blue);}
.nav-phone svg{width:18px;height:18px; color:var(--blue);}
.burger{display:none; background:none; border:none; cursor:pointer; padding:8px; color:var(--navy);}
.burger svg{width:28px;height:28px;}

.mobile-menu{display:none; position:fixed; inset:0; z-index:80;}
.mobile-menu.open{display:block;}
.mobile-menu .scrim{position:absolute; inset:0; background:rgba(14,27,61,.5);}
.mobile-menu .panel{position:absolute; top:0; right:0; bottom:0; width:min(86vw,360px); background:#fff; padding:24px; display:flex; flex-direction:column; gap:6px; box-shadow:var(--shadow-lg); animation:slideIn .25s ease;}
@keyframes slideIn{from{transform:translateX(100%);}to{transform:translateX(0);}}
.mobile-menu .panel a{font-family:var(--head); font-weight:600; font-size:1.1rem; padding:14px 12px; border-radius:var(--r-sm); color:var(--navy);}
.mobile-menu .panel a:hover, .mobile-menu .panel a.active{background:var(--blue-050); color:var(--blue);}
.mobile-menu .mm-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:14px;}
.mobile-menu .mm-top img{height:32px;}
.mobile-menu .mm-close{background:none;border:none;cursor:pointer;color:var(--navy);}
.mobile-menu .mm-close svg{width:28px;height:28px;}

/* ---------- Hero ---------- */
.hero{position:relative; overflow:hidden;}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; padding:80px 0 90px;}
.hero h1{margin-bottom:0;}
.hero .hero-sub{margin:22px 0 32px; font-size:1.22rem; color:var(--muted); max-width:48ch;}
.hero-cta{display:flex; gap:14px; flex-wrap:wrap;}
.hero-trust{display:flex; gap:26px; margin-top:34px; flex-wrap:wrap;}
.hero-trust .ht{display:flex; align-items:center; gap:10px; font-weight:600; color:var(--navy); font-size:.95rem;}
.hero-trust .ht svg{width:20px;height:20px;color:var(--blue);}
.hero-media{position:relative;}
.hero-media .ph{position:absolute;}

.tag-pill{display:inline-flex; align-items:center; gap:8px; background:var(--blue-050); color:var(--blue-700); font-family:var(--head); font-weight:700; font-size:.82rem; letter-spacing:.04em; padding:9px 16px; border-radius:var(--pill); text-transform:uppercase; white-space:nowrap;}
.tag-pill svg{width:16px;height:16px;flex:none;}

/* ---------- Quote / search bar (price calc) ---------- */
.quotebar{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:18px;}
.quotebar .qb-row{display:grid; grid-template-columns:repeat(4,1fr) auto; gap:12px; align-items:end;}
.qfield{display:flex; flex-direction:column; gap:6px;}
.qfield label{font-family:var(--head); font-weight:700; font-size:.74rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted);}
.qfield select, .qfield input, .field input, .field select, .field textarea{
  font-family:var(--body); font-size:1rem; color:var(--ink); background:var(--bg-soft);
  border:1.5px solid var(--line); border-radius:var(--r-sm); padding:13px 14px; width:100%; transition:border-color .15s, box-shadow .15s, background .15s;
}
.qfield select:focus, .qfield input:focus, .field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--blue); background:#fff; box-shadow:0 0 0 4px var(--blue-050);
}
.qb-est{display:flex; align-items:center; gap:18px; margin-top:14px; padding-top:14px; border-top:1px dashed var(--line); flex-wrap:wrap;}
.qb-est .est-amt{font-family:var(--head); font-weight:900; font-size:1.5rem; color:var(--navy);}
.qb-est .est-amt b{color:var(--blue);}

/* ---------- Advantages ---------- */
.adv-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.adv-card{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:30px; transition:transform .2s, box-shadow .2s, border-color .2s;}
.adv-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--blue-100);}
.adv-ico{width:54px; height:54px; border-radius:14px; background:var(--blue-050); color:var(--blue); display:grid; place-items:center; margin-bottom:18px;}
.adv-ico svg{width:27px; height:27px;}
.adv-card h3{font-size:1.2rem; margin-bottom:8px;}
.adv-card p{color:var(--muted); font-size:.98rem;}

/* ---------- Vehicle cards ---------- */
.filter-bar{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px;}
.filter-bar button{
  font-family:var(--head); font-weight:700; font-size:.95rem; color:var(--navy);
  background:#fff; border:1.5px solid var(--line); padding:11px 20px; border-radius:var(--pill); cursor:pointer; transition:all .15s; white-space:nowrap;
}
.filter-bar button:hover{border-color:var(--blue); color:var(--blue);}
.filter-bar button.active{background:var(--navy); color:#fff; border-color:var(--navy);}

.fleet-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.vcard{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s, border-color .2s;}
.vcard:hover{transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--blue-100);}
.vcard .vimg{position:relative; aspect-ratio:16/10.5; overflow:hidden; background:var(--navy);}
.vcard .vimg img{width:100%; height:100%; object-fit:cover; object-position:center 62%; transition:transform .5s ease;}
.vcard:hover .vimg img{transform:scale(1.05);}
.vcat{position:absolute; top:12px; left:12px; z-index:2; background:var(--blue); color:#fff; font-family:var(--head); font-weight:700; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; padding:6px 12px; border-radius:var(--pill); box-shadow:0 4px 12px rgba(14,27,61,.25); white-space:nowrap;}
.vimg::before{content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(105deg, rgba(14,27,61,.35) 0%, rgba(14,27,61,0) 38%);}
.vbody{padding:22px 22px 24px; display:flex; flex-direction:column; flex:1;}
.vbody .vtop{display:flex; justify-content:space-between; align-items:flex-start; gap:10px;}
.vbody h3{font-size:1.3rem;}
.vbody .vyear{font-family:var(--head); font-weight:600; color:var(--muted-2); font-size:.92rem;}
.vbody .vdesc{color:var(--muted); font-size:.96rem; margin:8px 0 16px;}
.vspecs{display:flex; gap:16px; flex-wrap:wrap; padding:14px 0; border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); margin-bottom:18px;}
.vspecs .vs{display:flex; align-items:center; gap:7px; font-size:.88rem; font-weight:600; color:var(--navy);}
.vspecs .vs svg{width:17px; height:17px; color:var(--blue); flex:none;}
.vfoot{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto;}
.vprice{line-height:1.1;}
.vprice .vp-small{font-size:.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; font-weight:700; font-family:var(--head);}
.vprice .vp-amt{font-family:var(--head); font-weight:900; font-size:1.65rem; color:var(--navy);}
.vprice .vp-amt span{font-size:.95rem; color:var(--muted); font-weight:600;}

/* ---------- Why / split feature ---------- */
.split{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.feature-list{display:flex; flex-direction:column; gap:8px; margin-top:26px;}
.feature-list li{display:flex; gap:14px; align-items:flex-start; list-style:none; padding:14px 0; border-bottom:1px solid var(--line-2);}
.feature-list{padding:0; margin-left:0;}
.feature-list .fcheck{flex:none; width:28px; height:28px; border-radius:50%; background:var(--blue); color:#fff; display:grid; place-items:center; margin-top:2px;}
.feature-list .fcheck svg{width:16px;height:16px;}
.feature-list h4{font-family:var(--head); font-size:1.06rem; color:var(--navy); margin:0 0 2px;}
.feature-list p{color:var(--muted); font-size:.95rem;}

.media-frame{border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-lg); position:relative; background:var(--navy);}
.media-frame img{width:100%; height:100%; object-fit:cover;}

/* image placeholder (striped) */
.ph-img{background:
  repeating-linear-gradient(45deg, #e9edf6 0 14px, #f3f6fc 14px 28px);
  display:grid; place-items:center; color:#9aa6bd; font-family:ui-monospace,monospace; font-size:.82rem; text-align:center; padding:20px;}

/* ---------- Delivery band / steps ---------- */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; counter-reset:s;}
.step{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 28px; position:relative;}
.step .snum{font-family:var(--head); font-weight:900; font-size:2.4rem; color:var(--blue-100); line-height:1;}
.step h3{font-size:1.18rem; margin:10px 0 8px;}
.step p{color:var(--muted); font-size:.97rem;}

/* ---------- Stats ---------- */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.stat{text-align:center;}
.stat .sv{font-family:var(--head); font-weight:900; font-size:clamp(2.2rem,4vw,3.2rem); color:#fff; line-height:1;}
.stat .sv span{color:#8fb0f5;}
.stat .sl{color:#aebbd6; font-size:.95rem; margin-top:8px; font-weight:500;}

/* ---------- Testimonials ---------- */
.tcarousel{position:relative;}
.ttrack{display:flex; gap:24px; overflow:hidden;}
.tcard{flex:0 0 calc((100% - 48px)/3); background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:30px; box-shadow:var(--shadow-sm);}
.stars{display:flex; gap:3px; color:var(--star); margin-bottom:14px;}
.stars svg{width:19px;height:19px;}
.tcard .tquote{font-size:1.05rem; color:var(--ink); line-height:1.6; margin-bottom:20px;}
.tperson{display:flex; align-items:center; gap:13px;}
.tperson .tav{width:46px;height:46px;border-radius:50%; background:var(--navy); color:#fff; display:grid; place-items:center; font-family:var(--head); font-weight:800; font-size:1.05rem;}
.tperson .tn{font-family:var(--head); font-weight:700; color:var(--navy); font-size:1rem;}
.tperson .tr{color:var(--muted); font-size:.85rem;}
.tnav{display:flex; gap:10px; justify-content:center; margin-top:30px;}
.tnav button{width:46px;height:46px;border-radius:50%; border:1.5px solid var(--line); background:#fff; cursor:pointer; color:var(--navy); display:grid;place-items:center; transition:all .15s;}
.tnav button:hover{border-color:var(--blue); color:var(--blue); box-shadow:var(--shadow-sm);}
.tnav svg{width:20px;height:20px;}

/* ---------- CTA band ---------- */
.cta-band{position:relative; overflow:hidden; background:var(--navy); border-radius:var(--r-xl); padding:64px; color:#fff; text-align:center;}
.cta-band::before{content:""; position:absolute; inset:0; background:radial-gradient(900px 400px at 80% -10%, rgba(31,95,224,.5), transparent 60%);}
.cta-band > *{position:relative;}
.cta-band h2{color:#fff;}
.cta-band p{color:#c4cfe6; font-size:1.18rem; margin:14px auto 30px; max-width:54ch;}
.cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* sections on dark */
.dark-section{background:var(--navy); color:#fff; position:relative; overflow:hidden;}
.dark-section h2{color:#fff;}
.dark-section .lead{color:#bcc7e0;}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy); color:#aeb9d2; padding:72px 0 30px;}
.foot-grid{display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1);}
.site-footer img.flog{height:40px; margin-bottom:18px;}
.site-footer p{font-size:.96rem; line-height:1.7;}
.foot-col h4{font-family:var(--head); color:#fff; font-size:.95rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px;}
.foot-col a{display:block; color:#aeb9d2; padding:7px 0; font-size:.97rem; transition:color .15s;}
.foot-col a:hover{color:#fff;}
.foot-contact a{display:flex; gap:11px; align-items:flex-start; padding:9px 0;}
.foot-contact svg{width:18px;height:18px;color:var(--blue); flex:none; margin-top:2px;}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:.88rem; color:#7e8aa6; flex-wrap:wrap; gap:12px;}

/* ---------- Sticky mobile call ---------- */
.sticky-call{display:none; position:fixed; left:0; right:0; bottom:0; z-index:70; padding:12px 16px calc(12px + env(safe-area-inset-bottom)); background:rgba(255,255,255,.96); backdrop-filter:blur(8px); border-top:1px solid var(--line); gap:12px;}
.sticky-call .btn{flex:1;}

/* ---------- Page hero (interior) ---------- */
.page-hero{background:var(--navy); color:#fff; position:relative; overflow:hidden; padding:64px 0 72px;}
.page-hero::before{content:""; position:absolute; inset:0; background:radial-gradient(800px 360px at 85% -20%, rgba(31,95,224,.45), transparent 60%);}
.page-hero .wrap{position:relative;}
.page-hero .crumbs{font-size:.9rem; color:#9fb0d6; margin-bottom:16px; font-weight:500;}
.page-hero .crumbs a:hover{color:#fff;}
.page-hero h1{color:#fff; max-width:18ch;}
.page-hero p{color:#c4cfe6; font-size:1.18rem; margin-top:18px; max-width:60ch;}

/* ---------- Forms (reservation/contact) ---------- */
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:18px;}
.field label{font-family:var(--head); font-weight:700; font-size:.86rem; color:var(--navy);}
.field label .req{color:var(--blue);}
.field .hint{font-size:.82rem; color:var(--muted-2);}
.field textarea{min-height:110px; resize:vertical;}
.field.err input, .field.err select, .field.err textarea{border-color:#e0443e; background:#fef5f5;}
.field .errmsg{font-size:.82rem; color:#e0443e; font-weight:600; display:none;}
.field.err .errmsg{display:block;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:0 20px;}
.form-card{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:34px; box-shadow:var(--shadow-md);}

/* stepper */
.stepper{display:flex; align-items:center; gap:0; margin-bottom:30px;}
.stepper .sp{display:flex; align-items:center; gap:11px; flex:1;}
.stepper .sp:last-child{flex:0;}
.stepper .dot{width:36px;height:36px;border-radius:50%; background:var(--bg-soft-2); color:var(--muted); display:grid; place-items:center; font-family:var(--head); font-weight:800; border:2px solid var(--line); flex:none; transition:all .2s;}
.stepper .sp.active .dot{background:var(--blue); color:#fff; border-color:var(--blue);}
.stepper .sp.done .dot{background:var(--ok); color:#fff; border-color:var(--ok);}
.stepper .sp .lbl{font-family:var(--head); font-weight:700; font-size:.9rem; color:var(--muted); white-space:nowrap;}
.stepper .sp.active .lbl, .stepper .sp.done .lbl{color:var(--navy);}
.stepper .bar{height:2px; background:var(--line); flex:1; min-width:18px; border-radius:2px;}
.stepper .sp.done .bar{background:var(--ok);}

.summary-card{background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--r-lg); padding:26px; position:sticky; top:96px;}
.summary-card h3{font-size:1.15rem; margin-bottom:6px;}
.summary-row{display:flex; justify-content:space-between; gap:12px; padding:11px 0; border-bottom:1px solid var(--line); font-size:.96rem;}
.summary-row .k{color:var(--muted);}
.summary-row .v{font-weight:700; color:var(--navy); text-align:right;}
.summary-total{display:flex; justify-content:space-between; align-items:baseline; margin-top:16px; padding-top:16px; border-top:2px solid var(--navy);}
.summary-total .v{font-family:var(--head); font-weight:900; font-size:1.8rem; color:var(--blue);}

.confirm{text-align:center; padding:30px 10px;}
.confirm .cico{width:84px;height:84px;border-radius:50%; background:var(--ok); color:#fff; display:grid; place-items:center; margin:0 auto 22px; animation:pop .4s ease;}
.confirm .cico svg{width:44px;height:44px;}
@keyframes pop{0%{transform:scale(.6);}60%{transform:scale(1.1);}100%{transform:scale(1);}}

/* contact info cards */
.info-card{background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:26px; display:flex; gap:16px; align-items:flex-start; transition:transform .2s, box-shadow .2s;}
.info-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-md);}
.info-card .ic{width:50px;height:50px;border-radius:13px; background:var(--blue-050); color:var(--blue); display:grid; place-items:center; flex:none;}
.info-card .ic svg{width:24px;height:24px;}
.info-card h4{font-family:var(--head); color:var(--navy); margin-bottom:4px; font-size:1.05rem;}
.info-card a, .info-card p{color:var(--muted); font-size:.98rem;}
.info-card a:hover{color:var(--blue);}

/* badges row */
.trust-row{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.trust-chip{display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line); border-radius:var(--pill); padding:10px 18px; font-weight:700; color:var(--navy); font-size:.92rem; box-shadow:var(--shadow-sm);}
.trust-chip svg{width:18px;height:18px;color:var(--blue);}

.reveal{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:none;}

/* ---------- Category image strip (home + flotte) ---------- */
.cat-strip{display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin:28px 0 10px;}
.cat-strip .ms{width:150px; aspect-ratio:16/11; border-radius:var(--r); overflow:hidden; background:var(--navy); box-shadow:var(--shadow-sm); position:relative; text-decoration:none;}
.cat-strip .ms img{width:100%;height:100%;object-fit:cover;object-position:center 60%;}
.cat-strip .ms span{position:absolute; left:0; right:0; bottom:0; background:linear-gradient(0deg,rgba(14,27,61,.85),transparent); color:#fff; font-family:var(--head); font-weight:700; font-size:.72rem; padding:14px 8px 7px; text-align:center;}
@media(max-width:760px){ .cat-strip .ms{width:120px;} }

/* ---------- Reservation vehicle picker ---------- */
.vehicle-picker{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:18px;}
.vpick{border:1.5px solid var(--line); border-radius:var(--r); background:#fff; padding:8px; cursor:pointer; text-align:center; transition:border-color .15s, box-shadow .15s;}
.vpick:hover{border-color:var(--blue-100); box-shadow:var(--shadow-sm);}
.vpick.active{border-color:var(--blue); box-shadow:0 0 0 3px var(--blue-050);}
.vpick img{width:100%; aspect-ratio:16/10; object-fit:cover; object-position:center 60%; border-radius:calc(var(--r) - 4px); background:var(--navy); display:block;}
.vpick span{display:block; font-family:var(--head); font-weight:700; font-size:.82rem; color:var(--navy); margin-top:8px; line-height:1.2;}
.vpick em{display:block; font-style:normal; font-size:.78rem; color:var(--muted); margin-top:2px;}
@media(max-width:760px){ .vehicle-picker{grid-template-columns:repeat(2,1fr);} }

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .adv-grid, .fleet-grid, .steps{grid-template-columns:repeat(2,1fr);}
  .stats{grid-template-columns:repeat(2,1fr); gap:32px;}
  .split{grid-template-columns:1fr; gap:34px;}
  .foot-grid{grid-template-columns:1fr 1fr; gap:32px;}
  .tcard{flex:0 0 calc((100% - 24px)/2);}
  .qb-row{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:760px){
  body{font-size:16px;}
  .section{padding:64px 0;}
  .nav-links, .nav-phone, .topbar{display:none;}
  .burger{display:block;}
  .adv-grid, .fleet-grid, .steps, .form-grid{grid-template-columns:1fr;}
  .tcard{flex:0 0 100%;}
  .cta-band{padding:40px 24px;}
  .sticky-call{display:flex;}
  body.has-sticky{padding-bottom:78px;}
  .wrap{padding:0 20px;}
  .summary-card{position:static;}
  .qb-row{grid-template-columns:1fr;}
  .stepper .sp .lbl{display:none;}
  .stepper .sp.active .lbl{display:block;}
}
