:root {
  --bg: #0A0A0B;
  --bg-alt: #0F0F11;
  --surface: #141416;
  --text: #EDEBE6;
  --muted: #8B8983;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .22);
  --gold: #CDB88A;

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", system-ui, "Segoe UI", sans-serif;
  --f-plate: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--bg); }

h1, h2, h3 { font-family: var(--f-display); font-stretch: 112%; font-weight: 500; margin: 0; letter-spacing: -.02em; }
h1 em, h2 em { font-style: normal; font-weight: 300; color: var(--muted); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.06; }
h3 { font-size: 1.5rem; line-height: 1.2; font-stretch: 106%; font-weight: 400; letter-spacing: -.01em; }

.wrap { width: min(1320px, 100% - 96px); margin-inline: auto; }
.muted { color: var(--muted); }

.eyebrow {
  display: flex; align-items: center; gap: 16px; margin: 0 0 28px;
  font-size: 12px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 48px; height: 1px; background: currentColor; flex: none; }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 19px 34px; background: var(--text); color: var(--bg);
  font: 500 13px/1.2 var(--f-body); letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--text); cursor: pointer; transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: transparent; color: var(--text); }
.btn i { font-size: 18px; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--text); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; padding-bottom: 6px;
  font-size: 13px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(var(--text), var(--text)) 0 100% / 0 1px no-repeat,
              linear-gradient(var(--line-strong), var(--line-strong)) 0 100% / 100% 1px no-repeat;
  transition: background-size .5s var(--ease);
}
.text-link:hover { background-size: 100% 1px, 100% 1px; }
.text-link i { font-size: 16px; transition: transform .3s var(--ease); }
.text-link:hover i { transform: translate(3px, -3px); }

