/* ============================================================
   Total24 Automobile — Design System  v2 „Autohaus hell"
   Corp luminos & editorial · chrome navy (header/footer) ·
   accent albastru din logo. Fiecare componentă o singură dată.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Suprafețe (light) */
  --bg:          #ffffff;
  --bg-soft:     #f3f6f9;   /* secțiuni alternante */
  --bg-elev:     #f3f6f9;
  --surface:     #ffffff;   /* carduri */
  --line:        #e2e8ee;
  --line-soft:   #eef2f6;

  /* Chrome întunecat (header/footer — acolo trăiește logo-ul) */
  --ink:         #0e2b3e;   /* navy */
  --ink-2:       #0a2130;   /* navy mai închis (topbar) */

  /* Text */
  --text:        #14232f;
  --text-soft:   #475864;
  --text-muted:  #7a8894;

  /* Accent — albastrul din logo */
  --blue:        #1ca3e0;
  --blue-hi:     #46b6e9;
  --blue-deep:   #1183bd;
  --blue-soft:   rgba(28,163,224,.10);

  /* Aliasuri de compatibilitate (componentele vechi cereau „gold") */
  --gold:        var(--blue);
  --gold-hi:     var(--blue-hi);
  --gold-soft:   var(--blue-soft);

  --green:       #2e9e6b;
  --red:         #d64848;
  --wa:          #25D366;

  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 12px 30px rgba(16,42,60,.09);
  --shadow-sm:   0 3px 12px rgba(16,42,60,.05);

  --container:      1240px;
  /* Scară de spacing coerentă (8 / 12 / 16 / 24 / 32 / 48 / 64) */
  --sp-1: 8px; --sp-2: 12px; --sp-3: 16px; --sp-4: 24px; --sp-5: 32px; --sp-6: 48px; --sp-7: 64px;
  --space-section:  64px;
  --container-pad:  24px;
  --header-offset:  70px;

  --font:        'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head:   'Manrope', var(--font);
}

/* ============================================================
   2. BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.14; color: var(--text); letter-spacing: -.4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }
@media (max-width: 560px) { :root { --space-section: 48px; --container-pad: 18px; } }

.section { padding: var(--space-section) 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 600px; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow {
  color: var(--blue-deep); font-size: 12px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; margin-bottom: 10px; display: block;
}
.section-head h2 { font-size: clamp(24px, 2.3vw, 33px); margin-bottom: 12px; }
.section-head p { color: var(--text-soft); font-size: 15.5px; }

.page-hero { padding: 48px 0 8px; }
.page-hero h1 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 10px; }
.page-hero p { color: var(--text-soft); font-size: 16.5px; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; cursor: pointer; letter-spacing: .1px;
  border: 1px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 5px 14px rgba(28,163,224,.24); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(28,163,224,.28); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-ghost { color: var(--text-soft); padding: 11px 8px; }
.btn-ghost:hover { color: var(--blue-deep); }
/* pe fundal închis (header/CTA navy · hero) — subtil, elegant */
.btn-ghost-light { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.04); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 12px 22px; font-size: 14.5px; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fbe5a; color: #fff; transform: translateY(-1px); }
.btn-wa-outline { background: transparent; border: 1px solid rgba(46,158,107,.4); color: #1f9c66; }
.btn-wa-outline:hover { background: rgba(46,158,107,.08); border-color: var(--green); color: #178a58; transform: none; }
.btn-detail { background: var(--surface); border: 1px solid var(--line); color: var(--text-soft); }
.btn-detail:hover { border-color: var(--blue); color: var(--blue-deep); transform: none; box-shadow: none; }

/* ============================================================
   4. HEADER  (navy — logo-ul respiră) · TOPBAR 35 · NAVBAR 72
   ============================================================ */
.topbar { background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.06); font-size: 11.5px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; height: 32px; }
.topbar-left, .topbar-right { display: flex; align-items: center; }
.topbar-left > *, .topbar-right > * { position: relative; padding: 0 18px; }
.topbar-left > *:first-child { padding-left: 0; }
.topbar-right > *:last-child { padding-right: 0; }
.topbar-left > * + *::before, .topbar-right > * + *::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: rgba(255,255,255,.14);
}
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); }
.topbar svg { color: var(--blue-hi); flex-shrink: 0; }
.topbar a:hover { color: #fff; }
.topbar-lang { position: relative; display: inline-flex; align-items: center; }
.topbar-lang .caret { opacity: .7; }
.topbar-lang svg { border-radius: 2px; display: block; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.75); font-family: inherit; font-size: 11.5px; font-weight: 600; letter-spacing: .5px; padding: 0; }
.lang-current:hover { color: #fff; }
.lang-dd { position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 16px 40px rgba(14,43,62,.22);
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease; z-index: 130; }
.topbar-lang:hover .lang-dd, .topbar-lang:focus-within .lang-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dd a { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 7px;
  color: var(--text-soft) !important; font-size: 13px; font-weight: 500; }
.lang-dd a:hover { background: var(--blue-soft); color: var(--blue-deep) !important; }
.lang-dd a.active { color: var(--blue-deep) !important; font-weight: 700; background: var(--blue-soft); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(10,33,48,.28); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; max-width: 176px; object-fit: contain; display: block; }
.footer-logo-img { height: 52px; max-width: 210px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { position: relative; display: inline-flex; align-items: center; color: rgba(255,255,255,.8); font-weight: 500; font-size: 13px; letter-spacing: .2px; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--blue-hi); font-weight: 600; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-links a .caret { margin-left: 4px; opacity: .8; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 8px 15px; font-size: 12.5px; border-radius: 7px; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 9px; margin: -9px; line-height: 0; }  /* hit area ≥44px, fără shift de layout */
.nav-lang-m { display: none; }

/* Logo textual alternativ */
.brand-logo { flex-direction: column; align-items: flex-start; gap: 4px; line-height: 1; }
.brand-top { font-family: var(--font-head); font-weight: 800; font-size: 28px; letter-spacing: .5px; line-height: 1; }
.brand-top .bt-total { color: #fff; }
.brand-top .bt-24 { color: var(--blue-hi); margin-left: 8px; }
.brand-sub { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: 5px; color: rgba(255,255,255,.55); }
.brand-sub .bt-line { width: 28px; height: 2px; background: var(--blue); display: inline-block; flex-shrink: 0; }

/* ============================================================
   5. HERO  (cinematic full-width — showroom real Total24)
   ============================================================ */
.hero-cine {
  position: relative; overflow: hidden; background: #0a1620;
  width: 100%;
  /* Înălțimea urmează RAPORTUL pozei (showroom.jpg = 1937×812 ≈ 2.385:1) → pe orice
     lățime se vede compoziția ÎNTREAGĂ (cer + clădire + mașină), ca în Inspect.
     min/max o țin într-o bandă rezonabilă; peste ~900px (monitoare foarte mari) se
     face un crop ușor, grațios. Dacă schimbi poza cu una mai lată, actualizează raportul. */
  aspect-ratio: 1937 / 812;
  min-height: 440px;
  max-height: 900px;
  display: flex; align-items: center;
}
.hero-bg-pic { position: absolute; inset: 0; z-index: 0; display: block; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* gradient subtil stânga→dreapta: stânga citibilă, mașinile din dreapta clare */
.hero-cine::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(95deg, rgba(6,16,24,.78) 0%, rgba(6,16,24,.56) 26%, rgba(6,16,24,.28) 46%, rgba(6,16,24,.06) 62%, transparent 76%);
}
.hero-cine .container { position: relative; z-index: 2; width: 100%; }
/* coloană de text ~30-35% din viewport */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(28,163,224,.16); color: #d4edfb; border: 1px solid rgba(255,255,255,.14);
  padding: 6px 12px; border-radius: 100px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-cine h1 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; line-height: 1.1; letter-spacing: -.8px; margin-bottom: 18px; max-width: 560px; text-shadow: 0 2px 18px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5); }
.hero-cine h1 .accent { color: var(--blue-hi); display: block; }
.hero-cine p { color: rgba(255,255,255,.82); font-size: 15.5px; line-height: 1.6; margin-bottom: 26px; max-width: 410px; text-shadow: 0 1px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Siglă în colțul stânga-jos al imaginii hero (aliniată cu textul, deasupra benzii de încredere) */
.hero-brand { position: absolute; left: 0; right: 0; bottom: 52px; z-index: 2; pointer-events: none; }
.hero-brand .container { display: flex; }
.hero-brand-img { height: 66px; width: auto; opacity: .92; filter: drop-shadow(0 2px 12px rgba(0,0,0,.6)); }
/* Mobil: hero care încape sigur, CTA full-width */
@media (max-width: 560px) {
  .hero-cine h1 { font-size: 29px; letter-spacing: -.4px; max-width: 100%; }
  .hero-cine p { font-size: 14.5px; max-width: 100%; }
  .hero-cine .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cine .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-brand-img { height: 48px; }
}
@media (max-width: 380px) { .hero-cine h1 { font-size: 26px; } }

/* Bară beneficii — discretă, integrată subtil în marginea de jos a hero-ului */
.trust-strip { position: relative; z-index: 3; margin-top: -34px; margin-bottom: 6px; }
.trust-strip .container {
  display: flex; gap: 0; max-width: 1000px; padding: 0 4px;
  background: rgba(9,24,35,.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
  box-shadow: 0 10px 26px rgba(6,16,24,.24);
}
.trust-strip .trust-item { position: relative; flex: 1; display: flex; align-items: center; gap: 11px; padding: 13px 18px; min-width: 0; }
.trust-strip .trust-item > div { min-width: 0; }
.trust-strip .trust-item b, .trust-strip .trust-item span { overflow-wrap: anywhere; }
.trust-strip .trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 28%; bottom: 28%; width: 1px; background: rgba(255,255,255,.10); }
.trust-strip .trust-item .ic { color: var(--blue-hi); flex-shrink: 0; display: inline-flex; opacity: .9; }
.trust-strip .trust-item .ic svg { width: 20px; height: 20px; }
.trust-strip .trust-item b { display: block; color: #fff; font-size: 13.5px; font-family: var(--font-head); font-weight: 600; margin-bottom: 2px; }
.trust-strip .trust-item span { display: block; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.35; }
.trust-strip .trust-item .trust-d-short { display: none; }

/* ============================================================
   6. SECTIONS — HOME
   ============================================================ */
.why-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.why-photo {
  position: relative; min-height: 400px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: url('../img/brand/hero-final.jpg?v=3') 82% center/cover no-repeat;
}
.why-photo-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 8px; background: rgba(14,43,62,.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; font-weight: 700; font-family: var(--font-head); letter-spacing: .6px; text-transform: uppercase;
}
.why-photo-cap .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-hi); flex-shrink: 0; }
.why-text .eyebrow { color: var(--blue-deep); font-size: 12.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.why-text h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 18px; }
.why-text > p { color: var(--text-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 28px; }
.why-list { display: grid; gap: 18px; margin-bottom: 34px; }
.why-li { display: flex; align-items: flex-start; gap: 14px; }
.why-li .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-deep); margin-top: 1px; }
.why-li b { display: block; color: var(--text); font-size: 16px; font-weight: 700; font-family: var(--font-head); }
.why-li small { display: block; color: var(--text-soft); font-size: 14px; margin-top: 2px; line-height: 1.45; }

