/* ============================================================
   KINEVO — Stylesheet (consumes css/tokens.css only)
   No raw colors / sizes / shadows here. If you need a new value,
   add it to tokens.json -> tokens.css first, then reference here.

   Order:
   1. RESET / BASE
   2. UTILITIES (container, eyebrow, btn, check-list, reveal)
   3. MOLECULE: header
   4. MOLECULE: hero
   5. MOLECULE: banner   (NEW — cyan contact strip)
   6. MOLECULE: hero_selector (NEW — replaces static services)
   7. SECTION: despre
   8. SECTION: servicii  (kept as supporting grid)
   9. SECTION: beneficii
  10. MOLECULE: team_card
  11. SECTION: recenzii
  12. SECTION: contact + form
  13. MOLECULE: brand-strip (K-variant showcase)
  14. MOLECULE: footer
  15. RESPONSIVE OVERRIDES
   ============================================================ */

/* ===== 1. RESET / BASE ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  /* Snap only when the universal slider (#tratam) is near — proximity, not mandatory */
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }

img, picture, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--d-fast) var(--ease-out); }
a:hover { color: var(--c-primary-soft); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--c-ink);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 .5em;
}

h1 { font-size: var(--fs-5xl); font-weight: var(--fw-black); }
h2 { font-size: var(--fs-4xl); font-weight: var(--fw-bold); }
h3 { font-size: var(--fs-xl);  font-weight: var(--fw-bold); }
p  { margin: 0 0 1em; color: var(--c-ink-muted); }

/* ===== 2. UTILITIES ===== */
.container {
  width: min(var(--container-max), var(--container-w));
  margin-inline: auto;
}

.eyebrow,
.hero__eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-primary-soft);
  margin-bottom: var(--s-4);
  padding: var(--s-1) var(--s-3);
  background: var(--c-bg-tint);
  border-radius: var(--r-pill);
}
.eyebrow--accent {
  background: var(--c-success);
  color: var(--c-ink);
}

.text-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__accent {
  color: var(--c-banner-bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  border-radius: var(--m-btn-radius);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-normal);
  border: 2px solid transparent;
  transition:
    transform var(--d-fast) var(--ease-out),
    box-shadow var(--d-fast) var(--ease-out),
    background var(--d-fast) var(--ease-out),
    color var(--d-fast) var(--ease-out);
  text-align: center;
  white-space: nowrap;
}
.btn--lg    { padding: var(--s-4) var(--s-8); font-size: var(--fs-base); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--m-btn-primary-bg);
  color: var(--m-btn-primary-ink);
  box-shadow: var(--sh-md);
}
.btn--primary:hover {
  background: var(--m-btn-primary-hover);
  color: var(--m-btn-primary-ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--m-btn-ghost-ink);
  border-color: var(--m-btn-ghost-border);
}
.btn--ghost:hover {
  background: var(--m-btn-ghost-border);
  color: var(--c-bg);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 var(--s-8);
  display: grid;
  gap: var(--s-3);
}
.check-list li {
  position: relative;
  padding-left: var(--s-8);
  color: var(--c-ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 20px; height: 20px;
  background-color: var(--m-check-bg);
  border-radius: var(--r-pill);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--d-lazy) var(--ease-out), transform var(--d-lazy) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== 3. MOLECULE: HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--m-hdr-bg);
  backdrop-filter: var(--m-hdr-blur);
  -webkit-backdrop-filter: var(--m-hdr-blur);
  border-bottom: 1px solid transparent;
  transition:
    top var(--d-normal) var(--ease-out),
    box-shadow var(--d-normal) var(--ease-out),
    border-color var(--d-normal) var(--ease-out),
    background var(--d-normal) var(--ease-out);
  will-change: top;
}
.header.is-scrolled {
  box-shadow: var(--sh-sm);
  border-bottom-color: var(--c-line);
  background: var(--m-hdr-bg-scrolled);
}
.header.is-hidden {
  /* Shift via `top` instead of transform — transform on a sticky parent creates a
     containing block for `position: fixed` descendants (the mobile nav), which would
     break nav positioning. `top` shift has no such side-effect. */
  top: calc(-1 * var(--m-hdr-h) - 4px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--m-hdr-h);
  gap: var(--s-4);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--c-ink);
}
.header__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: var(--lh-tight);
}
.header__brand-name {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-lg);
  letter-spacing: var(--ls-wide);
  color: var(--c-primary);
}
.header__brand-tagline {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--s-6);
}
.nav__link {
  font-family: var(--ff-display);
  font-weight: var(--fw-medium);
  color: var(--c-ink);
  font-size: var(--fs-sm);
  position: relative;
  padding: var(--s-1) 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-primary-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-normal) var(--ease-out);
}
.nav__link:hover { color: var(--c-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta { padding: var(--s-2) var(--s-5); font-size: var(--fs-sm); }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--s-2);
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition:
    transform var(--d-normal) var(--ease-out),
    opacity var(--d-fast) var(--ease-out);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 3b. NAV: active page state ===== */
.nav__link.is-active {
  color: var(--c-raw-albastru-calm);
}
.nav__link.is-active::after {
  transform: scaleX(1);
  background: var(--c-raw-albastru-calm);
}

/* ===== 3c. MOLECULE: PAGE-HERO (secondary hero for sub-pages) ===== */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--s-12)) 0 var(--s-12);
  color: var(--c-bg);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08) brightness(0.85);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 25% 30%, rgba(30, 144, 255, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, rgba(11, 25, 45, 0.92) 0%, rgba(11, 61, 145, 0.72) 50%, rgba(11, 25, 45, 0.95) 100%);
  z-index: -1;
}
.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}
.page-hero__title,
.page-hero__sub { max-width: 720px; }
.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-bg);
  padding: var(--s-1) var(--s-3);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  color: var(--c-bg);
  margin: var(--s-1) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.page-hero__sub { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); }
.page-hero__sub {
  font-size: var(--fs-lg);
  color: var(--c-white-85);
  margin: 0;
  line-height: var(--lh-relaxed);
}
.page-hero__crumbs {
  margin-top: var(--s-4);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-white-85);
}
.page-hero__crumbs a { color: var(--c-white-85); }
.page-hero__crumbs a:hover { color: var(--c-bg); }
.page-hero__crumbs .sep { opacity: .5; margin: 0 var(--s-2); }

@media (max-width: 760px) {
  .page-hero { min-height: 48vh; padding: calc(var(--header-h) + var(--s-8)) 0 var(--s-8); }
  .page-hero__title { font-size: var(--fs-4xl); }
  .page-hero__sub { font-size: var(--fs-base); }
}

/* ===== 4. MOLECULE: HERO ===== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* Full-viewport hero, content + banner stacked */
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--header-h) 0 0;
  display: flex;
  flex-direction: column;
  background: var(--c-ink);
}
.hero .hero__inner {
  flex: 1 1 auto;
  position: relative;
  z-index: var(--z-elevated);
}
.hero .banner {
  flex-shrink: 0;
  position: relative;
  z-index: var(--z-elevated);
}
/* Full-bleed background photo + dark overlay for text readability */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: var(--z-base);
}
.hero__bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-bg-zoom 16s var(--ease-out) infinite alternate;
}
@keyframes hero-bg-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 25, 45, 0.78) 0%, rgba(11, 61, 145, 0.55) 50%, rgba(11, 25, 45, 0.85) 100%);
}
/* Hero text colors for dark bg */
.hero--bg .hero__eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--c-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--bg .hero__title { color: var(--c-bg); }
.hero--bg .hero__sub { color: var(--c-white-85); }
/* Ghost button on dark hero — white border + text, inverts on hover */
.hero--bg .btn--ghost {
  color: var(--c-bg);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero--bg .btn--ghost:hover {
  background: var(--c-bg);
  color: var(--c-primary);
  border-color: var(--c-bg);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image:
    url("../images/k-knee-blue.png"),
    url("../images/k-hand-blue.png"),
    url("../images/k-foot-blue.png"),
    url("../images/k-elbow-blue.png");
  background-repeat: no-repeat;
  background-position: 6% 12%, 88% 18%, 14% 88%, 80% 78%;
  background-size: 180px, 160px, 160px, 150px;
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--s-10);
  padding-bottom: var(--s-10);
}
.hero__content { max-width: 640px; }
.hero__title { margin: var(--s-2) 0 var(--s-4); }
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--c-ink-muted);
  max-width: 56ch;
  margin-bottom: var(--s-8);
}
.hero__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ===== 5. MOLECULE: BANNER (exact match design.jpg) ===== */
.banner {
  background: var(--m-banner-bg);
  color: var(--m-banner-ink);
  position: relative;
  padding: 0;
  overflow: visible;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  min-height: 52px;
  padding: var(--s-1) 0;
  position: relative;
}
.banner__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-6);
  flex: 1;
}
.banner__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--m-banner-ink);
  font-family: var(--ff-display);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
}
.banner__item:hover { color: var(--c-primary); opacity: .8; }
/* Icons: simple stroke glyphs inline, small (matches design.jpg proportions) */
.banner__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--m-banner-ink);
}
.banner__icon svg { width: 100%; height: 100%; }
/* K logo right — slightly larger than strip height, extends vertically */
.banner__logo {
  width: 72px;
  height: 72px;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin: calc(-1 * var(--s-3)) 0;
  border-radius: 0;
  box-shadow: none;
}
.banner__logo img { width: 100%; height: 100%; object-fit: contain; }

