/* ==========================================================================
   DentStrategy — foaie de stil principala
   Reconstructie statica (HTML / CSS / JS) a site-ului dentstrategy.ro
   --------------------------------------------------------------------------
   Cuprins
   01. Design tokens
   02. Reset & baze
   03. Utilitare de layout
   04. Butoane
   05. Header + navigatie
   06. Titluri de secțiune
   07. Home — hero, imagine, card contact
   08. Home — misiune + valori
   09. Home — servicii (acordeon)
   10. Banner CTA
   11. Despre noi
   12. Servicii
   13. Contact
   14. Footer
   15. Breadcrumbs
   16. Pagina 404
   17. Animatii la scroll
   18. Responsive
   ========================================================================== */

/* == 01. Design tokens =================================================== */
:root {
  /* Culori preluate din tema originala */
  --navy:        #262262;
  --navy-deep:   #121147;
  --nav-ink:     #273171;
  --blue:        #40b3e4;
  --blue-mid:    #479dee;
  --cyan:        #25d4ff;
  --logo-cyan:   #00aeef;
  --ink:         #0a0a0a;
  --body-ink:    #5c5c5c;
  --body-alt:    #414141;
  --muted:       #828282;
  --label:       #9d9e9f;
  --accent:      #ff5e13;

  --white:       #ffffff;
  --wash:        #f6f8fb;
  --wash-2:      #f2f4f8;
  --line:        #e7ebf3;

  /* Umbre */
  --sh-card:     0 0 50px 5px rgba(133, 66, 189, .10);
  --sh-hover:    0 18px 50px 1px rgba(133, 66, 189, .16);
  --sh-strip:    0 6px 18px rgba(0, 0, 0, .28);
  --sh-cta:      0 28px 32px rgba(0, 0, 0, .28);
  --sh-header:   0 6px 24px -12px rgba(38, 34, 98, .28);

  /* Tipografie */
  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Geometrie */
  --wrap:        1140px;
  --radius-sm:   8px;
  --radius:      18px;
  --radius-lg:   24px;
  --radius-xl:   39px;
  --header-h:    92px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* == 02. Reset & baze ==================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body-ink);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a  { color: inherit; text-decoration: none; }

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sari la conținut — doar pentru cititoare de ecran / tastatura */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.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;
}

/* == 03. Utilitare de layout ============================================= */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap--sm  { max-width: 730px; }
.wrap--md  { max-width: 900px; }
.wrap--lg  { max-width: 1186px; }

.section { padding-block: 72px; }
.section--tight { padding-block: 44px; }
.section--flush-top { padding-top: 0; }

.text-center { text-align: center; }

/* == 04. Butoane ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease), transform .35s var(--ease);
}
.btn > span { position: relative; z-index: 1; }

/* Efect „bloom" — cercul alb creste din centru (ca in tema originala) */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--white);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .45s var(--ease);
}
.btn:hover::before,
.btn:focus-visible::before { transform: scale(2.2); }

.btn--primary {
  background: var(--navy);
  border-color: #73b4ff;
  color: var(--white);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 26px -10px rgba(38, 34, 98, .55);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}
.btn--light::before { background: var(--navy); }
.btn--light:hover,
.btn--light:focus-visible { color: var(--white); border-color: var(--navy); }

.btn--submit {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  padding-inline: 40px;
}
.btn--submit:hover,
.btn--submit:focus-visible { color: var(--blue); border-color: var(--blue); }

/* == 05. Header + navigatie ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  padding-block: 10px;
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-stuck {
  box-shadow: var(--sh-header);
  padding-block: 4px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { flex: 0 0 auto; }
.brand img {
  width: 200px;
  height: auto;
  transition: width .3s var(--ease);
}
.site-header.is-stuck .brand img { width: 176px; }

/* --- meniu desktop --- */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  display: block;
  padding: 8px 15px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-ink);
  transition: color .25s var(--ease);
}
.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active { color: var(--cyan); }

.header-cta { flex: 0 0 auto; }

/* capul si CTA-ul panoului mobil exista doar sub 1024px */
.nav__panel-head,
.nav__cta { display: none; }

/* --- hamburger --- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 3px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- panou mobil (offcanvas) --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  /* Trebuie sub .site-header (90): panoul .nav este copil al header-ului, deci
     z-index-ul lui se resolva in stacking context-ul header-ului. Un overlay
     peste 90 ar acoperi panoul si i-ar bloca toate click-urile. */
  z-index: 80;
  background: rgba(18, 17, 71, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* == 06. Titluri de secțiune ============================================= */
.section-title {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 600;
  color: var(--navy);
}
.section-title--blue { color: var(--blue); }
h2 > .section-title--blue { display: block; }

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-alt);
}