/* Carduri „featured" */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 360px)); justify-content: center; gap: 24px; }
.feat-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d3dde5; }
.feat-media { position: relative; aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feat-card:hover .feat-media img { transform: scale(1.03); }
.feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.feat-title { font-size: 16.5px; font-weight: 700; font-family: var(--font-head); color: var(--text); margin-bottom: 4px; letter-spacing: -.2px; }
.feat-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; }
.feat-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.feat-price { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.feat-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-deep); font-size: 12.5px; font-weight: 600; }

/* Pași — număr mare subtil + icon mic */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 30px 24px 26px; box-shadow: var(--shadow-sm); transition: all .25s; }
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-no { position: absolute; top: 8px; right: 16px; font-family: var(--font-head); font-weight: 800; font-size: 74px; line-height: 1; color: var(--blue); opacity: .10; letter-spacing: -3px; pointer-events: none; user-select: none; }
.step-ic { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 18px; }
.step-card h3 { position: relative; z-index: 1; font-size: 17px; margin-bottom: 8px; }
.step-card p { position: relative; z-index: 1; color: var(--text-soft); font-size: 14px; }

/* CTA band + CTA final */
.cta-band { background: var(--blue-soft); border: 1px solid var(--line); border-radius: 18px; padding: 54px; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); font-size: 18px; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final {
  position: relative; padding: 92px 24px; text-align: center;
  background: linear-gradient(rgba(14,43,62,.86), rgba(14,43,62,.92)), url('../img/brand/hero-final.jpg?v=3') center/cover no-repeat;
}
.cta-final-in { max-width: 640px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 12px; }
.cta-final p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 28px; }

/* ============================================================
   7. SECTIONS — INNER
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text p { color: var(--text-soft); font-size: 16.5px; margin-bottom: 20px; line-height: 1.8; }
.about-features { margin-top: 28px; }
.about-feature { display: flex; gap: 16px; margin-bottom: 22px; }
.about-feature .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; }
.about-feature h4 { font-size: 16px; margin-bottom: 3px; }
.about-feature p { color: var(--text-soft); font-size: 14.5px; margin: 0; }
.about-visual { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.about-visual .no-img { color: var(--text-muted); text-align: center; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.stats-band { background: var(--bg-soft); border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 50px 0; text-align: center; }
.stat-big b { font-family: var(--font-head); font-size: clamp(32px, 5vw, 46px); color: var(--blue-deep); display: block; line-height: 1; }
.stat-big span { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; display: block; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all .25s; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card .ic { width: 58px; height: 58px; border-radius: 15px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: 14px; }
.tradein-band { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 40px; box-shadow: var(--shadow-sm); }
.tradein-img { min-height: 260px; background: var(--bg-soft); display: grid; place-items: center; color: var(--text-muted); }
.tradein-img img { width: 100%; height: 100%; object-fit: cover; }
.tradein-content { padding: 44px; }
.tradein-content h3 { font-size: 26px; margin-bottom: 12px; }
.tradein-content p { color: var(--text-soft); font-size: 16px; margin-bottom: 24px; }

/* Finanțare */
.finance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fin-eyebrow { color: var(--blue-deep); font-size: 12.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.fin-title { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.fin-lead { color: var(--text-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 4px; }
.fin-note { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin-top: 8px; }
.finance-benefits { display: grid; gap: 16px; margin: 28px 0; }
.finance-benefit { display: flex; align-items: center; gap: 14px; font-size: 16px; color: var(--text); font-weight: 500; }
.finance-benefit .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; }
.calc-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm); }
.calc-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--blue-deep); margin-bottom: 24px; }
.calc-note { color: var(--text-muted); font-size: 12.5px; margin-top: 16px; line-height: 1.5; }

