/* =====================================================================
   Dr. Radu Bonaciu - stiluri
   Paletă brand: #004087 (albastru), #00aeef (cyan), #D8342F (roșu), #FADE4B (galben)
   Reguli de formă: butoane pill, carduri 24px, câmpuri 12px, containere mari 32px
   ===================================================================== */

:root {
  --brand: #004087;
  --brand-deep: #00305f;
  --fill: #004087;          /* umpluturi solide (butoane, tab-uri active) */
  --fill-hover: #00305f;
  --navy: #071a33;
  --accent: #00aeef;
  --accent-deep: #0093cb;
  --red: #D8342F;
  --yellow: #FADE4B;

  --bg: #bde0fe;
  --surface: #ffffff;
  --surface-2: #e6f2fd;
  --surface-3: #d3e8fb;
  --text: #0d1b2e;
  --muted: #3f5169;
  --border: rgba(0, 64, 135, 0.14);
  --shadow: 0 20px 50px -24px rgba(0, 48, 95, 0.35);

  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.72);

  --r-card: 24px;
  --r-big: 32px;
  --r-input: 12px;
  --r-pill: 999px;

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 68px;
}


/* ---------- Reset & bază ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.6rem); }
h3 { font-size: 1.25rem; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: var(--r-pill);
}
.skip-link:focus { top: 12px; }

.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 32px); }
.section { padding-block: clamp(72px, 9vw, 128px); }
.section + .section { padding-top: 0; }
.section--block + .section { padding-top: clamp(72px, 9vw, 128px); }
[hidden] { display: none !important; }
.muted { color: var(--muted); }
.link { color: var(--brand); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.link:hover { text-decoration: underline; }

/* ---------- Etichete și pill-uri ---------- */
.label {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 600; color: var(--muted);
  margin-bottom: 14px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 600;
  background: var(--surface-2); color: var(--text);
}
.pill--light { background: rgba(255, 255, 255, 0.14); color: #fff; backdrop-filter: blur(8px); }
.pill i { font-size: 1.05em; }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.9375rem; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn i { font-size: 1.15em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn--lg { padding: 16px 26px; font-size: 1rem; }
.btn--primary { background: var(--fill); color: #fff; box-shadow: 0 10px 24px -12px rgba(0, 64, 135, 0.6); }
.btn--primary:hover { background: var(--fill-hover); }
.btn--accent { background: var(--accent); color: #062033; }
.btn--accent:hover { background: #2dbdf5; }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: #eef5fc; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.8); }
.btn--outline { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--brand); }
.btn.is-loading { opacity: 0.7; pointer-events: none; }

/* ---------- Navigație ---------- */
.nav-wrap {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 14px 16px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 8px;
  width: min(1120px, 100%);
  height: var(--nav-h);
  padding: 8px 8px 8px 12px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px -20px rgba(0, 48, 95, 0.45);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav-wrap.is-scrolled .nav { box-shadow: 0 18px 50px -20px rgba(0, 48, 95, 0.55); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-right: auto; }
.nav__brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: top; }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  display: inline-block; padding: 10px 14px; border-radius: var(--r-pill);
  font-weight: 500; color: var(--muted); font-size: 0.9375rem;
  transition: color 0.2s, background-color 0.2s;
}
.nav__links a:hover { color: var(--text); background: var(--surface-2); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface-2); font-size: 1.3rem;
  align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: calc(var(--nav-h) + 22px); left: 16px; right: 16px;
    flex-direction: column; gap: 4px; padding: 10px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav-wrap.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin: 10px;
  padding-top: calc(var(--nav-h) + 40px);
  min-height: min(880px, 92dvh);
  border-radius: var(--r-big);
  background:
    radial-gradient(60% 55% at 85% 90%, rgba(0, 174, 239, 0.45), transparent 70%),
    radial-gradient(45% 45% at 15% 10%, rgba(0, 174, 239, 0.22), transparent 70%),
    var(--brand);
  color: #fff;
  overflow: hidden;
  display: flex;
}
.hero::after {
  /* textură fină de linii concentrice, decor discret */
  content: ""; position: absolute; inset: -20%; pointer-events: none; opacity: 0.08;
  background: repeating-radial-gradient(circle at 80% 100%, #fff 0 1px, transparent 1px 80px);
}
.hero__inner {
  position: relative; z-index: 1;
  width: min(1120px, 100% - 32px); margin-inline: auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 24px;
}
.hero__copy { padding-bottom: clamp(48px, 7vw, 96px); align-self: center; }
.hero__eyebrow { margin-bottom: 22px; animation: rise 0.7s var(--ease) both; }
.hero__title {
  font-size: clamp(2.25rem, 1.2rem + 2.6vw, 3.1rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  max-width: 24ch;
  animation: rise 0.8s 0.08s var(--ease) both;
}
.hero__sub {
  margin-top: 20px; max-width: 46ch;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); color: var(--on-dark-muted);
  animation: rise 0.8s 0.16s var(--ease) both;
}
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; animation: rise 0.8s 0.24s var(--ease) both; }
.hero__visual { position: relative; align-self: end; display: flex; justify-content: center; }
.hero__visual::before {
  /* halou în spatele portretului */
  content: ""; position: absolute; left: 50%; bottom: 18%; width: 78%; aspect-ratio: 1;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.55), rgba(0, 174, 239, 0) 70%);
  filter: blur(10px);
}
.hero__visual img {
  position: relative; width: min(100%, 520px); height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 20, 50, 0.45));
  animation: rise 1s 0.2s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero { margin: 8px; min-height: auto; padding-top: calc(var(--nav-h) + 32px); }
  .hero__inner { grid-template-columns: 1fr; gap: 8px; }
  .hero__copy { padding-bottom: 8px; }
  .hero__title { max-width: none; }
  .hero__visual img { width: min(88%, 440px); margin-inline: auto; }
  .hero__visual::before { bottom: 12%; }
}