/* ===== 6. MOLECULE: HERO_SELECTOR ===== */
.section--no-pad-b { padding-bottom: 0; }

.hero-selector { margin-top: 0; }
.hero-selector--bleed {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
}
.hs {
  position: relative;
  border-radius: var(--m-hs-container-radius);
  overflow: hidden;
  box-shadow: var(--m-hs-container-shadow);
  background: var(--c-ink);
  isolation: isolate;
}
.hs--hero {
  border-radius: 0;
  box-shadow: none;
  /* The entire widget (stage + progress + controllers) = 100vh */
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}
.hs__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 480px;
}
.hs--hero .hs__stage {
  aspect-ratio: auto;
  min-height: 0;
  flex: 1 1 auto;
}
.hs--hero .hs__progress,
.hs--hero .hs__controllers-wrap {
  flex-shrink: 0;
}
.hs__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-slow) var(--ease-in-out);
}
.hs__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hs__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
  filter: saturate(1.15) contrast(1.08) brightness(0.85);
}
.hs__slide.is-active .hs__bg {
  transform: scale(1);
}
.hs__tint {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hs__overlay {
  position: absolute;
  inset: 0;
  background:
    var(--m-hs-overlay-grad),
    linear-gradient(135deg, var(--c-primary-25), transparent 55%);
  pointer-events: none;
}
.hs__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  z-index: var(--z-elevated);
  pointer-events: none;
}
.hs__content-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--s-8) clamp(var(--s-6), 5vw, var(--s-12));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 32%);
  gap: var(--s-6);
  align-items: end;
  pointer-events: auto;
}
.hs__equip {
  align-self: end;
  background: var(--m-hs-equip-glass-bg);
  backdrop-filter: var(--m-hs-equip-glass-blur);
  -webkit-backdrop-filter: var(--m-hs-equip-glass-blur);
  border: 1px solid var(--m-hs-equip-glass-border);
  border-radius: var(--m-hs-equip-card-radius);
  padding: 0;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  margin-inline-start: auto;
  overflow: hidden;
}
.hs__equip-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hs__equip-tags {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  z-index: var(--z-elevated);
}
.hs__equip-tag {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  line-height: 1.6;
}
.hs__equip-tag--primary {
  background: var(--m-hs-equip-tag-primary-bg);
  color: var(--m-hs-equip-tag-primary-ink);
}
.hs__equip-tag--secondary {
  background: var(--m-hs-equip-tag-secondary-bg);
  color: var(--m-hs-equip-tag-secondary-ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hs__equip-body {
  background: var(--m-hs-equip-body-bg);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  min-width: 0;
}
.hs__equip-name {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--m-hs-equip-name-ink);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-normal);
  margin: 0;
}
.hs__equip-desc {
  font-size: var(--fs-xs);
  color: var(--m-hs-equip-desc-ink);
  line-height: var(--lh-snug);
  margin: 0;
}
.hs__text {
  align-self: end;
  background: var(--m-hs-text-bg);
  backdrop-filter: var(--m-hs-text-blur);
  -webkit-backdrop-filter: var(--m-hs-text-blur);
  border: 1px solid var(--m-hs-text-border);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 640px;
  box-shadow: var(--sh-md);
}
.hs__eyebrow {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--m-hs-text-eyebrow-ink);
}
.hs__title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--m-hs-text-ink);
  margin: 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.hs__desc {
  font-size: var(--fs-base);
  color: var(--m-hs-text-ink-muted);
  margin: 0;
  line-height: var(--lh-relaxed);
}
.hs__cta {
  margin-top: var(--s-3);
  align-self: flex-start;
}
/* Eye toggle — visible only on mobile to reveal the equip card as modal */
.hs__equip-eye {
  display: none;
  position: absolute;
  top: calc(var(--m-hdr-h) + var(--s-4));
  right: var(--s-4);
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-white-25);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  color: var(--c-bg);
  z-index: var(--z-overlay);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform var(--d-fast) var(--ease-out), background var(--d-fast) var(--ease-out);
}
.hs__equip-eye:hover { transform: scale(1.08); background: rgba(255, 255, 255, 0.28); }
.hs__equip-eye svg { width: 22px; height: 22px; }
.hs__equip-eye[aria-expanded="true"] {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.hs__equip-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 45, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  opacity: 0;
  transition: opacity var(--d-normal) var(--ease-out);
}
.hs.is-equip-open .hs__equip-backdrop {
  display: block;
  opacity: 1;
}

/* Modal equip — separate node above the backdrop, populated by JS on open.
   Desktop: hidden (the in-slide equip card is shown instead).
   Mobile : shown when .hs.is-equip-open is set. */
.hs__equip-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 360px);
  max-width: 360px;
  background: var(--c-bg);
  border-radius: var(--m-hs-equip-card-radius);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  z-index: calc(var(--z-modal) + 10);
  flex-direction: column;
}
.hs__equip-modal .hs__equip-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hs__equip-modal .hs__equip-body {
  background: var(--c-bg);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.hs__equip-modal .hs__equip-name {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  line-height: var(--lh-tight);
  margin: 0;
}
.hs__equip-modal .hs__equip-desc {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
  margin: 0;
}

.hs__controllers-wrap {
  background: var(--m-hs-ctrl-bg);
  width: 100%;
}
.hs__controllers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  max-width: 1400px;
  margin-inline: auto;
}
.hs__ctrl {
  background: transparent;
  border: 0;
  padding: var(--s-4) var(--s-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: var(--m-hs-ctrl-inactive-ink);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-align: center;
  cursor: pointer;
  transition: background var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
  position: relative;
}
.hs__ctrl::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--d-normal) var(--ease-out);
}
.hs__ctrl:hover { color: var(--c-primary); background: var(--c-bg-soft); }
.hs__ctrl.is-active {
  color: var(--c-primary);
  background: var(--c-bg-tint);
}
.hs__ctrl.is-active::after { transform: scaleX(1); }
.hs__ctrl img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform var(--d-normal) var(--ease-spring);
}
.hs__ctrl:hover img { transform: scale(1.1); }
.hs__ctrl.is-active img { transform: scale(1.05); }
.hs__ctrl-label {
  display: block;
  line-height: var(--lh-tight);
}
.hs__progress {
  height: 3px;
  background: var(--c-line);
  position: relative;
}
.hs__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--grad-brand);
  transition: width var(--d-instant) var(--ease-linear);
}
.hs__progress-bar.is-running { animation: hs-progress 6s var(--ease-linear) forwards; }
@keyframes hs-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================================
   HS variant: SERVICES STEPPER (3-step tabbed selector)
   Reuses .hs molecule (stage + controllers + progress + autoplay)
   but content panel renders bullets / procedure cards instead of
   the photo + equip card overlay used by .hs--hero on ce-tratam.
   ============================================================ */
.hs--services {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
  margin-top: var(--s-8);
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hs--services .hs__progress { order: 1; }
.hs--services .hs__controllers-wrap { order: 2; }
.hs--services .hs__stage { order: 3; }

/* Wider progress animation to match longer autoplay (10s) */
.hs--services .hs__progress-bar.is-running {
  animation-duration: 10s;
}

/* 3-column controllers (vs 8 on hero).
   - minmax(0, 1fr) keeps tracks equal even when a label like
     "Masaj terapeutic" would otherwise expand its auto-min track.
   - Force display: grid on small screens too: the base .hs__controllers
     switches to display:flex + width:max-content under 480px so
     HeroSelector's 7 zones can scroll horizontally, but we only have
     3 tabs which fit comfortably without scroll. */
.hs--services .hs__controllers--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  max-width: none;
}
.hs--services .hs__controllers--3 .hs__ctrl-label {
  white-space: normal;
  line-height: var(--lh-tight);
  hyphens: auto;
}

/* Stage: only the active slide is in flow (drives height). Inactive
   slides are absolutely positioned over it for cross-fade, but do not
   contribute to stage height — so Kineto/Masaj don't inherit the
   Fizioterapie slide's height. */
.hs--services .hs__stage {
  position: relative;
  aspect-ratio: auto;
  min-height: 0;
  display: block;
  background: var(--grad-hero);
}
.hs--services .hs__slide--service {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--d-normal) var(--ease-out),
              transform var(--d-normal) var(--ease-out);
  padding: clamp(var(--s-6), 4vw, var(--s-12));
}
.hs--services .hs__slide--service.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Content shell — override hero's absolute/bottom-aligned layout */
.hs--services .hs__content--service {
  position: relative;
  inset: auto;
  display: block;
  align-items: stretch;
  pointer-events: auto;
}
.hs--services .hs__content-inner--service {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(var(--s-6), 4vw, var(--s-10));
  align-items: start;
  max-width: none;
  margin-inline: 0;
}