/* 3 pași (finanțare) — responsive corect (nu inline, ca să funcționeze breakpoints) */
.steps-grid.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps-grid.steps-3 { grid-template-columns: 1fr; } }

/* Finanzierung — Anfrage (formular + panou navy de contact direct) */
.fin-form-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 30px; align-items: start; }
.fin-aside { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; border-radius: 16px; padding: 34px 30px; box-shadow: var(--shadow); position: sticky; top: var(--header-offset); }
.fin-aside h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.fin-aside > p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.fin-aside-cta { display: grid; gap: 12px; margin-bottom: 22px; }
.fin-aside-cta .btn { padding: 13px 16px; font-size: 14.5px; }
.fin-aside .fin-note { color: rgba(255,255,255,.6); font-size: 12.5px; line-height: 1.65; border-top: 1px solid rgba(255,255,255,.13); padding-top: 16px; margin: 0; }
@media (max-width: 900px) { .fin-form-grid { grid-template-columns: 1fr; } .fin-aside { position: static; } }

/* Finanzierungsrechner (Shop, bis 96 Monate) */
.calc-shop { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.calc-controls { padding: 34px 34px 38px; display: flex; flex-direction: column; gap: 26px; }
.calc-field { display: flex; flex-direction: column; gap: 12px; }
.calc-field > label { font-size: 14px; font-weight: 600; color: var(--text-soft); }
.calc-field > label b { color: var(--blue-deep); font-weight: 700; }
.calc-input { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; transition: border-color .18s; }
.calc-input:focus-within { border-color: var(--blue); }
.calc-input input { flex: 1; border: 0; padding: 14px 16px; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--text); background: transparent; outline: none; -moz-appearance: textfield; }
.calc-input input::-webkit-outer-spin-button, .calc-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input span { padding: 0 18px; font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--text-muted); }
.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--blue) var(--fill,40%), var(--line) var(--fill,40%)); outline: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: 0 2px 6px rgba(16,43,62,.25); cursor: pointer; }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); cursor: pointer; }
.calc-terms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.calc-term { padding: 11px 0; border: 1.5px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text-soft); font-family: var(--font-head); font-weight: 700; font-size: 15px; cursor: pointer; transition: all .16s; }
.calc-term:hover { border-color: var(--blue); color: var(--blue-deep); }
.calc-term.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 3px 10px rgba(28,163,224,.35); }
.calc-result { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; padding: 34px 32px; display: flex; flex-direction: column; }
.calc-result-label { font-size: 13px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.calc-result-val { font-family: var(--font-head); font-size: clamp(34px, 5vw, 46px); font-weight: 800; letter-spacing: -1px; margin: 4px 0 20px; color: #fff; }
.calc-result-val small { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: 0; }
.calc-breakdown { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.calc-breakdown li { display: flex; justify-content: space-between; font-size: 14.5px; color: rgba(255,255,255,.82); }
.calc-breakdown li b { color: #fff; font-weight: 700; }
.calc-breakdown .calc-total { border-top: 1px solid rgba(255,255,255,.16); padding-top: 12px; margin-top: 3px; font-size: 15.5px; }
.calc-result .btn { margin-top: auto; }
.calc-disc { color: rgba(255,255,255,.55); font-size: 11.5px; line-height: 1.55; margin: 14px 0 0; }
@media (max-width: 820px) { .calc-shop { grid-template-columns: 1fr; } }

/* Contact */
.contact-section { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
/* Coloană info = card navy cu accent (mai puțin alb) */
.contact-info-card { background: linear-gradient(158deg, #143a52 0%, #0e2b3e 60%); color: #fff; border-radius: 18px; padding: 40px 36px; box-shadow: 0 14px 40px rgba(14,43,62,.22); }
.contact-info-card .contact-col-title { color: #fff; margin-bottom: 28px; }
.contact-info-card .contact-info h4 { color: #fff; font-weight: 600; margin-bottom: 4px; }
.contact-info-card .contact-info .info-item { margin-bottom: 30px; align-items: flex-start; }
.contact-info-card .contact-info .info-item:last-child { margin-bottom: 0; }
.contact-info-card .contact-info p { color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.65; }
.contact-info-card .contact-info a { color: #6cc7ef; font-weight: 600; }
.contact-info-card .contact-info a:hover { color: #8fd4f2; }
.contact-info-card .info-item .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(28,163,224,.20); color: #6cc7ef; }
/* Telefon proeminent */
.contact-info-card .info-item.info-phone p, .contact-info-card .info-item.info-phone a { font-size: 21px; font-weight: 700; color: #fff; font-family: var(--font-head); letter-spacing: -.2px; }
/* WhatsApp: doar iconița verde */
.contact-info-card .info-item.info-whatsapp .ic { background: rgba(37,211,102,.16); color: #25D366; }
.contact-info-card .contact-mobilede-note { border-top-color: rgba(255,255,255,.16); color: rgba(255,255,255,.65); }
.contact-info-card .contact-mobilede-note a { color: #5cc0ee; }
/* Formular = card alb care iese în evidență pe fundalul colorat */
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 30px; box-shadow: 0 12px 34px rgba(14,43,62,.09); }
/* Ankauf — „cumpărăm mașina ta" (card navy) */
.ankauf-card { display: grid; grid-template-columns: 1.6fr .9fr; gap: 30px; align-items: center; background: linear-gradient(140deg, var(--ink,#0e2b3e) 0%, #14405f 62%, #1ca3e0 165%); color: #fff; border-radius: 18px; padding: 40px 44px; box-shadow: 0 18px 50px rgba(14,43,62,.28); }
.ankauf-eyebrow { color: #5cc0ee; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.ankauf-text h2 { color: #fff; font-size: clamp(24px,2.6vw,32px); margin: 8px 0 12px; }
.ankauf-text > p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.7; max-width: 620px; }
.ankauf-list { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 11px; }
.ankauf-list li { position: relative; padding-left: 30px; color: rgba(255,255,255,.92); font-size: 15px; }
.ankauf-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: #1ca3e0; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.ankauf-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-light { display:inline-flex; align-items:center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35); color: #fff; padding: 13px 22px; border-radius: 9px; font-weight: 600; font-size: 14.5px; }
.btn-outline-light:hover { background: rgba(255,255,255,.2); }
.ankauf-badge { justify-self: center; text-align: center; width: 168px; height: 168px; border-radius: 50%; background: rgba(255,255,255,.07); border: 2px dashed rgba(92,192,238,.55); display: grid; place-content: center; gap: 4px; }
.ankauf-badge b { font-family: var(--font-head); font-size: 23px; color: #fff; font-weight: 800; line-height: 1.15; }
.ankauf-badge span { color: #5cc0ee; font-size: 13px; font-weight: 600; }
@media (max-width: 820px) { .ankauf-card { grid-template-columns: 1fr; padding: 32px 26px; } .ankauf-badge { display: none; } }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; }
.contact-info h4 { font-size: 16px; margin-bottom: 3px; }
.contact-info p { color: var(--text-soft); font-size: 15px; }
.contact-col-title { font-size: 20px; margin-bottom: 22px; }
.contact-mobilede-note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-muted); }
.contact-mobilede-note a { color: var(--blue-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.contact-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); min-height: 340px; background: var(--bg-soft); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.2); }
.contact-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.contact-cta .btn { flex: 1; min-width: 210px; justify-content: center; padding: 15px 18px; font-size: 15px; }

/* Über uns: date reale + hartă */
.about-contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: stretch; }
.about-contact .eyebrow { color: var(--blue-deep); font-size: 12.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.about-contact h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.about-contact > .about-contact-info > p { color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.contact-facts { display: grid; gap: 16px; margin-top: 26px; }
.contact-fact { display: flex; gap: 14px; align-items: flex-start; }
.contact-fact .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; }
.contact-fact .k { display: block; color: var(--text-muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.contact-fact .v { display: block; color: var(--text); font-size: 15.5px; font-weight: 500; }
.contact-fact a.v:hover { color: var(--blue-deep); }

/* ============================================================
   8. CARDS — STOC
   ============================================================ */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.car-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 16px rgba(14,43,62,.06); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-5px); border-color: rgba(28,163,224,.28); box-shadow: 0 18px 42px rgba(28,163,224,.16); }
.car-media { position: relative; display: block; aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car-card:hover .car-media img { transform: scale(1.05); }
/* scrim subtil jos pt. profunzime + lizibilitate badge */
.car-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,25,38,.14), transparent 34%); pointer-events: none; }
.car-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--blue); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .4px; padding: 5px 11px; border-radius: 7px; box-shadow: 0 3px 10px rgba(28,163,224,.32); }
.car-badge.badge-sold { background: #e5484d; box-shadow: 0 3px 10px rgba(229,72,77,.32); }
.sold-card .feat-media img { filter: grayscale(.45) brightness(.92); }
.sold-card { opacity: .96; }
.sold-tag { display: inline-flex; align-items: center; gap: 7px; color: #e5484d; font-weight: 700; font-size: 14.5px; }
/* Cookie-Consent-Banner (DSGVO) */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: var(--ink, #0e2b3e); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 16px 20px; box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.85); }
.cookie-banner a { color: var(--blue, #1ca3e0); font-weight: 600; }
.cookie-banner .btn-sm { padding: 9px 20px; font-size: 13.5px; flex-shrink: 0; }
.car-status { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 7px; }
.car-status.status-reserved { background: rgba(28,163,224,.92); color: #fff; }
.car-status.status-sold { background: rgba(214,72,72,.92); color: #fff; }
.car-fav { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: 50%; display: grid; place-items: center; color: #7a828c; cursor: pointer; border: 1px solid rgba(255,255,255,.7); box-shadow: 0 2px 8px rgba(16,43,62,.14); transition: transform .18s cubic-bezier(.34,1.56,.64,1), color .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease; }
.car-fav svg { transition: fill .2s ease, stroke .2s ease, transform .2s ease; }
.car-fav:hover { color: #e5484d; transform: scale(1.1); box-shadow: 0 5px 16px rgba(16,43,62,.22); }
.car-fav:active { transform: scale(.9); }
.car-fav:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.car-fav.is-fav { color: #e5484d; background: #fff; border-color: rgba(229,72,77,.35); box-shadow: 0 3px 14px rgba(229,72,77,.3); }
.car-fav.is-fav svg { fill: #e5484d; stroke: #e5484d; }
.car-fav.faving svg { animation: favPop .42s cubic-bezier(.34,1.56,.64,1); }
@keyframes favPop { 0% { transform: scale(1); } 28% { transform: scale(.68); } 55% { transform: scale(1.35); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .car-fav, .car-fav svg { transition: none; } .car-fav.faving svg { animation: none; } }
.car-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.car-title { display: block; font-size: 19px; font-weight: 700; font-family: var(--font-head); color: var(--text); margin-bottom: 7px; line-height: 1.25; overflow-wrap: anywhere; }
.feat-title { overflow-wrap: anywhere; }
.car-title:hover { color: var(--blue-deep); }
.car-sub, .car-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-bottom: 18px; }
.car-spec { display: flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 13.5px; }
.car-spec .ic { color: var(--blue); flex-shrink: 0; }
.car-price { font-family: var(--font-head); font-size: 25px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.car-price small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.car-price-note { font-size: 14px; color: var(--blue-deep); font-weight: 700; margin-bottom: 16px; }
/* Badge „preț corect" lângă preț — senzație de ofertă bună */
.price-deal { display: inline-flex; align-items: center; gap: 4px; vertical-align: middle; margin-left: 9px; background: rgba(37,211,102,.12); color: #1e9e54; font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .2px; padding: 3px 9px 3px 7px; border-radius: 20px; }
.price-deal svg { width: 12px; height: 12px; flex-shrink: 0; }
.feat-price-wrap .price-deal { margin-left: 0; margin-top: 4px; }
.car-actions { display: flex; align-items: stretch; gap: 10px; }
.car-actions .btn { padding: 12px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 600; gap: 7px; }
.car-actions .btn svg { width: 15px; height: 15px; }
.car-cta { flex: 1; justify-content: center; }
.car-wa { flex-shrink: 0; width: 48px; display: inline-grid; place-items: center; border-radius: 8px; background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.4); color: #1f9c66; transition: all .2s; }
.car-wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }

/* Placeholder card fără foto — brand discret pe navy (nu „proiect neterminat") */
.feat-media .no-img, .car-media .no-img {
  width: 100%; height: 100%; display: grid; place-items: center; gap: 10px; text-align: center;
  background: linear-gradient(135deg, #0e2b3e 0%, #0a2130 100%);
  color: rgba(255,255,255,.5);
}
.feat-media .no-img svg, .car-media .no-img svg { color: rgba(70,182,233,.55); }
.feat-media .no-img::after, .car-media .no-img::after {
  content: "TOTAL24 AUTOMOBILE"; font-family: var(--font-head); font-weight: 800;
  font-size: 12.5px; letter-spacing: 2.2px; color: rgba(255,255,255,.62); text-transform: uppercase;
}

/* Stoc: layout + toolbar */
.stoc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.stoc-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 14px; }
.stoc-toolbar .count { color: var(--text-soft); font-size: 18px; font-weight: 500; }
.stoc-toolbar .count b { color: var(--blue-deep); font-size: 22px; font-family: var(--font-head); }
.sort-box { display: flex; align-items: center; gap: 10px; }
.sort-box label { color: var(--text-muted); font-size: 13px; }
.sort-box select { padding: 9px 12px; background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: 8px; font-size: 13px; }
.toolbar-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fav-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; background: var(--surface); border: 1px solid var(--line); color: var(--text-soft); padding: 9px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; transition: all .2s; }
.fav-toggle:hover { border-color: var(--blue); color: var(--text); }
.fav-toggle b { color: var(--blue-deep); }
.fav-toggle svg { color: var(--blue); }
.fav-toggle.active { border-color: rgba(229,72,77,.4); background: rgba(229,72,77,.08); color: var(--text); }
.fav-toggle.active svg { fill: #e5484d; stroke: #e5484d; }
.btn-filter-m { display: none; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; background: var(--blue); color: #fff; border: 0; padding: 10px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--text-muted); }
.empty-state svg { opacity: .4; margin-bottom: 16px; }

/* ============================================================
   9. CAR DETAIL
   ============================================================ */
.detail { padding: 40px 0 88px; }
.breadcrumb { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--blue-deep); }
.detail-grid { display: grid; grid-template-columns: 1.4fr .85fr; gap: 40px; align-items: start; }
.detail-grid > * { min-width: 0; }   /* previne blowout-ul coloanelor din conținut lat */
/* Ramă premium cu gradient (albastru → navy) în jurul pozei mașinii */
.gallery-main { border-radius: 18px; overflow: hidden; margin-bottom: 14px;
  border: 4px solid transparent;
  background: linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
              linear-gradient(135deg, #46b6e9 0%, #1ca3e0 45%, #0e2b3e 100%) border-box;
  box-shadow: 0 18px 44px rgba(14,43,62,.20), 0 0 0 1px rgba(255,255,255,.5) inset;
  transition: box-shadow .28s ease, transform .28s ease; }
.gallery-main:hover { box-shadow: 0 24px 58px rgba(28,163,224,.30), 0 0 0 1px rgba(255,255,255,.5) inset; }
/* aspect-ratio pe IMG (nu pe container) → poză mereu 16/10, fiabil pe mobil */
.gallery-main img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.gallery-main .no-img { display: grid; place-items: center; aspect-ratio: 16/10; width: 100%; color: var(--text-muted); }
.gallery-main.zoomable { position: relative; cursor: zoom-in; }
.gallery-main.zoomable img { transition: transform .5s ease; }
.gallery-main { position: relative; }
.gallery-main.zoomable:hover img { transform: scale(1.04); }
/* Watermark-ul „TOTAL24 AUTOMOBILE" este ACUM ars în fișierul poză
   (scripts/watermark-images.py) — nu mai e nevoie de overlay CSS. */
.gallery-zoom-cue { position: absolute; right: 12px; bottom: 12px; z-index: 2; pointer-events: none; display: inline-flex; padding: 8px; border-radius: 10px; color: #fff; background: rgba(14,43,62,.7); backdrop-filter: blur(6px); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumbs .thumb { aspect-ratio: 1; border-radius: 9px; overflow: hidden; cursor: pointer; border: 2px solid transparent; background: var(--bg-soft); }
.gallery-thumbs .thumb.active { border-color: var(--blue); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: sticky; top: var(--header-offset); box-shadow: var(--shadow-sm); }
.detail-panel h1 { font-size: 26px; margin-bottom: 6px; }
.detail-panel .sub { color: var(--text-muted); margin-bottom: 20px; }
.detail-head { margin-bottom: 24px; }
.detail-head h1 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 6px; overflow-wrap: anywhere; }
.detail-sub { color: var(--text-muted); font-size: 15px; }
.detail-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: .3px; padding: 5px 11px; border-radius: 100px; margin-bottom: 12px; }
.detail-status svg { flex-shrink: 0; }
.detail-status.status-available { background: rgba(46,158,107,.12); color: var(--green); }
.detail-status.status-reserved { background: rgba(28,163,224,.14); color: var(--blue-deep); }
.detail-status.status-sold { background: rgba(214,72,72,.12); color: var(--red); }
.detail-price { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.detail-price-note { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
/* Preț stil Mobile.de: brut + „MwSt. ausweisbar" + net · TVA */
.price-vat-note { color: var(--blue-deep, var(--text-soft)); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.price-net { color: var(--text-soft); font-size: 13.5px; margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; align-items: baseline; }
.price-net .price-sep { color: var(--border); }
/* Net proeminent pe pagina mașinii */
.price-net-big { display: flex; width: fit-content; max-width: 100%; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; padding: 8px 14px; background: var(--blue-soft); border: 1px solid rgba(28,163,224,.28); border-radius: 10px; font-size: 17px; font-weight: 600; color: var(--blue-deep); }
.price-net-big b { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue-deep); }
.price-net-vat { font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.price-note { color: var(--text-muted); font-size: 13px; margin-bottom: 22px; }
.feat-price-wrap { display: flex; flex-direction: column; gap: 1px; }
.feat-price-note { font-size: 10.5px; color: var(--text-muted); font-weight: 500; letter-spacing: 0; }
.detail-actions { display: grid; gap: 12px; }
.detail-finance { display: flex; flex-wrap: wrap; max-width: 100%; align-items: center; gap: 8px; background: var(--blue-soft); border: 1px solid rgba(28,163,224,.28); color: var(--text); font-size: 15px; padding: 10px 15px; border-radius: 10px; margin-bottom: 20px; }
.detail-finance b { color: var(--blue-deep); }
.detail-finance:hover { border-color: var(--blue); }
.detail-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-cta-row .btn { padding: 14px 14px; font-size: 14px; }
.detail-note { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; margin-top: 14px; }
.detail-note .ic, .detail-finance .ic { color: var(--blue); display: inline-flex; }
.detail-trust { display: grid; gap: 9px; margin-bottom: 20px; padding: 0; }
.detail-trust li { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 14.5px; }
.detail-trust li svg { color: var(--blue); flex-shrink: 0; }
.detail-mobilede { display: flex; flex-direction: column; gap: 3px; margin-top: 16px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft); transition: border-color .2s; }
.detail-mobilede span { color: var(--text-muted); font-size: 12.5px; }
.detail-mobilede b { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-deep); font-size: 14px; font-weight: 600; }
.detail-mobilede:hover { border-color: var(--blue); }

.spec-table { margin-top: 34px; }
.spec-table h3 { font-size: 20px; margin-bottom: 18px; }
.spec-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.spec-item { background: var(--surface); padding: 15px 18px; display: flex; justify-content: space-between; gap: 12px; }
.spec-item .k { color: var(--text-muted); font-size: 14px; }
.spec-item .v { color: var(--text); font-weight: 600; font-size: 14px; text-align: right; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.spec-cell { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.spec-cell .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; }
.spec-cell .k { display: block; color: var(--text-muted); font-size: 12.5px; }
.spec-cell .v { display: block; color: var(--text); font-weight: 600; font-size: 15px; }
.key-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 18px; }
.key-spec { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.key-spec .ic { color: var(--blue); flex-shrink: 0; display: inline-flex; }
.key-spec b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--text); line-height: 1.1; }
.key-spec span { display: block; color: var(--text-muted); font-size: 12px; margin-top: 2px; }
/* Ausstattung — chenar (card) cu bife în badge, consistent cu restul paginii */
.features-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 30px 30px; background: var(--surface); box-shadow: var(--shadow-sm); }
.features-card > h3 { margin-bottom: 4px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 6px 22px; margin-top: 18px; }
.feature-li { display: flex; align-items: center; gap: 11px; color: var(--text); font-size: 14.5px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.feature-li .ic { width: 23px; height: 23px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; }
.feature-li .ic svg { width: 13px; height: 13px; stroke-width: 2.4; }
.detail-desc { margin-top: 34px; color: var(--text-soft); font-size: 16px; line-height: 1.8; }

/* ============================================================
   10. FORMS & FIELDS
   ============================================================ */
.field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.field select, .field input { width: 100%; padding: 11px 13px; background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; }
.field select:focus, .field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.filters { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin-bottom: 34px; box-shadow: var(--shadow-sm); }
.filters-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.filters-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; flex-wrap: wrap; gap: 12px; }
.results-count { color: var(--text-soft); font-size: 14px; }
.results-count b { color: var(--text); }
.filters-side { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: sticky; top: var(--header-offset); box-shadow: var(--shadow-sm); }
.filters-side h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--blue-deep); margin-bottom: 20px; }
.filters-side .field { margin-bottom: 18px; }
.filters-head { display: flex; align-items: center; justify-content: space-between; }
.filters-close { display: none; background: none; border: 0; color: var(--text-muted); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; }
.filter-backdrop { display: none; position: fixed; inset: 0; z-index: 190; background: rgba(14,43,62,.45); }
.filter-backdrop.show { display: block; }
/* Filtre: rând von–bis (două select-uri) */
.field-row { display: flex; align-items: center; gap: 8px; }
.field-row select { flex: 1; min-width: 0; }
.field-sep { color: var(--text-muted); font-weight: 600; flex-shrink: 0; }

/* Chip-uri filtre active */
.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-chips:empty { display: none; }
.active-chips .chip {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-family: inherit;
  background: var(--blue-soft); border: 1px solid rgba(28,163,224,.28); color: var(--blue-deep);
  padding: 6px 10px 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 600; transition: all .18s;
}
.active-chips .chip:hover { background: rgba(28,163,224,.16); border-color: var(--blue); }
.active-chips .chip .x { display: inline-flex; opacity: .75; }
.active-chips .chip:hover .x { opacity: 1; }
.active-chips .chip-clear { background: transparent; border-color: var(--line); color: var(--text-soft); }
.active-chips .chip-clear:hover { border-color: var(--red); color: var(--red); background: transparent; }

.range-wrap { padding-top: 4px; }
.range-values { display: flex; justify-content: space-between; color: var(--text-soft); font-size: 13px; margin-bottom: 8px; font-weight: 600; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--line); border-radius: 4px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--blue); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--blue); cursor: pointer; border: 3px solid #fff; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow-sm); }
.contact-form .field { margin-bottom: 16px; }
.contact-form textarea { width: 100%; padding: 12px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 14px; resize: vertical; min-height: 110px; }
.contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.lead-box { margin-top: 24px; padding: 20px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; }
.lead-box h3 { font-size: 17px; margin-bottom: 4px; }
.lead-box > p { color: var(--text-soft); font-size: 14px; margin-bottom: 14px; }
.lead-form { display: grid; gap: 10px; }
.lead-form input { padding: 12px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; color: var(--text); font-family: inherit; font-size: 14px; }
.lead-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.lead-form textarea { padding: 12px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; color: var(--text); font-family: inherit; font-size: 14px; resize: vertical; min-height: 90px; }
.lead-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.lead-check { display: flex; align-items: center; gap: 9px; color: var(--text-soft); font-size: 13.5px; cursor: pointer; margin: 2px 0; }
.lead-check input[type=checkbox] { width: 17px; height: 17px; padding: 0; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.lead-note { font-size: 13px; margin-top: 10px; }

/* ============================================================
   11. FOOTER  (navy — logo-ul respiră)
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 15px; margin-top: 14px; max-width: 280px; }
.footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; color: rgba(255,255,255,.65); font-size: 14.5px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14.5px; }
.footer-links a:hover { color: var(--blue-hi); }
.footer-mobilede { display: inline-flex; align-items: center; gap: 11px; margin-top: 20px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; background: rgba(255,255,255,.04); transition: border-color .2s; }
.footer-mobilede:hover { border-color: var(--blue); }
.footer-mobilede .fm-ic { color: var(--blue-hi); display: inline-flex; flex-shrink: 0; }
.footer-mobilede .fm-txt b { display: block; color: #fff; font-size: 13.5px; }
.footer-mobilede .fm-txt small { display: inline-flex; align-items: center; gap: 5px; color: var(--blue-hi); font-size: 12.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.55); font-size: 13.5px; }
.footer-legal { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--blue-hi); }

/* ============================================================
   12. UTILITIES & STATES · pagini legale
   ============================================================ */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 20px; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 16px; margin: 20px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-soft); font-size: 15.5px; line-height: 1.8; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 22px; list-style: disc; }
.legal-content a { color: var(--blue-deep); }
.legal-content strong { color: var(--text); }
.legal-note { border: 1px solid rgba(28,163,224,.3); background: var(--blue-soft); border-radius: 10px; padding: 14px 16px; color: var(--text); font-size: 14px; margin-bottom: 20px; }

.badge-status { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.status-available { background: rgba(46,158,107,.14); color: var(--green); }
.status-reserved { background: rgba(28,163,224,.14); color: var(--blue-deep); }
.status-sold { background: rgba(214,72,72,.14); color: var(--red); }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 26px rgba(37,211,102,.4); transition: transform .22s ease; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
/* Bară de navigație jos, stil aplicație (mobil) */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 18px rgba(14,43,62,.10); padding-bottom: env(safe-area-inset-bottom, 0px); }
.mobile-cta .mnav { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px 2px; min-height: 54px; color: var(--text-muted); font-size: 10px; font-weight: 600; text-align: center; }
.mobile-cta .mnav svg { width: 21px; height: 21px; flex-shrink: 0; }
.mobile-cta .mnav span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-cta .mnav.active { color: var(--blue-deep); }
.mobile-cta .mnav-wa { color: var(--wa); }
.mobile-cta .mnav:active { background: var(--bg-soft); }

/* ============================================================
   12b. REVIEWS / KUNDENSTIMMEN
   ============================================================ */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.reviews-head .rh-title .eyebrow { color: var(--blue-deep); font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.reviews-head .rh-title h2 { font-size: clamp(24px, 2.3vw, 33px); }
.rev-agg { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-sm); }
.rev-agg .num { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: var(--text); line-height: 1; }
.rev-agg .num small { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); margin-top: 4px; }
.rev-agg .agg-src { color: var(--text-soft); font-size: 13px; }
.rev-agg .agg-src a { color: var(--blue-deep); font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.stars .empty { color: #d7dee4; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: 12px; }
.review-quote { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.review-quote::before { content: "\201E"; color: var(--blue); font-family: var(--font-head); font-size: 30px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.review-author .av { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 15px; flex-shrink: 0; }
.review-author .who b { display: block; color: var(--text); font-size: 14px; font-weight: 700; }
.review-author .who span { display: block; color: var(--text-muted); font-size: 12.5px; }
/* stare goală: doar link către sursa reală (fără stele inventate) */
.reviews-empty { text-align: center; max-width: 620px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 40px 28px; box-shadow: var(--shadow-sm); }
.reviews-empty .ic { color: var(--blue); margin-bottom: 14px; }
.reviews-empty h3 { font-size: 20px; margin-bottom: 8px; }
.reviews-empty p { color: var(--text-soft); font-size: 15px; margin-bottom: 20px; }

/* ============================================================
   12c. FAQ (accordion nativ <details>)
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-ic { flex-shrink: 0; color: var(--blue); transition: transform .25s ease; }
.faq-item[open] summary .fq-ic { transform: rotate(45deg); }
.faq-item .fq-a { padding: 0 22px 20px; color: var(--text-soft); font-size: 15px; line-height: 1.7; }

/* ============================================================
   12d. RATGEBER (hub + carduri) & ARTICOL
   ============================================================ */
.ratgeber-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-bottom: 52px; }
.cat-card { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; box-shadow: var(--shadow-sm); transition: all .25s; }
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #d3dde5; }
.cat-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 6px; }
.cat-card h3 { font-size: 18px; }
.cat-card p { color: var(--text-soft); font-size: 14px; }
.cat-card .count { margin-top: auto; color: var(--blue-deep); font-size: 12.5px; font-weight: 600; letter-spacing: .3px; }
/* Ghid pe mobil: carduri categorii compacte 2×2 → articolele apar mult mai sus */
@media (max-width: 560px) {
  .ratgeber-cats { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
  .cat-card { padding: 14px 12px; gap: 5px; border-radius: 12px; }
  .cat-card .ic { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 2px; }
  .cat-card .ic svg { width: 20px; height: 20px; }
  .cat-card h3 { font-size: 15px; line-height: 1.25; }
  .cat-card p { display: none; }
  .cat-card .count { font-size: 12px; margin-top: 6px; }
  #artListTitle { scroll-margin-top: 72px; }
}

.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.art-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all .25s; }
.art-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #d3dde5; }
.art-media { position: relative; aspect-ratio: 16/9; background: var(--bg-soft); overflow: hidden; }
.art-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .art-media img { transform: scale(1.04); }
.art-cat { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(14,43,62,.9); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .4px; padding: 5px 11px; border-radius: 7px; }
.art-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.art-body h3 { font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.art-card:hover .art-body h3 { color: var(--blue-deep); }
.art-body p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.art-meta { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 12.5px; margin-top: auto; }
.art-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

/* Articol (pagina de citire) */
.article { padding: 0 0 80px; }
.article-hero { position: relative; height: clamp(280px, 34vw, 440px); overflow: hidden; background: #0a1620; display: flex; align-items: flex-end; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.article-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(6,16,24,.9) 0%, rgba(6,16,24,.4) 50%, rgba(6,16,24,.15) 100%); }
.article-hero .container { position: relative; z-index: 2; padding-bottom: 30px; }
.article-hero .art-cat { position: static; display: inline-block; margin-bottom: 14px; background: var(--blue); }
.article-hero h1 { color: #fff; font-size: clamp(26px, 3.4vw, 42px); max-width: 820px; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.article-hero .art-meta { color: rgba(255,255,255,.8); margin-top: 14px; }
.article-body { max-width: 780px; margin: 44px auto 0; }
.article-lead { font-size: 19px; line-height: 1.7; color: var(--text); font-weight: 500; margin-bottom: 32px; padding-left: 18px; border-left: 3px solid var(--blue); }
.article-body h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 40px 0 14px; }
.article-body h3 { font-size: 19px; margin: 28px 0 10px; }
.article-body p { color: var(--text-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 16px; }
.article-body ul, .article-body ol { color: var(--text-soft); font-size: 16.5px; line-height: 1.8; margin: 0 0 18px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 7px; }
.article-body a { color: var(--blue-deep); font-weight: 600; }
.article-body strong { color: var(--text); }
.article-toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; margin-bottom: 34px; }
.article-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-deep); margin-bottom: 12px; }
.article-toc ol { margin: 0 0 0 18px; color: var(--text-soft); font-size: 15px; }
.article-toc a { color: var(--text-soft); }
.article-toc a:hover { color: var(--blue-deep); }
/* „Unsere Einschätzung" — tabel rating */
.rating-box { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; margin: 28px 0; box-shadow: var(--shadow-sm); }
.rating-box h3 { margin: 0 0 16px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.rating-box h3 .ic { color: #f5a623; }
.rating-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--line-soft); }
.rating-row:first-of-type { border-top: 0; }
.rating-row .lbl { color: var(--text); font-size: 15px; font-weight: 500; }
/* Info-box în articol */
.article-note { background: var(--blue-soft); border: 1px solid rgba(28,163,224,.28); border-radius: 12px; padding: 18px 20px; margin: 24px 0; display: flex; gap: 14px; }
.article-note .ic { color: var(--blue-deep); flex-shrink: 0; margin-top: 2px; }
.article-note b { color: var(--text); display: block; margin-bottom: 3px; }
.article-note p { margin: 0; font-size: 15px; }
/* CTA + „aus dem Bestand" în articol */
.article-cta { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: 18px; padding: 40px 36px; text-align: center; margin: 44px 0 0; }
.article-cta h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 22px; }
.article-related { margin: 48px 0 0; }
.article-related h2 { font-size: 24px; margin-bottom: 8px; }
.article-related .rel-sub { color: var(--text-soft); font-size: 15px; margin-bottom: 24px; }
.share-row { display: flex; align-items: center; gap: 10px; margin: 36px 0 0; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.share-row span { color: var(--text-muted); font-size: 14px; font-weight: 600; }

/* Dropdown „Ratgeber" în nav */
.nav-item { position: relative; }
.nav-dd { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 44px rgba(14,43,62,.18); padding: 8px; opacity: 0; visibility: hidden; transition: all .2s ease; z-index: 120; }
.nav-item:hover .nav-dd, .nav-item:focus-within .nav-dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--text-soft) !important; font-size: 13.5px; font-weight: 500; }
.nav-dd a:hover { background: var(--blue-soft); color: var(--blue-deep) !important; }
.nav-dd a .ic { color: var(--blue); display: inline-flex; flex-shrink: 0; }

/* ============================================================
   13. MOTION & A11Y
   ============================================================ */
.hero-cine .container > * { animation: floatIn .6s ease both; }
.hero-cine .hero-eyebrow { animation-delay: 0s; }
.hero-cine h1 { animation-delay: .05s; }
.hero-cine p { animation-delay: .12s; }
.hero-cine .hero-actions { animation-delay: .18s; }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
#site-header { animation: navIn .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px;
}
/* Skip-link — vizibil doar la focus (tastatură) */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 300;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-cine .container > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  #site-header { animation: none !important; }
  .wa-float::before { animation: none; }
}

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (min-width: 1800px) { :root { --container: 1440px; } }

.nav-lang-h { display: none; }
@media (max-width: 980px) {
  .topbar { display: none; }
  /* Selector de limbă compact lângă hamburger */
  .nav-lang-h { display: flex; gap: 1px; align-items: center; }
  .nav-lang-h a { padding: 5px 6px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); border-radius: 6px; letter-spacing: .3px; line-height: 1; }
  .nav-lang-h a.active { color: #fff; background: rgba(255,255,255,.14); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--ink); padding: 20px 26px;
    border-bottom: 1px solid rgba(255,255,255,.1); gap: 18px;
  }
  /* dropdown Ratgeber → inline în meniul mobil */
  .nav-links.open .nav-item { width: 100%; }
  .nav-links.open .nav-dd { position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; padding: 6px 0 2px 16px; min-width: 0; background: transparent; }
  .nav-links.open .nav-dd a { color: rgba(255,255,255,.68) !important; padding: 9px 8px; font-size: 13px; }
  .nav-links.open .nav-dd a:hover { background: rgba(255,255,255,.06); color: #fff !important; }
  .nav-links.open .nav-dd a .ic { color: var(--blue-hi); }
  /* comutator limbă în meniul mobil */
  .nav-lang-m { display: flex; gap: 8px; margin-top: 6px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-lang-m a { padding: 7px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; color: rgba(255,255,255,.75) !important; font-size: 13px; font-weight: 700; letter-spacing: .5px; }
  .nav-lang-m a.active { background: var(--blue); border-color: var(--blue); color: #fff !important; }
  .hero-cine { height: clamp(440px, 56vh, 540px); }
  .hero-brand { bottom: 40px; }
  .hero-brand-img { height: 52px; }
  /* Beneficii: panou dark full-width, 2×2 pe tabletă */
  .trust-strip { margin-top: 0; margin-bottom: 0; }
  .trust-strip .container {
    max-width: none; margin: 0; border-radius: 0; border: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: #0c2233; backdrop-filter: none; box-shadow: none;
    flex-wrap: wrap; padding: 6px 26px;
  }
  .trust-strip .trust-item { flex: 1 1 44%; padding: 15px 10px; }
  .trust-strip .trust-item + .trust-item::before { display: none; }
  .why-split { grid-template-columns: 1fr; gap: 32px; }
  .why-photo { min-height: 260px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-panel { position: static; }
  /* Pe mobil: thumbnail-urile devin o bandă orizontală (swipe) → prețul apare imediat */
  .gallery-thumbs { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .gallery-thumbs .thumb { flex: 0 0 68px; width: 68px; scroll-snap-align: start; }
  .gallery-thumbs::-webkit-scrollbar { height: 5px; }
  .gallery-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-grid, .finance-grid, .tradein-band, .about-contact { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .stoc-layout { grid-template-columns: 1fr; }
  .btn-filter-m { display: inline-flex; }
  .filters-close { display: block; }
  .filters-side {
    position: fixed; top: 0; left: 0; bottom: 0; width: 86%; max-width: 340px; z-index: 200;
    border-radius: 0; overflow-y: auto; margin: 0;
    transform: translateX(-100%); transition: transform .3s ease;
  }
  .filters-side.open { transform: translateX(0); box-shadow: 8px 0 40px rgba(14,43,62,.25); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .wa-float { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner { bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }  /* deasupra tab bar-ului */
}

@media (max-width: 620px) {
  .feat-grid { grid-template-columns: 1fr; }
  .nav-cta .btn { display: none; }
  /* Grile de câmpuri cu 2 coloane (inline) → 1 coloană pe telefon (altfel sunt înghesuite) */
  .fin-form-grid[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Hero overlay compact pe mobil (imaginea cover, text jos, gradient de lizibilitate) */
  .hero-cine { height: clamp(400px, 62vh, 480px); align-items: flex-end; }
  .hero-brand { display: none; }   /* pe telefon textul coboară jos → sigla din header e suficientă */
  .hero-bg { object-position: 62% 50%; }
  .hero-cine::after { background: linear-gradient(0deg, rgba(6,16,24,.93) 0%, rgba(6,16,24,.56) 36%, rgba(6,16,24,.12) 64%, transparent 84%); }
  .hero-cine .container { padding-bottom: 26px; }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: .5px; margin-bottom: 12px; }
  .hero-cine h1 { font-size: clamp(27px, 7.2vw, 38px); max-width: 100%; margin-bottom: 12px; }
  .hero-cine p { max-width: 100%; margin-bottom: 18px; font-size: 14.5px; }
}

@media (max-width: 560px) {
  /* .section și .container sunt controlate de --space-section / --container-pad (vezi sus) */
  .nav { height: 54px; }
  .detail-panel { padding: 22px 20px; }
  .calc-card, .contact-form-card, .contact-info-card { padding: 26px 20px; }
  .ankauf-card { padding: 28px 22px; }
  .logo-img { height: 36px; max-width: 156px; }
  .hero-cine h1 { font-size: clamp(26px, 7.4vw, 34px); max-width: 100%; overflow-wrap: anywhere; }
  .hero-cine .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  /* Beneficii: grid 2×2 compact pe telefon (fără stivuire, fără linii orizontale) */
  .trust-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 8px; padding: 10px 14px; }
  .trust-strip .trust-item { flex: none; min-width: 0; padding: 9px 6px; gap: 9px; align-items: center; }
  .trust-strip .trust-item + .trust-item::before { display: none; }
  .trust-strip .trust-item + .trust-item { border-top: 0; }
  .trust-strip .trust-item .ic { color: var(--blue); }
  .trust-strip .trust-item .ic svg { width: 18px; height: 18px; }
  .trust-strip .trust-item b { font-size: 14px; margin-bottom: 1px; }
  .trust-strip .trust-item .trust-d-long { display: none; }
  .trust-strip .trust-item .trust-d-short { display: block; font-size: 11.5px; line-height: 1.3; color: rgba(255,255,255,.66); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Anti-overflow orizontal pe telefoane înguste (320px): email lung + grilă articole */
  .footer-links a, .footer-links li { overflow-wrap: anywhere; }
  .article-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-cta .btn { flex: 1 1 100%; }
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) { .car-actions { flex-direction: column; } }

/* ===== MOBILE ESSENTIALS (touch, iOS, meniu) — consolidat ===== */
body.nav-open { overflow: hidden; }          /* scroll-lock când meniul e deschis */
@media (max-width: 767px) {
  /* Inputuri 16px → fără zoom automat pe iOS; ținte de atingere 48px */
  input:not([type=range]), select, textarea { font-size: 16px; }
  .field input, .field select, .lead-form input, .lead-form select,
  #contactForm input, #ankaufForm input, #ankaufForm select { min-height: 48px; }
  .field textarea, .lead-form textarea, #contactForm textarea, #ankaufForm textarea { min-height: 120px; }
  /* Butoane: țintă de atingere ≥46px */
  .btn { min-height: 46px; }
  /* Meniu mobil: link-uri mari, ușor de apăsat */
  .nav-links.open { gap: 4px; }
  .nav-links.open > a, .nav-links.open .nav-item > a { padding: 11px 4px; font-size: 15px; }
  /* Formularele: butonul de submit full-width (deja btn-block, dar sigur) */
  .lead-form button[type=submit], #contactForm button[type=submit] { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }             /* padding lateral consistent pe telefoane mici */
}

/* ============ INHABER — omul din spatele Total24 ============ */
.inhaber{
  display:grid;grid-template-columns:300px 1fr;gap:38px;align-items:center;
  background:var(--surface);border:1px solid rgba(16,42,60,.08);
  border-radius:calc(var(--radius) + 4px);padding:30px;box-shadow:var(--shadow);
}
.inhaber-media{position:relative}
.inhaber-media img,.inhaber-ph{
  width:100%;aspect-ratio:1/1;border-radius:var(--radius);object-fit:cover;display:block;
}
.inhaber-ph{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
  background:linear-gradient(150deg,#0e2b3e 0%,#123a52 55%,#1183bd 140%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}
.inhaber-ph-logo{width:64%;max-width:190px;height:auto;opacity:.96;aspect-ratio:auto;border-radius:0}
.inhaber-ph-role{
  color:#cfe6f4;font-size:13px;letter-spacing:.14em;text-transform:uppercase;font-weight:600;
}
.inhaber-name{margin:.28em 0 .1em;font-size:clamp(24px,2.4vw,30px)}
.inhaber-role{color:var(--blue);font-weight:600;margin:0 0 14px}
.inhaber-desc{color:var(--text-soft);font-size:16.5px;line-height:1.65;margin:0 0 20px;max-width:60ch}
.inhaber-quote{
  border-left:3px solid var(--blue);padding:6px 0 6px 18px;margin:0 0 20px;
  font-style:italic;color:var(--text);font-size:17px;line-height:1.6;
}
.inhaber-wa{
  display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  background:var(--bg-soft);border-radius:var(--radius);padding:16px 18px;
}
.inhaber-wa-txt{display:flex;flex-direction:column;line-height:1.4}
.inhaber-wa-txt strong{font-size:15.5px}
.inhaber-wa-txt span{color:var(--text-soft);font-size:14px}
.inhaber-wa .btn{margin-left:auto;display:inline-flex;align-items:center;gap:8px;white-space:nowrap}
@media(max-width:760px){
  .inhaber{grid-template-columns:1fr;gap:22px;padding:22px;text-align:center}
  .inhaber-media{max-width:240px;margin:0 auto}
  .inhaber .eyebrow{display:inline-block}
  .inhaber-desc{margin-left:auto;margin-right:auto}
  .inhaber-quote{text-align:left}
  .inhaber-wa{flex-direction:column;text-align:center}
  .inhaber-wa-txt{align-items:center}
  .inhaber-wa .btn{margin-left:0;width:100%;justify-content:center}
}

/* ---- Rată lunară orientativă pe card ---- */
.car-rate{
  display:inline-block;margin:2px 0 2px;font-size:13.5px;color:var(--text-soft);
  text-decoration:none;line-height:1.3;
}
.car-rate b{color:var(--blue-deep);font-weight:700}
a.car-rate:hover b{text-decoration:underline}
.feat-body .car-rate{margin-top:8px;padding-top:8px;border-top:1px solid rgba(16,42,60,.07);width:100%}