/* ---------- Despre: statement + bento ---------- */
.statement { display: grid; grid-template-columns: 200px 1fr; gap: 24px; margin-bottom: 40px; }
.statement__text { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem); font-weight: 600; max-width: 26ch; }
.bento {
  display: grid; grid-template-columns: minmax(240px, 1fr) 2fr; gap: 12px;
  padding: 12px; border-radius: var(--r-big);
  background: var(--surface-2); border: 1px solid var(--border);
}
.stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px 26px 24px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
}
.stat__num { font-size: clamp(1.75rem, 1.4rem + 1vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--brand); }
.stat__desc { color: var(--muted); font-size: 0.9375rem; line-height: 1.5; }
.bio {
  grid-column: 2; grid-row: 1 / span 3;
  display: flex; flex-direction: column; gap: 24px;
  padding: 32px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
}
.bio__top { display: flex; align-items: center; gap: 16px; }
.bio__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--surface-2); }
.bio__affil { display: flex; flex-direction: column; }
.bio__affil strong { font-size: 1.05rem; }
.bio__affil span { color: var(--muted); font-size: 0.9rem; }
.bio__text { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.35rem); font-weight: 500; line-height: 1.5; letter-spacing: -0.01em; }
.facts {
  margin: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.facts div { display: flex; flex-direction: column; gap: 2px; }
.facts dt { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.facts dd { margin: 0; font-size: 0.9375rem; font-weight: 500; }
.facts a { color: var(--brand); text-decoration: underline; text-decoration-color: rgba(0, 64, 135, 0.3); }
.fcard address { font-style: normal; font-weight: 500; line-height: 1.5; }
@media (max-width: 600px) { .facts { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .statement { grid-template-columns: 1fr; gap: 4px; }
  .bento { grid-template-columns: 1fr; }
  .bio { grid-column: 1; grid-row: auto; padding: 24px; }
}

/* ---------- Antete de secțiune ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head h2 { max-width: 22ch; }
.section-head--stack { flex-direction: column; align-items: flex-start; gap: 12px; }
.section-head--stack p { color: var(--muted); max-width: 56ch; font-size: 1.0625rem; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center h2 { max-width: none; }
@media (max-width: 720px) { .section-head { flex-direction: column; align-items: flex-start; } }

/* ---------- Servicii: tab-uri ---------- */
.services {
  border-radius: var(--r-big); padding: 12px;
  background: var(--surface-2); border: 1px solid var(--border);
}
.services__tabs {
  display: flex; gap: 6px; padding: 6px; margin-bottom: 12px;
  border-radius: var(--r-card); background: var(--surface); border: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.services__tabs::-webkit-scrollbar { display: none; }
.svc-tab {
  flex: 1 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: var(--r-pill); border: 0; background: transparent;
  color: var(--muted); font-weight: 600; font-size: 0.9375rem; white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.svc-tab i { font-size: 1.2rem; }
.svc-tab:hover { color: var(--text); background: var(--surface-2); }
.svc-tab.is-active { background: var(--fill); color: #fff; }
.svc-panel {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 12px;
}
.svc-panel.is-active { animation: fadein 0.45s var(--ease) both; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.svc-visual {
  min-height: 340px; border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
  color: #fff;
  background:
    radial-gradient(70% 70% at 80% 20%, rgba(0, 174, 239, 0.7), transparent 70%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.svc-visual::after {
  content: ""; position: absolute; inset: 0; opacity: 0.12;
  background: repeating-radial-gradient(circle at 20% 110%, #fff 0 1px, transparent 1px 42px);
}
.svc-visual i { font-size: clamp(6rem, 12vw, 9rem); position: relative; filter: drop-shadow(0 20px 30px rgba(0, 20, 50, 0.4)); }
.svc-body {
  padding: 32px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.svc-body h3 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.75rem); }
.svc-body > p { color: var(--muted); font-size: 1.0625rem; max-width: 52ch; }
.svc-body h4 { margin-top: 8px; font-size: 0.9375rem; color: var(--muted); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--text); font-size: 0.9rem; font-weight: 500;
}
@media (max-width: 900px) {
  .svc-panel { grid-template-columns: 1fr; }
  .svc-visual { min-height: 200px; }
  .svc-visual i { font-size: 5rem; }
  .svc-tab { flex: 0 0 auto; }
  .svc-body { padding: 24px; }
}

/* ---------- Bloc albastru: proceduri ---------- */
.section--block { padding-block: 0; }
.block {
  width: min(1200px, 100% - 20px);
  padding: clamp(40px, 6vw, 80px);
  border-radius: var(--r-big);
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(0, 174, 239, 0.35), transparent 70%),
    var(--navy);
  color: #fff;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px);
}
.block__intro { display: flex; flex-direction: column; gap: 20px; align-self: start; position: sticky; top: 100px; }
.block__intro h2 { max-width: 16ch; }
.block__intro p { color: var(--on-dark-muted); max-width: 40ch; font-size: 1.0625rem; }
.block__intro .btn { align-self: flex-start; margin-top: 8px; }
.proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proc {
  display: flex; gap: 16px; padding: 24px; border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.proc:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(0, 174, 239, 0.5); }
.proc__num { font-weight: 700; color: var(--accent); font-size: 0.9375rem; letter-spacing: 0.02em; padding-top: 3px; }
.proc h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.proc p { color: var(--on-dark-muted); font-size: 0.9375rem; line-height: 1.55; }
@media (max-width: 900px) {
  .block { grid-template-columns: 1fr; }
  .block__intro { position: static; }
  .proc-grid { grid-template-columns: 1fr; }
}

/* ---------- Afecțiuni: grilă de dale ---------- */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.tile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 20px 20px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tile:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); }
.tile i { font-size: 1.75rem; color: var(--brand); margin-bottom: 12px; }
.tile strong { font-size: 1.0625rem; letter-spacing: -0.01em; }
.tile span { color: var(--muted); font-size: 0.875rem; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .tiles { grid-template-columns: repeat(2, 1fr); } .tile { padding: 18px 16px; } }

/* ---------- Clinici ---------- */
.clinics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.clinic {
  display: flex; flex-direction: column; gap: 22px;
  padding: 32px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
}
.clinic__head { display: flex; flex-direction: column; gap: 12px; }
.clinic__tag {
  align-self: flex-start; padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--brand);
  font-size: 0.8125rem; font-weight: 600;
}
.clinic__tag--alt { background: rgba(0, 174, 239, 0.16); color: #005f8a; }
.clinic__head h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem); }
.clinic__meta { display: grid; gap: 16px; margin: 0; }
.clinic__meta > div { display: flex; flex-direction: column; gap: 5px; }
.clinic__meta dt {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; color: var(--muted);
}
.clinic__meta dt i { color: var(--brand); font-size: 1rem; }
.clinic__meta dd { margin: 0; font-weight: 500; line-height: 1.5; }
.clinic__meta dd a { color: var(--brand); font-weight: 700; }
.clinic__meta dd a:hover { text-decoration: underline; }
.clinic address { font-style: normal; }
.clinic h4 { font-size: 0.9375rem; color: var(--muted); font-weight: 600; margin-bottom: -8px; }
.clinic__links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: auto; padding-top: 4px; }
.clinic__links .link { font-size: 0.9375rem; }

.surgery {
  margin-top: 12px; padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-big); background: var(--surface-2); border: 1px solid var(--border);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 48px);
}
.surgery__intro h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem); margin-bottom: 12px; }
.surgery__intro p { color: var(--muted); max-width: 40ch; }
.surgery__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; align-content: start; }
.surgery__list li { position: relative; padding-left: 28px; font-weight: 500; line-height: 1.45; }
.surgery__list li::before {
  content: ""; position: absolute; left: 2px; top: 0.5em;
  width: 12px; height: 6px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
.info__second { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .clinics { grid-template-columns: 1fr; }
  .clinic { padding: 24px; }
  .surgery { grid-template-columns: 1fr; }
  .surgery__list { grid-template-columns: 1fr; }
}

/* ---------- Cum decurge: pași ---------- */
.flow {
  border-radius: var(--r-big); padding: clamp(28px, 4vw, 48px);
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; grid-template-columns: 0.7fr 2fr; gap: clamp(24px, 4vw, 56px);
}
.flow__head h2 { max-width: 12ch; }
.flow__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: pas; position: relative; }
.step { position: relative; padding: 8px 28px 0 0; counter-increment: pas; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--border); }
.step i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fill); color: #fff; font-size: 1.4rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.125rem; margin-bottom: 8px; }
.step h3::before { content: counter(pas, decimal-leading-zero) "  "; color: var(--accent); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; }
.step p { color: var(--muted); font-size: 0.9375rem; }
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: 1fr; gap: 20px; }
  .step + .step { padding-left: 0; border-left: 0; padding-top: 20px; border-top: 1px solid var(--border); }
  .step { padding-right: 0; }
}