/* Text column — no glass card, sits directly on the soft gradient */
.hs--services .hs__text--service {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  max-width: none;
  gap: var(--s-4);
  align-self: start;
}
.hs--services .hs__text--service .hs__eyebrow { color: var(--c-primary-soft); }
.hs--services .hs__text--service .hs__title   { color: var(--c-ink); font-size: var(--fs-3xl); }
.hs--services .hs__text--service .hs__desc    { color: var(--c-ink-muted); font-size: var(--fs-md); }

/* Detail panel — bullets or procedure cards */
.hs--services .hs__detail {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(var(--s-5), 3vw, var(--s-8));
  box-shadow: var(--sh-sm);
  min-width: 0;
}
.hs__detail-heading {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--c-primary);
  margin: 0 0 var(--s-4) 0;
}
.hs__detail .check-list {
  margin: 0;
  gap: var(--s-3);
}
.hs__detail .check-list li {
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}

/* Procedures compact variant — single column inside detail panel. */
.hs--services .procedures-grid--compact {
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: 0;
}
.hs--services .procedures-grid--compact .procedure-card {
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg-soft);
  border-left: 0;
}
.hs--services .procedures-grid--compact .procedure-card h4 {
  font-size: var(--fs-base);
  color: var(--c-primary);
  margin-bottom: var(--s-1);
}
.hs--services .procedures-grid--compact .procedure-card p {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
}

/* Tablet & below — stack text above detail (2-col cramped under ~960px) */
@media (max-width: 960px) {
  .hs--services .hs__content-inner--service {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

/* Phone tweaks */
@media (max-width: 760px) {
  .hs--services .hs__slide--service { padding: var(--s-5); }
  .hs--services .hs__content-inner--service { gap: var(--s-5); }
  .hs--services .hs__text--service .hs__title { font-size: var(--fs-2xl); }
  .hs--services .hs__detail { padding: var(--s-5); }
  .hs__controllers--3 .hs__ctrl { padding: var(--s-3) var(--s-1); }
  .hs__controllers--3 .hs__ctrl img { width: 36px; height: 36px; }
  .hs__controllers--3 .hs__ctrl-label { font-size: 0.7rem; }
}

/* Services-teaser section sits in a normal block-flow page; cancel
   the global .section min-height: 100vh so it scales to content. */
#servicii-teaser.section {
  min-height: 0;
  display: block;
  padding: clamp(var(--s-12), 6vw, var(--s-20)) 0;
}

/* ===== 7. SECTION: DESPRE ===== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  /* Full-viewport section, content centered */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--alt { background: var(--c-bg-soft); }
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(var(--s-8), 4vw, var(--s-12));
}
.section__title { margin: var(--s-1) 0 var(--s-3); }
.section__lead {
  font-size: var(--fs-lg);
  max-width: 60ch;
}
.section__head .section__lead { margin-inline: auto; }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-8), 5vw, var(--s-16));
  align-items: center;
}
.media-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--c-bg);
  aspect-ratio: 4 / 5;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--s-8);
  background: var(--c-bg);
}

/* ===== SECTION: ABOUT (full-bleed K on left, text right) =====
   Desktop: 50/50 split. Photo bleeds to LEFT edge of viewport, full 100vh,
   clipped to a K-shape. Text content centered vertically on the right.
   Mobile : photo becomes a full-bleed background, text overlays with shade.
*/
.section--about {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}
/* Small breathing space after page-hero before the K-clipped about section */
.page-hero + .section--about { margin-top: var(--s-10); }
/* Spacer between the full-screen home hero and the about teaser (home only) */
.hero-about-spacer {
  height: var(--s-12);
  width: 100%;
  background: var(--c-bg);
}
@media (max-width: 760px) {
  .hero-about-spacer { height: var(--s-8); }
}
.about__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* K-shape polygon: left vertical bar + two arms meeting at right joint.
     Desktop: bar 40% wide; mobile overridden to 30% in the responsive block. */
  --k-clip: polygon(0% 0%, 100% 0%, 40% 32%, 40% 68%, 100% 100%, 0% 100%);
  clip-path: var(--k-clip);
  -webkit-clip-path: var(--k-clip);
}
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
}
.about__media:hover .about__photo { transform: scale(1.04); }
.about__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.25), transparent 55%, rgba(11, 25, 45, 0.45) 100%);
  pointer-events: none;
}
.about__tag {
  position: absolute;
  left: var(--s-8);
  bottom: var(--s-10);
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-bg);
  padding: var(--s-2) var(--s-4);
  background: var(--c-primary);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  z-index: var(--z-elevated);
}
.about__content {
  display: flex;
  align-items: center;
  padding: var(--header-h) clamp(var(--s-6), 5vw, var(--s-12)) var(--s-8);
}
.about__content-inner {
  max-width: 560px;
}
.about__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.page-hero__actions { margin-bottom: var(--s-4); }

/* ===== 8. SECTION: SERVICII (supporting grid below hero selector) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
}
.service-card {
  background: var(--m-svc-bg);
  padding: var(--s-6);
  border-radius: var(--m-svc-radius);
  border: 1px solid var(--m-svc-border);
  transition:
    transform var(--d-normal) var(--ease-out),
    box-shadow var(--d-normal) var(--ease-out),
    border-color var(--d-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-normal) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--m-svc-shadow-hover);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--m-svc-icon-bg);
  color: var(--m-svc-icon-fg);
  margin-bottom: var(--s-5);
  transition:
    background var(--d-normal) var(--ease-out),
    color var(--d-normal) var(--ease-out);
}
.service-card__icon svg,
.service-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.service-card:hover .service-card__icon {
  background: var(--c-primary);
  color: var(--c-bg);
}
.service-card h3 { margin-bottom: var(--s-2); }
.service-card p { margin: 0; font-size: var(--fs-sm); }

/* ===== 8b. SECTION: AFECȚIUNI ===== */
.conditions__search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto var(--s-6);
}
.conditions__search-icon {
  position: absolute;
  left: var(--s-4);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--c-ink-muted);
  pointer-events: none;
  display: grid;
  place-items: center;
}
.conditions__search-icon svg { width: 100%; height: 100%; }
.conditions__search {
  width: 100%;
  font: inherit;
  font-size: var(--fs-sm);
  padding: var(--s-3) var(--s-12) var(--s-3) calc(var(--s-4) + 28px);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  background: var(--c-bg);
  color: var(--c-ink);
  transition: border-color var(--d-fast) var(--ease-out), box-shadow var(--d-fast) var(--ease-out);
}
.conditions__search::placeholder { color: var(--c-ink-muted); }
.conditions__search::-webkit-search-cancel-button,
.conditions__search::-webkit-search-decoration { -webkit-appearance: none; }
.conditions__search:focus {
  outline: none;
  border-color: var(--c-raw-albastru-calm);
  box-shadow: var(--sh-ring);
}
.conditions__search-clear {
  position: absolute;
  right: var(--s-3);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: var(--r-pill);
  background: var(--c-bg-tint);
  border: 0;
  color: var(--c-ink-muted);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
}
.conditions__search-clear svg { width: 14px; height: 14px; }
.conditions__search-clear:hover {
  background: var(--c-raw-albastru-calm);
  color: var(--c-bg);
}
.conditions__search-wrap.has-value .conditions__search-clear { display: flex; }
.conditions__empty {
  text-align: center;
  color: var(--c-ink-muted);
  font-size: var(--fs-sm);
  margin: var(--s-4) auto var(--s-2);
  max-width: 480px;
}
.conditions__empty a {
  color: var(--c-raw-albastru-calm);
  font-weight: var(--fw-semibold);
}
.condition.is-hidden { display: none; }

.conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.condition {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  padding-right: 88px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--d-normal) var(--ease-out),
    border-color var(--d-normal) var(--ease-out),
    box-shadow var(--d-normal) var(--ease-out);
}
/* K-variant icon per body region — bottom-right decoration on card.
   All variants use the verde-proaspat icon family for a consistent
   brand accent; per-category meaning comes from the tag pill, not
   from icon color. */
