/* main.css — X-Pert theme (dark, fast, Facebook blog-ready)  */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root{
  --max-width:1200px;

  --accent-red:#ef3b3b;
  --accent-blue:#0f69d6;

  --bg:#070707;
  --bg-alt:#0b0b0b;
  --panel:#0f1113;

  --text:#e8eef3;
  --sub:#a6b6c6;
  --muted:#97a4b3;

  --radius-lg:14px;
  --radius-md:10px;
  --gap:22px;
  --header-height:76px;

  --hairline-weak:rgba(255,255,255,.03);
  --hairline-mid:rgba(255,255,255,.06);
  --hairline-strong:rgba(255,255,255,.12);

  --svc-card-height:320px;
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  color:var(--text);
  background:var(--bg);
}
img,svg,video{max-width:100%;height:auto;display:block}
a{color:#76b4ff;text-decoration:none}
a:hover{text-decoration:underline}
.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:28px}

/* ---------- Typography ---------- */
:root{
  --h1: clamp(34px, 5vw, 56px);
  --h2: clamp(26px, 3.5vw, 36px);
  --h3: clamp(20px, 2.6vw, 24px);
  --h4: 18px;
  --h5: 16px;
  --h6: 14px;
  --body: 16px;
  --lead: 18px;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-weight:800;
  line-height:1.1;
  margin:0 0 .5rem;
  letter-spacing:-.2px;
  color:var(--text);
}
h1{font-size:var(--h1)}
h2{font-size:var(--h2)}
h3{font-size:var(--h3);font-weight:700}
h4{font-size:var(--h4);font-weight:700}
h5{font-size:var(--h5);font-weight:600}
h6{font-size:var(--h6);font-weight:600}

p{font-size:var(--body);margin:0 0 1rem;color:var(--sub)}
.lead{font-size:var(--lead);color:var(--muted)}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:#76b4ff;
  font-size:12px;
}
.highlight{
  display:inline-block;background:var(--accent-blue);color:#fff;
  padding:4px 10px;border-radius:8px;font-weight:700;
}

/* Outlined text utility */
.outlined{
  font-family:'Poppins', sans-serif;font-weight:800;font-size:32px;line-height:1.15;color:#fff;
  text-shadow:-1px -1px 0 #000,1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000;
  -webkit-text-stroke:1px #000;
}
.outlined--sm{font-size:22px}
.outlined--lg{font-size:40px}

/* ---------- Header / Nav ---------- */
.header{
  position:sticky;top:0;z-index:60;
  background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.28));
  border-bottom:1px solid var(--hairline-weak);
  backdrop-filter:blur(4px);
}
.header__content{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px;
  padding:18px 0;min-height:var(--header-height)
}
.logo{justify-self:start;font-weight:800;color:var(--text);font-size:18px;text-decoration:none}
.nav{justify-self:center;width:100%;text-align:center}
.nav__list{display:inline-flex;gap:22px;padding:0;margin:0;list-style:none;align-items:center}
.nav__link{
  display:inline-block;color:rgba(255,255,255,.84);padding:8px 10px;border-radius:8px;
  text-decoration:none;font-weight:600;font-size:14px;transition:color .18s,transform .12s
}
.nav__link:hover{color:#fff;transform:translateY(-1px)}
.nav__link--active{color:#fff;box-shadow:inset 0 -3px 0 var(--accent-blue)}
.header__ctas{justify-self:end;display:flex;gap:10px;align-items:center}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;padding:10px 14px;border-radius:10px;text-decoration:none;
  font-weight:700;font-size:14px;border:2px solid var(--hairline-weak);color:var(--text);background:transparent
}
.btn:hover{transform:translateY(-1px)}
.btn--urgent,.btn.call{background:var(--accent-red);border-color:var(--accent-red);color:#fff;box-shadow:0 6px 18px rgba(239,59,59,.12)}
.btn--outline,.btn.outline{background:transparent;color:var(--accent-blue);border:2px solid rgba(15,105,214,.24)}
.btn.outline:hover{border-color:rgba(15,105,214,.55)}

/* ---------- Hero ---------- */
.hero{padding:0}
.hero .container{padding:58px 28px;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:48px}
.hero__title{font-size:56px;margin:0 0 12px;line-height:1.02;font-weight:800}
.hero__tagline{color:var(--accent-blue);font-weight:700;letter-spacing:.2px;margin:6px 0 10px;font-size:13.5px}
.hero__subtitle{color:var(--sub);max-width:680px;margin:0 0 18px;font-size:16px}
.hero__image{text-align:right}
.hero__image img{display:block;width:100%;max-width:520px;height:auto;margin:0 0 0 auto;border-radius:10px}

/* ---------- Sections & grids ---------- */
.section{padding:48px 0}
.section.alt{background:var(--bg-alt)}
.section__title{font-size:26px;margin:0 0 6px;font-weight:700}
.section__subtitle{color:var(--muted);margin:0 0 18px;font-weight:600;letter-spacing:.6px}
.section__header{text-align:center}
.page-sections > .section:nth-of-type(even){background:var(--bg-alt);border-top:1px solid var(--hairline-weak);border-bottom:1px solid var(--hairline-weak)}
.grid{display:grid;gap:var(--gap)}
.grid.grid--3{grid-template-columns:repeat(3,1fr)}

.card,.service-card{
  background:linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,.006));
  padding:20px;border-radius:var(--radius-lg);border:1px solid var(--hairline-weak);
  position:relative;overflow:hidden;transition:transform .18s,box-shadow .18s
}
.card:hover,.service-card:hover{transform:translateY(-6px);box-shadow:0 18px 50px rgba(0,0,0,.6)}