/* == 07. Home — hero, imagine, card contact ============================== */
.hero-home {
  padding-top: 84px;
  padding-bottom: 40px;
  text-align: center;
}
.hero-home__title {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.5px;
}
.hero-home__subtitle {
  display: block;
  margin-top: 6px;
  font-size: clamp(27px, 4.2vw, 45px);
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -.3px;
}
.hero-home__text {
  max-width: 854px;
  margin: 34px auto 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--body-ink);
}

/* imagine mare + card de contact suprapus */
.showcase { position: relative; padding-bottom: 0; }
.showcase__media {
  max-width: 1138px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-strip {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: -103px auto 0;
  padding: 20px 13px 13px;
  background: var(--white);
  border-radius: 17px;
}
.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--sh-strip);
  transition: transform .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card--dark { background: var(--ink); }
.contact-card--blue { background: var(--blue-mid); }

.contact-card__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--white);
}
.contact-card__icon svg { width: 100%; height: 100%; }

.contact-card__label {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--label);
}
.contact-card--blue .contact-card__label { color: rgba(255, 255, 255, .82); }

.contact-card__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  overflow-wrap: anywhere;
  transition: opacity .2s var(--ease);
}
a.contact-card__value:hover { opacity: .78; }

/* == 08. Home — misiune + valori ========================================= */
.mission {
  padding-top: 76px;
  padding-bottom: 24px;
  text-align: center;
}
.mission__text {
  max-width: 682px;
  margin: 34px auto 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--body-alt);
}

.values { padding-block: 40px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.value-card {
  padding: 50px 30px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card--raised { box-shadow: var(--sh-card); }
.value-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--sh-hover);
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
}
.value-card__icon svg { width: 46px; height: 46px; }

.value-card__title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--blue);
}
.value-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .3px;
  color: var(--muted);
}

/* == 09. Home — servicii (acordeon) ====================================== */
.services-home { padding-block: 34px 34px; }
.services-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.services-home__heading {
  margin-bottom: 34px;
  font-size: clamp(30px, 3.6vw, 44px);
}

.services-home__media {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.services-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- acordeon --- */
.accordion { display: grid; gap: 10px; }

.accordion__item { border-radius: var(--radius-sm); overflow: hidden; }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 17px 22px;
  background: var(--wash-2);
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.accordion__trigger:hover { background: #e9edf5; }
.accordion__item.is-open .accordion__trigger {
  background: var(--wash-2);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.accordion__chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--navy);
  transition: transform .35s var(--ease);
}
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }

.accordion__inner {
  overflow: hidden;
  min-height: 0;
}
.accordion__body {
  padding: 24px 22px 30px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.accordion__body p { margin-bottom: 18px; }
.accordion__body ul { display: grid; gap: 16px; }
.accordion__body li {
  position: relative;
  padding-left: 18px;
}
.accordion__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.accordion__body strong { color: var(--navy); font-weight: 600; }

.services-home__more {
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.services-home__more a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.services-home__more a:hover {
  color: var(--navy);
  border-bottom-color: currentColor;
}
.services-home__more span { transition: transform .25s var(--ease); }
.services-home__more a:hover span { transform: translateX(3px); }

/* == 10. Banner CTA ====================================================== */
.cta { padding-block: 100px; }
.cta__card {
  padding: 60px;
  background-color: #1a73e8;
  background-image: url("../assets/img/wave-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-cta);
  text-align: center;
}
.cta__title {
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}
.cta__actions { margin-top: 32px; }

/* == 11. Despre noi ====================================================== */
.hero-split { padding-block: 64px 40px; }
.hero-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-split__title {
  font-size: clamp(30px, 3.9vw, 46px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.4px;
}
.hero-split__title span {
  display: block;
  color: var(--blue);
}
.hero-split__text {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-ink);
}
.hero-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infobox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.infobox {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.infobox:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--sh-card);
}
.infobox__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: rgba(64, 179, 228, .12);
  border-radius: 16px;
  color: var(--blue);
}
.infobox__icon svg { width: 30px; height: 30px; }
.infobox__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.infobox__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .2px;
  color: var(--muted);
}