.condition::after {
  content: "";
  position: absolute;
  bottom: var(--s-4);
  right: var(--s-4);
  width: 54px;
  height: 54px;
  background-image: var(--k-img, url("../images/k-knee-green.png"));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.condition--coloana   { --k-img: url("../images/k-elbow-green.png"); }
.condition--knee      { --k-img: url("../images/k-knee-green.png"); }
.condition--hand      { --k-img: url("../images/k-hand-green.png"); }
.condition--foot      { --k-img: url("../images/k-foot-green.png"); }
.condition--umar      { --k-img: url("../images/k-elbow-green.png"); }
.condition--elbow     { --k-img: url("../images/k-knee-green.png"); }
.condition--pediatric { --k-img: url("../images/k-hand-green.png"); }
.condition--sportiv   { --k-img: url("../images/k-foot-green.png"); }
.condition:hover {
  transform: translateY(-4px);
  border-color: var(--c-raw-albastru-calm);
  box-shadow: var(--sh-md);
}
.condition__region {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.66rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-raw-albastru-calm);
  padding: 3px var(--s-2);
  background: var(--c-bg-tint);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.condition__name {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  line-height: var(--lh-tight);
  margin: 0 0 var(--s-2);
}
.condition__desc {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
  margin: 0;
}
.conditions__note {
  margin: var(--s-6) auto 0;
  max-width: 560px;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
}
.conditions__note a {
  color: var(--c-raw-albastru-calm);
  font-weight: var(--fw-semibold);
}
.conditions__note a:hover { text-decoration: underline; }

@media (max-width: 1100px) { .conditions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  {
  .conditions { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .condition { padding: var(--s-4); padding-right: 60px; }
  .condition::after { width: 44px; height: 44px; top: var(--s-2); right: var(--s-2); }
}
@media (max-width: 420px)  {
  .conditions { grid-template-columns: 1fr; }
  .condition { padding-right: 76px; }
  .condition::after { width: 56px; height: 56px; }
}

/* ===== 9. SECTION: BENEFICII ===== */
#beneficii {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#beneficii::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/background_hero_official.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(1.05) saturate(110%);
  transform: scale(1.15);
  z-index: -2;
}
#beneficii::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(245, 248, 252, 0.90) 100%);
  z-index: -1;
}

/* ===== 9b. TIMELINE (novachem pattern) ===== */
.timeline {
  display: flex;
  gap: clamp(var(--s-4), 3vw, var(--s-8));
  padding: var(--s-4) 0;
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--m-timeline-accent) 15%, var(--m-timeline-accent) 85%, transparent);
  z-index: 0;
  transform: translateY(-50%);
  opacity: .4;
}
.timeline__node {
  flex-shrink: 0;
  scroll-snap-align: center;
  background: transparent;
  border: 0;
  padding: var(--s-1);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
/* Avatar — circular container that holds the icon + badge */
.timeline__avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--r-pill);
  background: var(--c-bg);
  border: 2px solid var(--c-line);
  display: grid;
  place-items: center;
  transition:
    transform var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out),
    box-shadow var(--d-fast) var(--ease-out);
}
.timeline__node:hover .timeline__avatar {
  border-color: var(--m-timeline-accent);
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
}
.timeline__node.is-active .timeline__avatar {
  border-color: var(--m-timeline-accent);
  box-shadow: 0 0 0 4px rgba(146, 189, 71, 0.15), var(--sh-md);
}
.timeline__icon {
  width: 32px;
  height: 32px;
  color: var(--c-primary-soft);
  display: grid;
  place-items: center;
  transition: color var(--d-fast) var(--ease-out);
}
.timeline__icon svg { width: 100%; height: 100%; }
.timeline__node.is-active .timeline__icon { color: var(--m-timeline-accent); }
/* Number badge — notification-style, top-right of avatar */
.timeline__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: var(--r-pill);
  background: var(--c-primary);
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  font-size: 0.72rem;
  letter-spacing: var(--ls-wide);
  display: grid;
  place-items: center;
  border: 2px solid var(--c-bg);
  box-shadow: var(--sh-sm);
  transition: background var(--d-fast) var(--ease-out);
}
.timeline__node.is-active .timeline__badge {
  background: var(--m-timeline-accent);
}

.timeline-detail {
  margin-top: var(--s-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-10);
  padding: var(--s-8);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.timeline-detail__info { display: flex; flex-direction: column; }
.timeline-detail__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--c-bg-tint);
  color: var(--m-timeline-accent);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.timeline-detail__icon svg { width: 28px; height: 28px; }
.timeline-detail__pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--c-bg-tint);
  color: var(--c-primary-soft);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.timeline-detail__title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--c-ink);
  margin: 0 0 var(--s-3);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.timeline-detail__desc {
  font-size: var(--fs-base);
  color: var(--c-ink-muted);
  margin: 0 0 var(--s-6);
  line-height: var(--lh-relaxed);
}
.timeline-detail__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: auto;
}

.timeline-detail__specs {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.timeline-detail__specs-label {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-ink-muted);
}
.timeline-detail__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.timeline-detail__features li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--c-ink);
  font-size: var(--fs-sm);
}
.timeline-detail__features li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background-color: var(--m-timeline-accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}
.timeline-detail__progress {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.timeline-detail__progress-num {
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  margin-bottom: var(--s-2);
  display: block;
  letter-spacing: var(--ls-wide);
}
.timeline-detail__progress-bar {
  height: 3px;
  background: var(--c-line);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-detail__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--m-timeline-accent), var(--c-raw-albastru-calm));
  transition: width var(--d-slow) var(--ease-out);
}

/* Reveal animations — trigger on every re-render (innerHTML replaces nodes) */
@keyframes timeline-detail-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes timeline-feature-reveal {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes timeline-icon-pop {
  0%   { opacity: 0; transform: scale(0.6) rotate(-8deg); }
  60%  { transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.timeline-detail__icon    { animation: timeline-icon-pop 520ms var(--ease-spring) backwards; }
.timeline-detail__pill    { animation: timeline-detail-reveal 420ms var(--ease-out) backwards; animation-delay:  80ms; }
.timeline-detail__title   { animation: timeline-detail-reveal 480ms var(--ease-out) backwards; animation-delay: 140ms; }
.timeline-detail__desc    { animation: timeline-detail-reveal 480ms var(--ease-out) backwards; animation-delay: 220ms; }
.timeline-detail__actions { animation: timeline-detail-reveal 480ms var(--ease-out) backwards; animation-delay: 320ms; }
.timeline-detail__specs-label { animation: timeline-detail-reveal 400ms var(--ease-out) backwards; animation-delay: 100ms; }
.timeline-detail__features li {
  animation: timeline-feature-reveal 380ms var(--ease-out) backwards;
}
.timeline-detail__features li:nth-child(1) { animation-delay: 200ms; }
.timeline-detail__features li:nth-child(2) { animation-delay: 280ms; }
.timeline-detail__features li:nth-child(3) { animation-delay: 360ms; }
.timeline-detail__features li:nth-child(4) { animation-delay: 440ms; }
.timeline-detail__features li:nth-child(5) { animation-delay: 520ms; }
.timeline-detail__progress {
  animation: timeline-detail-reveal 420ms var(--ease-out) backwards;
  animation-delay: 540ms;
}

/* ===== 10. MOLECULE: TEAM_CARD ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
}
.team-card {
  background: var(--m-team-bg);
  padding: var(--s-6);
  border-radius: var(--m-team-radius);
  text-align: center;
  border: 1px solid var(--c-line);
  transition: transform var(--d-normal) var(--ease-out), box-shadow var(--d-normal) var(--ease-out);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.team-card__photo {
  width: 140px;
  height: 140px;
  margin: var(--s-2) auto var(--s-5);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
  background: var(--c-bg-tint);
  box-shadow: 0 0 0 4px var(--c-bg), 0 0 0 6px var(--c-line);
  transition: transform var(--d-normal) var(--ease-out), box-shadow var(--d-normal) var(--ease-out);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--d-slow) var(--ease-out);
}
.team-card:hover .team-card__photo {
  box-shadow: 0 0 0 4px var(--c-bg), 0 0 0 6px var(--c-raw-albastru-calm);
}
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card h3 { margin-bottom: var(--s-1); }
.team-card__role {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--m-team-role-ink);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin: 0 0 var(--s-4);
}
.team-card__bio { font-size: var(--fs-sm); margin: 0; }

/* ===== 10b. SECTION: PREȚURI ===== */
#preturi {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#preturi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/background_hero_official.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(1.05) saturate(110%);
  transform: scale(1.15);
  z-index: -2;
}
#preturi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(245, 248, 252, 0.92) 100%);
  z-index: -1;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.pricing__group {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--d-normal) var(--ease-out), box-shadow var(--d-normal) var(--ease-out);
}
.pricing__group:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.pricing__group--featured {
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.06), var(--c-bg));
  border-color: var(--c-raw-albastru-calm);
  box-shadow: var(--sh-sm);
}
.pricing__badge {
  position: absolute;
  top: -12px;
  right: var(--s-5);
  background: var(--c-raw-albastru-calm);
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.pricing__group-head {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--s-4);
}
.pricing__group-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--c-raw-albastru-calm);
  line-height: 1;
  letter-spacing: var(--ls-wide);
  flex-shrink: 0;
}
.pricing__group-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  margin: 0 0 var(--s-1);
  line-height: var(--lh-tight);
}
.pricing__group-sub {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  margin: 0;
  line-height: var(--lh-snug);
}
.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.pricing__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--c-line);
}
.pricing__row:last-child { border-bottom: 0; }
.pricing__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pricing__info strong {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  color: var(--c-ink);
  font-size: var(--fs-sm);
}
.pricing__info span {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
}
.pricing__amount {
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  color: var(--c-primary);
  font-size: var(--fs-lg);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
  text-align: right;
}
.pricing__amount small {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  color: var(--c-ink-muted);
  letter-spacing: var(--ls-wider);
  margin-left: 2px;
}
/* Discounted row: amount goes verde fresh, strikethrough goes roșu */
.pricing__amount:has(s) { color: var(--m-timeline-accent); }
.pricing__amount:has(s) small { color: var(--m-timeline-accent); opacity: .8; }
.pricing__amount s {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-raw-danger);
  font-weight: var(--fw-semibold);
  margin-top: 2px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--c-raw-danger);
}
.pricing__note {
  margin: var(--s-6) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  line-height: var(--lh-relaxed);
}