.service-card{
  border-radius:12px;padding:22px;box-shadow:inset 0 0 0 2px rgba(15,105,214,.08)
}
.service-card h3{margin:0 0 10px;font-size:18px;font-weight:700}
.service-card p{color:var(--muted);margin:0 0 12px;font-size:14px}

/* ---------- WHY (blue phone icon) ---------- */
.section--why{text-align:center}
.section--why .section__title{font-size:32px;font-weight:800;letter-spacing:-.2px}
.section--why .grid.grid--3{grid-template-columns:repeat(3, minmax(0, 320px));justify-content:center;gap:28px}
.section--why .feature{
  display:flex;flex-direction:column;align-items:center;text-align:center;padding:26px;border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
  border:1px solid var(--hairline-strong);box-shadow:inset 0 0 0 2px rgba(15,105,214,.03)
}
.section--why .feature__icon{
  width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:34px;font-weight:800;line-height:1;margin-bottom:12px;color:#fff;text-shadow:0 0 10px rgba(255,255,255,.25)
}
.section--why .feature:nth-child(1) .feature__icon{background:rgba(255,193,7,.24);box-shadow:0 0 0 2px rgba(255,193,7,.65),0 12px 28px rgba(255,193,7,.28)}
.section--why .feature:nth-child(2) .feature__icon{background:rgba(15,105,214,.28);box-shadow:0 0 0 2px rgba(15,105,214,.65),0 12px 28px rgba(15,105,214,.28)}
.section--why .feature:nth-child(3) .feature__icon{background:rgba(40,180,95,.28);box-shadow:0 0 0 2px rgba(40,180,95,.65),0 12px 28px rgba(40,180,95,.28)}
.section--why .feature__icon svg{width:34px;height:34px;display:block}
.section--why .feature__icon--phone svg{fill:var(--accent-blue);filter:drop-shadow(0 0 6px rgba(15,105,214,.35))}

