/* ============================================================
   AUTO29 — homepage + fleet section components
   ============================================================ */

/* ---------------- HERO · FULL-BLEED PHOTO ---------------- */
.hero-full {
  position: relative; overflow: hidden;
  min-height: min(calc(100svh - 120px), 760px);
  display: flex; flex-direction: column; justify-content: flex-start;
  background: #06101a;
  border-bottom: 1px solid var(--line);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* themed empty-state so it reads as an intentional dark showroom, not a placeholder box */
.hero-photo::part(frame) {
  background:
    radial-gradient(70% 90% at 92% 108%, color-mix(in oklab, var(--accent) 42%, transparent), transparent 60%),
    radial-gradient(120% 105% at 74% 14%, #1c3e58, transparent 60%),
    linear-gradient(120deg, #0a1925 0%, #0d2234 52%, #06101a 100%);
}
.hero-photo::part(empty) { color: rgba(255,255,255,.62); }
.hero-photo::part(ring) { border-color: rgba(255,255,255,.16); }
/* light streaks across empty hero */
.hero-full .streaks { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: screen; }
.hero-full .streaks span {
  position: absolute; height: 1px; left: -10%; right: -10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}
.hero-full .streaks span:nth-child(1) { top: 30%; transform: rotate(-8deg); }
.hero-full .streaks span:nth-child(2) { top: 58%; transform: rotate(-8deg); opacity: .6; }
.hero-full .streaks span:nth-child(3) { top: 74%; transform: rotate(-8deg); opacity: .35; }
.hero-full[data-filled] .streaks { display: none; }

.hero-veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,13,21,.92) 0%, rgba(5,13,21,.6) 40%, rgba(5,13,21,.12) 72%, transparent 100%),
    linear-gradient(0deg, rgba(5,13,21,.94) 2%, rgba(5,13,21,.35) 38%, transparent 62%);
}
.hero-content { position: relative; z-index: 3; width: min(100% - 44px, var(--maxw)); margin-inline: auto; padding-block: clamp(40px, 6vw, 72px) 0; pointer-events: none; }
.hero-content a, .hero-content button { pointer-events: auto; }
.hero-content .eyebrow { color: #fff; }
.hero-content .eyebrow::before { background: var(--accent); }
.hero-full h1 {
  color: #fff; font-weight: 900; letter-spacing: -.035em;
  font-size: clamp(46px, 8.2vw, 104px); line-height: .94; margin-top: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-full h1 .accent { color: var(--accent); }
.hero-full .accent-bar { width: 60px; height: 5px; background: var(--accent); border-radius: 4px; margin-bottom: 6px; }
.hero-full .lead { margin-top: 22px; color: rgba(234,242,248,.86); font-size: clamp(17px, 1.7vw, 21px); max-width: 44ch; }
.hero-full .lead b { color: #fff; }
.hero-full .actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-full .actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.hero-full .actions .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.hero-bar {
  position: relative; z-index: 3; width: min(100% - 44px, var(--maxw)); margin-inline: auto;
  margin-top: auto; padding: 22px 0 clamp(28px, 4vw, 44px);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-bar .hstat { display: flex; flex-direction: column; padding-right: 30px; }
.hero-bar .hstat + .hstat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 30px; }
.hero-bar .hstat .num { font-family: 'Archivo'; font-weight: 800; font-size: clamp(26px, 3vw, 38px); color: #fff; letter-spacing: -.02em; line-height: 1; }
.hero-bar .hstat .num .accent { color: var(--accent); }
.hero-bar .hstat .lbl { font-size: 13px; color: rgba(234,242,248,.66); font-weight: 600; margin-top: 6px; }
.hero-bar .spacer { flex: 1; }
.hero-bar .drop-hint {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: rgba(234,242,248,.6);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 9px 14px; border-radius: var(--r-pill);
}
.hero-full[data-filled] .hero-bar .drop-hint { display: none; }
.hero-bar .drop-hint svg { width: 15px; height: 15px; color: var(--accent); }

@media (max-width: 620px) {
  .hero-bar .hstat + .hstat { border-left: none; padding-left: 0; }
}

/* ---------------- HERO (legacy split, unused) ---------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 104px) clamp(56px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero h1 {
  font-size: clamp(42px, 6.6vw, 86px);
  font-weight: 900; letter-spacing: -.03em;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 em { font-style: italic; }
.hero .lead { margin-top: 24px; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 30ch; }
.hero .lead b { color: var(--ink); font-weight: 700; }
.hero .actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(28px, 3.2vw, 40px); color: var(--ink); letter-spacing: -.02em; }
.hero-stats .num .accent { color: var(--accent); }
.hero-stats .lbl { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.hero-stats .stat + .stat { padding-left: 30px; border-left: 1px solid var(--line); }

/* hero visual */
.hero-visual {
  position: relative; aspect-ratio: 5 / 4.3; border-radius: var(--r-lg); overflow: hidden;
  background: var(--tile-grad); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.hero-visual .glow {
  position: absolute; inset: auto -20% -30% auto; width: 75%; height: 75%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 60%, transparent), transparent 65%);
  filter: blur(10px); opacity: .8;
}
.hero-visual .car { position: relative; z-index: 2; width: 86%; color: #fff; filter: drop-shadow(0 24px 40px rgba(0,0,0,.45)); }
.hero-visual .floor {
  position: absolute; left: 8%; right: 8%; bottom: 16%; height: 2px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 30px 4px color-mix(in oklab, var(--accent) 50%, transparent);
}
.hero-visual .vtag {
  position: absolute; z-index: 3; bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(6px); color: #fff;
  padding: 9px 15px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.14);
}
.hero-visual .vtag .dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; }
.hero-marq {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-family: 'Archivo'; font-weight: 800; font-size: 13px; letter-spacing: .1em;
  padding: 7px 13px; border-radius: var(--r-pill);
}

/* logo strip under hero */
.trust-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-strip .wrap { display: flex; align-items: center; gap: 28px; padding-block: 22px; flex-wrap: wrap; }
.trust-strip .tlabel { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.trust-strip .brands { display: flex; gap: 30px; flex-wrap: wrap; flex: 1; }
.trust-strip .brands span {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: .02em;
  color: var(--ink-faint); opacity: .8; transition: color .2s, opacity .2s;
}
.trust-strip .brands span:hover { color: var(--ink); opacity: 1; }

/* ---------------- CATEGORY CARDS (by brand) ---------------- */
.cats-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.cat-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 190px;
  background: var(--tile-grad); color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-card .silhouette {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 64%; color: rgba(255,255,255,.13); transition: transform .4s var(--ease), color .3s;
}
.cat-card:hover .silhouette { transform: translateY(-50%) translateX(-4%); color: color-mix(in oklab, var(--accent) 55%, #fff 45%); }
.cat-card .ctag {
  align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-deep-soft); margin-bottom: auto;
}
.cat-card h3 { color: #fff; font-size: 27px; font-weight: 800; position: relative; z-index: 2; }
.cat-card .go {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  color: #fff; position: relative; z-index: 2;
}
.cat-card .go svg { width: 16px; height: 16px; color: var(--accent); transition: transform .25s var(--ease); }
.cat-card:hover .go svg { transform: translateX(5px); }
.cat-card.premium { background: linear-gradient(150deg, #20242b 0%, #15171c 100%); }
.cat-card.premium .ctag { color: #d9bd6b; }
.cat-card .crown {
  position: absolute; top: 18px; right: 18px; z-index: 3; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  color: #0e2433; background: linear-gradient(120deg,#f6d365,#e9a23b); padding: 5px 11px; border-radius: var(--r-pill);
}

/* ---------------- TYPE CARDS ---------------- */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.type-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.type-card:hover { transform: translateY(-5px); border-color: color-mix(in oklab, var(--accent) 40%, var(--line)); box-shadow: var(--shadow-md); }
.type-card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: color-mix(in oklab, var(--accent) 12%, var(--surface-2)); color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 24%, var(--line));
}
.type-card .ico svg { width: 28px; height: 28px; }
.type-card h3 { font-size: 21px; font-weight: 800; }
.type-card p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
.type-card .go { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--accent); }
.type-card .go svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.type-card:hover .go svg { transform: translateX(4px); }

/* ---------------- WHY / FEATURES (split band) ---------------- */
.why { background: var(--bg-deep); color: var(--on-deep); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: -30% -10% auto auto; width: 60%; height: 120%;
  background: radial-gradient(circle at 70% 30%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%);
}
.why .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.why h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 800; }
.why .eyebrow { color: color-mix(in oklab, var(--accent) 80%, #fff); }
.why .eyebrow::before { background: var(--accent); }
.why .sub { margin-top: 18px; color: var(--on-deep-soft); font-size: 18px; max-width: 42ch; }
.why .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.feat-list { display: grid; gap: 14px; }
.feat {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md);
  transition: background .2s, transform .2s, border-color .2s;
}
.feat:hover { background: rgba(255,255,255,.07); transform: translateX(5px); border-color: color-mix(in oklab, var(--accent) 40%, rgba(255,255,255,.1)); }
.feat .n { font-family: 'Archivo'; font-weight: 800; font-size: 15px; color: var(--accent); flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in oklab, var(--accent) 16%, transparent); }
.feat h4 { color: #fff; font-size: 19px; font-weight: 700; }
.feat p { color: var(--on-deep-soft); font-size: 14.5px; margin-top: 5px; }

/* ---------------- SERVICES ---------------- */
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.serv-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s var(--ease), box-shadow .22s;
}
.serv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.serv-card .media {
  aspect-ratio: 16 / 10; background: var(--tile-grad); position: relative; overflow: hidden; display: grid; place-items: center;
}
.serv-card .media .ico { color: rgba(255,255,255,.92); width: 56px; height: 56px; position: relative; z-index: 2; }
.serv-card .media::after {
  content: ''; position: absolute; inset: auto -10% -40% -10%; height: 70%;
  background: radial-gradient(circle at 50% 100%, color-mix(in oklab, var(--accent) 50%, transparent), transparent 60%);
}
.serv-card .body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.serv-card h3 { font-size: 20px; font-weight: 800; }
.serv-card p { font-size: 14.5px; color: var(--ink-soft); }
.serv-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }

/* ---------------- CTA BAND ---------------- */
.cta-band { position: relative; overflow: hidden; background: var(--accent); color: #fff; }
.cta-band::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,.18), transparent 50%);
}
.cta-band .wrap { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-block: 56px; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 46px); font-weight: 900; letter-spacing: -.02em; }
.cta-band p { color: rgba(255,255,255,.86); font-size: 18px; margin-top: 10px; }
.cta-band .phone { font-family: 'Archivo'; font-weight: 900; font-size: clamp(26px, 3vw, 36px); color: #fff; display: inline-flex; align-items: center; gap: 14px; }
.cta-band .phone svg { width: 30px; height: 30px; }

/* ---------------- FLEET PAGE ---------------- */
.page-hero { background: var(--bg-deep); color: var(--on-deep); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content:''; position:absolute; inset:-40% -10% auto auto; width:55%; height:140%; background: radial-gradient(circle at 70% 30%, color-mix(in oklab, var(--accent) 20%, transparent), transparent 60%); }
.page-hero .wrap { position: relative; z-index: 2; padding-block: clamp(48px,6vw,80px); }
.page-hero .crumbs { font-size: 13.5px; color: var(--on-deep-soft); font-weight: 600; display: flex; gap: 8px; align-items: center; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs .accent { color: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(38px, 6vw, 68px); font-weight: 900; margin-top: 18px; }
.page-hero h1 .accent { color: var(--accent); }
.page-hero .lead { margin-top: 18px; color: var(--on-deep-soft); font-size: 19px; max-width: 56ch; }

/* filter tabs */
.filters { position: sticky; top: 76px; z-index: 40; background: color-mix(in oklab, var(--bg) 90%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.filters .wrap { display: flex; gap: 10px; padding-block: 16px; flex-wrap: wrap; align-items: center; }
.filters .flabel { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-right: 6px; }
.chip {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 14.5px; padding: 9px 17px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong); color: var(--ink-soft); background: var(--surface);
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--ink); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* fleet grid */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.car-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s var(--ease), box-shadow .22s, border-color .2s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.car-card .media { aspect-ratio: 16 / 11; background: var(--tile-grad); position: relative; overflow: hidden; display: grid; place-items: center; }
.car-card .media .car { width: 84%; color: #fff; position: relative; z-index: 2; filter: drop-shadow(0 16px 22px rgba(0,0,0,.4)); }
.car-card .media .floor { position:absolute; left:10%; right:10%; bottom:16%; height:2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 22px 2px color-mix(in oklab, var(--accent) 45%, transparent); z-index:1; }
.car-card .cat-pill { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.16); padding: 5px 11px; border-radius: var(--r-pill); backdrop-filter: blur(6px); }
.car-card .body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.car-card .body .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.car-card h3 { font-size: 22px; font-weight: 800; }
.car-card .klass { font-size: 13px; color: var(--ink-faint); font-weight: 600; margin-top: 2px; }
.car-card .price { text-align: right; flex: none; }
.car-card .price .from { font-size: 11px; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.car-card .price .val { font-family: 'Archivo'; font-weight: 800; font-size: 24px; color: var(--accent); line-height: 1; }
.car-card .price .per { font-size: 12px; color: var(--ink-faint); }
.car-card .specs { display: flex; flex-wrap: wrap; gap: 8px; }
.car-card .spec { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 6px 11px; border-radius: var(--r-pill); }
.car-card .spec svg { width: 14px; height: 14px; color: var(--accent); }
.car-card .foot { margin-top: auto; display: flex; gap: 10px; padding-top: 6px; }
.car-card .foot .btn { flex: 1; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .why .wrap { grid-template-columns: 1fr; gap: 38px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .serv-grid { grid-template-columns: 1fr; max-width: 480px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cat-grid, .type-grid, .fleet-grid { grid-template-columns: 1fr; }
  .hero-stats .stat + .stat { padding-left: 0; border-left: none; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PHOTO INTEGRATION — production (real images replace slots)
   ============================================================ */

/* HERO — real photo as full-bleed background */
.hero-full .hero-photo-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero-full[data-filled] .streaks, .hero-full[data-filled] .drop-hint { display:none; }

/* CATEGORY CARDS (brands) — photo bg + readable overlay */
.cat-card.has-photo { background:#0b1c2a; }
.cat-card .cat-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; transition:transform .55s var(--ease); }
.cat-card.has-photo:hover .cat-bg { transform:scale(1.06); }
.cat-card.has-photo::after { content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top, rgba(7,16,26,.94) 0%, rgba(7,16,26,.62) 42%, rgba(7,16,26,.18) 100%); }
.cat-card.has-photo .ctag, .cat-card.has-photo h3, .cat-card.has-photo .go, .cat-card.has-photo .crown { position:relative; z-index:2; }
.cat-card.has-photo .silhouette { display:none; }
.cat-card.premium.has-photo::after { background:linear-gradient(to top, rgba(14,12,8,.94) 0%, rgba(30,24,10,.6) 42%, rgba(20,16,8,.2) 100%); }

/* TYPE CARDS — photo media on top, icon as overlapping badge */
.type-card.has-photo { padding:0; overflow:hidden; }
.type-card .tmedia { aspect-ratio:16/10; overflow:hidden; position:relative; }
.type-card .tmedia img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease); }
.type-card.has-photo:hover .tmedia img { transform:scale(1.06); }
.type-card.has-photo .ico { position:absolute; top:calc(56.25% - 27px); left:24px; margin:0; z-index:3; box-shadow:var(--shadow-md); background:var(--accent); color:#fff; border-color:var(--accent); }
.type-card.has-photo .tbody { padding:34px 24px 26px; }

/* SERVICE CARDS — real photo in media */
.serv-card .media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; transition:transform .55s var(--ease); }
.serv-card:hover .media img { transform:scale(1.05); }
.serv-card .media.has-photo::after { content:''; position:absolute; inset:0; z-index:2; background:linear-gradient(120deg, rgba(7,16,26,.35), transparent 60%); }

/* WHY — subtle photo layer over the deep band */
.why.has-bg .photo-layer { position:absolute; inset:0; z-index:0; opacity:.22; object-fit:cover; width:100%; height:100%;
  -webkit-mask-image:linear-gradient(105deg, transparent 0%, #000 55%); mask-image:linear-gradient(105deg, transparent 0%, #000 55%); }

/* ============================================================
   MOBILE + MARQUEE TWEAKS (looping brands & hero stats)
   ============================================================ */
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* TRUST STRIP — looping brand marquee (desktop: label left + running brands) */
.trust-strip .brands-viewport { flex: 1; overflow: hidden; min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.trust-strip .brands { width: max-content; flex-wrap: nowrap; gap: 46px; animation: marquee-x 30s linear infinite; }
.trust-strip .brands span { white-space: nowrap; }
.trust-strip:hover .brands { animation-play-state: paused; }

/* HERO — two action buttons in one row on mobile */
@media (max-width: 480px) {
  .hero-full .actions { flex-wrap: nowrap; gap: 9px; }
  .hero-full .actions .btn { flex: 1 1 0; min-width: 0; padding: 13px 10px; font-size: 13px; white-space: nowrap; }
  .hero-full .actions .btn svg { width: 15px; height: 15px; flex: none; }
}

/* HERO STATS — static row on desktop, looping marquee on mobile */
.hero-bar .hstat-track { display: flex; align-items: center; }
.hero-bar .hstat.dup { display: none; }
@media (max-width: 620px) {
  .hero-bar { overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .hero-bar .hstat-track { width: max-content; animation: marquee-x 17s linear infinite; }
  .hero-bar .hstat.dup { display: flex; }
  .hero-bar .hstat { padding-right: 26px; }
  .hero-bar .hstat + .hstat { border-left: 1px solid rgba(255,255,255,.14); padding-left: 26px; }
  .hero-bar:hover .hstat-track { animation-play-state: paused; }
}

/* TRUST STRIP — stack label above the marquee on mobile */
@media (max-width: 760px) {
  .trust-strip .wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-strip .brands-viewport { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip .brands, .hero-bar .hstat-track { animation: none !important; }
}

/* ============================================================
   HERO MOBILE READABILITY FIX (first impression)
   ============================================================ */
/* first-screen content visible instantly — no fade-in on hero */
.hero-content.reveal, .hero-bar.reveal { opacity: 1; transform: none; transition: none; }

@media (max-width: 760px) {
  /* strong, even veil so the white headline reads over any part of the photo */
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(5,13,21,.82) 0%, rgba(5,13,21,.52) 44%, rgba(6,16,26,.88) 100%) !important;
  }
  .hero-photo-img { object-position: 64% center; }
  /* compact hero — kill the big empty gap between text and stats */
  .hero-full { min-height: auto; }
  .hero-content { padding-block: 26px 0; }
  .hero-full h1 { font-size: clamp(40px, 12vw, 56px); margin-top: 16px; }
  .hero-full .lead { font-size: 15.5px; margin-top: 14px; max-width: none; }
  .hero-full .actions { margin-top: 22px; }
  .hero-bar { margin-top: 28px; padding: 18px 0 24px; }
}

/* ============================================================
   TOPBAR — single compact row on mobile (badge moved to hero)
   ============================================================ */
@media (max-width: 620px) {
  .topbar { font-size: 11.5px; }
  .topbar .wrap {
    flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center;
    gap: 14px; padding-block: 9px; min-height: 0;
  }
  .topbar a { gap: 6px; white-space: nowrap; }
  .topbar svg { width: 13px; height: 13px; }
  .topbar .zip { display: none; }
}

/* HERO availability badge (moved here from topbar) */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-weight: 600; font-size: 13.5px; backdrop-filter: blur(6px); width: fit-content;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #3ddc84;
  box-shadow: 0 0 0 3px rgba(61,220,132,.25); animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 3px rgba(61,220,132,.25); } 50% { box-shadow: 0 0 0 7px rgba(61,220,132,.04); } }

/* ============================================================
   FLEET CARDS — real photos + footer "made by"
   ============================================================ */
.car-card .media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; transition:transform .5s var(--ease); }
.car-card:hover .media img { transform:scale(1.06); }
.car-card .media .cat-pill { z-index:3; }
.car-card .media.has-photo .car, .car-card .media.has-photo .floor { display:none; }

/* FOOTER — "wykonane przez CyberNinja" */
.footer .made-by { margin-top: 16px; width: 100%; text-align: center; font-size: 12.5px; letter-spacing: .04em; color: var(--on-deep-soft); }
.footer .made-by .heart { color: var(--accent); }
.footer .made-by a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.footer .made-by a:hover { color: var(--accent); }

/* FLEET — filters horizontal scroll on mobile */
@media (max-width: 760px) {
  .filters .wrap { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .filters .wrap::-webkit-scrollbar { display: none; }
  .filters .chip, .filters .flabel { flex: none; }
}

/* ============================================================
   HIDE VISIBLE SCROLLBARS ON MOBILE (scroll still works)
   ============================================================ */
@media (max-width: 760px) {
  html { scrollbar-width: none; -ms-overflow-style: none; }
  html::-webkit-scrollbar { width: 0; height: 0; display: none; }
  body { overflow-x: hidden; }
  .filters .wrap { scrollbar-width: none; -ms-overflow-style: none; }
  .filters .wrap::-webkit-scrollbar { width: 0; height: 0; display: none; }
}
