/* assets/css/style.css — FUTURIST LUX / AUR + CRISTAL (clean, scump) */

:root{
  --bg0:#05060a;
  --bg1:#070a12;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.72);
  --line: rgba(255,255,255,.12);

  /* lux accents */
  --gold1:#f6d365;
  --gold2:#d4af37;
  --gold3:#b8870a;

  --crystal1:#71f7ff;
  --crystal2:#8b5cf6;
  --crystal3:#22c55e;

  --shadow: 0 18px 48px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);

  --radius: 18px;
  --max: 1120px;

  --glowGold: 0 0 22px rgba(212,175,55,.28);
  --glowCrys: 0 0 26px rgba(113,247,255,.22);

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(900px 600px at 18% 8%, rgba(113,247,255,.14), transparent 58%),
    radial-gradient(980px 640px at 88% 12%, rgba(212,175,55,.13), transparent 58%),
    radial-gradient(760px 520px at 64% 84%, rgba(139,92,246,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

/* subtle luxe noise + faint grid */
body::before{
  content:"";
  position:fixed; inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 90px);
  opacity:.22;
  pointer-events:none;
  mix-blend-mode: overlay;
}
body::after{
  content:"";
  position:fixed; inset:-20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(246,211,101,.10), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(113,247,255,.08), transparent 60%);
  filter: blur(24px);
  opacity:.65;
  pointer-events:none;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* TOPBAR / NAV */
.topbar{
  position:sticky;top:0;z-index:50;
  background: rgba(6,8,14,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:12px;
}
.brand{
  display:flex;flex-direction:column;line-height:1.10;
  position:relative;
}
.brand strong{
  font-size:16px;letter-spacing:.6px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, rgba(234,240,255,.78) 40%, #ffffff 65%);
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.brand span{
  font-size:12px;
  color:rgba(234,240,255,.62);
}

/* luxe underline glint for brand */
.brand strong::after{
  content:"";
  display:block;
  height:2px;
  margin-top:8px;
  width:64px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(246,211,101,.95), rgba(113,247,255,.55), transparent);
  opacity:.75;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.25));
}

/* classic menu (we’ll hide it on desktop & mobile and use overlay button instead) */
.menu{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.menu a{
  font-size:13.5px;
  color:rgba(234,240,255,.70);
  position:relative;
  padding:8px 10px;
  border-radius:999px;
  transition: transform .14s var(--ease), background .14s var(--ease), color .14s var(--ease);
}
.menu a:hover{
  color:#ffffff;
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* BUTTONS */
.cta{display:flex;align-items:center;gap:10px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  font-weight:700;font-size:14px;
  letter-spacing:.2px;
  transition:
    transform .16s var(--ease),
    box-shadow .16s var(--ease),
    border-color .16s var(--ease),
    background .16s var(--ease),
    filter .16s var(--ease);
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(246,211,101,.35);
  box-shadow: var(--shadow), var(--glowGold);
  filter: brightness(1.05);
}

/* primary = gold crystal */
.btn.primary{
  border-color: rgba(246,211,101,.55);
  color: #160f00;
  background:
    linear-gradient(135deg, rgba(246,211,101,.98), rgba(212,175,55,.92), rgba(113,247,255,.22)),
    radial-gradient(120% 120% at 10% 10%, rgba(255,255,255,.55), transparent 50%);
  box-shadow: 0 18px 44px rgba(0,0,0,.40), var(--glowGold);
}
.btn.primary:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 56px rgba(0,0,0,.46), 0 0 26px rgba(246,211,101,.34), 0 0 26px rgba(113,247,255,.16);
}

/* ghost = glass crystal */
.btn.ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(113,247,255,.22);
  color: rgba(234,240,255,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.34), var(--glowCrys);
}
.btn.ghost:hover{
  border-color: rgba(113,247,255,.38);
  box-shadow: 0 18px 46px rgba(0,0,0,.46), 0 0 30px rgba(113,247,255,.22);
}