/* == 12. Servicii ======================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 38px 32px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--sh-card);
}
.service-card__num {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(90deg, #49a4e2 0%, #6830c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #49a4e2;
}
.service-card__title {
  margin-bottom: 14px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}
.service-card__intro {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.service-card__list { display: grid; gap: 14px; }
.service-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.service-card__list strong { color: var(--navy); font-weight: 600; }

/* == 13. Contact ========================================================= */
.contact-hero { padding-block: 72px 40px; text-align: center; }
.contact-hero__title { font-size: clamp(30px, 4vw, 46px); }
.contact-hero__text {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.info-card {
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--sh-card);
}
.info-card__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--blue);
}
.info-card__icon svg { width: 100%; height: 100%; }
.info-card__label {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.info-card__value {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  transition: color .2s var(--ease);
}
a.info-card__value:hover { color: var(--blue); }

.contact-block__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: stretch;
}
.contact-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}
.contact-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__title { margin-bottom: 26px; font-size: 24px; }

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.field { margin-bottom: 24px; }
.field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.field__label .req { color: var(--accent); }

.field input,
.field textarea {
  width: 100%;
  padding: 10px 2px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--navy);
  transition: border-color .25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #b9bfcc; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 104px; }

.field.has-error input,
.field.has-error textarea { border-bottom-color: #e04f5f; }
.field__error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #e04f5f;
}
.field.has-error .field__error { display: block; }