@media (max-width: 960px) {
  .pricing { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ===== 11. SECTION: RECENZII — Google/Facebook dashboard ===== */
.reviews-board {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
  padding: var(--s-6) var(--s-6) var(--s-8);
}
.reviews-board__header {
  border-bottom: 1px solid var(--c-line);
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-6);
}
.reviews-tabs {
  display: flex;
  gap: var(--s-6);
  border-bottom: 1px solid var(--c-line);
  margin: 0 0 var(--s-4);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.reviews-tab {
  background: transparent;
  border: 0;
  padding: var(--s-3) 0;
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  position: relative;
  transition: color var(--d-fast) var(--ease-out);
}
.reviews-tab:hover { color: var(--c-ink); }
.reviews-tab.is-active { color: var(--c-ink); }
.reviews-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
}
.reviews-tab__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-tab__icon svg { width: 100%; height: 100%; }

.reviews-stats {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.reviews-stats__label {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  font-size: var(--fs-base);
}
.reviews-stats__stars {
  color: var(--c-raw-star);
  letter-spacing: 2px;
  font-size: var(--fs-base);
}
.reviews-stats__score {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
}
.reviews-stats__sep {
  color: var(--c-ink-muted);
  opacity: .4;
}
.reviews-stats__count {
  color: var(--c-ink-muted);
  font-size: var(--fs-sm);
}
.reviews-stats__cta {
  margin-left: auto;
  padding: var(--s-2) var(--s-4);
  font-size: var(--fs-sm);
}

/* Masonry — CSS columns */
.reviews-masonry {
  column-count: 3;
  column-gap: var(--s-4);
}
@media (max-width: 960px) { .reviews-masonry { column-count: 2; } }
@media (max-width: 600px) { .reviews-masonry { column-count: 1; } }

.review-card {
  display: block;
  break-inside: avoid;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
  position: relative;
  transition: box-shadow var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
}
.review-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  position: relative;
  padding-right: 28px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--avatar-color, var(--c-raw-albastru-calm));
  color: var(--c-bg);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  position: relative;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: var(--r-pill);
  background: var(--m-timeline-accent);
  border: 2px solid var(--c-bg);
}
.review-card__name {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  font-size: var(--fs-sm);
  margin: 0;
}
.review-card__time {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
}
.review-card__source {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
}
.review-card__source svg { width: 100%; height: 100%; }
.review-card__stars {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}
.review-card__stars-glyphs {
  color: var(--c-raw-star);
  letter-spacing: 2px;
  font-size: var(--fs-sm);
}
.review-card__verified {
  width: 16px;
  height: 16px;
  border-radius: var(--r-pill);
  background: var(--c-raw-albastru-calm);
  color: var(--c-bg);
  display: inline-grid;
  place-items: center;
  font-size: 10px;
}
.review-card__text {
  font-size: var(--fs-sm);
  color: var(--c-ink);
  margin: 0;
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__more {
  display: inline-block;
  margin-top: var(--s-2);
  color: var(--c-ink-muted);
  font-size: var(--fs-xs);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.review-card__more:hover { color: var(--c-primary); }

/* Special summary card (AI rezumat) */
.review-card--summary {
  background: linear-gradient(135deg, rgba(30,144,255,.08), rgba(146,189,71,.08), rgba(64,224,208,.10));
  border-color: rgba(30,144,255,.18);
}
.review-card--summary .review-card__avatars {
  display: flex;
  align-items: center;
  margin-bottom: var(--s-3);
}
.review-card--summary .review-card__avatars > * {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-bg);
  overflow: hidden;
  background: var(--c-bg-tint);
  margin-left: -8px;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  color: var(--c-bg);
}
.review-card--summary .review-card__avatars > *:first-child { margin-left: 0; }
.review-card--summary .review-card__avatars img { width: 100%; height: 100%; object-fit: cover; }
.review-card--summary .review-card__name { font-size: var(--fs-base); }
.review-card--summary .review-card__text { -webkit-line-clamp: 5; }

/* ===== 10c. PRICE-TABLE (catalog complet) ===== */
.price-table {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.price-table thead {
  background: var(--c-bg-tint);
}
.price-table th {
  text-align: left;
  padding: var(--s-4) var(--s-5);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-ink-muted);
}
.price-table th.price-table__amount-h { text-align: right; }
.price-table td {
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--c-line);
  vertical-align: middle;
  color: var(--c-ink);
}
.price-table tbody tr:hover { background: rgba(30, 144, 255, 0.04); }
.price-table tr td:first-child strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}
.price-table__sub {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
}
.price-table__cat {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.66rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: 3px var(--s-2);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-table__cat--blue   { background: var(--c-bg-tint); color: var(--c-raw-albastru-calm); }
.price-table__cat--green  { background: rgba(146, 189, 71, 0.14); color: var(--m-timeline-accent); }
.price-table__cat--accent { background: rgba(64, 224, 208, 0.18); color: var(--c-primary); }
.price-table__amount {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  color: var(--c-primary);
  font-size: var(--fs-base);
  white-space: nowrap;
}
.price-table__amount--discount { color: var(--m-timeline-accent); }
.price-table__amount s {
  display: block;
  font-size: var(--fs-xs);
  color: var(--c-raw-danger);
  font-weight: var(--fw-semibold);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-top: 2px;
}
.price-table__highlight {
  background: linear-gradient(90deg, rgba(146, 189, 71, 0.06), transparent);
}
.price-table__highlight:hover { background: linear-gradient(90deg, rgba(146, 189, 71, 0.12), rgba(30, 144, 255, 0.05)); }
.price-table__note {
  margin: var(--s-5) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-relaxed);
}
.price-table__note strong { color: var(--c-ink); font-weight: var(--fw-semibold); }

@media (max-width: 760px) {
  .price-table th:nth-child(2),
  .price-table td:nth-child(2),
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) { display: none; }
  .price-table th, .price-table td { padding: var(--s-3); }
}

/* ===== 11b. SECTION: FAQ (native details/summary accordion) ===== */
.faq__container {
  max-width: 820px;
}
.faq__head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--d-fast) var(--ease-out), box-shadow var(--d-fast) var(--ease-out);
}
.faq__item:hover { border-color: var(--c-raw-albastru-calm); }
.faq__item[open] {
  border-color: var(--c-raw-albastru-calm);
  box-shadow: var(--sh-sm);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--c-ink);
  transition: color var(--d-fast) var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__item[open] .faq__q { color: var(--c-raw-albastru-calm); }
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-pill);
  background: var(--c-bg-tint);
  color: var(--c-raw-albastru-calm);
  flex-shrink: 0;
  position: relative;
  transition: background var(--d-fast) var(--ease-out), transform var(--d-normal) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--d-normal) var(--ease-out), opacity var(--d-fast) var(--ease-out);
}
.faq__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
  background: var(--c-raw-albastru-calm);
  color: var(--c-bg);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::after { opacity: 0; }
.faq__a {
  padding: 0 var(--s-5) var(--s-5);
  animation: faq-answer-reveal var(--d-normal) var(--ease-out);
}
.faq__a p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-relaxed);
}
.faq__a p strong { color: var(--c-ink); font-weight: var(--fw-semibold); }
.faq__a p a { color: var(--c-raw-albastru-calm); font-weight: var(--fw-medium); }
.faq__a p a:hover { text-decoration: underline; }
@keyframes faq-answer-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .faq__q { font-size: var(--fs-sm); padding: var(--s-3) var(--s-4); }
  .faq__a { padding: 0 var(--s-4) var(--s-4); }
  .faq__icon { width: 24px; height: 24px; }
}