/* ---------- Reviews marquee ---------- */
.review-card{border-radius:12px;padding:22px;border:1px solid rgba(15,105,214,.09);background:linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,.005))}
.reviews-header{display:flex;align-items:center;justify-content:center;gap:14px;margin:6px 0 18px}
.rating-badge{display:inline-flex;align-items:baseline;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid var(--hairline-mid);box-shadow:inset 0 0 0 2px rgba(15,105,214,.06);font-weight:700}
.rating-badge__logo{width:20px;height:20px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;color:#fff;background:linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335)}
.rating-badge__score{font-size:18px}
.rating-badge__outof,.rating-badge__count{color:var(--muted);font-weight:600;font-size:13px}
.reviews-marquee{display:flex;overflow:hidden;position:relative}
.reviews-marquee::before,.reviews-marquee::after{content:"";position:absolute;top:0;bottom:0;width:48px;pointer-events:none}
.reviews-marquee::before{left:0;background:linear-gradient(90deg,var(--bg-alt),transparent)}
.reviews-marquee::after{right:0;background:linear-gradient(270deg,var(--bg-alt),transparent)}
.reviews-list{flex:none;display:flex;gap:16px;padding:2px 0;animation:reviews-scroll 120s linear infinite;will-change:transform}
.reviews-marquee:hover .reviews-list{animation-play-state:paused}
@keyframes reviews-scroll{from{transform:translateX(0)}to{transform:translateX(-100%)}}
.review-card--marquee{min-width:360px;max-width:420px;display:flex;flex-direction:column;justify-content:flex-start}
.review-card--marquee .review__stars{letter-spacing:1px;margin-bottom:8px}
.review-card--marquee .review__text{color:var(--muted);margin:0 0 10px}
.review-card--marquee .review__author span{color:var(--muted);margin-left:6px}

/* ---------- Coverage (Leaflet map) ---------- */
.coverage{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:start}
.coverage__map{
  border:1px solid var(--hairline-mid);border-radius:12px;overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.01),rgba(255,255,255,.006));
  box-shadow:inset 0 0 0 2px rgba(15,105,214,.06);position:relative
}
#service-map{width:100%;height:420px}
.map-legend{
  position:absolute;top:10px;left:10px;background:rgba(0,0,0,.5);backdrop-filter:blur(3px);
  padding:8px 10px;border-radius:8px;border:1px solid var(--hairline-mid);font-weight:700;font-size:12px;display:flex;gap:10px;color:#eaf0f7
}
.map-legend .swatch{display:inline-block;width:14px;height:4px;border-radius:2px;margin-right:6px;vertical-align:middle}
.swatch--orl{background:#0f69d6}
.swatch--sc{background:#34a853}
.map-label{color:#fff;font-weight:800;text-shadow:0 1px 2px rgba(0,0,0,.6);white-space:nowrap}
.coverage__zones{display:flex;flex-direction:column;gap:16px}
.zone-cta{display:flex;gap:10px;margin-top:4px}

/* ---------- CTA band ---------- */
.cta-band{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid var(--hairline-mid);border-radius:12px;padding:18px 20px
}
.cta-title{font-weight:800;font-size:20px}
.cta-sub{color:var(--muted)}

/* ---------- Blog (Facebook Feed) ---------- */
.page-title{font-size:clamp(28px,3.2vw,44px);font-weight:800;margin:0 0 4px}
.page-sub{opacity:.85;margin:0 0 24px}
.fb-wrap{
  max-width:1000px;margin:0 auto;background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.06);border-radius:14px;padding:16px
}
/* Let the iframe stretch responsively */
.fb-page,.fb_iframe_widget,.fb_iframe_widget span,.fb_iframe_widget iframe{
  width:100% !important;max-width:100% !important;
}

/* ---------- Footer (simple) ---------- */
.site-footer{background:#0a0c10;border-top:1px solid var(--hairline-mid)}
.site-footer .container{padding:24px 28px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.footer-meta{color:var(--muted);font-size:14px}

/* ---------- Utilities + Responsive ---------- */
[id]{scroll-margin-top:calc(var(--header-height) + 16px)}
:target{outline:none;box-shadow:0 0 0 8px rgba(15,105,214,.06)}
.text-muted{color:var(--muted)}
.small{font-size:13px;color:var(--muted)}

/* Breakpoints */
@media (max-width:1100px){
  .hero .container{grid-template-columns:1fr;gap:28px}
  .hero__title{font-size:44px}
  .grid.grid--3{grid-template-columns:repeat(2,1fr)}
  :root{--svc-card-height:300px}
  .section--why .grid.grid--3{grid-template-columns:repeat(2, minmax(0, 320px))}
}
@media (max-width:980px){
  .coverage{grid-template-columns:1fr}
  .coverage__map{order:2}
  .coverage__zones{order:1}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .grid,.grid.grid--3{grid-template-columns:1fr;gap:18px}
  .reviews-header{flex-direction:column;gap:10px}
  .review-card--marquee{min-width:85vw}
  #service-map{height:360px}
  .cta-band{flex-direction:column;align-items:flex-start}
}
@media (max-width:420px){
  .hero__title{font-size:24px}
  .btn{padding:9px 12px;font-size:13px}
  #service-map{height:300px}
}

/* ======= GLOBAL OVERRIDES: typography, spacing, service card look ======= */
body{color:#e0e0e0 !important}
h1,h2,h3,h4,h5,h6{color:#ffffff !important}
p,li{line-height:1.6 !important}

/* Alternating section backgrounds with clean dividers */
.section{padding:64px 0 !important}
.page-sections > .section:nth-of-type(odd){background:#0a0c0f}
.page-sections > .section:nth-of-type(even){background:#0d1014}
.page-sections > .section{border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}

/* If services live outside .page-sections, give them a divider too */
.services-hero{border-bottom:1px solid rgba(255,255,255,.06)}
.services-wrap{border-top:1px solid rgba(255,255,255,.06)}

/* Softer service-card border + shadow; gentler photo overlays */
.service-card{
  border-color:rgba(58,124,165,.55) !important;
  box-shadow:0 2px 8px rgba(0,0,0,.40) !important;
}
.service-card::after{
  background:rgba(0,0,0,.45) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.service-card::before{
  opacity:var(--img-opacity,.40) !important;
  background-size:cover !important;
}

/* ===== ARE WE RIGHT FOR YOUR FLEET — PAGE STYLES (Bolt match) ===== */

/* Tidy lists */
.analyze-list, .bullets { padding-left: 18px; margin: 8px 0 0; }
.analyze-list li, .bullets li { margin: 6px 0; color: var(--muted); }

/* Numbered steps */
.step-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 12px; }
.step__num {
  width: 34px; height: 34px; border-radius: 999px; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 800;
  background: rgba(15,105,214,.18); border: 2px solid rgba(15,105,214,.55); color: #cfe3ff;
  box-shadow: 0 6px 18px rgba(15,105,214,.15);
}
.step__body h4 { margin: 0 0 4px; font-size: 16px; }
.step__body p { margin: 0; color: var(--muted); }

/* Feature cards */
.feature-emoji { font-size: 28px; line-height: 1; margin-bottom: 8px; }

/* Fit / Not fit */
.fit-card { box-shadow: inset 0 0 0 2px rgba(15,105,214,.08); }
.fit-card h3 { margin-bottom: 8px; }

/* Metrics */
.metric-grid .metric {
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 2px rgba(15,105,214,.08);
}
.metric__value { font-size: 34px; font-weight: 800; color: #7ab6ff; margin-bottom: 6px; }
.metric__title { font-weight: 700; margin-bottom: 2px; }
.metric__desc { color: var(--muted); }

/* ROI panel */
.roi { margin-top: 22px; }
.roi__title { margin-bottom: 10px; }
.roi__grid { gap: 18px; }
.roi__savings {
  margin-top: 8px; font-weight: 800; color: #28b05f;
  border-top: 1px solid var(--hairline-mid); padding-top: 8px;
}

/* Start cards (CTA trio) */
.start-card { display: flex; flex-direction: column; gap: 10px; }
.start-card__icon { font-size: 28px; }
.call-card .btn { align-self: start; }

/* FAQ (using <details>) */
.faq__item {
  border-top: 1px solid var(--hairline-mid);
  padding: 12px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--hairline-mid); }
.faq__item summary {
  cursor: pointer; list-style: none; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:after {
  content: "▸"; margin-left: auto; transition: transform .18s ease;
  opacity: .75;
}
.faq__item[open] summary:after { transform: rotate(90deg); opacity: 1; }
.faq__content { color: var(--muted); padding: 8px 0 4px; }

/* Responsive tweak so 2-col sections collapse nicely */
@media (max-width: 980px){
  .grid[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ===== Services page overrides (fix condensed cards) ===== */
.services-wrap .service-card::before,
.services-wrap .service-card::after {
  content: none !important;
}

.services-wrap .service-card {
  height: auto !important;
  min-height: 160px;
}

.services-wrap .service-card .inner,
.services-wrap .service-card p,
.services-wrap .service-card li {
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.services-wrap .service-card .overlay,
.services-wrap .service-card .bg {
  pointer-events: none;
}

/* ============================================================
   Responsive Baseline — X-Pert Fleet (MOBILE-FIRST ENHANCEMENTS)
   Integrated to work with existing class names
   ============================================================ */

/* 1) Container + spacing (mobile-first) */
:root{
  --container-pad: 20px;
  --container-max: 1200px;
}
.container{
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* 2) Type scales that actually scale on small screens */
h1{ font-size: clamp(28px, 6vw, 56px); line-height: 1.1; }
h2{ font-size: clamp(22px, 4.5vw, 36px); line-height: 1.2; }
h3{ font-size: clamp(18px, 3.5vw, 24px); line-height: 1.25; }
p, li{ font-size: clamp(15px, 2.9vw, 18px); line-height: 1.55; }

/* 3) Media never overflow (already set but reaffirm for safety) */
img, svg, video{ max-width: 100%; height: auto; }

/* 4) Buttons = big, tappable, full-width on mobile by default */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;           /* thumb target */
  padding: 12px 18px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;                /* mobile default */
}
.btn--large{ padding: 14px 22px; }

/* 5) Header & Nav (mobile-first collapse) */
.header{
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid var(--hairline-weak);
}
.header .container{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:12px; padding-bottom:12px; }
.header__content{ display: contents; } /* let the flex container above handle layout on mobile */

.logo{ display:inline-flex; align-items:center; gap:10px; transform: translateZ(0); }
.logo img{ height: 44px; width: auto; }

.nav-toggle{
  display: inline-flex;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

/* Treat .nav as the collapsible primary menu on mobile */
.nav{
  position: fixed;
  inset: var(--header-height) 0 auto 0;   /* below header */
  background: var(--bg);
  border-top: 1px solid var(--hairline-mid);
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  text-align: left;
}
.nav.is-open{ opacity: 1; transform: none; pointer-events: auto; }
.nav__list{ display:block; padding: 14px var(--container-pad); }
.nav__list li + li{ margin-top: 10px; }
.nav__link{ display:block; padding:10px 12px; border-radius:10px; }

/* Call/Text pill hidden on very small screens (hero has full-width CTAs) */
.header__ctas{ display:none; }

/* 6) Hero section — stacked by default on mobile */
.hero{ padding: 36px 0 26px; }
.hero .container{
  display: grid;
  grid-template-columns: 1fr;       /* mobile first */
  gap: 14px;
  padding: 28px var(--container-pad);
}
.hero__content{ display: grid; gap: 12px; }
.hero__ctas{ display: grid; gap: 10px; } /* stacked buttons on mobile */
.hero__image{ margin-top: 8px; text-align: center; }
.hero__image img{ margin-inline: auto; max-width: 520px; }

/* 7) Grids & cards (1 col → 2 → 3) */
.grid{ display: grid; gap: var(--gap); }
.grid.cards{ align-items: stretch; }
.card{
  background: var(--panel);
  border: 1px solid var(--hairline-mid);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: grid; gap: 10px;
  min-height: 100%;
}

/* 8) Forms (bbPress / Contact) readability */
form input, form select, form textarea,
.bbp-form input, .bbp-form select, .bbp-form textarea{
  width: 100%;
  background: #0c0d10;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #e8eef3;
  padding: 12px 14px;
}
form label, .bbp-form label{ color: #c9d4e3; font-weight: 600; }
.bbp-submit-wrapper .button, .bbp-submit-wrapper button{
  width: 100%;
  min-height: 44px;
}

/* 9) Footer stacks on mobile */
.site-footer{ padding: 28px 0; }
.footer-grid{ grid-template-columns: 1fr; gap: 18px; }

/* -------- Breakpoints (scale up) -------- */

/* ≥480px: small / large phones */
@media (min-width:480px){
  .btn{ width:auto; } /* stop stretching if space allows */
}

/* ≥768px: tablet */
@media (min-width:768px){
  .logo img{ height: 52px; } /* sharper logo without inflating header */
  .hero{ padding: 56px 0 36px; }
  .hero .container{ gap: 24px; }
  .hero__ctas{ grid-auto-flow: column; grid-auto-columns: 1fr; }

  /* put nav back inline and show CTAs */
  .nav{
    position: static; opacity: 1; transform: none; pointer-events: auto;
    background: transparent; border-top: 0;
  }
  .nav__list{ display: flex; gap: 14px; padding: 0; }
  .nav__list li + li{ margin-top: 0; }
  .nav-toggle{ display: none; }
  .header__ctas{ display: inline-flex; gap:10px; }
}

/* ≥1024px: desktop */
@media (min-width:1024px){
  .hero{
    padding: 84px 0 52px;
  }
  .hero .container{
    grid-template-columns: 1.1fr .9fr;  /* content | image */
    align-items: center;
    gap: clamp(20px, 5vw, 64px);
  }
  .hero__image{ margin: 0; text-align: right; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

/* ≥1280px: large desktop polish */
@media (min-width:1280px){
  .logo img{ height: 56px; }
}