/* capcana anti-spam — ascunsa vizual, dar prezenta in DOM */
.field--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form__note {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}
.form__note.is-visible { display: block; }
.form__note--ok   { background: rgba(64, 179, 228, .12); color: #1d6f92; }
.form__note--warn { background: rgba(255, 94, 19, .10);  color: #a63c07; }

/* == 14. Footer ========================================================== */
.site-footer {
  padding-block: 54px 30px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
}
.site-footer__logo {
  width: 210px;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.site-footer__tagline { max-width: 320px; margin: 0; line-height: 1.7; }

.site-footer__title {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--white);
}
.site-footer__list {
  display: grid;
  gap: 9px;
  font-style: normal;   /* <address> este italic prin default */
}
.site-footer__list a { transition: color .2s var(--ease); }
.site-footer__list a:hover { color: var(--cyan); }

.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* == 15. Breadcrumbs ===================================================== */
.breadcrumbs {
  padding-block: 18px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #c3c9d6;
  border-top: 1.5px solid #c3c9d6;
  transform: rotate(45deg);
}
.breadcrumbs a {
  color: var(--muted);
  transition: color .2s var(--ease);
}
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* breadcrumb-ul preia spatiul de sus, deci hero-ul se strange puțin */
.breadcrumbs + .hero-split { padding-top: 34px; }
.breadcrumbs + .contact-hero { padding-top: 44px; }

/* == 16. Pagina 404 ====================================================== */
.error-page {
  padding-block: 110px 130px;
  text-align: center;
}
.error-page__code {
  margin: 0;
  font-family: var(--font-body);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(90deg, #49a4e2 0%, #6830c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #49a4e2;
}
.error-page__title {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 40px);
}
.error-page__text {
  max-width: 460px;
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 500;
}
.error-page__links a {
  color: var(--blue);
  transition: color .2s var(--ease);
}
.error-page__links a:hover { color: var(--navy); }

/* == 17. Animatii la scroll ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* == 18. Responsive ====================================================== */
@media (max-width: 1024px) {
  :root { --header-h: 78px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 96;
    width: min(350px, 86vw);
    height: 100%;
    margin: 0;
    padding: 26px 22px;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(18, 17, 71, .18);
    transform: translateX(102%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: 14px 15px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
  .nav__panel-head img { width: 150px; }
  .nav__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 3px;
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .nav__cta { display: block; margin-top: 22px; }
  .nav__cta .btn { width: 100%; }

  .header-cta { display: none; }
  /* pagina 404 nu are meniu hamburger, deci butonul ramane vizibil */
  .site-header--bare .header-cta { display: block; }

  .brand img { width: 165px; }
  .site-header.is-stuck .brand img { width: 150px; }

  .services-home__grid { gap: 36px; }
  .services-home__media { position: static; aspect-ratio: 16 / 10; }

  .hero-split__grid { gap: 36px; }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-block__grid { grid-template-columns: 1fr; }
  .contact-block__media { min-height: 300px; }

  .cta__card { padding: 48px 36px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .contact-strip__grid { grid-template-columns: 1fr; }
  .contact-strip { margin-top: -64px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section { padding-block: 52px; }
  .breadcrumbs { padding-top: 14px; font-size: 12px; }
  .error-page { padding-block: 70px 84px; }
  .error-page__code { font-size: 64px; }

  .hero-home { padding-top: 54px; }
  .hero-home__text { margin-top: 26px; }

  .showcase__media { border-radius: var(--radius); aspect-ratio: 4 / 3; }
  .contact-strip { margin-top: -40px; padding: 12px; }

  .mission { padding-top: 52px; }

  .values__grid { grid-template-columns: 1fr; }
  .value-card { padding: 40px 24px; }
  .value-card--raised { box-shadow: none; }

  .services-home__grid,
  .hero-split__grid,
  .infobox-grid,
  .service-grid,
  .form__row { grid-template-columns: 1fr; }

  .hero-split { padding-block: 40px 24px; }
  .hero-split__media { aspect-ratio: 3 / 4; }

  .accordion__trigger { padding: 15px 18px; font-size: 14px; }
  .accordion__body { padding: 20px 18px 26px; }

  .cta { padding-block: 60px; }
  .cta__card { padding: 40px 24px; border-radius: 26px; }

  .infobox { padding: 24px; }
  .service-card { padding: 30px 24px 34px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__bottom { flex-direction: column; }
}

/* ==========================================================================
   19. BIBLIOTECA DE RESURSE — design editorial
   --------------------------------------------------------------------------
   19.1  Bara de progres la lectura
   19.2  Hub: hero, grupuri, carduri
   19.3  Articol: hero
   19.4  Articol: cardul „Pe scurt"
   19.5  Articol: layout + cuprins lateral
   19.6  Articol: tipografie (.prose)
   19.7  Articol: tabele
   19.8  Articol: callout-uri
   19.9  Articol: liste
   19.10 Articol: surse, disclaimer, autor
   19.11 Sidebar: cardul de serviciu
   19.12 Ghiduri conexe
   19.13 Footer pe 4 coloane
   19.14 Responsive
   19.15 Print
   ========================================================================== */

/* == 19.1 Bara de progres ================================================ */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #6830c8);
  transition: width .12s linear;
}

/* == 19.2 Hub ============================================================ */
.hub-hero {
  position: relative;
  padding-block: 26px 60px;
  background-color: var(--navy-deep);
  background-image: linear-gradient(125deg, #121147 0%, #262262 46%, #1a73e8 130%);
  overflow: hidden;
  text-align: center;
}
.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/wave-bg.webp") center/cover no-repeat;
  opacity: .28;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hub-hero > * { position: relative; z-index: 1; }

.breadcrumbs--dark { padding-block: 0 34px; text-align: left; }
.breadcrumbs--dark a,
.breadcrumbs--dark [aria-current="page"] { color: rgba(255, 255, 255, .72); }
.breadcrumbs--dark a:hover { color: #fff; }
.breadcrumbs--dark [aria-current="page"] { color: #fff; font-weight: 600; }
.breadcrumbs--dark li + li::before {
  border-right-color: rgba(255, 255, 255, .45);
  border-top-color: rgba(255, 255, 255, .45);
}

.hub-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cyan);
}
.hub-hero__title {
  font-size: clamp(31px, 4.4vw, 50px);
  letter-spacing: -1px;
  color: #fff;
}
.hub-hero__text {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}

.hub-body { padding-block: 54px 24px; }

/* cardul pilon: navy, cu fotografie */
.hub-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 60px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px -26px rgba(38, 34, 98, .55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.hub-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -26px rgba(38, 34, 98, .6);
}
.hub-featured__media { position: relative; min-height: 340px; }
.hub-featured__media picture,
.hub-featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 34, 98, .18) 0%, rgba(38, 34, 98, .85) 100%);
}
.hub-featured__body { padding: 44px 44px 40px; }
.hub-featured__chip {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 13px;
  background: rgba(37, 212, 255, .16);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.hub-featured__title {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.24;
  letter-spacing: -.5px;
  color: #fff;
}
.hub-featured__text {
  margin: 0 0 24px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .74);
}
.hub-featured__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.hub-featured__step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}
.hub-featured__step span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
}
.hub-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
}
.hub-featured .btn--light::before { background: var(--cyan); }
.hub-featured .btn--light:hover { color: var(--navy); border-color: var(--cyan); }

/* grupuri de categorii */
.hub-group + .hub-group { margin-top: 54px; }
.hub-group__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.hub-group__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: rgba(64, 179, 228, .11);
  border-radius: 12px;
  color: var(--blue);
}
.hub-group__icon svg { width: 22px; height: 22px; }
.hub-group__title { font-size: clamp(20px, 2.2vw, 25px); }
.hub-group__sub {
  margin: 5px 0 0;
  font-size: 14.5px;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.guide-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(38, 34, 98, .06), 0 8px 24px -14px rgba(38, 34, 98, .22);
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(38, 34, 98, .07), 0 22px 44px -18px rgba(38, 34, 98, .34);
}
.guide-card__link { display: flex; flex-direction: column; height: 100%; }