/* ===== 12. SECTION: CONTACT + FORM ===== */
.section--contact { background: var(--grad-contact); }
/* Google Maps embed below contact form/info */
.contact-map {
  margin-top: var(--s-10);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-line);
  background: var(--c-bg);
  position: relative;
  aspect-ratio: 21 / 8;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) saturate(0.95);
  transition: filter var(--d-normal) var(--ease-out);
}
.contact-map:hover iframe {
  filter: grayscale(0) saturate(1);
}
@media (max-width: 760px) {
  .contact-map { aspect-ratio: 4 / 3; margin-top: var(--s-6); }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  gap: var(--s-5);
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.contact-list__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-bg-tint);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-list__icon svg { width: 22px; height: 22px; }
.contact-list strong {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--s-1);
  color: var(--c-ink);
}
.contact-list a {
  color: var(--c-primary);
  font-weight: var(--fw-medium);
}
.contact-list small {
  display: block;
  color: var(--c-ink-muted);
  font-size: var(--fs-xs);
  margin-top: var(--s-1);
}
.contact-form {
  background: var(--c-bg);
  padding: var(--s-8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  border: 1px solid var(--c-line);
}
.field { display: flex; flex-direction: column; gap: var(--s-1); }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--fs-sm);
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-bg);
  color: var(--c-ink);
  transition: border-color var(--d-fast) var(--ease-out), box-shadow var(--d-fast) var(--ease-out);
  resize: vertical;
  font-family: var(--ff-body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-primary-soft);
  box-shadow: var(--sh-ring);
}
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown) {
  border-color: var(--c-danger);
}
.form-note {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  margin: var(--s-3) 0 0;
  text-align: center;
}
.form-status {
  margin: var(--s-2) 0 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-align: center;
  min-height: 1.4em;
}
.form-status.is-success { color: var(--c-success); }
.form-status.is-error   { color: var(--c-danger); }

/* ===== 13. MOLECULE: BRAND-STRIP (K-variant showcase) ===== */
.brand-strip {
  background: var(--c-bg-soft);
  padding: var(--s-10) 0;
}
.brand-strip__head { text-align: center; margin-bottom: var(--s-6); }
.brand-strip__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-primary-soft);
}
.brand-strip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  align-items: center;
  justify-items: center;
}
.brand-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}
.brand-strip__img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform var(--d-normal) var(--ease-spring);
}
.brand-strip__item:hover .brand-strip__img { transform: translateY(-4px) rotate(-2deg); }
.brand-strip__label {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--c-ink);
  letter-spacing: var(--ls-wide);
}

/* ===== 13b. MOLECULE: CTA-BAND ===== */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(var(--s-12), 10vw, var(--s-20)) 0;
  text-align: center;
  color: var(--c-bg);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(1.05) saturate(110%);
  transform: scale(1.12);
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 25, 45, 0.82) 0%, rgba(11, 61, 145, 0.78) 50%, rgba(11, 25, 45, 0.88) 100%);
  z-index: -1;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  max-width: 720px;
  margin-inline: auto;
}
.cta-band__eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-bg);
  padding: var(--s-1) var(--s-3);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
}
.cta-band__title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--c-bg);
  margin: var(--s-2) 0 var(--s-1);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.cta-band__sub {
  font-size: var(--fs-lg);
  color: var(--c-white-85);
  margin: 0 0 var(--s-4);
  line-height: var(--lh-relaxed);
}
.cta-band__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
}
/* Ghost button on dark CTA — white border + text, inverts on hover */
.cta-band__phone {
  color: var(--c-bg);
  border-color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.cta-band__phone:hover {
  background: var(--c-bg);
  color: var(--c-primary);
  border-color: var(--c-bg);
}
.cta-band__phone svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .cta-band { padding: var(--s-12) 0; }
  .cta-band__title { font-size: var(--fs-3xl); }
  .cta-band__sub { font-size: var(--fs-base); }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }
}

/* ===== 13c. SECTION: BLOG ===== */
.blog-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--d-normal) var(--ease-out), box-shadow var(--d-normal) var(--ease-out), border-color var(--d-normal) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-raw-albastru-calm);
  box-shadow: var(--sh-md);
}
.blog-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.blog-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-bg-tint);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: inline-block;
  background: var(--c-raw-albastru-calm);
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-size: 0.66rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: 4px var(--s-3);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  z-index: 1;
}
.blog-card__cat--featured {
  background: var(--m-timeline-accent);
  color: var(--c-bg);
}
.blog-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
  letter-spacing: var(--ls-wide);
}
.blog-card__meta .blog-card__cat {
  position: static;
  box-shadow: none;
  padding: 2px var(--s-2);
}
.blog-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  margin: 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  margin: 0;
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-2);
}
.blog-card__author img {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  object-fit: cover;
}
.blog-card__author span {
  display: flex;
  flex-direction: column;
  line-height: var(--lh-tight);
}
.blog-card__author strong {
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  color: var(--c-ink);
}
.blog-card__author small {
  font-size: var(--fs-xs);
  color: var(--c-ink-muted);
}

/* Featured: large card with horizontal layout on desktop */
.blog-card--featured {
  margin-bottom: var(--s-8);
}
.blog-card--featured .blog-card__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.blog-card--featured .blog-card__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}
.blog-card--featured .blog-card__body {
  padding: clamp(var(--s-6), 4vw, var(--s-10));
  justify-content: center;
  gap: var(--s-4);
}
.blog-card--featured .blog-card__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.blog-card--featured .blog-card__excerpt {
  font-size: var(--fs-base);
  -webkit-line-clamp: 4;
}

/* Grid of regular cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

/* "Vezi toate articolele" CTA below the teaser grid */
.blog-teaser__more {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}
/* "Vezi toate întrebările" link below FAQ on home */
.faq__more {
  text-align: center;
  margin: var(--s-6) 0 0;
  font-size: var(--fs-sm);
}
.faq__more a {
  color: var(--c-raw-albastru-calm);
  font-weight: var(--fw-semibold);
}
.faq__more a:hover { text-decoration: underline; }

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-10);
}
.blog-pagination__btn,
.blog-pagination__page {
  min-width: 38px;
  height: 38px;
  padding: 0 var(--s-3);
  border: 1.5px solid var(--c-line);
  background: var(--c-bg);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--c-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--d-fast) var(--ease-out), background var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
}
.blog-pagination__btn:hover:not(:disabled),
.blog-pagination__page:hover { border-color: var(--c-raw-albastru-calm); color: var(--c-raw-albastru-calm); }
.blog-pagination__btn:disabled { opacity: .4; cursor: not-allowed; }
.blog-pagination__page.is-active {
  background: var(--c-raw-albastru-calm);
  border-color: var(--c-raw-albastru-calm);
  color: var(--c-bg);
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured .blog-card__link { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__media { min-height: 240px; aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__body { padding: var(--s-4); }
}

/* ===== 14. MOLECULE: FOOTER (4-col grid + bottom strip) ===== */
.footer {
  background: var(--c-primary);
  color: var(--c-white-85);
  padding: var(--s-12) 0 0;
  scroll-snap-align: none;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
}
.footer__col--brand { padding-right: var(--s-4); }
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  color: inherit;
}
.footer__logo {
  width: 48px;
  height: 48px;
  background: transparent;
  padding: 0;
  /* Force the brand-blue transparent K to render white on the primary-blue footer */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer__brand strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-wide);
  color: var(--c-bg);
  font-size: var(--fs-md);
}
.footer__brand span {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  opacity: .75;
}
.footer__about {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--c-white-85);
  margin: 0;
}
.footer__heading {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-bg);
  margin: 0 0 var(--s-4);
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer__list a,
.footer__list span {
  color: var(--c-white-85);
  font-size: var(--fs-sm);
  transition: color var(--d-fast) var(--ease-out);
  text-decoration: none;
}
.footer__list a:hover { color: var(--c-bg); }
.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--c-white-85);
}
.footer__list--contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .75;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--s-5) 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--fs-xs);
  margin: 0;
  opacity: .75;
}
.footer__legal {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--c-white-85);
  font-size: var(--fs-xs);
  opacity: .75;
}
.footer__legal a:hover { opacity: 1; color: var(--c-bg); }

@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-5); padding-bottom: var(--s-6); }
}
@media (max-width: 600px) {
  /* Compact footer on phone — 2-col grid cu brand + contact full-width, totul centrat */
  .footer { padding: var(--s-6) 0 0; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4) var(--s-5);
    padding-bottom: var(--s-5);
    text-align: center;
  }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col--contact { grid-column: 1 / -1; }
  .footer__brand {
    justify-content: center;
    gap: var(--s-2);
    margin-bottom: var(--s-2);
    text-align: left;
  }
  .footer__logo { width: 36px; height: 36px; }
  .footer__about { font-size: var(--fs-xs); line-height: var(--lh-snug); max-width: 32ch; margin: 0 auto; }
  .footer__heading { font-size: 0.66rem; margin-bottom: var(--s-2); }
  .footer__list { gap: var(--s-1); align-items: center; }
  .footer__list a,
  .footer__list span,
  .footer__list--contact li { font-size: var(--fs-xs); line-height: var(--lh-snug); }
  .footer__list--contact { align-items: center; }
  .footer__list--contact li { justify-content: center; align-items: center; text-align: left; }
  .footer__list--contact svg { width: 14px; height: 14px; margin-top: 1px; }
  .footer__bottom { padding: var(--s-3) 0; }
  .footer__bottom-inner { justify-content: center; text-align: center; gap: var(--s-2); }
  .footer__copy, .footer__legal a { font-size: 0.7rem; }
  .footer__legal { gap: var(--s-3); justify-content: center; }
}

