/* ==========================================================================
   Website de prezentare pentru cabinete de avocatură — stiluri comune
   Stylesheet mobile-first. Plain CSS, fără dependențe.
   Cuprins:
   01. Tokens          05. Header / Navigație   09. Onorarii & CTA
   02. Reset & bază    06. Hero                 10. FAQ
   03. Utilitare       07. Despre / Domenii     11. Contact & Footer
   04. Butoane         08. Proces / Echipă      12. Animații & Responsive
   ========================================================================== */

/* ---------- 01. TOKENS ---------- */
:root{
  --ink:#0E1A2B;
  --ink-2:#16263C;
  --ink-3:#22364F;
  --ink-soft:rgba(14,26,43,.72);

  --gold:#B08D57;
  --gold-2:#C9A76A;
  --gold-3:#8E6F3E;
  --gold-tint:rgba(176,141,87,.10);

  --paper:#FCFBF9;
  --paper-2:#F5F2EC;
  --white:#FFFFFF;

  --text:#1B2632;
  --muted:#5C6875;
  --line:#E4DED4;
  --line-2:rgba(255,255,255,.14);

  --serif:"Playfair Display", Georgia, "Times New Roman", serif;
  --sans:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw:1180px;
  --pad:20px;
  --radius:2px;
  --radius-lg:4px;

  --shadow-sm:0 1px 2px rgba(14,26,43,.05), 0 4px 14px rgba(14,26,43,.05);
  --shadow-md:0 10px 30px rgba(14,26,43,.09);
  --shadow-lg:0 24px 60px rgba(14,26,43,.14);

  --ease:cubic-bezier(.22,1,.36,1);
  --header-h:64px;
}

/* ---------- 02. RESET & BAZĂ ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px)}
body{
  margin:0;
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  color:var(--text);
  background:var(--paper);
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
body.is-locked{overflow:hidden}
img,svg{max-width:100%; display:block}
[hidden]{display:none !important}
a{color:inherit; text-decoration:none}
ul,ol{margin:0; padding:0; list-style:none}
p{margin:0 0 1.1em}
p:last-child{margin-bottom:0}
h1,h2,h3,h4{margin:0 0 .5em; font-family:var(--serif); font-weight:500; line-height:1.18; letter-spacing:-.01em; color:var(--ink)}
button,input,select,textarea{font:inherit; color:inherit}
:focus-visible{outline:2px solid var(--gold); outline-offset:3px; border-radius:2px}
::selection{background:var(--gold); color:#fff}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:#fff; padding:12px 18px; font-size:14px;
}
.skip-link:focus{left:12px; top:12px}

/* bara de progres la scroll */
.scroll-progress{position:fixed; inset:0 0 auto 0; height:2px; z-index:120; pointer-events:none}
.scroll-progress span{
  display:block; height:100%; width:0;
  background:linear-gradient(90deg,var(--gold-3),var(--gold-2));
  transition:width .1s linear;
}

/* ---------- 03. UTILITARE ---------- */
.wrap{width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad)}
.section{padding:64px 0}
.section--alt{background:var(--paper-2)}
.section__head{max-width:640px; margin-bottom:36px}
.section__head--center{margin-inline:auto; text-align:center}
.section__lead{color:var(--muted); font-size:16.5px}

.eyebrow{
  font-family:var(--sans); font-size:11.5px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-3);
  margin:0 0 14px; display:flex; align-items:center; gap:10px;
}
.section__head--center .eyebrow{justify-content:center}
.eyebrow::before{content:""; width:24px; height:1px; background:var(--gold); flex:none}
.eyebrow--light{color:var(--gold-2)}
.eyebrow--light::before{background:var(--gold-2)}

.h2{font-size:clamp(27px,6vw,40px); margin-bottom:.45em}
.h2 em{font-style:italic; color:var(--gold-3)}

.grid-2{display:grid; gap:36px}
.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--ink);
  border-bottom:1px solid var(--gold); padding-bottom:3px;
  transition:gap .3s var(--ease), color .3s;
}
.link-arrow svg{width:16px; height:16px; fill:none; stroke:var(--gold); stroke-width:1.8}
.link-arrow:hover{gap:14px; color:var(--gold-3)}