.guide-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wash);
}
.guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.guide-card:hover .guide-card__media img { transform: scale(1.05); }
.guide-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 71, .05) 40%, rgba(18, 17, 71, .5) 100%);
}
.guide-card__chip {
  position: absolute;
  left: 14px; bottom: 13px;
  z-index: 1;
  padding: 5px 11px;
  background: rgba(255, 255, 255, .93);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--navy);
}

.guide-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 20px;
}
.guide-card__title {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.32;
  color: var(--navy);
}
.guide-card__desc {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}
.guide-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.guide-card__time { font-size: 12px; font-weight: 500; color: #a2a9b8; }
.guide-card__cta { font-size: 13.5px; font-weight: 600; color: var(--blue); }
.guide-card__cta span { display: inline-block; transition: transform .25s var(--ease); }
.guide-card:hover .guide-card__cta span { transform: translateX(4px); }

/* == 19.3 Articol: hero ================================================== */
.article-hero {
  padding-block: 22px 52px;
  background: linear-gradient(180deg, #eef2f8 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}
.article-hero .breadcrumbs { padding-block: 0 26px; }

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 52px;
  align-items: center;
}
.article-hero__inner { min-width: 0; }

.article-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 46px -24px rgba(38, 34, 98, .42);
}
.article-hero__media picture,
.article-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.article-hero__title {
  font-size: clamp(29px, 4vw, 45px);
  line-height: 1.14;
  letter-spacing: -1px;
}
.article-hero__dek {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--body-alt);
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.byline { display: flex; align-items: center; gap: 12px; }
.byline__avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
}
.byline__text { display: grid; line-height: 1.35; }
.byline__text strong { font-size: 14px; font-weight: 600; color: var(--navy); }
.byline__text span { font-size: 12.5px; color: var(--muted); }

.metaitem {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.metaitem time { color: var(--navy); font-weight: 600; }

/* == 19.4 Cardul „Pe scurt" ============================================== */
.facts {
  margin-bottom: 36px;
  padding: 26px 28px 8px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fbfcfe;
}
.facts__title {
  margin-bottom: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.facts__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 0;
}
.facts__row { padding-bottom: 18px; }
.facts__row dt {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.facts__row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
}

/* == 19.5 Layout + cuprins =============================================== */
.article { padding-block: 44px 12px; }
.article__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 64px;
  align-items: start;
}
.article__main { min-width: 0; }

.article__lede { margin-bottom: 34px; }
.article__lede p {
  font-size: 18px;
  line-height: 1.68;
  color: var(--body-alt);
}
.article__lede p + p { margin-top: 15px; }
.article__lede strong { color: var(--navy); font-weight: 600; }