/* ============================================================
   15. RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { order: -1; }
  .hero__logo { width: min(260px, 60%); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .section__media { order: -1; }
  .media-card {
    aspect-ratio: 16 / 10;
    max-width: 480px;
    margin-inline: auto;
  }

  /* HeroSelector hero mode on tablet — parent handles total height, stage just flexes */
  .hs--hero .hs__stage {
    min-height: 0;
  }
  .hs__content-inner {
    grid-template-columns: 1fr;
    padding: var(--s-6) clamp(var(--s-4), 4vw, var(--s-8));
    gap: var(--s-4);
  }
  /* Equip card: keep vertical, narrower, smaller image */
  .hs__equip {
    max-width: none;
    margin-inline-start: 0;
    flex-direction: column;
  }
  .hs__equip-img {
    aspect-ratio: 16 / 9;
  }
  .hs__equip-body { padding: var(--s-3) var(--s-4); }
  .hs__equip-tag { font-size: 0.62rem; padding: 2px var(--s-2); }
  .hs__text { padding: var(--s-4); }
  .hs__title { font-size: var(--fs-xl); }

  /* HeroSelector controllers — 4 per row on tablet */
  .hs__controllers {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Brand strip 2 columns on tablet */
  .brand-strip__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* === MOBILE: hero rămâne full section (100vh), restul sections content-height === */
  .section { min-height: 0; }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + var(--s-4)) 0 0;
  }
  .section { padding: calc(var(--header-h) + var(--s-4)) 0 var(--s-8); }

  /* Hero watermarks: smaller K-variants on mobile */
  .hero__pattern {
    background-size: 100px, 90px, 90px, 80px;
    background-position: 4% 6%, 92% 8%, 8% 92%, 90% 86%;
    opacity: .05;
  }

  /* === MOBILE RESPONSIVE — compact content === */

  /* Hero on mobile: compact content, photo is full-bleed bg */
  .hero__inner { padding-top: var(--s-3); padding-bottom: var(--s-3); }
  .hero__title { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero__sub { font-size: var(--fs-base); margin-bottom: var(--s-2); }
  .hero__actions { gap: var(--s-3); }

  /* Button sizing on mobile — more compact */
  .btn { padding: var(--s-2) var(--s-4); font-size: var(--fs-sm); }
  .btn--lg { padding: var(--s-3) var(--s-5); font-size: var(--fs-sm); }

  /* About on mobile: K-shape PHOTO full-bleed, text overlays in glass card */
  .section--about {
    padding: 0;
    grid-template-columns: 1fr;
    position: relative;
    background: linear-gradient(135deg, var(--c-bg-soft), var(--c-bg-tint));
  }
  .about__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Mobile keeps the narrower bar (30%) — Andrei confirmed this proportion looked right */
    --k-clip: polygon(0% 0%, 100% 0%, 30% 32%, 30% 68%, 100% 100%, 0% 100%);
  }
  .about__shade {
    background: linear-gradient(180deg, rgba(11, 25, 45, 0.30) 0%, rgba(11, 25, 45, 0.75) 100%);
  }
  .about__tag {
    left: var(--s-4);
    bottom: auto;
    top: calc(var(--header-h) + var(--s-4));
    padding: var(--s-1) var(--s-3);
  }
  .about__content {
    position: relative;
    z-index: var(--z-elevated);
    padding: calc(var(--header-h) + var(--s-12)) var(--s-5) var(--s-8);
    align-items: flex-end;
  }
  .about__content-inner {
    max-width: 100%;
    background: var(--c-bg);
    padding: var(--s-5);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
  }
  .check-list { gap: var(--s-2); margin: var(--s-4) 0 var(--s-5); }
  .about__content-inner .check-list li { font-size: var(--fs-sm); }

  /* Section heads compact */
  .section__head { margin-bottom: var(--s-5); }
  .section__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section__lead { font-size: var(--fs-base); }
  .section { padding: var(--header-h) 0 var(--s-6); }

  /* Beneficii timeline on mobile: detail stacks 1-col, compact */
  .timeline-detail {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    padding: var(--s-5);
    margin-top: var(--s-5);
  }
  .timeline-detail__title { font-size: var(--fs-xl); }
  .timeline-detail__desc { font-size: var(--fs-sm); margin-bottom: var(--s-4); }
  .timeline { gap: var(--s-4); justify-content: flex-start; }
  .timeline__avatar { width: 60px; height: 60px; }
  .timeline__icon { width: 26px; height: 26px; }
  .timeline__badge { min-width: 22px; height: 22px; font-size: 0.65rem; top: -4px; right: -4px; }

  /* Echipa: compact cards, 1-col */
  .team-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .team-card { padding: var(--s-4); display: grid; grid-template-columns: 80px 1fr; gap: var(--s-4); text-align: left; align-items: center; }
  .team-card__photo { width: 80px; height: 80px; margin: 0; font-size: 0.65rem; }
  .team-card__photo::after { inset: 2px; border-width: 1.5px; }
  .team-card h3 { font-size: var(--fs-base); margin-bottom: var(--s-1); grid-column: 2; }
  .team-card__role { font-size: var(--fs-xs); margin-bottom: var(--s-1); grid-column: 2; }
  .team-card__bio { font-size: var(--fs-xs); grid-column: 1 / -1; }

  /* Recenzii: 1-col, compact */
  .reviews-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .review { padding: var(--s-4); }
  .review p { font-size: var(--fs-sm); margin-bottom: var(--s-2); }
  .review footer { font-size: var(--fs-xs); }

  /* Contact: tighter list + form */
  .section--contact { padding: var(--header-h) 0 var(--s-4); }
  .contact-list { gap: var(--s-3); margin-top: var(--s-4); }
  .contact-list li { gap: var(--s-3); }
  .contact-list__icon { width: 36px; height: 36px; }
  .contact-list__icon svg { width: 18px; height: 18px; }
  .contact-list strong { font-size: var(--fs-xs); }
  .contact-form { padding: var(--s-4); gap: var(--s-3); }
  .field input, .field select, .field textarea { padding: var(--s-2) var(--s-3); }

  .header__brand-tagline { display: none; }
  .nav {
    position: fixed;
    top: var(--m-hdr-h);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--m-hdr-h));
    height: calc(100dvh - var(--m-hdr-h));
    background: var(--c-bg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--s-3) var(--s-5) var(--s-5);
    gap: var(--s-2);
    transform: translateX(100%);
    transition: transform var(--d-normal) var(--ease-out);
    box-shadow: var(--sh-lg);
    overflow-y: auto;
    scroll-snap-type: none;
    z-index: var(--z-modal);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav__list li {
    scroll-snap-align: none;
    width: 100%;
  }
  .nav__link {
    display: block;
    width: 100%;
    font-size: var(--fs-md);
    padding: var(--s-3) var(--s-2);
    text-align: center;
    border-bottom: 1px solid var(--c-line);
    color: var(--c-ink);
  }
  .nav__list li:last-child .nav__link { border-bottom: 0; }
  .nav__link::after { display: none; }
  .nav__link.is-active {
    color: var(--c-raw-albastru-calm);
    font-weight: var(--fw-bold);
  }
  .nav__cta {
    align-self: center;
    text-align: center;
    padding: var(--s-3) var(--s-6);
    margin-top: var(--s-3);
    min-width: 60%;
    font-size: var(--fs-md);
  }
  .hamburger { display: flex; }
  .contact-form { grid-template-columns: 1fr; padding: var(--s-6); }
  .footer__inner { justify-content: center; text-align: center; }

  /* Banner — wrap nicely, hide logo panel */
  .banner__inner { flex-direction: column; align-items: flex-start; min-height: 0; padding: var(--s-4) 0; }
  .banner__items { gap: var(--s-3); }
  .banner__item { font-size: var(--fs-xs); }
  .banner__logo { display: none; }

  /* HeroSelector hero mode on phone — parent handles total height, stage just flexes */
  .hs--hero .hs__stage {
    min-height: 0;
  }
  /* Single column content on mobile (equip becomes modal) */
  .hs__content-inner {
    grid-template-columns: 1fr;
    padding: var(--s-5) var(--s-4);
    gap: var(--s-3);
  }
  .hs__text {
    padding: var(--s-4);
    border-radius: var(--r-md);
    max-width: 100%;
  }
  .hs__title { font-size: var(--fs-lg); }
  .hs__desc {
    font-size: var(--fs-xs);
    line-height: var(--lh-snug);
  }

  /* Eye button visible only on mobile */
  .hs__equip-eye { display: flex; }

  /* Inline equip card (inside slide) — hidden on mobile, shown via dedicated modal node */
  .hs__equip { display: none; }
  .hs.is-equip-open .hs__equip-modal {
    display: flex;
    animation: hs-equip-pop var(--d-normal) var(--ease-spring);
  }
  @keyframes hs-equip-pop {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  }
  .hs__equip-tags { top: var(--s-3); left: var(--s-3); gap: var(--s-1); }
  .hs__equip-tag { font-size: 0.6rem; padding: 2px var(--s-2); }
  .hs__equip-body { padding: var(--s-4) var(--s-5); }
  .hs__equip-name { font-size: var(--fs-base); }

  /* HeroSelector controllers — single line horizontal scroll on phone */
  .hs__controllers-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .hs__controllers-wrap::-webkit-scrollbar { display: none; }
  .hs__controllers {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    min-width: 100%;
    max-width: none;
  }
  .hs__ctrl {
    flex-shrink: 0;
    min-width: 92px;
    scroll-snap-align: start;
    padding: var(--s-3) var(--s-3);
    font-size: 0.65rem;
    gap: var(--s-1);
  }
  .hs__ctrl img { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
  .header__brand-name { font-size: var(--fs-base); }
  .header__logo { width: 38px; height: 38px; }
  .btn { padding: var(--s-2) var(--s-4); font-size: 0.82rem; }
  .btn--lg { padding: var(--s-2) var(--s-4); font-size: 0.85rem; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; gap: var(--s-2); }
  .hero__actions .btn { flex: 1 1 auto; width: auto; }
  .hs__title { font-size: var(--fs-lg); }
  .hs__desc  { font-size: var(--fs-xs); }
}