/* HERO */
.hero{padding:44px 0 22px}
.heroCard{
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow:hidden;
  position:relative;

  background:
    radial-gradient(900px 420px at 18% 10%, rgba(246,211,101,.18), transparent 62%),
    radial-gradient(900px 420px at 80% 20%, rgba(113,247,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    url("../img/hero.webp") center/cover no-repeat;

  box-shadow: var(--shadow);
}
.heroCard::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 35%, rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72));
  pointer-events:none;
}
.heroCard::after{
  content:"";
  position:absolute; inset:-60px;
  background:
    conic-gradient(from 190deg at 50% 50%,
      rgba(246,211,101,.18),
      rgba(113,247,255,.14),
      rgba(139,92,246,.12),
      rgba(246,211,101,.18));
  filter: blur(34px);
  opacity:.55;
  pointer-events:none;
  mix-blend-mode: screen;
}

.heroInner{
  position:relative; z-index:1;
  padding:36px 18px;
  max-width: 820px;
}

.kicker{
  display:inline-flex;gap:8px;align-items:center;
  font-size:12px;
  color: rgba(234,240,255,.88);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(246,211,101,.22);
  padding:7px 11px;border-radius:999px;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

h1{
  font-size:40px;
  line-height:1.06;
  margin:14px 0 10px;
  letter-spacing:.2px;

  background:
    linear-gradient(135deg, #ffffff 0%, rgba(246,211,101,.95) 35%, rgba(113,247,255,.55) 70%, #ffffff 100%);
  -webkit-background-clip:text;background-clip:text;
  color:transparent;

  text-shadow: 0 10px 22px rgba(0,0,0,.40);
}

/* ===========================
   H1 ROAD BACKGROUND (NEW)
   Pune poza aici:
   assets/img/hero/highway-usa.webp
   =========================== */
.h1Road{
  position: relative;
  display: inline-block;
  padding: 18px 20px;
  border-radius: 18px;
  overflow: hidden;

  /* override gradient text from h1 */
  background: url("../img/hero/highway-usa.webp") center/cover no-repeat;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffffff;

  border: 1px solid rgba(246,211,101,.20);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);

  text-shadow: 0 12px 28px rgba(0,0,0,.55);
}
.h1Road::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
  pointer-events:none;
}
.h1Road *{
  position: relative;
  z-index: 1;
}
/* =========================== */

.sub{
  color: rgba(234,240,255,.74);
  font-size:16px;
  margin:0 0 16px;
  max-width: 68ch;
}

/* pills */
.pills{
  display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px;padding:0;list-style:none;
}
.pills li{
  font-size:12px;
  color: rgba(234,240,255,.88);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding:7px 10px;border-radius:999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.pills li:hover{
  border-color: rgba(246,211,101,.26);
  box-shadow: 0 14px 30px rgba(0,0,0,.32), 0 0 18px rgba(246,211,101,.14);
}

.heroActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* SECTIONS / TYPO */
.section{padding:28px 0}
.section h2{
  font-size:22px;margin:0 0 10px;
  letter-spacing:.3px;
  background: linear-gradient(135deg, rgba(246,211,101,.95), rgba(234,240,255,.92), rgba(113,247,255,.55));
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.section p{color:rgba(234,240,255,.70);margin:0 0 14px}

/* GRID / CARDS */
.grid{
  display:grid;gap:14px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 280px at 12% 8%, rgba(246,211,101,.10), transparent 60%),
    radial-gradient(780px 260px at 88% 14%, rgba(113,247,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position:relative;
}
.card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%, rgba(255,255,255,.05));
  pointer-events:none;
}
.card .pad{padding:16px; position:relative; z-index:1}
.card h3{
  margin:0 0 6px;
  font-size:16px;
  letter-spacing:.25px;
  color:rgba(234,240,255,.96);
}
.card p{margin:0;color:rgba(234,240,255,.70);font-size:14px}

.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}

/* Little features */
.feature{display:flex;gap:10px;align-items:flex-start}
.dot{
  width:10px;height:10px;border-radius:99px;
  background: linear-gradient(135deg, rgba(246,211,101,1), rgba(113,247,255,1));
  margin-top:6px;flex:0 0 auto;
  box-shadow: 0 0 18px rgba(246,211,101,.22), 0 0 18px rgba(113,247,255,.16);
}

/* LOCALITIES GRID (cards with photo background) */
.locGrid{
  display:grid;gap:14px;
  grid-template-columns: repeat(12,1fr);
}
.locCard{
  grid-column: span 4;
  min-height: 200px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}