/* cuprins lateral, cu șină verticală */
.toc-rail { position: relative; }
.toc-rail__title {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.toc-rail__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--line);
}
.toc-rail__list a {
  display: block;
  padding: 8px 0 8px 16px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.toc-rail__list a:hover { color: var(--navy); }
.toc-rail__list a.is-current {
  border-left-color: var(--blue);
  color: var(--navy);
  font-weight: 600;
}

/* cuprins pliabil, pentru mobil */
.toc-inline {
  display: none;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.toc-inline > summary {
  padding: 14px 18px;
  background: var(--wash);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.toc-inline > summary::-webkit-details-marker { display: none; }
.toc-inline > summary::after {
  content: "";
  float: right;
  width: 7px; height: 7px;
  margin-top: 5px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.toc-inline[open] > summary::after { transform: rotate(-135deg); }
.toc-inline ol {
  margin: 0;
  padding: 14px 18px 18px 36px;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
}
.toc-inline a { color: var(--body-ink); }

/* == 19.6 Tipografie ===================================================== */
.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-ink);
}
.prose__section {
  counter-increment: sec;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose__section + .prose__section {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.prose { counter-reset: sec; }

.prose h2 {
  position: relative;
  margin-bottom: 18px;
  padding-top: 4px;
  font-size: clamp(22px, 2.5vw, 29px);
  line-height: 1.26;
  letter-spacing: -.4px;
  color: var(--navy);
}
.prose h2::before {
  content: counter(sec, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
}
.prose h3 {
  margin: 30px 0 10px;
  font-size: 18.5px;
  letter-spacing: -.2px;
  color: var(--navy);
}
.prose p { margin-bottom: 17px; max-width: 68ch; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose em { color: var(--body-alt); }
.prose a {
  color: #2a86ad;
  border-bottom: 1px solid rgba(42, 134, 173, .32);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.prose a:hover { color: var(--navy); border-bottom-color: currentColor; }
.prose ul, .prose ol { margin: 0 0 18px; max-width: 68ch; }

/* == 19.7 Tabele ========================================================= */
.table-scroll {
  margin: 26px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.prose table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.55;
}
.prose thead th {
  padding: 13px 18px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: left;
  white-space: nowrap;
}
.prose tbody th,
.prose tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid #f0f3f8;
  text-align: left;
  vertical-align: top;
}
.prose tbody th {
  width: 28%;
  font-weight: 600;
  color: var(--navy);
}
.prose tbody tr:last-child th,
.prose tbody tr:last-child td { border-bottom: 0; }
.prose tbody tr:hover th,
.prose tbody tr:hover td { background: #fcfdfe; }

/* == 19.8 Callout-uri ==================================================== */
.callout {
  position: relative;
  margin: 28px 0;
  padding: 22px 26px 22px 62px;
  background: #f7fafd;
  border: 1px solid #e3ecf5;
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  line-height: 1.68;
}
.callout::before {
  content: "i";
  position: absolute;
  left: 22px; top: 22px;
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.callout p { margin: 0; max-width: none; }
.callout p + p { margin-top: 11px; }
.callout strong { color: var(--navy); }

.callout--warn {
  background: #fff8f4;
  border-color: #ffe0cc;
}
.callout--warn::before {
  content: "!";
  background: var(--accent);
  font-style: normal;
}

/* == 19.9 Liste ========================================================== */
.prose__section > ul:not([class]) { padding-left: 0; list-style: none; }
.prose__section > ul:not([class]) > li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 22px;
}
.prose__section > ul:not([class]) > li::before {
  content: "";
  position: absolute;
  left: 2px; top: .72em;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.checklist { padding-left: 0; list-style: none; }
.checklist li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 32px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 20px; height: 20px;
  background: rgba(64, 179, 228, .13);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px; top: .62em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.numlist, .steps {
  padding-left: 0;
  list-style: none;
  counter-reset: n;
}
.numlist li, .steps > li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 44px;
  counter-increment: n;
}
.numlist li::before, .steps > li::before {
  content: counter(n);
  position: absolute;
  left: 0; top: -.05em;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  background: #fff;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}
.steps--major > li { margin-bottom: 30px; padding-left: 52px; }
.steps--major > li::before {
  width: 34px; height: 34px;
  background: var(--blue);
  border-color: var(--blue);
  font-size: 14px;
  color: #fff;
}
.steps--major > li > h3 { margin: 3px 0 8px; }

/* == 19.10 Surse, disclaimer, autor ====================================== */
.sources { margin: 0; padding-left: 0; list-style: none; counter-reset: s; }
.sources li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 34px;
  counter-increment: s;
  font-size: 14.5px;
  line-height: 1.6;
}
.sources li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: .18em;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--wash);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}
.sources a { color: #2a86ad; border-bottom: 1px solid rgba(42, 134, 173, .28); }
.sources a:hover { color: var(--navy); }
.sources .src-host {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #a2a9b8;
}

.disclaimer {
  margin-top: 40px;
  padding: 24px 26px;
  background: var(--wash);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}
.disclaimer p { margin: 0; max-width: none; }
.disclaimer strong { color: var(--navy); }

.author-box {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.author-box__avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.author-box__name {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.author-box__text {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.author-box__text a { color: #2a86ad; }

/* == 19.11 Sidebar ======================================================= */
.article__aside {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: grid;
  gap: 30px;
  max-height: calc(100vh - var(--header-h) - 44px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.aside-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.aside-card--service {
  background: var(--navy);
  border-color: transparent;
}
.aside-card__label {
  margin: 0 0 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cyan);
}
.aside-card__title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}
.aside-card__text {
  margin-bottom: 20px;
  max-width: none;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
}
.aside-card--service .btn { width: 100%; }
/* pe fundal navy, efectul „bloom" navy ar face butonul invizibil la hover */
.aside-card--service .btn--light::before { background: var(--cyan); }
.aside-card--service .btn--light:hover,
.aside-card--service .btn--light:focus-visible {
  color: var(--navy);
  border-color: var(--cyan);
}
.aside-card__link {
  margin: 13px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
}
.aside-card__link a { color: var(--cyan); }

/* == 19.12 Ghiduri conexe ================================================ */
.related { padding-block: 56px 8px; }
.related__title {
  margin-bottom: 24px;
  font-size: clamp(20px, 2.2vw, 26px);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.related-card {
  display: block;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--sh-card);
}
.related-card__eyebrow {
  margin: 0 0 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--blue);
}
.related-card__title {
  margin-bottom: 8px;
  font-size: 16.5px;
  line-height: 1.35;
}
.related-card__meta { margin: 0; font-size: 12px; color: #a2a9b8; }

/* == 19.13 Footer ======================================================== */
.site-footer__grid--4 { grid-template-columns: 1.4fr .8fr 1fr 1fr; }

/* == 19.14 Responsive ==================================================== */
@media (max-width: 1100px) {
  .article__grid { grid-template-columns: minmax(0, 1fr) 250px; gap: 44px; }
  .article-hero__grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; }
  .hub-featured { grid-template-columns: 1fr; }
  .hub-featured__media { min-height: 240px; }
  .hub-featured__media::after {
    background: linear-gradient(180deg, rgba(38, 34, 98, .15) 0%, rgba(38, 34, 98, .8) 100%);
  }
}

@media (max-width: 1024px) {
  .article__grid { grid-template-columns: 1fr; gap: 40px; }
  .article__aside {
    position: static;
    max-height: none;
    overflow: visible;
    grid-template-columns: 1fr;
  }
  .toc-rail { display: none; }
  .toc-inline { display: block; }
  .article-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .article-hero__media { aspect-ratio: 16 / 9; max-height: 320px; }
  .site-footer__grid--4 { grid-template-columns: 1fr 1fr; }
  .facts__list { gap: 0 24px; }
}

@media (max-width: 767px) {
  .article-hero { padding-block: 16px 30px; }
  .article-hero__dek { font-size: 16.5px; }
  .article-hero__meta { gap: 12px 18px; margin-top: 22px; padding-top: 20px; }
  .article { padding-block: 32px 8px; }
  .article__lede p { font-size: 16.5px; }

  .facts { padding: 22px 20px 4px; }
  .facts__list { grid-template-columns: 1fr; }

  .prose { font-size: 16.5px; }
  .prose__section + .prose__section { margin-top: 36px; padding-top: 32px; }
  .callout { padding: 18px 20px 18px 54px; font-size: 15px; }
  .callout::before { left: 18px; top: 19px; }
  .steps--major > li { padding-left: 44px; }
  .author-box { flex-direction: column; gap: 14px; padding: 22px; }

  .hub-hero { padding-block: 18px 40px; }
  .breadcrumbs--dark { padding-bottom: 24px; }
  .hub-featured__body { padding: 28px 24px 26px; }
  .hub-featured__steps { grid-template-columns: 1fr; gap: 9px; }
  .hub-featured__media { min-height: 190px; }
  .article-hero__media { aspect-ratio: 3 / 2; max-height: 240px; }
  .hub-body { padding-block: 36px 10px; }
  .hub-group + .hub-group { margin-top: 40px; }
  .hub-featured { margin-bottom: 40px; }
  .hub-featured { margin-bottom: 40px; }
  .hub-group__head { gap: 13px; }
  .guide-card__link { padding: 24px 22px 20px; }
  .related { padding-block: 40px 4px; }
  .site-footer__grid--4 { grid-template-columns: 1fr; }
}

/* == 19.15 Print ========================================================= */
@media print {
  .site-header, .nav-overlay, .progress, .article__aside, .cta,
  .related, .site-footer, .breadcrumbs, .toc-inline, .skip-link { display: none !important; }
  .article-hero { background: none; border: 0; padding-block: 0 16pt; }
  .article-hero__grid { display: block; }
  .article-hero__media { display: none; }
  .article__grid { display: block; }
  body { font-size: 11pt; color: #000; }
  .prose { font-size: 11pt; }
  .prose p, .prose ul, .prose ol { max-width: none; }
  .prose a { color: #000; border: 0; }
  .prose a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8.5pt; color: #555; }
  .table-scroll, .callout, .facts, .author-box { break-inside: avoid; }
  .prose__section { break-inside: avoid-page; }
}

/* ==========================================================================
   20. CONFORMITATE — documente legale, acord in formular, marcaje de completat
   ========================================================================== */

/* -- marcaj pentru datele pe care clientul trebuie sa le completeze ------
   Deliberat vizibil: daca pagina se publica necompletata, lipsa se vede
   imediat, in loc sa rămână o gaură legala silențioasă. */
.todo {
  background: #fff3cd;
  border-bottom: 2px solid #e0a800;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .92em;
  font-weight: 600;
  color: #7a5600;
}

/* -- hero de document legal (fara imagine) ------------------------------- */
.article-hero--plain { padding-block: 22px 38px; }
.article-hero--plain .article-hero__inner { max-width: 720px; }
.article-hero--plain .article-hero__meta { margin-top: 22px; padding-top: 20px; }

/* cuprins mereu vizibil pe paginile legale */
.toc-inline--always { display: block; }

/* -- acordul din formular ------------------------------------------------ */
.field--consent { margin-bottom: 18px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent a { color: var(--blue); border-bottom: 1px solid rgba(64, 179, 228, .35); }
.consent a:hover { color: var(--navy); }
.field--consent.has-error .consent { color: #c2334a; }
.field--consent.has-error .consent input { outline: 2px solid #e04f5f; outline-offset: 2px; }

.form__privacy {
  margin: 0 0 24px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #a2a9b8;
}
.form__privacy a { color: var(--blue); }

/* -- footer: identificare + linkuri legale ------------------------------- */
.site-footer__legal {
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.site-footer__idlabel {
  margin: 0 0 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.site-footer__idtext {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .68);
}
.site-footer__idtext a { color: rgba(255, 255, 255, .82); }
.site-footer__idtext a:hover { color: var(--cyan); }
.site-footer__idtext .todo {
  background: rgba(255, 243, 205, .16);
  border-bottom-color: rgba(224, 168, 0, .8);
  color: #ffe08a;
}

.site-footer__legalnav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.site-footer__legalnav a { transition: color .2s var(--ease); }
.site-footer__legalnav a:hover { color: var(--cyan); }

@media (max-width: 767px) {
  .site-footer__idtext { font-size: 12px; }
  .site-footer__legalnav { flex-direction: column; gap: 8px; }
}

@media print {
  .todo { background: none; border-bottom: 1px solid #000; color: #000; }
}

/* ==========================================================================
   21. Utilitare de spațiere
   Inlocuiesc atributele style= inline, care ar fi blocate de CSP
   (style-src 'self', fara 'unsafe-inline').
   ========================================================================== */
.u-mb-44 { margin-bottom: 44px; }
.site-footer__bottom--flush { border-top: 0; padding-top: 0; }

/* ==========================================================================
   22. LABS — pagina de prezentare a aplicațiilor
   ========================================================================== */

/* -- contorul din hero --------------------------------------------------- */
.labs-hero__aside {
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 34px 30px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
}
.labs-hero__count {
  margin: 0;
  font-family: var(--font-body);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(135deg, var(--cyan), #8ab4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--cyan);
}
.labs-hero__countlabel {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .4px;
  color: rgba(255, 255, 255, .72);
}

/* butonul din hero sta langa textul de meta, nu sub el */
.article-hero__meta .btn { margin-right: 4px; }

/* -- grila de produse ---------------------------------------------------- */
.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.labs-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.labs-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--sh-card);
}

.labs-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.labs-card__logo {
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}
.labs-card__cat {
  flex: 0 0 auto;
  padding: 5px 11px;
  background: rgba(64, 179, 228, .11);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #2a86ad;
  white-space: nowrap;
}

.labs-card__claim {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.labs-card__list {
  display: grid;
  gap: 10px;
  /* aliniate imediat sub text, nu la baza cardului: cu margin-top:auto
     listele s-ar alinia la baza si ar lasa spatii inegale deasupra */
  margin: 0;
  padding: 0;
  list-style: none;
}
.labs-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}
.labs-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .labs-hero__aside { padding: 26px; }
  .labs-hero__count { font-size: 58px; }
}

@media (max-width: 767px) {
  .labs-hero__aside {
    grid-auto-flow: column;
    align-items: center;
    justify-items: start;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
  }
  .labs-hero__count { font-size: 46px; }
  .labs-hero__countlabel { margin: 0; }
  .labs-hero__countlabel br { display: none; }
  .labs-card { padding: 24px 22px; }
  .labs-card__head { flex-wrap: wrap; gap: 10px; }
}