/* ===== Kinevo additions (Diana copy integration) ===== */

/* Service-card icon: single element, background-image swap blue → green on hover.
   Default state: blue PNG (k-*-blue.png). Hover: green PNG (k-*-green.png). */
.service-card__icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  transition: background-image var(--d-normal) var(--ease-out),
              background-color var(--d-normal) var(--ease-out);
}
.service-card__icon--knee  { background-image: url("../images/k-knee-blue.png"); }
.service-card__icon--elbow { background-image: url("../images/k-elbow-blue.png"); }
.service-card__icon--hand  { background-image: url("../images/k-hand-blue.png"); }
.service-card__icon--foot  { background-image: url("../images/k-foot-blue.png"); }

.service-card:hover .service-card__icon--knee,
.service-card:focus-within .service-card__icon--knee   { background-image: url("../images/k-knee-green.png"); }
.service-card:hover .service-card__icon--elbow,
.service-card:focus-within .service-card__icon--elbow  { background-image: url("../images/k-elbow-green.png"); }
.service-card:hover .service-card__icon--hand,
.service-card:focus-within .service-card__icon--hand   { background-image: url("../images/k-hand-green.png"); }
.service-card:hover .service-card__icon--foot,
.service-card:focus-within .service-card__icon--foot   { background-image: url("../images/k-foot-green.png"); }

/* Neutralize the legacy "fill icon bg with primary on hover" — keep PNG visible
   AND re-assert background-size because the legacy shorthand resets it to auto (causing zoom). */
.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon {
  background-color: var(--m-svc-icon-bg);
  background-size: 36px 36px;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--m-svc-icon-fg);
}

.section__head-actions {
  margin-top: var(--s-6);
}
.section__head-actions--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

/* 4-step "Cum ajungi la noi" grid */
ol.steps-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps-grid > li,
.steps-grid > li.step-card {
  list-style: none;
}
.steps-grid > li::marker {
  content: "";
}
.step-card {
  background: var(--m-svc-bg);
  padding: var(--s-6);
  border-radius: var(--m-svc-radius);
  border: 1px solid var(--m-svc-border);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--d-normal) var(--ease-out),
    box-shadow var(--d-normal) var(--ease-out),
    border-color var(--d-normal) var(--ease-out);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--m-svc-shadow-hover);
  border-color: transparent;
}
.step-card__num {
  display: inline-block;
  font-family: var(--ff-display, "Montserrat", sans-serif);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-primary);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.step-card h3 {
  margin-bottom: var(--s-2);
  font-size: var(--fs-lg);
}
.step-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--c-text-soft, currentColor);
}

/* Procedures sub-cards (Fizioterapie: Tecar / Electroterapie / Ultrasunete / Laser / Magnetoterapie) */
ul.procedures-grid,
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-6);
  list-style: none;
  padding: 0;
}
.procedures-grid > li {
  list-style: none;
}
.procedures-grid > li::marker {
  content: "";
}
.procedure-card {
  background: var(--c-bg, #fff);
  padding: var(--s-5);
  border-radius: var(--r-md);
  border: 1px solid var(--m-svc-border);
  border-left: 4px solid var(--c-primary);
}
.procedure-card h4 {
  margin: 0 0 var(--s-2) 0;
  font-size: var(--fs-md, 1rem);
}
.procedure-card p {
  margin: 0;
  font-size: var(--fs-sm);
}

/* Service-detail section (despre.html#servicii) */
.service-detail {
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--m-svc-border);
}
.service-detail:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.service-detail h3 {
  font-size: var(--fs-2xl, 1.6rem);
  margin-bottom: var(--s-3);
}
.service-detail__intro {
  font-size: var(--fs-md, 1.05rem);
  margin-bottom: var(--s-4);
}
.service-detail .check-list {
  margin-top: var(--s-4);
}

/* ============================================================
   PRICING (preturi.html) — pricing cards + procedures table.
   Tokens only — bg/border/shadow/radius/spacing all semantic.
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
}
.pricing-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.pricing-card--featured {
  border-color: var(--c-primary-soft);
  box-shadow: var(--sh-md);
  background: linear-gradient(180deg, var(--c-bg-tint) 0%, var(--c-bg) 60%);
}
.pricing-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
  color: var(--c-bg);
  line-height: 1.6;
}
.pricing-card--featured .pricing-card__tag {
  background: var(--c-primary);
}
.pricing-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  margin: 0;
  line-height: var(--lh-tight);
}
.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-snug);
  margin: 0;
}
.pricing-card__sessions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1 1 auto;
}
.pricing-card__sessions li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-line);
}
.pricing-card__sessions li:last-child {
  border-bottom: 0;
}
.pricing-card__label {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  font-weight: var(--fw-medium);
}
.pricing-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-1);
}
.pricing-card__amount {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--c-primary);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount {
  color: var(--c-primary);
}
.pricing-card__currency {
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  color: var(--c-ink-muted);
  text-transform: uppercase;
}

/* Procedures table — 2-col list with name + price */
.procedures-table {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.procedures-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-base);
  color: var(--c-ink);
}
.procedures-table__row:last-child {
  border-bottom: 0;
}
.procedures-table__row--head {
  background: var(--c-bg-soft);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-ink-muted);
}
.procedures-table__price {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  white-space: nowrap;
}
.procedures-table__price small {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--c-ink-muted);
  margin-inline-start: var(--s-1);
}
.procedures-table__note {
  max-width: 720px;
  margin: var(--s-6) auto 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  line-height: var(--lh-relaxed);
}

@media (max-width: 760px) {
  .pricing-card { padding: var(--s-5); }
  .pricing-card__title { font-size: var(--fs-lg); }
  .pricing-card__amount { font-size: var(--fs-xl); }
  .procedures-table__row { padding: var(--s-3) var(--s-4); font-size: var(--fs-sm); }
  .procedures-table__price { font-size: var(--fs-base); }
}

/* ============================================================
   Conditions categories grid (ce-tratam.html, 7 Diana categories)
   - Tag pill at top (color tokens only — semantic + raw palette)
   - h3 without underline bar
   - K icon (all verde-proaspat variant) as bottom-right decoration
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.category-card {
  background: var(--m-svc-bg);
  padding: var(--s-6);
  padding-right: 84px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.category-card__tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  line-height: 1.6;
  margin-bottom: var(--s-3);
  color: var(--c-bg);
  background: var(--c-primary-soft);
}
.category-card h3 {
  font-size: var(--fs-lg);
  margin: 0 0 var(--s-4) 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.category-card ul {
  margin: 0;
  padding-left: var(--s-5);
  list-style: disc;
}
.category-card li {
  font-size: var(--fs-sm);
  margin-bottom: var(--s-2);
  line-height: 1.5;
}
.category-card li:last-child { margin-bottom: 0; }

/* Outro Diana — "Nu găsești afecțiunea ta..." */
.outro-callout {
  margin-top: var(--s-10);
  padding: var(--s-8);
  background: var(--m-svc-bg);
  border-radius: var(--m-svc-radius);
  text-align: center;
  border: 1px solid var(--m-svc-border);
}
.outro-callout p { margin: 0 0 var(--s-4) 0; font-size: var(--fs-md, 1.05rem); }
.outro-callout .outro-callout__contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-6);
  font-weight: 600;
  color: var(--c-primary);
}

/* Prose — paragraf rich text (despre.html "Cine suntem", "Echipa noastra") */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  font-size: var(--fs-md, 1.05rem);
  line-height: 1.7;
  margin: 0 0 var(--s-5) 0;
}
.prose p:last-child { margin-bottom: 0; }

/* Footer social links */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: var(--s-2);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