.locCard .bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter: saturate(1.08) contrast(1.06) brightness(.92);
  transform: scale(1.03);
  transition: transform .22s var(--ease), filter .22s var(--ease);
}
.locCard::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(800px 380px at 20% 12%, rgba(246,211,101,.16), transparent 62%),
    radial-gradient(740px 360px at 84% 18%, rgba(113,247,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.74));
  pointer-events:none;
}
.locCard:hover .bg{
  transform: scale(1.08);
  filter: saturate(1.14) contrast(1.08) brightness(.88);
}
.locCard .content{
  position:relative;z-index:1;
  height:100%;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:16px;
}
.locCard .content strong{
  font-size:16px;
  letter-spacing:.3px;
  color:#ffffff;
  text-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.locCard .content span{
  font-size:13px;
  color:rgba(234,240,255,.88);
}
.locCard .content .row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

/* overlay buttons on loc cards */
.locCard .btn{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border-color: rgba(246,211,101,.28);
  color: rgba(234,240,255,.95);
  box-shadow: 0 14px 36px rgba(0,0,0,.44), 0 0 18px rgba(246,211,101,.14);
}
.locCard .btn:hover{
  border-color: rgba(246,211,101,.46);
  box-shadow: 0 18px 46px rgba(0,0,0,.52), 0 0 24px rgba(246,211,101,.22);
}

/* FOOTER */
.footer{
  padding:26px 0 72px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(234,240,255,.62);
  font-size: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

/* STICKY BAR (bottom) */
.stickyBar{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  background: rgba(6,8,14,.78);
  backdrop-filter: blur(14px) saturate(1.25);
  border-top: 1px solid rgba(255,255,255,.10);
}
.stickyBar .inner{
  display:flex;gap:10px;justify-content:center;align-items:center;
  padding:10px 12px;flex-wrap:wrap;
}

.small{font-size:12px;color:rgba(234,240,255,.62)}

/* responsive */
@media (max-width: 920px){
  h1{font-size:32px}
  .col-4{grid-column: span 6}
  .locCard{grid-column: span 6}
}
@media (max-width: 600px){
  .col-4,.col-6{grid-column: span 12}
  .locCard{grid-column: span 12}
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  *{transition:none !important}
}

/* LUX SLIDER */
.luxSlider{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,.45);
  overflow:hidden;
  position:relative;
}

/* clear height, responsive */
.luxSlides{
  position:relative;
  height: clamp(320px, 42vw, 520px);
}

.luxSlide{
  position:absolute; inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .5s ease, transform .7s cubic-bezier(.2,.9,.2,1);

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.luxSlide.isActive{
  opacity:1;
  transform: scale(1.0);
  z-index: 1;
}

.luxOverlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(246,211,101,.18), transparent 60%),
    radial-gradient(900px 420px at 86% 18%, rgba(113,247,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.78));
}

.luxContent{
  position:relative; z-index:1;
  padding:22px;
  max-width: 720px;
}

.luxBadge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px;
  letter-spacing:.5px;
  color: rgba(234,240,255,.88);
  border:1px solid rgba(246,211,101,.22);
  background: rgba(255,255,255,.05);
  padding:8px 12px;
  border-radius:999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.30);
  margin-bottom:12px;
}

.luxContent h3{
  margin:0 0 8px;
  font-size:20px;
  letter-spacing:.2px;
  color:#fff;
  text-shadow: 0 12px 28px rgba(0,0,0,.55);
}
.luxContent p{
  margin:0 0 14px;
  color: rgba(234,240,255,.72);
  max-width: 62ch;
}
.luxActions{display:flex; gap:10px; flex-wrap:wrap}

.luxControls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(6,8,14,.72);
  backdrop-filter: blur(14px) saturate(1.2);
}

.luxBtn{
  width:44px;height:44px;
  border-radius: 14px;
  border:1px solid rgba(246,211,101,.22);
  background: rgba(255,255,255,.05);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.luxBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(246,211,101,.36);
}