/* ---------- Plăcuța ---------- */
.plate {
  --s: 1;
  font-size: calc(var(--s) * 10px);
  display: inline-flex; padding: .5em; border-radius: 1.2em;
  background: linear-gradient(180deg, #FFFFFF 0%, #EDEDED 55%, #DADADA 100%);
  line-height: 1;
}
.plate-in { position: relative; display: flex; border: .4em solid #151515; border-radius: .8em; overflow: hidden; }
.plate .eu {
  width: 6.2em; background: linear-gradient(180deg, #0A4BC4, #00338F); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 1.5em 0 1.1em;
}
.plate .eu svg { width: 3.4em; height: 3.4em; }
.plate .eu small { font: 700 2.1em/1 Arial, sans-serif; }
.plate .num {
  font-family: var(--f-plate); font-weight: 600; font-size: 10.4em; color: #141414;
  padding: .08em .28em .02em; white-space: nowrap; letter-spacing: .02em;
  text-shadow: 0 1px 0 #fff, 0 -1px 0 rgba(0, 0, 0, .25);
}
.plate--flat .num { text-shadow: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.header.scrolled { background: rgba(10, 10, 11, .78); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; height: 88px; }
.brand { display: flex; align-items: center; gap: 16px; justify-self: start; }
.wordmark { font-family: var(--f-display); font-stretch: 125%; font-weight: 700; font-size: 15px; letter-spacing: .14em; white-space: nowrap; }
.wordmark span { font-weight: 300; color: var(--muted); margin-left: .5em; }

.nav { display: flex; justify-content: center; gap: 26px; }
.nav a { position: relative; font-size: 12px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .4s var(--ease); }
.nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.pill { font-size: 13px; font-weight: 400; letter-spacing: .06em; padding: 11px 22px; border: 1px solid var(--line-strong); border-radius: 100px; transition: background .3s, color .3s; white-space: nowrap; }
.pill:hover { background: var(--text); color: var(--bg); }
.lang, .icon-btn { height: 44px; min-width: 44px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 100px; transition: background .3s, color .3s; }
.lang { padding: 0 12px; font-size: 12px; font-weight: 500; letter-spacing: .14em; }
.icon-btn { font-size: 20px; }
.lang:hover, .icon-btn:hover { background: var(--text); color: var(--bg); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: none; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 1px; background: var(--text); transition: transform .3s, top .3s; }
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero, .page-hero { position: relative; padding-top: 88px; overflow: hidden; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; right: -8%; top: -12%; width: 68%; height: 110%;
  background: radial-gradient(ellipse at 50% 32%, rgba(255, 255, 255, .11), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: min(760px, calc(100vh - 88px)); padding: 60px 0; }
.hero h1 { font-size: clamp(2.6rem, 4.9vw, 4.3rem); line-height: 1.05; margin-bottom: 30px; }
.mask { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.intro-line { display: block; }
.lead { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 520px; margin: 0 0 44px; }
.cta { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; margin-bottom: 40px; }

.status { display: inline-flex; align-items: center; gap: 12px; margin: 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); flex: none; }
.status.is-open .dot { background: #4ADE80; box-shadow: 0 0 0 0 rgba(74, 222, 128, .5); animation: pulse 2s infinite; }
.status.is-closed .dot { background: #F87171; }
@keyframes pulse { to { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); } }

.stage { position: relative; height: 560px; display: flex; align-items: center; justify-content: center; perspective: 1400px; }
.stage::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 150px; height: 50px; background: radial-gradient(ellipse, rgba(0, 0, 0, .9), transparent 70%); filter: blur(10px); }
.plate-intro { position: relative; z-index: 1; }
.plate--hero {
  --s: .72;
  transform: rotateY(calc(-18deg + var(--ry, 0deg))) rotateX(calc(6deg + var(--rx, 0deg)));
  transition: transform .8s var(--ease);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset, 0 40px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .3);
  -webkit-box-reflect: below 16px linear-gradient(transparent 55%, rgba(255, 255, 255, .12));
}
.plate--hero .plate-in::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .75) 50%, transparent 65%);
  transform: translateX(-120%); animation: glint 7s 1.8s infinite;
  pointer-events: none;
}
@keyframes glint { 0% { transform: translateX(-120%); } 18%, 100% { transform: translateX(120%); } }
.stage-caption { position: absolute; right: 0; bottom: 40px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 38px 0 38px 34px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--f-display); font-stretch: 115%; font-weight: 500; font-size: 32px; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 8px; }
.stat span { font-size: 12px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* Hero pagini interioare */
.page-hero { padding: calc(88px + 80px) 0 100px; border-bottom: 1px solid var(--line); }
.page-hero--compact { padding-bottom: 80px; }
.page-hero-inner { position: relative; display: grid; grid-template-columns: 1.55fr .45fr; align-items: center; gap: 40px; }
.page-hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); line-height: 1.05; margin-bottom: 30px; }
.page-hero h1 .intro-line { text-wrap: balance; }
.page-hero .cta { margin-bottom: 36px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.crumbs a { transition: color .3s; }
.crumbs a:hover, .crumbs [aria-current] { color: var(--text); }
.page-index {
  justify-self: end; font-family: var(--f-display); font-stretch: 125%; font-weight: 300;
  font-size: clamp(8rem, 17vw, 16rem); line-height: .8; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(205, 184, 138, .55);
}
.updated { margin: 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Secțiuni ---------- */
.section { padding: 150px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding: 100px 0 150px; }

.services, .split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.services-head, .split-head { position: sticky; top: 140px; }
.services-head h2, .split-head h2 { margin-bottom: 30px; }
.services-head .muted, .split-head .muted { max-width: 420px; margin: 0 0 36px; }

/* Lista de servicii */
.service-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.service { position: relative; border-bottom: 1px solid var(--line); }
.service::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.service:hover::after { transform: scaleX(1); }
.service-link { display: grid; grid-template-columns: 64px 1fr 48px; gap: 6px 0; padding: 36px 0; }
.service-no { grid-row: span 2; font-size: 12px; letter-spacing: .14em; color: var(--gold); padding-top: 9px; }
.service-link h3 { grid-column: 2; font-size: 1.65rem; transition: transform .5s var(--ease); }
.service-link p { grid-column: 2; margin: 0; color: var(--muted); max-width: 560px; transition: transform .5s var(--ease), color .5s; }
.service-arrow { grid-column: 3; grid-row: 1 / span 2; align-self: center; justify-self: end; font-size: 22px; color: var(--muted); transition: transform .5s var(--ease), color .3s; }
.service:hover h3, .service:hover p { transform: translateX(10px); }
.service:hover p { color: #B5B3AD; }
.service:hover .service-arrow { color: var(--gold); transform: translate(4px, -4px); }

/* Pași */
.procura-head { max-width: 760px; margin-bottom: 90px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step { position: relative; padding-top: 44px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--line); }
.step-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease) .3s; }
.step.in .step-line { transform: scaleX(1); }
.step:nth-child(2) .step-line { transition-delay: .6s; }
.step:nth-child(3) .step-line { transition-delay: .9s; }
.step-no { display: block; font-family: var(--f-display); font-stretch: 125%; font-weight: 300; font-size: 56px; line-height: 1; color: var(--muted); margin-bottom: 30px; }
.step h3 { margin-bottom: 14px; }
.step p { margin: 0; color: var(--muted); max-width: 340px; }
.steps-link { margin-top: 70px; }

/* Biroul */
.office { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.office-photo { position: relative; margin: 0; padding: 14px; border: 1px solid rgba(205, 184, 138, .4); background: var(--surface); }
.office-photo::before, .office-photo::after { content: ""; position: absolute; width: 28px; height: 28px; border: 0 solid var(--gold); pointer-events: none; }
.office-photo::before { top: -7px; left: -7px; border-top-width: 1px; border-left-width: 1px; }
.office-photo::after { right: -7px; bottom: -7px; border-right-width: 1px; border-bottom-width: 1px; }
.office-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.photo-fallback { display: none; }
.office-photo.no-photo img { display: none; }
.office-photo.no-photo .photo-fallback { display: grid; place-items: center; aspect-ratio: 3 / 4; background: radial-gradient(ellipse at 50% 35%, #232326, var(--surface) 70%); }
.office-photo figcaption { position: absolute; left: 0; bottom: -44px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.office-copy h2 { margin-bottom: 30px; }
.office-copy > .muted { max-width: 460px; margin: 0 0 44px; }
.details { margin: 0 0 44px; border-top: 1px solid var(--line); }
.details div { display: grid; grid-template-columns: 130px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.details dt { font-size: 12px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.details dd { margin: 0; font-weight: 400; }

/* Benzi: ofertă și recenzii */
.offer, .reviews { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer { background: radial-gradient(ellipse at 80% 50%, rgba(205, 184, 138, .08), transparent 60%); }
.reviews { background: radial-gradient(ellipse at 15% 50%, rgba(205, 184, 138, .08), transparent 55%); }
.offer-inner, .reviews-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px 60px; flex-wrap: wrap; padding: 90px 0; }
.offer h2, .reviews h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.offer-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.reviews h2 { margin-bottom: 18px; }
.reviews .muted { margin: 0; max-width: 460px; }
.stars { color: var(--gold); font-size: 18px; letter-spacing: .35em; margin-bottom: 20px; }
.reviews-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }

/* Întrebări frecvente */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 0;
  font-family: var(--f-display); font-stretch: 106%; font-weight: 400; font-size: 1.3rem; line-height: 1.3; letter-spacing: -.01em;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .4s var(--ease); }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-answer { padding: 0 60px 32px 0; color: var(--muted); }
.faq-answer p { margin: 0; max-width: 640px; }

/* Listă cu bife */
.check-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.check-list li {
  display: flex; align-items: baseline; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line);
  font-family: var(--f-display); font-stretch: 106%; font-weight: 400; font-size: 1.35rem; line-height: 1.35; letter-spacing: -.01em;
}
.check-list i { color: var(--gold); font-size: 20px; position: relative; top: 2px; }

/* Alte servicii */
.other-title { margin-bottom: 60px; }
.other-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.other { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 50px; min-height: 210px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .4s; }
.other:hover { background: var(--surface); }
.other .service-no { padding: 0; }
.other h3 { font-size: 1.35rem; padding-right: 30px; }
.other i { position: absolute; top: 30px; right: 30px; font-size: 20px; color: var(--muted); transition: transform .4s var(--ease), color .3s; }
.other:hover i { color: var(--gold); transform: translate(4px, -4px); }

/* Perioade RCA */
.section--periods { padding-bottom: 0; }
.periods { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.period { padding: 40px 32px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .4s; }
.period:hover { background: var(--surface); }
.period b { display: block; font-family: var(--f-display); font-stretch: 125%; font-weight: 300; font-size: clamp(3.4rem, 6vw, 5.4rem); line-height: .9; letter-spacing: -.03em; }
.period span { display: block; margin-top: 16px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.periods-note { margin: 30px 0 0; max-width: 560px; color: var(--muted); }
.offer-periods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.offer-periods span { padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: 100px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

/* Contact */
.contact-head { margin-bottom: 80px; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.block-title { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--line-strong); }
.block-title h3 { font-size: 1.3rem; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 18px 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .closed td { color: var(--muted); }
.hours tr.today th, .hours tr.today td { color: var(--gold); }
.hours tr.today th::after { content: attr(data-today); margin-left: 12px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; border: 1px solid currentColor; border-radius: 100px; padding: 2px 8px; vertical-align: 2px; }

.person { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); font-style: normal; }
.person-info { display: flex; flex-direction: column; line-height: 1.4; }
.person-info strong { font-family: var(--f-display); font-stretch: 108%; font-weight: 400; font-size: 1.35rem; letter-spacing: -.01em; }
.person-info a, .person-info span { color: var(--muted); font-variant-numeric: tabular-nums; }
.person-info a:hover { color: var(--text); }
.person-actions { display: flex; gap: 10px; }
.round { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 20px; transition: background .3s, color .3s, border-color .3s; }
.round:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Harta: se încarcă doar la cerere */
.map { position: relative; margin-top: 100px; height: 440px; border: 1px solid var(--line); overflow: hidden; }
.map iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-consent {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  padding: 30px; text-align: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(205, 184, 138, .1), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(255, 255, 255, .035) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(255, 255, 255, .035) 47px 48px);
}
.map-consent > i { font-size: 34px; color: var(--gold); }
.map-consent p { margin: 0; display: flex; flex-direction: column; }
.map-consent strong { font-family: var(--f-display); font-stretch: 110%; font-weight: 400; font-size: 1.5rem; letter-spacing: -.01em; }
.map-consent p span { color: var(--muted); }
.map-consent small { max-width: 380px; font-size: 12px; color: var(--muted); }
.map-consent small a { color: var(--text); border-bottom: 1px solid var(--line-strong); }

/* Confidențialitate */
.prose { max-width: 980px; }
.prose-block { display: grid; grid-template-columns: 80px 1fr; padding: 50px 0; border-bottom: 1px solid var(--line); }
.prose-block:first-child { padding-top: 0; }
.prose-block .service-no { padding-top: 12px; }
.prose-block h2 { font-size: 1.8rem; margin-bottom: 22px; }
.prose-block p, .prose-block li { color: var(--muted); }
.prose-block p { margin: 0 0 16px; max-width: 720px; }
.prose-block ul { margin: 0 0 16px; padding-left: 20px; max-width: 720px; }
.prose-block li { margin-bottom: 8px; }
.prose-block strong { color: var(--text); font-weight: 500; }
.prose-block a { color: var(--text); border-bottom: 1px solid var(--line-strong); transition: border-color .3s; }
.prose-block a:hover { border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 90px 0 40px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 48px; }
.footer-col h4 { margin: 0 0 22px; font-size: 12px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-col a, .footer-col p { display: block; margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: var(--muted); transition: color .3s; }
.footer-col a:hover { color: var(--text); }
.footer-brand p { max-width: 300px; margin-top: 22px; }
.footer-col .company { margin-bottom: 18px; color: var(--text); }
.footer-col .anpc-badge { display: inline-flex; flex-direction: column; gap: 2px; margin-top: 14px; padding: 12px 16px; border: 1px solid var(--line-strong); border-radius: 6px; transition: border-color .3s; }
.anpc-badge strong { font-size: 12px; font-weight: 500; letter-spacing: .14em; color: var(--text); }
.anpc-badge span { font-size: 12px; }
.footer-col .anpc-badge:hover { border-color: var(--gold); }
.footer-big {
  font-family: var(--f-display); font-stretch: 125%; font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(3rem, 12.5vw, 11.5rem); line-height: .9; white-space: nowrap; text-align: center;
  color: transparent; background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0) 90%);
  -webkit-background-clip: text; background-clip: text;
  margin: 80px 0 30px;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }

.callbar { display: none; }

.office-photo picture { display: block; }

/* ---------- Pagina 404 ---------- */
.notfound { position: relative; display: grid; align-items: center; min-height: 100vh; padding: 150px 0 110px; overflow: hidden; }
.notfound::before { content: ""; position: absolute; right: -8%; top: -12%; width: 68%; height: 110%; background: radial-gradient(ellipse at 50% 32%, rgba(255, 255, 255, .11), transparent 60%); pointer-events: none; }
.notfound-inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 40px; }
.notfound h1 { font-size: clamp(2.4rem, 4.4vw, 3.8rem); line-height: 1.05; margin-bottom: 30px; }
.notfound-code { justify-self: end; font-family: var(--f-display); font-stretch: 125%; font-weight: 300; font-size: clamp(6rem, 13vw, 12rem); line-height: .8; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(205, 184, 138, .55); }
.notfound-en { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin: 56px 0 0; padding-top: 28px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
@media (max-width: 1100px) {
  .notfound-inner { grid-template-columns: 1fr; }
  .notfound-code { display: none; }
}

/* ---------- Animații ---------- */
.js .intro, .js .intro-line { opacity: 0; animation: rise 1.1s var(--ease) forwards; animation-delay: var(--delay, 0s); }
.js .intro-line { transform: translateY(105%); animation-name: slide-up; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes slide-up { to { opacity: 1; transform: none; } }

.js .plate-intro { opacity: 0; transform: translateY(40px) rotateY(-40deg); animation: plate-in 1.6s var(--ease) .35s forwards; }
@keyframes plate-in { to { opacity: 1; transform: none; } }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.stats .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .1s; }
.stats .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .2s; }
.stats .reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .intro, .js .intro-line, .js .plate-intro, .js .reveal { opacity: 1; transform: none; }
  .step-line { transform: scaleX(1); }
}

@media (max-width: 1400px) {
  .brand .plate { display: none; }
}

@media (max-width: 1300px) {
  .pill { display: none; }
}

/* ---------- Tabletă ---------- */
@media (max-width: 1100px) {
  .wrap { width: min(1320px, 100% - 64px); }
  .nav { gap: 28px; }
  .pill { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 70px 0 40px; }
  .stage { height: 380px; }
  .plate--hero { --s: .66; }
  .stage-caption { display: none; }
  .services, .split, .office, .contact { grid-template-columns: 1fr; gap: 70px; }
  .services-head, .split-head { position: static; }
  .office-photo { max-width: 560px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-index { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 88px 0 auto; flex-direction: column; gap: 0;
    background: rgba(10, 10, 11, .96); backdrop-filter: blur(16px);
    padding: 10px 32px 30px; border-bottom: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav a::after { display: none; }
  .header:has(.nav.open) { background: rgba(10, 10, 11, .96); }
}

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 60px; }
  .periods { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 110px 0; }
}

/* ---------- Telefon ---------- */
@media (max-width: 600px) {
  body { padding-bottom: 64px; }
  .wrap { width: calc(100% - 40px); }
  .header-inner { height: 72px; }
  .brand .plate { display: none; }
  .wordmark { font-size: 13px; }
  .icon-btn { display: none; }
  .lang { height: 40px; min-width: 40px; }
  .nav { inset: 72px 0 auto; padding-inline: 20px; }
  .hero { padding-top: 72px; }

  .hero-inner { padding: 50px 0 10px; }
  .hero h1, .page-hero h1 { font-size: 2.35rem; }
  .page-hero { padding: calc(72px + 50px) 0 70px; }
  .crumbs { margin-bottom: 30px; }
  .lead { font-size: 16px; margin-bottom: 36px; }
  .cta { gap: 26px; }
  .cta .btn { width: 100%; }
  .stage { height: 250px; }
  .plate--hero { --s: .34; -webkit-box-reflect: below 8px linear-gradient(transparent 55%, rgba(255, 255, 255, .1)); }
  .stage::after { bottom: 60px; }

  .stat { padding: 26px 0 26px 20px; }
  .stat b { font-size: 19px; white-space: nowrap; }
  .stat span { font-size: 10px; letter-spacing: .12em; }

  .section { padding: 90px 0; }
  .section--tight { padding: 70px 0 100px; }
  .service-link { grid-template-columns: 44px 1fr 28px; padding: 28px 0; }
  .service-link h3 { font-size: 1.3rem; }
  .procura-head, .contact-head { margin-bottom: 56px; }
  .step-no { font-size: 44px; margin-bottom: 20px; }
  .check-list li { font-size: 1.15rem; gap: 14px; padding: 22px 0; }
  .faq-item summary { font-size: 1.1rem; padding: 24px 0; }
  .faq-answer { padding-right: 0; }
  .other-title { margin-bottom: 40px; }

  .office-photo { padding: 10px; }
  .details div { grid-template-columns: 100px 1fr; }
  .offer-inner, .reviews-inner { padding: 70px 0; }
  .offer-cta, .offer-cta .btn, .reviews-cta, .reviews-cta .btn { width: 100%; }
  .map { margin-top: 70px; height: 360px; }
  .prose-block { grid-template-columns: 1fr; gap: 10px; padding: 40px 0; }
  .prose-block .service-no { padding-top: 0; }
  .prose-block h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .callbar {
    display: grid; grid-template-columns: 1fr 1fr 64px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(10, 10, 11, .88); backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 64px; font-size: 12px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
  .callbar a + a { border-left: 1px solid var(--line); }
  .callbar i { font-size: 18px; }
  .callbar a:last-child { background: var(--text); color: var(--bg); font-size: 22px; }
}

/* ---------- Ghiduri și întrebări frecvente ---------- */
.faq-phone { margin-left: 28px; }

.guide-grid { display: grid; gap: 18px; }
.guide-grid--wide { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.guide-card { display: block; padding: 32px; border: 1px solid var(--line); transition: background .4s, border-color .3s; }
.guide-card:hover { background: var(--surface); border-color: var(--line-strong); }
.guide-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.guide-card p { margin: 0 0 22px; color: var(--muted); max-width: 540px; }
.guide-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.guide-more i { font-size: 16px; transition: transform .4s var(--ease); }
.guide-card:hover .guide-more i { transform: translate(3px, -3px); }
.guide-next { margin-top: 90px; }

.faq-groups { max-width: 1000px; }
.faq-group + .faq-group { margin-top: 72px; }
.faq-group-title { font-size: 1.6rem; margin-bottom: 14px; }

.article { max-width: 760px; }
.article h2 { font-size: 1.7rem; margin: 52px 0 18px; }
.article > h2:first-child { margin-top: 0; }
.article p { margin: 0 0 18px; color: var(--muted); }
.article ol, .article ul { margin: 0 0 18px; padding-left: 22px; color: var(--muted); }
.article li { margin-bottom: 10px; }
.article strong { color: var(--text); font-weight: 500; }
.article-meta { display: flex; gap: 20px; margin: 26px 0 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.article-cta { display: grid; gap: 18px; max-width: 760px; margin-top: 64px; padding: 36px; border: 1px solid var(--line-strong); }
.article-cta h3 { font-size: 1.5rem; }
.article-cta p { margin: 0; color: var(--muted); max-width: 540px; }
.article-cta .cta { margin: 0; }

@media (max-width: 600px) {
  .faq-phone { margin-left: 0; margin-top: 18px; }
  .guide-card { padding: 24px; }
  .guide-card h3 { font-size: 1.3rem; }
  .faq-group + .faq-group { margin-top: 52px; }
  .article h2 { font-size: 1.4rem; margin-top: 40px; }
  .article-cta { padding: 26px; margin-top: 48px; }
  .guide-next { margin-top: 60px; }
}

/* ---------- Glosar ---------- */
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.glossary-search { position: relative; max-width: 520px; margin-bottom: 56px; }
.glossary-search i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--muted); pointer-events: none; }
.glossary-search input {
  width: 100%; padding: 16px 18px 16px 52px;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
  font: 300 16px/1.5 var(--f-body); transition: border-color .3s;
}
.glossary-search input::placeholder { color: var(--muted); }
.glossary-search input:focus { outline: none; border-color: var(--gold); }

.glossary { border-top: 1px solid var(--line); }
.glossary-item { display: grid; grid-template-columns: 340px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.glossary-item h2 { font-size: 1.3rem; font-stretch: 106%; font-weight: 400; }
.glossary-item p { margin: 0; color: var(--muted); max-width: 640px; }
.glossary-related { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.glossary-related i { font-size: 16px; transition: transform .3s var(--ease); }
.glossary-related:hover i { transform: translate(3px, -3px); }
.glossary-empty { padding: 44px 0 0; color: var(--muted); }

@media (max-width: 600px) {
  .glossary-search { margin-bottom: 36px; }
  .glossary-item { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .glossary-item h2 { font-size: 1.15rem; }
}

/* ---------- Singur sau cu noi ---------- */
.compare { width: 100%; border-collapse: collapse; }
.compare thead th { padding: 0 24px 22px 0; text-align: left; font-size: 12px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.compare thead th.us { color: var(--gold); }
.compare tbody tr { border-top: 1px solid var(--line); }
.compare tbody tr:last-child { border-bottom: 1px solid var(--line); }
.compare th[scope="row"] { width: 24%; padding: 26px 24px 26px 0; text-align: left; vertical-align: top; font-family: var(--f-display); font-stretch: 106%; font-weight: 400; font-size: 1.2rem; letter-spacing: -.01em; }
.compare td { width: 38%; padding: 26px 24px 26px 0; vertical-align: top; color: var(--muted); }
.compare td.us { color: var(--text); }
.compare tr.cost th, .compare tr.cost td.us { color: var(--gold); }
.compare tr.cost th, .compare tr.cost td { padding-top: 32px; padding-bottom: 32px; font-weight: 400; }
.compare--mini th[scope="row"] { width: 28%; }

.compare-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 90px; }
.compare-list h3 { font-size: 1.4rem; margin-bottom: 20px; }
.compare-list ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.compare-list li { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.compare-list li i { position: relative; top: 3px; font-size: 18px; color: var(--gold); }
.compare-list--self li i { color: var(--muted); }

@media (max-width: 760px) {
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .compare, .compare tbody, .compare tr, .compare th[scope="row"], .compare td { display: block; width: 100%; }
  .compare tbody tr { padding-bottom: 16px; }
  .compare th[scope="row"] { padding: 22px 0 10px; }
  .compare td { padding: 6px 0; }
  .compare td::before { content: attr(data-col); display: block; margin-bottom: 2px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
  .compare td.us::before { color: var(--gold); }
  .compare tr.cost th, .compare tr.cost td { padding-top: 8px; padding-bottom: 8px; }
  .compare tr.cost th { padding-top: 22px; }
  .compare-lists { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; }
}

/* ---------- Butoane de traseu: Google Maps, Waze, Apple Maps ---------- */
.map-apps { display: flex; flex-wrap: wrap; gap: 18px 32px; }

/* Coloana „Cu Auto AMA Intermed” iese în evidență */
.compare thead th.us { padding: 20px 24px 22px; background: rgba(205, 184, 138, .1); border-top: 1px solid var(--gold); }
.compare td.us { padding-left: 24px; padding-right: 24px; background: rgba(205, 184, 138, .06); font-weight: 400; }
.compare td.self, .compare td.us { position: relative; }
.compare td i { margin-right: 10px; font-size: 16px; position: relative; top: 2px; }
.compare td.self i { color: #C9776B; }
.compare td.us i { color: var(--gold); }
.compare-badge { display: inline-block; margin-left: 12px; padding: 2px 10px; border: 1px solid var(--gold); border-radius: 100px; font-size: 10px; letter-spacing: .16em; color: var(--gold); vertical-align: 1px; }
.compare tbody tr:last-child td.us { border-bottom: 1px solid var(--gold); }

@media (max-width: 760px) {
  .compare td.us { padding: 12px 14px; margin-top: 8px; }
  .compare td.self { padding: 6px 0; }
  .compare tbody tr:last-child td.us { border-bottom: 0; }
}