/* ---------- 04. BUTOANE ---------- */
.btn{
  --btn-bg:var(--ink); --btn-fg:#fff; --btn-bd:var(--ink);
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:13px 22px; font-size:14px; font-weight:600; letter-spacing:.02em;
  background:var(--btn-bg); color:var(--btn-fg); border:1px solid var(--btn-bd);
  border-radius:var(--radius); cursor:pointer; text-align:center;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  overflow:hidden;
}
.btn::after{
  content:""; position:absolute; inset:0; background:rgba(255,255,255,.16);
  transform:translateX(-101%); transition:transform .55s var(--ease);
}
.btn:hover{transform:translateY(-2px); box-shadow:var(--shadow-md)}
.btn:hover::after{transform:translateX(0)}
.btn:active{transform:translateY(0)}
.btn--gold{--btn-bg:var(--gold); --btn-bd:var(--gold); --btn-fg:#fff}
.btn--gold:hover{--btn-bg:var(--gold-3); --btn-bd:var(--gold-3)}
.btn--outline{--btn-bg:transparent; --btn-fg:var(--ink); --btn-bd:var(--line)}
.btn--outline:hover{--btn-bd:var(--ink)}
.btn--ghost{--btn-bg:transparent; --btn-fg:#fff; --btn-bd:rgba(255,255,255,.34)}
.btn--ghost:hover{--btn-bd:#fff; --btn-bg:rgba(255,255,255,.08)}
.btn--lg{padding:15px 26px; font-size:14.5px}
.btn--block{width:100%}

/* ---------- 05. HEADER / NAVIGAȚIE ---------- */
.site-header{position:fixed; inset:0 0 auto 0; z-index:100; transition:box-shadow .4s, background .4s}
.topbar{
  background:var(--ink); color:rgba(255,255,255,.68); font-size:12.5px;
  max-height:40px; overflow:hidden; transition:max-height .45s var(--ease), opacity .35s;
}
.topbar__inner{display:flex; align-items:center; gap:22px; height:40px; justify-content:center}
.topbar__item{display:inline-flex; align-items:center; gap:7px; white-space:nowrap}
.topbar__item svg{width:14px; height:14px; fill:none; stroke:var(--gold-2); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; flex:none}
.topbar__phone{transition:color .3s}
.topbar__phone:hover{color:#fff}
.topbar__sep{display:none}
.topbar__item:not(.topbar__phone){display:none}

/* Fundalul blurat sta pe un pseudo-element: `backdrop-filter` pe parinte ar
   transforma header-ul in bloc continator pentru meniul mobil `position:fixed`. */
.header__inner{
  position:relative; display:flex; align-items:center; justify-content:space-between; gap:16px;
  height:var(--header-h); transition:height .4s var(--ease);
  max-width:100%; padding-inline:var(--pad);
}
.header__inner::before{
  content:""; position:absolute; top:0; bottom:0; left:50%; z-index:-1;
  width:100vw; transform:translateX(-50%);
  background:rgba(252,251,249,.92);
  backdrop-filter:saturate(160%) blur(12px); -webkit-backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .4s, box-shadow .4s, opacity .35s;
}

/* Cu meniul deschis, sigla ramane vizibila peste panoul intunecat. */
.site-header.is-menu-open .header__inner::before{opacity:0}
.site-header.is-menu-open .brand{position:relative; z-index:102}
.site-header.is-menu-open .brand__name{color:#fff}
.site-header.is-menu-open .brand__sub{color:rgba(255,255,255,.5)}
.site-header.is-menu-open .brand__mark{border-color:var(--gold-2)}
.site-header.is-menu-open .brand__mark svg{stroke:var(--gold-2)}
.site-header.is-scrolled .topbar{max-height:0; opacity:0}
.site-header.is-scrolled .header__inner::before{border-bottom-color:var(--line); box-shadow:0 6px 24px rgba(14,26,43,.06)}

.brand{display:flex; align-items:center; gap:11px; min-width:0}
.brand__mark{
  width:38px; height:38px; flex:none; display:grid; place-items:center;
  border:1px solid var(--gold); border-radius:50%;
  transition:transform .5s var(--ease), background .4s;
}
.brand__mark svg{width:22px; height:22px; fill:none; stroke:var(--gold-3); stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round}
.brand:hover .brand__mark{transform:rotate(-8deg); background:var(--gold-tint)}
.brand__text{display:flex; flex-direction:column; min-width:0}
.brand__name{font-family:var(--serif); font-size:17.5px; font-weight:600; color:var(--ink); transition:color .35s; line-height:1.15; letter-spacing:.01em; white-space:nowrap}
.brand__name em{font-style:italic; color:var(--gold)}
.brand__sub{font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); transition:color .35s; white-space:nowrap}

.burger{
  position:relative; z-index:102; /* deasupra panoului de meniu, ca sa ramana apasabil */
  width:44px; height:44px; display:grid; place-content:center; gap:5px;
  background:none; border:1px solid var(--line); border-radius:var(--radius); cursor:pointer;
  transition:border-color .3s, background .3s;
}
.burger span{display:block; width:20px; height:1.5px; background:var(--ink); transition:transform .4s var(--ease), opacity .25s, background .3s}
.burger[aria-expanded="true"]{border-color:rgba(255,255,255,.28)}
.burger[aria-expanded="true"] span{background:#fff}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

.nav{
  /* pe telefon panoul acopera tot ecranul; de la 480px devine sertar lateral */
  position:fixed; top:0; right:0; bottom:0; width:100%;
  background:var(--ink); color:#fff; padding:116px 28px 32px;
  display:flex; flex-direction:column; gap:8px;
  transform:translateX(100%); transition:transform .5s var(--ease);
  z-index:101; overflow-y:auto;
}
.nav.is-open{transform:translateX(0)}
.nav__list{display:flex; flex-direction:column}
.nav__link{
  display:block; padding:14px 0; font-size:17px; font-family:var(--serif);
  color:rgba(255,255,255,.85); border-bottom:1px solid var(--line-2);
  opacity:0; transform:translateX(18px); transition:color .3s, opacity .4s var(--ease), transform .4s var(--ease);
}
.nav.is-open .nav__link{opacity:1; transform:none; transition-delay:calc(.06s * var(--i,0))}
.nav__link:hover,.nav__link.is-active{color:var(--gold-2)}
.nav__cta{margin-top:22px}
.nav-backdrop{position:fixed; inset:0; background:rgba(14,26,43,.5); backdrop-filter:blur(2px); z-index:99; opacity:0; transition:opacity .4s}
.nav-backdrop.is-visible{opacity:1}

/* ---------- 06. HERO ---------- */
.hero{
  position:relative; min-height:100vh; min-height:100svh; display:flex; align-items:center;
  padding:calc(var(--header-h) + 76px) 0 96px;
  background:radial-gradient(120% 90% at 78% 6%, #1E3350 0%, transparent 58%),
             linear-gradient(160deg,#0B1624 0%,#132339 52%,#0E1A2B 100%);
  color:#fff; overflow:hidden; isolation:isolate;
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(90% 60% at 50% 100%, rgba(176,141,87,.16), transparent 62%);
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.35;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image:radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
}
.hero__bg{position:absolute; inset:auto 0 0 0; z-index:0; display:flex; justify-content:center; opacity:.5}
.hero__art{width:min(760px,132%); height:auto}
.hero__art-lines path{
  fill:none; stroke:rgba(201,167,106,.55); stroke-width:1; stroke-linecap:round;
  stroke-dasharray:1400; stroke-dashoffset:1400;
  animation:draw 2.6s var(--ease) forwards;
}
.hero__art-lines path:nth-child(2){animation-delay:.15s}
.hero__art-lines path:nth-child(3){animation-delay:.3s}
.hero__art-lines path:nth-child(4){animation-delay:.45s}
.hero__art-lines path:nth-child(5){animation-delay:.6s}
.hero__art-lines path:nth-child(6){animation-delay:.75s}
.hero__art-glow circle{fill:rgba(176,141,87,.16); filter:blur(30px); animation:pulse 7s ease-in-out infinite}
.hero__inner{position:relative; z-index:2; max-width:820px}
.hero__eyebrow{animation:riseIn .9s var(--ease) both .1s}
.hero__title{
  font-size:clamp(34px,9.2vw,68px); line-height:1.08; font-weight:500;
  color:#fff; letter-spacing:-.02em; margin-bottom:.42em;
}
.hero__title .line{display:block}
.hero__title .line:nth-child(1){animation:riseIn 1s var(--ease) both .18s}
.hero__title .line:nth-child(2){animation:riseIn 1s var(--ease) both .3s}
.hero__title .line:nth-child(3){animation:riseIn 1s var(--ease) both .42s}
.hero__title em{font-style:italic; color:var(--gold-2)}
.hero__lead{
  font-size:16.5px; color:rgba(255,255,255,.76); max-width:56ch; margin-bottom:30px;
  animation:riseIn 1s var(--ease) both .54s;
}
/* Semnătura avocatului, sub lead — numele ca ancoră vizuală a cabinetului individual. */
.hero__semnatura{
  display:block; margin-top:14px; font-family:var(--sans); font-size:12.5px;
  font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2);
}
.hero__actions{display:flex; flex-direction:column; gap:12px; animation:riseIn 1s var(--ease) both .78s}
/* Domeniile de practică, direct în hero: vizitatorul vede din prima ce faci. */
.hero__tags{
  display:flex; flex-wrap:wrap; gap:8px; margin:0 0 28px; padding:0; list-style:none;
  animation:riseIn 1s var(--ease) both .66s;
}
.hero__tags a{
  display:inline-block; padding:7px 14px; border-radius:100px;
  border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.05);
  font-size:13.2px; line-height:1.35; color:rgba(255,255,255,.82); text-decoration:none;
  transition:background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.hero__tags a:hover,.hero__tags a:focus-visible{
  background:var(--gold-tint); border-color:var(--gold-2); color:#fff;
}


/* ---------- CIFRE ---------- */
.stats{background:var(--ink-2); color:#fff; padding:38px 0}
.stats__grid{display:grid; grid-template-columns:repeat(2,1fr); gap:26px 12px; text-align:center}
.stat{position:relative}
.stat__num{
  display:block; font-family:var(--serif); font-size:clamp(30px,8vw,42px);
  color:var(--gold-2); line-height:1; font-weight:500; letter-spacing:-.02em;
}
.stat__label{display:block; margin-top:8px; font-size:12px; letter-spacing:.11em; text-transform:uppercase; color:rgba(255,255,255,.58)}

/* ---------- 07. DESPRE ---------- */
.frame{position:relative; padding:0 0 34px 0}
.frame__art{width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow-md)}
.frame__bg{fill:var(--ink)}
.frame__lines path{fill:none; stroke:rgba(201,167,106,.5); stroke-width:1.1; stroke-linecap:round}
.frame__ring{fill:none; stroke:rgba(201,167,106,.28); stroke-width:1; stroke-dasharray:4 7; animation:spin 44s linear infinite; transform-origin:160px 200px}
.frame__badge{
  position:absolute; left:16px; bottom:0; background:var(--white);
  padding:14px 20px; box-shadow:var(--shadow-md); border-left:2px solid var(--gold);
}
.frame__badge strong{display:block; font-family:var(--serif); font-size:24px; color:var(--ink); line-height:1}
.frame__badge span{font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted)}

.about__text p{color:var(--muted)}
.values{margin-top:26px; display:grid; gap:18px}
.values li{display:flex; gap:14px; align-items:flex-start}
.values svg{width:22px; height:22px; flex:none; margin-top:3px; fill:none; stroke:var(--gold); stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round}
.values strong{display:block; font-size:15px; color:var(--ink); font-weight:600}
.values span{font-size:14.5px; color:var(--muted); line-height:1.6}

/* ---------- DOMENII ---------- */
.cards{display:grid; gap:16px}
/* Patru domenii (cabinet individual): 2x2 in loc de 3 + 1 orfan. */
.cards.cards--pair{grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); max-width:820px; margin-inline:auto}
.card{
  position:relative; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:28px 24px 26px; overflow:hidden;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.card::before{
  content:""; position:absolute; inset:0 auto 0 0; width:2px; background:var(--gold);
  transform:scaleY(0); transform-origin:top; transition:transform .5s var(--ease);
}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:transparent}
.card:hover::before{transform:scaleY(1)}
.card__icon{
  display:grid; place-items:center; width:48px; height:48px; margin-bottom:18px;
  background:var(--gold-tint); border-radius:50%; transition:background .4s;
}
.card__icon svg{width:24px; height:24px; fill:none; stroke:var(--gold-3); stroke-width:1.35; stroke-linecap:round; stroke-linejoin:round}
.card:hover .card__icon{background:var(--gold); }
.card:hover .card__icon svg{stroke:#fff}
.card__title{font-size:20px; margin-bottom:.35em}
.card p{font-size:14.7px; color:var(--muted); margin-bottom:16px}
.card__more{
  display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600;
  color:var(--gold-3); transition:gap .35s var(--ease);
}
.card__more svg{width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.7}
.card:hover .card__more{gap:13px}

/* ---------- 08. PROCES ---------- */
.steps{display:grid; gap:0; counter-reset:step}
.step{position:relative; padding:0 0 32px 46px; border-left:1px solid var(--line)}
.step:last-child{border-left-color:transparent; padding-bottom:0}
.step__num{
  position:absolute; left:0; top:0; transform:translateX(-50%);
  width:38px; height:38px; display:grid; place-items:center; background:var(--paper);
  border:1px solid var(--gold); border-radius:50%;
  font-family:var(--serif); font-size:13.5px; color:var(--gold-3); font-weight:600;
}
.section--alt .step__num{background:var(--paper-2)}
.step__title{font-size:19px; margin-bottom:.3em; padding-top:6px}
.step p{font-size:14.7px; color:var(--muted)}

/* ---------- ECHIPA ---------- */
.team{display:grid; gap:18px}
/* Cabinet individual: un singur card, centrat, ca sa nu ramana intins pe toata latimea.
   Specificitatea dubla bate regulile .team din media queries. */
.team.team--solo{grid-template-columns:minmax(0,560px); justify-content:center}
.team.team--solo .member{padding:34px 30px}
.member{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 24px; text-align:center;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.member:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
.member__photo{
  width:96px; height:96px; margin:0 auto 18px; border-radius:50%;
  background:linear-gradient(150deg,var(--ink-2),var(--ink)); display:grid; place-items:center;
  position:relative;
}
.member__photo::after{
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border:1px solid var(--gold); opacity:.4; transition:transform .5s var(--ease), opacity .4s;
}
.member:hover .member__photo::after{transform:scale(1.06); opacity:.9}
.member__initials{font-family:var(--serif); font-size:28px; color:var(--gold-2); letter-spacing:.04em}
.member__name{font-size:20px; margin-bottom:.15em}
.member__role{font-size:11.5px; letter-spacing:.11em; text-transform:uppercase; color:var(--gold-3); margin-bottom:14px}
.member__bio{font-size:14.5px; color:var(--muted); margin-bottom:16px}
.member__tags{display:flex; flex-wrap:wrap; gap:7px; justify-content:center}
.member__tags li{
  font-size:11.5px; letter-spacing:.04em; padding:5px 11px;
  background:var(--paper-2); border:1px solid var(--line); border-radius:100px; color:var(--muted);
}
.section--alt .member__tags li{background:var(--paper)}

/* ---------- 09. ONORARII ---------- */
.plans{display:grid; gap:18px}
.plan{
  position:relative; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:30px 24px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.plan:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
.plan--featured{background:var(--ink); border-color:var(--ink); color:#fff}
.plan--featured .plan__title,.plan--featured .plan__price{color:#fff}
.plan--featured .plan__note{color:rgba(255,255,255,.55)}
.plan--featured .plan__list li{color:rgba(255,255,255,.82); border-color:var(--line-2)}
.plan--featured .plan__list svg{stroke:var(--gold-2)}
.plan__flag{
  position:absolute; top:-11px; left:24px; background:var(--gold); color:#fff;
  font-size:10.5px; font-weight:600; letter-spacing:.11em; text-transform:uppercase; padding:5px 12px;
}
.plan__title{font-size:20px; margin-bottom:.25em}
.plan__price{font-family:var(--serif); font-size:17px; color:var(--muted); margin-bottom:2px; line-height:1.2}
.plan__price span{font-size:38px; color:var(--ink); font-weight:600; letter-spacing:-.02em}
.plan--featured .plan__price span{color:var(--gold-2)}
.plan__price small{font-size:14px; color:var(--muted); font-family:var(--sans)}
.plan__note{font-size:12.5px; color:var(--muted); margin-bottom:20px}
.plan__list{display:grid; gap:11px; margin-bottom:24px}
.plan__list li{
  position:relative; padding-left:26px; font-size:14.3px; color:var(--muted);
  padding-bottom:11px; border-bottom:1px solid var(--line);
}
.plan__list li:last-child{border-bottom:0; padding-bottom:0}
.plan__list li::before{
  content:""; position:absolute; left:2px; top:8px; width:9px; height:5px;
  border-left:1.6px solid var(--gold); border-bottom:1.6px solid var(--gold);
  transform:rotate(-45deg);
}
.plans__disclaimer{margin-top:24px; font-size:13px; color:var(--muted); text-align:center; max-width:640px; margin-inline:auto}

/* ---------- CTA ---------- */
.cta{
  background:linear-gradient(135deg,#101E31,#1B2E48 62%,#101E31); color:#fff;
  padding:56px 0; position:relative; overflow:hidden;
}
.cta::before{
  content:""; position:absolute; top:-60%; right:-10%; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(176,141,87,.22), transparent 68%);
}
.cta__inner{position:relative; display:grid; gap:26px}
.cta__title{color:#fff; font-size:clamp(24px,5.6vw,34px); margin-bottom:.3em}
.cta__text{color:rgba(255,255,255,.7); font-size:15.5px}
.cta__actions{display:flex; flex-direction:column; gap:12px}

/* ---------- 10. FAQ ---------- */
.grid-faq{display:grid; gap:32px}
.faq__intro p{color:var(--muted)}
.faq{display:grid; gap:10px}
.faq__item{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; transition:border-color .35s, box-shadow .35s;
}
.faq__item[open]{border-color:var(--gold); box-shadow:var(--shadow-sm)}
.faq__item summary{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 20px; cursor:pointer; list-style:none;
  font-family:var(--serif); font-size:17px; color:var(--ink); line-height:1.35;
  transition:color .3s;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary:hover{color:var(--gold-3)}
.faq__item summary i{
  position:relative; width:18px; height:18px; flex:none; transition:transform .4s var(--ease);
}
.faq__item summary i::before,.faq__item summary i::after{
  content:""; position:absolute; background:var(--gold); border-radius:1px;
}
.faq__item summary i::before{inset:8px 0 auto 0; height:1.6px}
.faq__item summary i::after{inset:0 8px auto auto; width:1.6px; height:18px; transition:transform .4s var(--ease)}
.faq__item[open] summary i{transform:rotate(90deg)}
.faq__item[open] summary i::after{transform:scaleY(0)}
.faq__body{padding:0 20px 20px; font-size:14.8px; color:var(--muted)}
.faq__body strong{color:var(--ink)}
.faq__item[open] .faq__body{animation:fadeUp .45s var(--ease) both}

/* ---------- 11. CONTACT ---------- */
.contact{display:grid; gap:26px}
.form{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 22px}
.form__row{display:grid; gap:0}
.field{margin-bottom:18px}
.field label{display:block; font-size:13px; font-weight:600; color:var(--ink); margin-bottom:7px; letter-spacing:.01em}
.field label span{color:var(--gold-3)}
.field input,.field select,.field textarea{
  width:100%; padding:12px 14px; background:var(--paper);
  border:1px solid var(--line); border-radius:var(--radius); font-size:15px;
  transition:border-color .3s, background .3s, box-shadow .3s;
}
.field textarea{resize:vertical; min-height:120px}
.field input::placeholder,.field textarea::placeholder{color:#A8B0B9}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--gold); background:var(--white);
  box-shadow:0 0 0 3px var(--gold-tint);
}
.field.has-error input,.field.has-error textarea{border-color:#C0392B; background:#FDF6F5}
.field__err{display:none; font-size:12.5px; color:#C0392B; margin-top:6px}
.field.has-error .field__err,.field__err.is-shown{display:block}
.check{display:flex; gap:11px; align-items:flex-start; font-size:13.4px; color:var(--muted); margin-bottom:6px; cursor:pointer}
.check input{width:17px; height:17px; margin-top:2px; flex:none; accent-color:var(--gold)}
.check a{color:var(--gold-3); text-decoration:underline; text-underline-offset:2px}
.form .btn{margin-top:16px}
.form__note{font-size:12.2px; color:var(--muted); margin-top:14px; line-height:1.55}
.form__ok{
  display:flex; gap:12px; align-items:center; margin-top:18px; padding:16px 18px;
  background:var(--gold-tint); border-left:2px solid var(--gold); animation:fadeUp .5s var(--ease) both;
}
.form__ok svg{width:22px; height:22px; flex:none; fill:none; stroke:var(--gold-3); stroke-width:2; stroke-linecap:round; stroke-linejoin:round}
.form__ok strong{display:block; color:var(--ink); font-size:14.5px}
.form__ok span{font-size:13.5px; color:var(--muted)}

.info-card{background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:28px 24px}
.info-card h3{color:#fff; font-size:20px; margin-bottom:20px}
.info-list{display:grid; gap:20px}
.info-list li{display:flex; gap:13px; align-items:flex-start}
.info-list svg{width:19px; height:19px; flex:none; margin-top:3px; fill:none; stroke:var(--gold-2); stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}
.info-list strong{display:block; font-size:11.5px; letter-spacing:.11em; text-transform:uppercase; color:var(--gold-2); font-weight:600; margin-bottom:3px}
.info-list span{font-size:14.5px; color:rgba(255,255,255,.78); line-height:1.6}
.info-list a{transition:color .3s; border-bottom:1px solid rgba(255,255,255,.2)}
.info-list a:hover{color:var(--gold-2)}

.map{margin-top:18px; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--white)}
.map__art{width:100%; height:auto; display:block}
.map__bg{fill:#EFEBE3}
.map__roads path{stroke:#fff; stroke-width:9; fill:none}
.map__roads .map__roads--thin{stroke-width:5}
.map__blocks rect{fill:#E1DACE}
.map__pin path{fill:var(--gold)}
.map__pin{animation:pinBob 2.8s ease-in-out infinite; transform-origin:200px 150px}
.map__pin-dot{fill:#fff}
.map__link{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:14px; font-size:13.5px; font-weight:600; color:var(--ink);
  border-top:1px solid var(--line); transition:background .3s, gap .3s var(--ease);
}
.map__link svg{width:16px; height:16px; fill:none; stroke:var(--gold); stroke-width:1.8}
.map__link:hover{background:var(--paper-2); gap:14px}

/* ---------- FOOTER ---------- */
.footer{background:var(--ink); color:rgba(255,255,255,.66); padding:52px 0 0; font-size:14.4px}
.footer__grid{display:grid; gap:32px; padding-bottom:36px}
.footer__brand .brand__mark--light{border-color:var(--gold-2); margin-bottom:14px}
.footer__brand .brand__mark--light svg{stroke:var(--gold-2)}
.footer__name{font-family:var(--serif); font-size:21px; color:#fff; margin-bottom:.4em}
.footer__name em{font-style:italic; color:var(--gold-2)}
.footer__desc{font-size:14.2px; line-height:1.65; max-width:34ch}
.footer__col h3{color:#fff; font-size:12px; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); font-weight:600; margin-bottom:16px}
.footer__col ul{display:grid; gap:9px}
.footer__col a{transition:color .3s, padding-left .3s var(--ease)}
.footer__col a:hover{color:var(--gold-2); padding-left:5px}
.footer__contact li{line-height:1.6}
.footer__contact a:hover{padding-left:0}
.footer__bottom{
  display:flex; flex-direction:column; gap:14px; padding-block:22px;
  border-top:1px solid var(--line-2); font-size:13px;
}
.footer__bottom p{margin:0}
.footer__legal{display:flex; flex-wrap:wrap; gap:8px 18px}
.footer__legal a{transition:color .3s}
.footer__legal a:hover{color:var(--gold-2)}
.footer__disclaimer{
  font-size:11.6px; color:rgba(255,255,255,.34); padding-bottom:26px;
  border-top:1px solid var(--line-2); padding-top:18px; line-height:1.6;
}

/* ---------- ÎNAPOI SUS ---------- */
.to-top{
  position:fixed; right:16px; bottom:16px; z-index:90;
  width:44px; height:44px; display:grid; place-items:center;
  background:var(--ink); border:1px solid var(--gold); border-radius:50%;
  opacity:0; pointer-events:none; transform:translateY(12px);
  transition:opacity .4s, transform .4s var(--ease), background .3s;
}
.to-top.is-visible{opacity:1; pointer-events:auto; transform:none}
.to-top svg{width:18px; height:18px; fill:none; stroke:var(--gold-2); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round}
.to-top:hover{background:var(--gold)}
.to-top:hover svg{stroke:#fff}

/* ---------- 12. ANIMAȚII ---------- */
@keyframes draw{to{stroke-dashoffset:0}}
@keyframes pulse{0%,100%{opacity:.5; transform:scale(1)}50%{opacity:1; transform:scale(1.14)}}
@keyframes riseIn{from{opacity:0; transform:translateY(26px)}to{opacity:1; transform:none}}
@keyframes fadeUp{from{opacity:0; transform:translateY(10px)}to{opacity:1; transform:none}}
@keyframes spin{to{transform:rotate(360deg)}}
@keyframes pinBob{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}

/* Ascundem doar daca JS ruleaza — altfel continutul ar ramane invizibil. */
.js [data-reveal]{opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--d,0s)}
.js [data-reveal].is-visible{opacity:1; transform:none}

/* ---------- RESPONSIVE ---------- */
@media (min-width:480px){
  .nav{width:min(84vw,340px)}
}

@media (min-width:600px){
  :root{--pad:28px}
  .section{padding:80px 0}
  .hero__actions{flex-direction:row; flex-wrap:wrap}
  .cta__actions{flex-direction:row}
  .form__row{grid-template-columns:1fr 1fr; gap:0 18px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .team{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:repeat(2,1fr); gap:34px}
  .footer__bottom{flex-direction:row; align-items:center; justify-content:space-between}
  .stats__grid{grid-template-columns:repeat(4,1fr)}
  .form{padding:32px 30px}
}

@media (min-width:900px){
  :root{--pad:32px}
  .section{padding:104px 0}
  .section__head{margin-bottom:48px}
  .hero{padding:calc(var(--header-h) + 90px) 0 110px}
  .hero__bg{justify-content:flex-end; opacity:.42}
  .hero__art{width:min(620px,58%)}

  .grid-2{grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center}
  .cards{grid-template-columns:repeat(3,1fr); gap:20px}
  .team{grid-template-columns:repeat(3,1fr); gap:22px}
  .plans{grid-template-columns:repeat(3,1fr); gap:20px; align-items:center}
  .plan--featured{padding-block:44px}
  .steps{grid-template-columns:repeat(4,1fr); gap:0}
  .step{padding:56px 22px 0 0; border-left:0; border-top:1px solid var(--line)}
  .step:last-child{border-top-color:var(--line)}
  .step__num{transform:translateY(-50%); left:0}
  .step__title{padding-top:0}
  .grid-faq{grid-template-columns:.8fr 1.2fr; gap:56px; align-items:start}
  .contact{grid-template-columns:1.15fr .85fr; gap:32px; align-items:start}
  .cta__inner{grid-template-columns:1.3fr auto; align-items:center; gap:40px}
  .cta__actions{justify-content:flex-end}
  .footer__grid{grid-template-columns:1.5fr 1fr 1fr 1.2fr}
  .footer{padding-top:70px}
  .to-top{right:26px; bottom:26px}
}

@media (min-width:1200px){
  .hero__title{font-size:64px}
  .section{padding:118px 0}
}

/* mouse fin — hover-uri doar unde există cursor */
@media (hover:none){
  .btn:hover{transform:none; box-shadow:none}
  .card:hover,.member:hover,.plan:hover{transform:none; box-shadow:var(--shadow-sm)}
}

/* accesibilitate: mișcare redusă */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important; scroll-behavior:auto !important;
  }
  .js [data-reveal]{opacity:1; transform:none}
  .hero__art-lines path{stroke-dashoffset:0}
}

/* print */
@media print{
  .site-header,.nav,.to-top,.scroll-progress,.cta,.map{display:none !important}
  body{background:#fff; color:#000}
  .hero{min-height:auto; background:#fff; color:#000; padding:20px 0}
  .hero__title,.hero__lead{color:#000}
}

/* ==========================================================================
   PARTEA A II-A — componente pentru site-ul multi-pagină
   13. Utilitare      16. Blog & articole    19. Contact & 404
   14. Navigație desktop + submeniuri        17. Pagini de serviciu
   15. Hero de pagină, breadcrumb            18. Tabele, note, timeline
   ========================================================================== */

/* ---------- 13. UTILITARE ---------- */
.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;
}
.narrow{max-width:720px; margin-inline:auto}
.narrow-lg{max-width:860px; margin-inline:auto}
.center{text-align:center}
.muted{color:var(--muted); font-size:14px}
.mt-lg{margin-top:28px}
.mt-xl{margin-top:52px}
.btn--sm{padding:10px 16px; font-size:13px}
.btn--ghost-dark{--btn-bg:transparent; --btn-fg:var(--ink); --btn-bd:var(--line)}
.btn--ghost-dark:hover{--btn-bg:var(--paper-2); --btn-bd:var(--ink)}

.pill-row{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px; padding:9px 15px;
  background:var(--white); border:1px solid var(--line); border-radius:100px;
  font-size:13.2px; color:var(--ink); font-weight:500;
}
.pill svg{width:15px; height:15px; fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round; stroke-linejoin:round}

.checklist{display:grid; gap:12px; margin:0}
.checklist li{display:flex; gap:11px; align-items:flex-start; font-size:15px; color:var(--muted)}
.checklist svg{width:18px; height:18px; flex:none; margin-top:4px; fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round; stroke-linejoin:round}

/* ---------- 14. NAVIGAȚIE: submeniuri ---------- */
.nav__chev{width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; display:none}
.has-sub{position:relative}
.subnav{display:none; margin:0 0 10px 14px; padding:0; border-left:1px solid var(--line-2)}
.subnav li a{
  display:block; padding:10px 0 10px 16px; font-size:14.5px;
  color:rgba(255,255,255,.62); transition:color .3s, padding-left .3s var(--ease);
}
.subnav li a:hover,.subnav li a.is-active{color:var(--gold-2); padding-left:22px}
.has-sub.is-open .subnav{display:block; animation:fadeUp .35s var(--ease) both}
.subnav__toggle{
  position:absolute; top:6px; right:0; width:40px; height:40px;
  display:grid; place-items:center; background:none; border:0; cursor:pointer;
  color:rgba(255,255,255,.6); transition:transform .35s var(--ease), color .3s;
}
.subnav__toggle svg{width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round}
.subnav__toggle[aria-expanded="true"]{transform:rotate(180deg); color:var(--gold-2)}

/* ---------- 15. HERO DE PAGINĂ + BREADCRUMB ---------- */
.page-hero{
  position:relative; padding:calc(var(--header-h) + 64px) 0 44px;
  background:linear-gradient(150deg,#0B1624 0%,#152741 60%,#0E1A2B 100%);
  color:#fff; overflow:hidden;
}
.page-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:radial-gradient(70% 120% at 88% 0%, rgba(176,141,87,.20), transparent 62%);
}
.page-hero > .wrap{position:relative; z-index:1; max-width:840px; margin-inline:auto}
.page-hero__title{
  font-size:clamp(30px,7.5vw,52px); color:#fff; font-weight:500;
  letter-spacing:-.02em; line-height:1.1; margin-bottom:.3em;
  animation:riseIn .9s var(--ease) both .1s;
}
.page-hero__lead{
  font-size:16.5px; color:rgba(255,255,255,.74); max-width:60ch; margin-bottom:0;
  animation:riseIn .9s var(--ease) both .2s;
}
.page-hero__actions{
  display:flex; flex-direction:column; gap:12px; margin-top:28px;
  animation:riseIn .9s var(--ease) both .3s;
}
.page-hero__actions .btn svg{width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7}

.breadcrumb{margin-bottom:18px; animation:riseIn .8s var(--ease) both}
.breadcrumb ol{display:flex; flex-wrap:wrap; align-items:center; gap:6px 10px; font-size:12.5px}
.breadcrumb li{display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.5)}
.breadcrumb li:not(:last-child)::after{content:"/"; color:rgba(255,255,255,.28)}
.breadcrumb a{color:rgba(255,255,255,.66); transition:color .3s}
.breadcrumb a:hover{color:var(--gold-2)}
.breadcrumb [aria-current]{color:var(--gold-2)}

/* ---------- 16. PAGINI DE SERVICIU ---------- */
/* Elementele de grilă au implicit min-width:auto, iar tabelul (min-width:520px)
   ar lăți coloana și ar tăia conținutul pe telefon. */
.srv-layout,.article-layout,.contact,.grid-2,.grid-faq{min-width:0}
.srv-layout > *,.article-layout > *,.contact > *,.grid-2 > *,.grid-faq > *{min-width:0}
.srv-layout{display:grid; gap:36px}
.srv-items{display:grid; gap:14px; margin-top:22px}
.srv-item{
  background:var(--white); border:1px solid var(--line); border-left:2px solid var(--gold);
  border-radius:var(--radius-lg); padding:22px 22px 20px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.srv-item:hover{transform:translateX(3px); box-shadow:var(--shadow-md)}
.srv-item__title{font-size:18.5px; margin-bottom:.35em}
.srv-item p{font-size:14.7px; color:var(--muted); margin:0}

.sticky{position:sticky; top:calc(var(--header-h) + 20px); display:grid; gap:16px}
.side-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px}
.side-card h3{font-size:17px; margin-bottom:.6em}
.side-card__note{font-size:13.4px; color:var(--muted); margin-top:12px}
.side-list{display:grid; gap:9px; margin:0}
.side-list li{position:relative; padding-left:18px; font-size:14.2px; color:var(--muted)}
.side-list li::before{content:""; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background:var(--gold)}

.mini-form{background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:24px 22px}
.mini-form__title{color:#fff; font-size:19px; margin-bottom:.3em}
.mini-form__text{font-size:13.8px; color:rgba(255,255,255,.66); margin-bottom:16px}
.mini-form .field{margin-bottom:12px}
.mini-form input{background:rgba(255,255,255,.06); border-color:var(--line-2); color:#fff}
.mini-form input::placeholder{color:rgba(255,255,255,.42)}
.mini-form input:focus{background:rgba(255,255,255,.1); border-color:var(--gold-2); box-shadow:0 0 0 3px rgba(201,167,106,.16)}
.mini-form .check{color:rgba(255,255,255,.62); margin-bottom:14px}
.mini-form .check a{color:var(--gold-2)}
.mini-form .field.has-error input{background:rgba(192,57,43,.14); border-color:#E4796C}
.mini-form .field__err{color:#F0A79C}
.mini-form__note{font-size:12.8px; color:rgba(255,255,255,.55); margin-top:14px; text-align:center}
.mini-form__note a{color:var(--gold-2); border-bottom:1px solid rgba(201,167,106,.4)}
.check--sm{font-size:12.6px}

/* hub-ul de domenii */
.hub-list{display:grid; gap:18px}
.hub-card{
  display:grid; gap:18px; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:26px 24px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.hub-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:transparent}
.hub-card__icon{
  display:grid; place-items:center; width:52px; height:52px; flex:none;
  background:var(--gold-tint); border-radius:50%; transition:background .4s;
}
.hub-card__icon svg{width:25px; height:25px; fill:none; stroke:var(--gold-3); stroke-width:1.35; stroke-linecap:round; stroke-linejoin:round}
.hub-card:hover .hub-card__icon{background:var(--gold)}
.hub-card:hover .hub-card__icon svg{stroke:#fff}
.hub-card__title{font-size:22px; margin-bottom:.3em}
.hub-card__title a{transition:color .3s}
.hub-card__title a:hover{color:var(--gold-3)}
.hub-card__lead{font-size:14.8px; color:var(--muted); margin-bottom:14px}
.hub-card__list{display:grid; gap:7px; margin-bottom:16px}
.hub-card__list li{position:relative; padding-left:18px; font-size:13.8px; color:var(--muted)}
.hub-card__list li::before{content:""; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background:var(--gold)}

/* ---------- 17. DESPRE: valori, timeline, profiluri ---------- */
.value-grid{display:grid; gap:16px}
.value-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 22px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.value-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg)}
.value-card__icon{display:grid; place-items:center; width:46px; height:46px; margin-bottom:16px; background:var(--gold-tint); border-radius:50%}
.value-card__icon svg{width:23px; height:23px; fill:none; stroke:var(--gold-3); stroke-width:1.4; stroke-linecap:round; stroke-linejoin:round}
.value-card h3{font-size:18.5px; margin-bottom:.4em}
.value-card p{font-size:14.5px; color:var(--muted); margin:0}

.timeline{display:grid; gap:0; margin:0}
.timeline li{position:relative; display:grid; gap:4px; padding:0 0 28px 26px; border-left:1px solid var(--line)}
.timeline li:last-child{padding-bottom:0}
.timeline li::before{
  content:""; position:absolute; left:-5px; top:7px; width:9px; height:9px;
  border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px var(--paper);
}
.section--alt .timeline li::before{box-shadow:0 0 0 4px var(--paper-2)}
.timeline__year{font-family:var(--serif); font-size:14px; color:var(--gold-3); font-weight:600; letter-spacing:.04em}
.timeline strong{display:block; font-size:16.5px; color:var(--ink); font-family:var(--serif); font-weight:500}
.timeline p{font-size:14.4px; color:var(--muted); margin:4px 0 0}

.profiles{display:grid; gap:18px}
.profile{
  display:grid; gap:22px; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:28px 24px;
}
.profile__side{display:flex; flex-direction:column; align-items:center; gap:14px}
.profile__photo{
  width:110px; height:110px; border-radius:50%; display:grid; place-items:center;
  background:linear-gradient(150deg,var(--ink-2),var(--ink)); position:relative; flex:none;
}
.profile__photo::after{content:""; position:absolute; inset:-6px; border-radius:50%; border:1px solid var(--gold); opacity:.4}
.profile__photo span{font-family:var(--serif); font-size:32px; color:var(--gold-2); letter-spacing:.04em}
.profile__name{font-size:23px; margin-bottom:.1em}
.profile__role{font-size:11.5px; letter-spacing:.11em; text-transform:uppercase; color:var(--gold-3); margin-bottom:14px}
.profile__bio{font-size:15px; color:var(--muted); margin-bottom:16px}
.profile__actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}

/* ---------- 18. TABELE, NOTE ---------- */
.table-wrap{overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--white)}
.table{width:100%; border-collapse:collapse; font-size:14.4px; min-width:520px}
.table th{
  text-align:left; padding:14px 16px; background:var(--ink); color:#fff;
  font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; font-weight:600;
}
.table td{padding:14px 16px; border-top:1px solid var(--line); color:var(--muted); vertical-align:top}
.table tbody tr:hover td{background:var(--paper)}
.table td:first-child{color:var(--ink); font-weight:500}
.table__price{white-space:nowrap; color:var(--gold-3) !important; font-weight:600 !important}
.table__note{font-size:13.2px}
.table__foot{margin-top:14px; font-size:13.2px; color:var(--muted)}
.table__foot a{color:var(--gold-3); border-bottom:1px solid var(--gold)}
.table-block{margin-bottom:32px}
.table-block__title{font-size:19px; margin-bottom:.6em}

.note{
  display:flex; gap:14px; align-items:flex-start; padding:18px 20px; margin:24px 0;
  border-radius:var(--radius-lg); font-size:14.4px; line-height:1.6;
}
.note svg{width:21px; height:21px; flex:none; margin-top:2px; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round}
.note p{margin:0}
.note--info{background:var(--gold-tint); border-left:2px solid var(--gold); color:var(--muted)}
.note--info svg{stroke:var(--gold-3)}
.note--warn{background:#FDF4EE; border-left:2px solid #C8763A; color:#6B4526}
.note--warn svg{stroke:#C8763A}
.note--ok{background:#F0F6F1; border-left:2px solid #4C7C58; color:#365040}
.note--ok svg{stroke:#4C7C58}
.note strong{color:var(--ink)}
.note--warn strong{color:#6B4526}
.note a{color:inherit; text-decoration:underline; text-underline-offset:2px}

.faq-group{margin-bottom:40px}
.faq-group__title{
  display:flex; align-items:center; gap:12px; font-size:21px; margin-bottom:.7em;
  padding-bottom:14px; border-bottom:1px solid var(--line);
}
.faq-group__title svg{width:22px; height:22px; flex:none; fill:none; stroke:var(--gold); stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}

/* ---------- 19. BLOG ---------- */
.posts{display:grid; gap:18px}
.post-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
.post-card{display:flex}
.post-card__link{display:flex; flex-direction:column; width:100%; padding:0 0 24px}
.post-card__cover{
  display:grid; place-items:center; height:120px; margin-bottom:20px;
  background:linear-gradient(140deg,var(--ink-2),var(--ink)); position:relative; overflow:hidden;
}
.post-card__cover::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(60% 100% at 80% 0%, rgba(176,141,87,.3), transparent 60%);
}
.post-card__cover svg{
  width:46px; height:46px; position:relative; fill:none;
  stroke:rgba(201,167,106,.65); stroke-width:1.1; stroke-linecap:round; stroke-linejoin:round;
}
.post-card__meta{display:block; padding:0 22px; font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-3); margin-bottom:8px}
.post-card__title{font-size:20px; padding:0 22px; margin-bottom:.4em; transition:color .3s}
.post-card:hover .post-card__title{color:var(--gold-3)}
.post-card__excerpt{padding:0 22px; font-size:14.4px; color:var(--muted); margin-bottom:18px}
.post-card__more{margin-top:auto}
.post-card__more{display:inline-flex; align-items:center; gap:7px; padding:0 22px; font-size:13px; font-weight:600; color:var(--gold-3); transition:gap .35s var(--ease)}
.post-card__more svg{width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.7}
.post-card:hover .post-card__more{gap:13px}

.article-hero{
  padding:calc(var(--header-h) + 60px) 0 44px;
  background:linear-gradient(150deg,#0B1624 0%,#152741 60%,#0E1A2B 100%); color:#fff;
}
.article-hero > .wrap{max-width:820px; margin-inline:auto}
.article-hero__cat{font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); margin-bottom:14px}
.article-hero__title{font-size:clamp(27px,6.4vw,44px); color:#fff; font-weight:500; line-height:1.14; margin-bottom:.35em}
.article-hero__lead{font-size:16.5px; color:rgba(255,255,255,.72); margin-bottom:22px}
.article-hero__meta{display:flex; flex-wrap:wrap; gap:10px 22px; font-size:13px; color:rgba(255,255,255,.55)}
.article-hero__meta span{display:inline-flex; align-items:center; gap:7px}
.article-hero__meta svg{width:15px; height:15px; fill:none; stroke:var(--gold-2); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round}

.article-layout{display:grid; gap:36px}
.toc{background:var(--paper-2); border-left:2px solid var(--gold); padding:20px 22px; margin-bottom:32px}
.toc__title{font-size:12px; letter-spacing:.14em; text-transform:uppercase; font-family:var(--sans); font-weight:600; color:var(--gold-3); margin-bottom:12px}
.toc ol{counter-reset:toc; display:grid; gap:8px}
.toc li{counter-increment:toc; font-size:14.4px}
.toc li a{color:var(--muted); transition:color .3s, padding-left .3s var(--ease)}
.toc li a::before{content:counter(toc) ". "; color:var(--gold)}
.toc li a:hover{color:var(--ink); padding-left:4px}

.prose{font-size:16.5px; line-height:1.78; color:var(--text)}
.prose h2{font-size:clamp(22px,4.6vw,29px); margin:44px 0 .5em; scroll-margin-top:calc(var(--header-h) + 20px)}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:19.5px; margin:30px 0 .45em}
.prose p{margin:0 0 1.15em; color:var(--muted)}
.prose strong{color:var(--ink); font-weight:600}
.prose em{color:var(--ink)}
.prose ul,.prose ol{margin:0 0 1.3em; padding-left:0; display:grid; gap:9px}
.prose li{position:relative; padding-left:26px; color:var(--muted)}
.prose ul li::before{content:""; position:absolute; left:6px; top:12px; width:6px; height:6px; border-radius:50%; background:var(--gold)}
.prose ol{counter-reset:pl}
.prose ol li{counter-increment:pl}
.prose ol li::before{content:counter(pl) "."; position:absolute; left:0; top:0; color:var(--gold-3); font-weight:600; font-size:14.5px}
.prose a{color:var(--gold-3); border-bottom:1px solid var(--gold); transition:color .3s}
.prose a:hover{color:var(--ink)}
.prose .note{font-size:15px}
.prose--legal{font-size:15.6px}
.prose--legal h2{font-size:clamp(20px,4vw,24px); margin-top:38px}
.prose__updated{font-size:13px; color:var(--muted); padding-bottom:18px; border-bottom:1px solid var(--line); margin-bottom:26px}

.article-disclaimer{
  display:flex; gap:14px; align-items:flex-start; margin-top:42px; padding:20px 22px;
  background:var(--paper-2); border-radius:var(--radius-lg); font-size:13.6px; color:var(--muted);
}
.article-disclaimer svg{width:20px; height:20px; flex:none; margin-top:2px; fill:none; stroke:var(--gold-3); stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}
.article-disclaimer p{margin:0}
.article-disclaimer a{color:var(--gold-3); border-bottom:1px solid var(--gold)}

.article-author{display:flex; gap:16px; align-items:flex-start; margin-top:26px; padding-top:26px; border-top:1px solid var(--line)}
.article-author__avatar{
  width:56px; height:56px; flex:none; border-radius:50%; display:grid; place-items:center;
  background:linear-gradient(150deg,var(--ink-2),var(--ink));
  font-family:var(--serif); font-size:19px; color:var(--gold-2);
}
.article-author strong{display:block; font-family:var(--serif); font-size:17px; color:var(--ink); font-weight:500}
.article-author span{display:block; font-size:13.8px; color:var(--muted); margin-bottom:8px}

.newsletter{display:grid; gap:10px; margin-top:8px}
.newsletter input{
  width:100%; padding:14px 16px; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius); font-size:15px; transition:border-color .3s, box-shadow .3s;
}
.newsletter input:focus{outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-tint)}
.newsletter__note{text-align:center; font-size:12.6px; color:var(--muted); margin-top:12px}
.newsletter__note a{color:var(--gold-3); border-bottom:1px solid var(--gold)}

/* ---------- 20. CONTACT, MULȚUMIM, 404 ---------- */
.contact-top{display:grid; gap:14px}
.contact-tile{
  display:grid; gap:4px; padding:24px 22px; background:var(--white);
  border:1px solid var(--line); border-radius:var(--radius-lg);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.contact-tile:hover{transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:transparent}
.contact-tile__icon{display:grid; place-items:center; width:44px; height:44px; margin-bottom:10px; background:var(--gold-tint); border-radius:50%}
.contact-tile__icon svg{width:22px; height:22px; fill:none; stroke:var(--gold-3); stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}
.contact-tile strong{font-family:var(--serif); font-size:19px; color:var(--ink); font-weight:500}
.contact-tile > span:not(.contact-tile__icon){font-size:15px; color:var(--gold-3); font-weight:500}
.contact-tile__note{font-size:12.8px; color:var(--muted) !important; font-weight:400 !important}

.access{display:grid; gap:16px}
.access__card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px 22px}
.access__card h3{display:flex; align-items:center; gap:10px; font-size:17px; margin-bottom:.6em}
.access__card h3 svg{width:19px; height:19px; flex:none; fill:none; stroke:var(--gold); stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round}
.access__card p{font-size:14.4px; color:var(--muted); margin-bottom:.6em}

.field--file input{padding:11px 14px; font-size:13.5px}
.field--file input::file-selector-button{
  margin-right:12px; padding:7px 13px; font-size:13px; font-weight:600;
  background:var(--paper-2); color:var(--ink); border:1px solid var(--line);
  border-radius:var(--radius); cursor:pointer;
}
.field__hint{display:block; font-size:12.4px; color:var(--muted); margin-top:6px}

.thanks{padding:calc(var(--header-h) + 70px) 0 80px; background:var(--paper-2); min-height:70vh}
.thanks__inner{max-width:680px; text-align:center}
.thanks__icon{
  display:grid; place-items:center; width:74px; height:74px; margin:0 auto 26px;
  background:var(--gold-tint); border:1px solid var(--gold); border-radius:50%;
  animation:riseIn .8s var(--ease) both;
}
.thanks__icon svg{width:34px; height:34px; fill:none; stroke:var(--gold-3); stroke-width:2; stroke-linecap:round; stroke-linejoin:round}
.thanks__title{font-size:clamp(26px,6vw,40px); margin-bottom:.4em; animation:riseIn .8s var(--ease) both .1s}
.thanks__lead{font-size:16.5px; color:var(--muted); margin-bottom:30px; animation:riseIn .8s var(--ease) both .18s}
.thanks__lead a{color:var(--gold-3); border-bottom:1px solid var(--gold)}
.thanks__box{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:26px 24px; text-align:left; margin-bottom:28px; animation:riseIn .8s var(--ease) both .26s;
}
.thanks__box h2{font-size:19px; margin-bottom:.7em}
.thanks__steps{counter-reset:th; display:grid; gap:14px}
.thanks__steps li{counter-increment:th; position:relative; padding-left:38px; font-size:14.6px; color:var(--muted)}
.thanks__steps li::before{
  content:counter(th); position:absolute; left:0; top:-1px; width:26px; height:26px;
  display:grid; place-items:center; border:1px solid var(--gold); border-radius:50%;
  font-family:var(--serif); font-size:13px; color:var(--gold-3);
}
.thanks__steps strong{color:var(--ink)}
.thanks__actions{display:flex; flex-direction:column; gap:12px; animation:riseIn .8s var(--ease) both .34s}
.thanks__note{margin-top:24px; font-size:13.6px; color:var(--muted)}
.thanks__note a{color:var(--gold-3); border-bottom:1px solid var(--gold)}

.err__code{font-family:var(--serif); font-size:clamp(70px,20vw,130px); line-height:1; color:var(--gold); opacity:.28; margin:0 0 8px}
.err__links{display:grid; gap:9px}
.err__links a{font-size:14.6px; color:var(--muted); transition:color .3s, padding-left .3s var(--ease)}
.err__links a:hover{color:var(--gold-3); padding-left:5px}

.footer__badges{display:flex; flex-wrap:wrap; gap:8px 16px; margin-top:16px; font-size:12.6px; color:rgba(255,255,255,.5)}
.footer__badges li{display:flex; align-items:center; gap:7px}
.footer__badges svg{width:15px; height:15px; flex:none; fill:none; stroke:var(--gold-2); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round}

.cards--sm .card{padding:24px 22px}
.card--link{display:block}

/* ---------- 21. BARĂ MOBILĂ DE CONTACT + COOKIE ---------- */
.mobile-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:95;
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background:var(--line); border-top:1px solid var(--line);
  padding-bottom:env(safe-area-inset-bottom);
}
.mobile-cta__btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 10px; font-size:14px; font-weight:600; background:var(--white); color:var(--ink);
  transition:background .25s;
}
.mobile-cta__btn svg{width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round}
.mobile-cta__btn--call{background:var(--gold); color:#fff}
.mobile-cta__btn--call:active{background:var(--gold-3)}
.mobile-cta__btn--write:active{background:var(--paper-2)}

.cookie{
  position:fixed; left:12px; right:12px; bottom:76px; z-index:96;
  display:grid; gap:14px; padding:18px 20px;
  background:var(--ink); color:rgba(255,255,255,.74); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); font-size:13.4px; line-height:1.6;
  animation:riseIn .5s var(--ease) both;
}
.cookie p{margin:0}
.cookie a{color:var(--gold-2); border-bottom:1px solid rgba(201,167,106,.4)}
.cookie__actions{display:flex; gap:10px}
.cookie__actions .btn{flex:1}
.cookie .btn--outline{--btn-fg:#fff; --btn-bd:rgba(255,255,255,.3)}
.cookie .btn--outline:hover{--btn-bd:#fff}

body{padding-bottom:56px}       /* loc pentru bara mobilă */
.to-top{bottom:70px}

/* ---------- 22. RESPONSIVE PENTRU COMPONENTELE NOI ---------- */
@media (min-width:600px){
  .page-hero__actions{flex-direction:row; flex-wrap:wrap}
  .thanks__actions{flex-direction:row; justify-content:center}
  .checklist--two{grid-template-columns:1fr 1fr; gap:12px 26px}
  .posts{grid-template-columns:1fr 1fr}
  .value-grid{grid-template-columns:1fr 1fr}
  .access{grid-template-columns:1fr 1fr}
  .contact-top{grid-template-columns:repeat(3,1fr)}
  .hub-card{grid-template-columns:auto 1fr; align-items:start}
  .profile{grid-template-columns:auto 1fr; align-items:start}
  .profile__side{align-items:flex-start}
  .newsletter{grid-template-columns:1fr auto}
  .cookie{
    left:auto; right:20px; bottom:20px; max-width:420px;
    grid-template-columns:1fr; padding:22px 24px;
  }
}

@media (min-width:900px){
  .page-hero{padding:calc(var(--header-h) + 84px) 0 62px}
  .article-hero{padding:calc(var(--header-h) + 78px) 0 56px}
  .posts{grid-template-columns:repeat(3,1fr); gap:20px}
  .value-grid{grid-template-columns:repeat(2,1fr); gap:20px}
  .access{grid-template-columns:repeat(4,1fr); gap:18px}
  .srv-items{gap:16px}
  .hub-card{gap:26px; padding:30px 28px}
  .profile{gap:34px; padding:34px 30px}
  .prose{font-size:17px}
}

/* peste 1060px meniul devine orizontal; sub, ramane sertar */
@media (min-width:1060px){
  :root{--header-h:76px}
  .srv-layout{grid-template-columns:1fr 340px; gap:52px; align-items:start}
  .article-layout{grid-template-columns:1fr 320px; gap:52px; align-items:start}
  /* in coloana principala, cele 4 etape stau mai bine pe 2 randuri */
  .srv-main .steps{grid-template-columns:1fr 1fr; gap:52px 30px}
  .srv-main .step{padding-right:8px}
  .topbar__sep{display:block; width:1px; height:13px; background:rgba(255,255,255,.18)}
  .topbar__item:not(.topbar__phone){display:inline-flex}
  .topbar__inner{justify-content:flex-end}
  .burger{display:none}
  .nav{
    position:static; width:auto; transform:none; background:none; color:inherit;
    flex-direction:row; align-items:center; gap:22px; padding:0; overflow:visible;
  }
  .nav__list{flex-direction:row; gap:22px; align-items:center}
  .nav__home{display:none}
  .nav__link{
    display:flex; align-items:center; gap:5px;
    padding:0; font-family:var(--sans); font-size:13.8px; font-weight:500;
    color:var(--ink-soft); border:0; opacity:1; transform:none; position:relative;
  }
  .nav__chev{display:block; transition:transform .35s var(--ease)}
  .nav__link::after{
    content:""; position:absolute; left:0; bottom:-6px; width:100%; height:1px;
    background:var(--gold); transform:scaleX(0); transform-origin:right;
    transition:transform .4s var(--ease);
  }
  .nav__link:hover::after,.nav__link.is-active::after{transform:scaleX(1); transform-origin:left}
  .nav__link:hover,.nav__link.is-active{color:var(--ink)}
  .nav__cta{margin-top:0; padding:11px 18px; font-size:13px}
  .nav-backdrop{display:none}
  .subnav__toggle{display:none}

  .has-sub .subnav{
    display:block; position:absolute; top:calc(100% + 14px); left:-18px;
    min-width:270px; margin:0; padding:10px 0;
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg); opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    animation:none;
  }
  .has-sub .subnav::before{content:""; position:absolute; top:-16px; left:0; right:0; height:16px}
  .has-sub:hover .subnav,.has-sub:focus-within .subnav{opacity:1; visibility:visible; transform:none}
  .has-sub:hover .nav__chev{transform:rotate(180deg)}
  .subnav li a{
    padding:9px 20px; font-size:13.8px; color:var(--muted);
    border-left:2px solid transparent; transition:color .25s, background .25s, border-color .25s, padding-left .25s;
  }
  .subnav li a:hover,.subnav li a.is-active{
    color:var(--ink); background:var(--paper); border-left-color:var(--gold); padding-left:24px;
  }

  .mobile-cta{display:none}
  body{padding-bottom:0}
  .to-top{bottom:26px}
  .cookie{bottom:24px}
}

@media (hover:none){
  .hub-card:hover,.value-card:hover,.post-card:hover,.contact-tile:hover,.srv-item:hover{
    transform:none; box-shadow:var(--shadow-sm);
  }
}

@media print{
  .mobile-cta,.cookie,.mini-form,.srv-side,.article-side,.toc{display:none !important}
  .page-hero,.article-hero{background:#fff; color:#000; padding:20px 0}
  .page-hero__title,.article-hero__title,.page-hero__lead,.article-hero__lead{color:#000}
  .srv-layout,.article-layout{grid-template-columns:1fr}
  .table th{background:#eee; color:#000}
}