/* ---------- Pacienți: citate ---------- */
.quotes { display: grid; grid-template-columns: 1.4fr 1fr; grid-auto-rows: auto; gap: 12px; }
.quote {
  margin: 0; padding: 28px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.quote--lead { grid-row: 1 / span 2; padding: 36px; justify-content: space-between; background: var(--fill); color: #fff; border-color: transparent; }
.quote--lead blockquote { font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; margin-top: auto; padding-top: 24px; }
.quote blockquote { margin: 0; font-size: 1.0625rem; line-height: 1.5; }
.quote figcaption { display: flex; flex-direction: column; font-size: 0.9375rem; }
.quote figcaption span { color: var(--muted); font-size: 0.875rem; }
.quote--lead figcaption span { color: var(--on-dark-muted); }
.stars { display: flex; gap: 2px; color: var(--yellow); font-size: 1rem; }
@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; }
  .quote--lead { grid-row: auto; padding: 28px; }
}

/* ---------- Programare: formular + info ---------- */
.booking { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 12px; align-items: start; }
.form {
  padding: clamp(24px, 3vw, 36px); border-radius: var(--r-big);
  background: var(--surface-2); border: 1px solid var(--border);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9375rem; }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-input);
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
  font: inherit; font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.85; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.25); }
.field .is-invalid { border-color: var(--red); }
.field__error { color: var(--red); font-size: 0.875rem; font-weight: 500; }
.select { position: relative; }
.select select { appearance: none; padding-right: 44px; }
.select i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.capcana { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.acord { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; }
.acord input[type="checkbox"] {
  flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 6px;
  accent-color: var(--fill); cursor: pointer;
}
.acord label { font-size: 0.9375rem; line-height: 1.5; color: var(--muted); cursor: pointer; }
.acord + .field__error { margin-top: 8px; }
.form__footer { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.form__note { margin-top: 16px; color: var(--muted); font-size: 0.875rem; }
.form__status {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r-input);
  display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.form__status i { font-size: 1.3rem; }
.form__status.is-ok { background: rgba(0, 174, 239, 0.14); color: var(--text); }
.form__status.is-err { background: rgba(216, 52, 47, 0.12); color: var(--text); }
.form__status a { color: var(--brand); font-weight: 700; }

.info { display: flex; flex-direction: column; gap: 12px; }
.info__card {
  padding: 24px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
}
.info__card h3 { font-size: 1rem; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.info__card h3 i { color: var(--brand); font-size: 1.2rem; }
.info__card p { line-height: 1.6; }
.info__card .link { margin-top: 10px; font-size: 0.9375rem; }
.tel { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--brand); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.hours th { text-align: left; font-weight: 500; color: var(--muted); padding: 7px 0; }
.hours td { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; padding: 7px 0; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--border); }
@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 12px; border-radius: var(--r-big);
  background: var(--surface-2); border: 1px solid var(--border);
}
.faq__tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; padding: 8px 8px 16px; }
.faq-tab {
  padding: 10px 18px; border-radius: var(--r-pill); border: 0; background: transparent;
  color: var(--muted); font-weight: 600; font-size: 0.9375rem;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-tab:hover { color: var(--text); }
.faq-tab.is-active { background: var(--fill); color: #fff; }
.faq__panel { display: flex; flex-direction: column; gap: 8px; }
.faq__panel.is-active { animation: fadein 0.4s var(--ease) both; }
.qa { border-radius: var(--r-card); background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; font-weight: 600; font-size: 1.0625rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::before {
  content: "+"; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--brand); font-weight: 600; font-size: 1.1rem;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.qa[open] summary::before { content: "×"; transform: rotate(180deg); background: var(--fill); color: #fff; }
.qa p { padding: 0 22px 20px 64px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { padding: 10px; }
.footer__inner {
  border-radius: var(--r-big); padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 56px) 28px;
  background:
    radial-gradient(45% 50% at 0% 100%, rgba(0, 174, 239, 0.28), transparent 70%),
    var(--navy);
  color: #fff; overflow: hidden;
}
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__about { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.footer__about p { max-width: 40ch; color: var(--on-dark-muted); font-size: 1.0625rem; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer__nav h4 { font-size: 0.875rem; color: var(--on-dark-muted); font-weight: 500; margin-bottom: 12px; }
.footer__nav a { display: block; padding: 5px 0; font-weight: 500; color: #fff; opacity: 0.92; }
.footer__nav a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff; font-size: 1.35rem;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.socials a:hover { background: var(--accent); color: #062033; border-color: transparent; transform: translateY(-2px); }
.socials a:active { transform: translateY(0) scale(0.96); }
.footer__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fcard {
  padding: 20px 22px; border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
}
.fcard span { display: block; font-size: 0.875rem; color: var(--on-dark-muted); margin-bottom: 8px; }
.fcard a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.125rem; }
.fcard a:hover { color: var(--accent); }
.fcard p { font-weight: 500; line-height: 1.5; }
.footer__wordmark {
  margin: 36px 0 8px -0.04em;
  font-size: clamp(4rem, 17vw, 15rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.95;
  color: #fff; white-space: nowrap;
}
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--on-dark-muted); font-size: 0.875rem; }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cards { grid-template-columns: 1fr; }
}

/* ---------- Pagini de articol ---------- */
.container--text { width: min(760px, 100% - 32px); margin-inline: auto; }
.articol { padding-top: calc(var(--nav-h) + 48px); padding-bottom: clamp(56px, 8vw, 96px); }

.firimituri { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; flex-wrap: wrap; }
.firimituri a { color: var(--muted); }
.firimituri a:hover { color: var(--brand); text-decoration: underline; }
.firimituri i { font-size: 0.9rem; opacity: 0.6; }

.articol__cap { margin-bottom: 32px; }
.articol__cap .pill { margin-bottom: 18px; }
.articol__cap h1 {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  letter-spacing: -0.03em; line-height: 1.1; max-width: 20ch;
}
.articol__meta { display: flex; align-items: center; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.articol__meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top; }
.articol__meta > div { display: flex; flex-direction: column; line-height: 1.3; }
.articol__meta strong { font-size: 0.9375rem; }
.articol__meta span { font-size: 0.875rem; color: var(--muted); }
.articol__data { margin-left: auto; font-size: 0.875rem; color: var(--muted); }

.articol__rezumat {
  font-size: clamp(1.125rem, 1.05rem + 0.5vw, 1.3rem); font-weight: 500;
  line-height: 1.55; letter-spacing: -0.011em;
  padding: 26px 30px; border-radius: var(--r-card);
  background: var(--brand); color: #fff;
  border-left: 5px solid var(--accent);
}

.articol__corp {
  margin-top: 16px; display: flex; flex-direction: column; gap: 40px;
  padding: clamp(28px, 4vw, 48px); border-radius: var(--r-big);
  background: var(--surface); border: 1px solid var(--border);
}
.articol__corp h2 {
  font-size: clamp(1.3rem, 1.15rem + 0.8vw, 1.7rem);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.articol__corp p { font-size: 1.0625rem; line-height: 1.72; color: #22354d; }
.articol__corp p + p { margin-top: 14px; }

.faq-art { display: flex; flex-direction: column; gap: 8px; }
.faq-art h2 { margin-bottom: 8px; }
.faq-art .qa { border-radius: var(--r-card); background: var(--surface-2); border-color: transparent; }

.alerta {
  padding: 26px 30px; border-radius: var(--r-card);
  background: rgba(216, 52, 47, 0.06); border: 1px solid rgba(216, 52, 47, 0.28);
}
.alerta h2 { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; color: #a3231f; margin-bottom: 14px; }
.alerta h2 i { font-size: 1.3rem; }
.alerta ul { display: flex; flex-direction: column; gap: 9px; }
.alerta li { position: relative; padding-left: 22px; font-size: 1rem; line-height: 1.5; }
.alerta li::before { content: ""; position: absolute; left: 4px; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.cta-articol {
  margin-top: 44px; padding: clamp(26px, 4vw, 38px);
  border-radius: var(--r-big); background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-articol h2 { font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.5rem); margin-bottom: 8px; }
.cta-articol p { color: var(--on-dark-muted); max-width: 44ch; }

.legate { margin-top: 52px; }
.legate h2 { font-size: 1.4rem; margin-bottom: 18px; }
.legate__grid { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }

/* carduri mici, sub articol */
.art-mic {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.art-mic:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow); }
.art-mic__icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--brand); font-size: 1.5rem;
}
.art-mic__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.art-mic__cat { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.art-mic__text strong { font-size: 0.9375rem; line-height: 1.35; letter-spacing: -0.012em; }
.art-mic__sageata { margin-left: auto; color: var(--brand); font-size: 1.1rem; flex: none; }

/* ---------- Pagina de listare a articolelor ---------- */
.lista-pagina { padding-top: calc(var(--nav-h) + 48px); padding-bottom: clamp(56px, 8vw, 96px); }
.lista-cap { margin-bottom: 40px; max-width: 46ch; }
.lista-cap h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  letter-spacing: -0.032em; line-height: 1.08; margin-bottom: 16px;
}
.lista-cap p { font-size: 1.0625rem; color: var(--muted); line-height: 1.6; }

.art-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.art-card {
  position: relative; cursor: pointer;
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-card); background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Titlul rămâne singura legătură reală, dar zona ei de clic acoperă tot cardul.
   Astfel cardul întreg e apăsabil fără linkuri duplicate și fără JavaScript. */
.art-card h2 a::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.art-card:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.35); }
.art-card h2 a:focus-visible { outline: none; }
.art-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.art-card__vizual {
  display: flex; align-items: center; justify-content: center;
  height: 150px; position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(70% 78% at 82% 18%, rgba(0, 174, 239, 0.62), transparent 70%),
    linear-gradient(158deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.art-card__vizual::after {
  content: ""; position: absolute; inset: 0; opacity: 0.13;
  background: repeating-radial-gradient(circle at 18% 112%, #fff 0 1.5px, transparent 1.5px 40px);
}
.art-card__vizual i { position: relative; font-size: 3.6rem; filter: drop-shadow(0 12px 20px rgba(0, 18, 44, 0.4)); }
.art-card__corp { display: flex; flex-direction: column; gap: 9px; padding: 24px 26px 26px; flex: 1; }
.art-card__cat { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }
.art-card h2 { font-size: 1.15rem; line-height: 1.32; letter-spacing: -0.018em; }
.art-card h2 a:hover { color: var(--brand); }
.art-card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.art-card__jos { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.art-card__link { font-size: 0.9375rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; }
.art-card:hover .art-card__link i { transform: translateX(3px); }
.art-card__link i { transition: transform 0.3s var(--ease); }
.art-card__timp { font-size: 0.8125rem; color: var(--muted); }

.art-card--mare { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.art-card--mare .art-card__vizual { height: auto; width: 42%; flex: none; }
.art-card--mare .art-card__vizual i { font-size: 6rem; }
.art-card--mare .art-card__corp { padding: clamp(28px, 3.5vw, 44px); gap: 12px; justify-content: center; }
.art-card--mare h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 2rem); line-height: 1.16; }
.art-card--mare p { font-size: 1.0625rem; max-width: 46ch; }

/* pe pagina principala, patru articole pe un rand */
.lista-art--acasa { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

@media (max-width: 1000px) {
  .art-grid { grid-template-columns: 1fr 1fr; }
  .art-card--mare { flex-direction: column; }
  .art-card--mare .art-card__vizual { width: 100%; height: 170px; }
  .lista-art--acasa { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .art-grid, .lista-art--acasa { grid-template-columns: 1fr; }
}

.disclaimer { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 0.875rem; color: var(--muted); }

@media (max-width: 720px) {
  .legate__grid { grid-template-columns: 1fr; }
  .articol__rezumat { padding: 22px; }
  .articol__data { margin-left: 0; width: 100%; }
  .cta-articol { flex-direction: column; align-items: flex-start; }
}

/* ---------- Banda de consimțământ ---------- */
.consimtamant {
  position: fixed; z-index: 60; left: 16px; bottom: 16px; width: min(420px, calc(100% - 32px));
  display: flex; flex-direction: column; gap: 16px;
  padding: 22px 24px; border-radius: var(--r-card);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 24px 60px -20px rgba(0, 48, 95, 0.45);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.consimtamant.is-vizibil { opacity: 1; transform: none; }
.consimtamant p { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); }
.consimtamant__actiuni { display: flex; gap: 10px; }
.consimtamant__actiuni .btn { flex: 1; }
@media (prefers-reduced-motion: reduce) {
  .consimtamant { transition: none; opacity: 1; transform: none; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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