.luxDots{display:flex; gap:10px; align-items:center; justify-content:center; flex:1}
.luxDot{
  width:10px;height:10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.luxDot.isActive{
  background: linear-gradient(135deg, rgba(246,211,101,.90), rgba(113,247,255,.55));
  border-color: rgba(246,211,101,.35);
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(246,211,101,.18), 0 0 18px rgba(113,247,255,.12);
}

@media (max-width: 600px){
  .luxContent{padding:18px}
}

/* ===========================
   MENU OVERLAY (lux)
   =========================== */

.menuBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(246,211,101,.25);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.92);
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .16s var(--ease), border-color .16s var(--ease), background .16s var(--ease);
}
.menuBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(246,211,101,.40);
  background: rgba(255,255,255,.07);
}

/* IMPORTANT: use ONLY overlay menu everywhere (desktop + mobile) */
.menu{display:none;}
.menuBtn{display:inline-flex;}

.menuOverlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px) saturate(1.2);
  display:none;
  z-index:999;
}
.menuOverlay.isOpen{display:block}

.menuPanel{
  position:absolute;
  right:16px; top:16px;
  width:min(420px, calc(100% - 32px));
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(900px 260px at 20% 10%, rgba(246,211,101,.14), transparent 60%),
    radial-gradient(900px 260px at 86% 16%, rgba(113,247,255,.12), transparent 60%),
    rgba(6,8,14,.92);
  box-shadow: 0 22px 56px rgba(0,0,0,.60);

  /* FIX SCROLL: nu mai blocăm overflow-y */
  overflow-x:hidden;
  overflow-y:auto;

  transform: translateY(-8px);
  animation: menuIn .18s var(--ease) forwards;

  max-height: calc(100vh - 32px); /* să încapă pe ecran */
  -webkit-overflow-scrolling: touch; /* scroll fluid pe mobil */
}
@keyframes menuIn{to{transform:translateY(0)}}

.menuHead{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.menuTitle{font-weight:900; letter-spacing:.3px}
.menuClose{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

.menuGrid{padding:12px 14px; display:flex; flex-direction:column; gap:10px}

.menuItem, .menuDetails > summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.92);
  font-weight:800;
}
.menuItem:hover, .menuDetails > summary:hover{
  border-color: rgba(246,211,101,.28);
  background: rgba(255,255,255,.06);
}

.menuDetails{border-radius:14px; overflow:hidden}
.menuDetails > summary{list-style:none; cursor:pointer}
.menuDetails > summary::-webkit-details-marker{display:none}

.menuSub{
  padding:10px 12px 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
  border-top: none;
  border-radius: 0 0 14px 14px;
}
.menuSub a{
  padding:10px 10px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.80);
}
.menuSub a:hover{
  border-color: rgba(113,247,255,.22);
  color:#fff;
}

.menuCTA{
  padding:12px 14px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex; gap:10px; flex-wrap:wrap;
}
/* ===========================
   ADDITIONS: miniLine + trustStrip + badge list
   (lipeste la finalul style.css)
   =========================== */

/* mini separator line (used in HTML) */
.miniLine{
  height:1px;
  margin:14px 0 12px;
  background: linear-gradient(90deg,
    rgba(246,211,101,.35),
    rgba(255,255,255,.12),
    rgba(113,247,255,.28));
  border-radius:999px;
  opacity:.85;
}

/* TRUST STRIP (used in HTML) */
.trustStrip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.trustItem{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.trustItem strong{
  display:block;
  font-size:13px;
  letter-spacing:.2px;
  color: rgba(234,240,255,.95);
}

.trustItem span{
  display:block;
  font-size:12px;
  color: rgba(234,240,255,.70);
  margin-top:2px;
}

.trustCta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-left:auto;
}

/* responsive tweaks for trust strip */
@media (max-width: 920px){
  .trustStrip{gap:10px}
  .trustItem{flex: 1 1 240px}
  .trustCta{margin-left:0; width:100%}
}

/* BADGE LIST (optional utility for cards) */
.badgeList{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.80);
  font-size:12px;
  font-weight:800;
  letter-spacing:.15px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.badge em{
  font-style:normal;
  opacity:.85;
  font-weight:900;
}

.badge:hover{
  border-color: rgba(246,211,101,.24);
  background: rgba(255,255,255,.06);
}
.sectionHeroImg{
  width:100%;
  max-height:220px;
  object-fit:cover;
  border-radius:14px;
  margin:10px 0 12px;
  display:block;
  background:#0b0f1a;
}

