/* ============================================================
   ELITE — Fizio-Kinetoterapie & Stare de Bine · Târgu Jiu
   v6 — tema deschisă: fundal alb, accente gri, verdele brand
   neschimbat (butoane, glow, puncte); la accentele de text se
   folosește același verde, în nuanță adâncă, pentru lizibilitate.
   ============================================================ */

:root {
  --bg:        #F7F8F7;                       /* alb cald */
  --surface:   #FFFFFF;                       /* carduri */
  --surface-2: #F0F3F1;                       /* hover */
  --stroke:    rgba(18, 28, 22, .13);         /* gri contur */
  --text:      #16211B;                       /* scris principal */
  --dim:       rgba(22, 33, 27, .64);         /* scris secundar */
  --neon:      #3DF29B;                       /* verdele brand — decor/butoane */
  --green-ink: #0A7A4C;                       /* același verde, adânc — text mic */
  --grad-a:    #078A4E;                       /* capetele gradientului de titlu */
  --grad-b:    #1FBA75;
  --gold:      #E8A93C;
  --glow:      rgba(61, 242, 155, .30);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-script:  "Pacifico", cursive;

  --wrap: 1180px;
  --edge: max(28px, calc((100vw - var(--wrap)) / 2));
  --r: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --shadow-card: 0 10px 30px rgba(18, 28, 22, .07);
  --shadow-foto: 0 26px 60px rgba(18, 28, 22, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(61, 242, 155, .10), transparent 60%),
    linear-gradient(180deg, #F1F5F2 0%, var(--bg) 34%);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;   /* ancoră pentru ornamentul botanic care curge cu pagina */
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; color: #0D1712; }

a { color: inherit; }
:focus-visible { outline: 3px solid var(--green-ink); outline-offset: 3px; border-radius: 6px; }

.script { font-family: var(--font-script); font-weight: 400; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.grad {
  background: linear-gradient(92deg, var(--grad-a), var(--grad-b) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.neon-text {
  color: var(--green-ink);
  text-shadow: 0 0 18px rgba(61, 242, 155, .45);
}

/* ============ carduri (fost „sticlă") ============ */
.glass {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}

/* ============ orbs ============ */
.orbs { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .4; }
.orb--1 { width: 520px; height: 520px; left: -160px; top: -120px; background: rgba(61, 242, 155, .22); }
.orb--2 { width: 640px; height: 640px; right: -220px; top: 34%; background: rgba(37, 158, 108, .16); }
.orb--3 { width: 460px; height: 460px; left: 12%; bottom: -180px; background: rgba(61, 242, 155, .14); }
@media (prefers-reduced-motion: no-preference) {
  .orb { animation: drift 22s ease-in-out infinite alternate; }
  .orb--2 { animation-duration: 28s; animation-delay: -8s; }
  .orb--3 { animation-duration: 25s; animation-delay: -14s; }
  @keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(60px, 40px, 0) scale(1.12); }
  }
}

/* ============ progres + șina de capitole ============ */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; }
.progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--grad-a), var(--neon));
  box-shadow: 0 0 12px var(--glow);
}

.rail {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 90; display: none; flex-direction: column; gap: 3px;
  padding: 9px 7px;
  border: 1px solid rgba(18, 28, 22, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 34px rgba(18, 28, 22, .10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.rail a {
  position: relative;
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  text-decoration: none;
}
.rail i {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(22, 33, 27, .28);
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.rail span {
  position: absolute; left: calc(100% + 12px); top: 50%;
  padding: 8px 11px;
  border: 1px solid rgba(18, 28, 22, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(18, 28, 22, .10);
  color: var(--text);
  font-size: 11px; font-weight: 750; letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-5px, -50%);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.rail a:hover { background: rgba(61, 242, 155, .10); }
.rail a:hover span,
.rail a:focus-visible span {
  opacity: 1; visibility: visible; transform: translate(0, -50%);
}
.rail a.is-active i {
  background: var(--green-ink);
  transform: scaleX(2.15);
  box-shadow: 0 0 10px rgba(61, 242, 155, .42);
}
@media (min-width: 1360px) { .rail { display: flex; } }

/* ============ nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 26px;
  padding: 13px 28px;
  background: rgba(247, 248, 247, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-scrolled { border-bottom-color: var(--stroke); background: rgba(247, 248, 247, .9); }
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.nav__logo-signature {
  display: inline-block;
  flex: none;
  font-family: var(--font-script);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--neon);
  transform: rotate(-2deg);
  text-shadow:
    0 0 3px rgba(255,255,255,.95),
    0 0 9px rgba(61,242,155,.72),
    0 0 20px rgba(61,242,155,.38);
}
.nav__logo-sub { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--dim); }
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__links a {
  text-decoration: none; font-size: 15px; font-weight: 600; color: var(--dim);
  padding: 9px 14px; border-radius: 999px; white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--text); background: var(--surface-2); }
.nav__links-cta { display: none; }
.nav__socials { display: flex; align-items: center; gap: 7px; }
.nav__socials--mobile { display: none; }
.nav__socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  color: var(--green-ink);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--stroke);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(18,28,22,.06);
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.nav__socials a:hover {
  color: #063f28;
  background: rgba(61,242,155,.24);
  border-color: rgba(10,122,76,.48);
  box-shadow: 0 0 18px rgba(61,242,155,.35);
  transform: translateY(-2px);
}
.nav__socials svg { width: 18px; height: 18px; }
.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; border-radius: 10px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ butoane ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .16s var(--ease), box-shadow .25s, background .2s, border-color .2s, color .2s;
  min-height: 50px; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn--primary {
  background: linear-gradient(92deg, var(--neon), #6FF5B8);
  color: #04140C;
  box-shadow: 0 4px 24px rgba(61, 242, 155, .35);
}
.btn--primary:hover { box-shadow: 0 8px 40px rgba(61, 242, 155, .5); }
.btn--glass {
  background: var(--surface); color: var(--text);
  border-color: var(--stroke);
  box-shadow: var(--shadow-card);
}
.btn--glass:hover { background: var(--surface-2); border-color: rgba(18, 28, 22, .28); }
.btn--book {
  background: rgba(61, 242, 155, .14); color: var(--green-ink);
  border-color: rgba(10, 122, 76, .45);
}
.btn--book:hover {
  background: rgba(61, 242, 155, .22); border-color: var(--green-ink);
  box-shadow: 0 6px 30px rgba(61, 242, 155, .3);
}
.btn--nav { padding: 11px 22px; min-height: 42px; font-size: 14.5px; white-space: nowrap; }

/* ============ eyebrow ============ */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .18em; color: var(--green-ink);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--neon); flex: none;
  box-shadow: 0 0 10px var(--glow), 0 0 22px var(--glow);
}
.eyebrow--center { justify-content: center; }

/* ============ HERO — contained, echilibrat ============ */
.hero {
  min-height: min(820px, 100svh); display: flex; align-items: center;
  padding: 118px 0 72px; position: relative; overflow: hidden;
}
.hero__ghost { display: none; }
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: center; gap: 48px;
}
.hero__text { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(40px, 5.2vw, 70px); font-weight: 800; margin: 24px 0 20px; max-width: 11em; }
.hero__sub { font-size: clamp(17.5px, 1.9vw, 20px); color: var(--dim); max-width: 28em; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__media { position: relative; }
.hero__media > img {
  width: 100%; aspect-ratio: 5 / 6; max-height: 74vh; object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  box-shadow: 0 40px 90px rgba(18, 28, 22, .18);
  position: relative; z-index: 1;
}
/* stratul verde care iese subtil în spatele pozei — adâncime */
.hero__media::before {
  content: ""; position: absolute; z-index: 0;
  inset: 26px -28px -28px 26px;
  background: linear-gradient(135deg, rgba(61, 242, 155, .35), rgba(61, 242, 155, .08));
  border-radius: 34px;
}
.hero__badge {
  position: absolute; z-index: 2; padding: 14px 19px; display: grid; gap: 2px;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(18, 28, 22, .16);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}
.hero__badge b { font-family: var(--font-display); font-size: 16px; color: #0D1712; }
.hero__badge span { font-size: 12px; color: var(--dim); }
/* badge cu o singură frază — text uniform, nu titlu + subtitlu */
.hero__badge--campion b,
.hero__badge--campion span {
  font-family: var(--font-display); font-size: 14.5px; font-weight: 700;
  color: #0D1712; line-height: 1.3;
}
.hero__badge--orar { left: -26px; bottom: 32px; transform: rotate(-3deg); }
.hero__badge--campion { right: -22px; top: 34px; transform: rotate(2.5deg); }

/* ============ secțiuni + numere-fantomă ============ */
.section { padding: 84px 0; position: relative; }
.section--glow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 480px at 12% 18%, rgba(61, 242, 155, .12), transparent 60%);
}
.ghostnum {
  position: absolute; top: 44px; right: 3vw; z-index: 0;
  pointer-events: none; user-select: none;
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(130px, 20vw, 280px);
  color: transparent; -webkit-text-stroke: 1px rgba(13, 23, 18, .08);
}
.section h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; margin: 16px 0 14px; max-width: 16em; }
.lead { font-size: clamp(17.5px, 1.9vw, 20px); color: var(--dim); max-width: 36em; }
.lead strong { color: var(--text); }
.lead--center { margin-inline: auto; text-align: center; max-width: 34em; }

/* ============ bento — cap 01 ============ */
.bento {
  display: grid; gap: 20px; margin-top: 38px; align-items: stretch;
  grid-template-columns: 1fr 1fr;
}

/* punctul de start — fotografia consultației */
.startpoint {
  margin-top: 22px;
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px; align-items: center;
}
.startpoint__foto { margin: 0; position: relative; }
.startpoint__foto img {
  width: 100%; aspect-ratio: 1200 / 1499; object-fit: cover;
  border-radius: var(--r); border: 1px solid var(--stroke);
  box-shadow: var(--shadow-foto);
}
.startpoint__quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(25px, 3vw, 40px); line-height: 1.18; letter-spacing: -0.015em;
  color: #0D1712; margin: 20px 0 18px;
}
.startpoint__note { color: var(--dim); font-size: clamp(16px, 1.7vw, 18px); max-width: 32em; }

.card { padding: 30px 26px 34px; transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s; }
.card:hover {
  background: var(--surface);
  border-color: rgba(10, 122, 76, .4);
  box-shadow: 0 20px 50px rgba(18, 28, 22, .12), 0 0 40px rgba(61, 242, 155, .14);
}
.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px;
  background: rgba(61, 242, 155, .14);
  border: 1px solid rgba(10, 122, 76, .35);
  color: var(--green-ink);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 18.5px; margin-bottom: 9px; line-height: 1.3; }
.card__lead { font-weight: 700; font-size: 14.5px; color: var(--green-ink); margin-bottom: 9px; line-height: 1.35; }
.card p:last-child { font-size: 14.5px; color: var(--dim); }

.pull {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3.3vw, 40px); line-height: 1.25;
  text-align: center; margin: 96px auto 0; max-width: 19em; color: #0D1712;
}

/* ============ drumul — cap 02 ============ */
.drum__head {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
}
.drum__claim { margin-top: 16px; }
.drum__claim strong { color: var(--text); }

.drum__collage { position: relative; padding-bottom: 56px; }
.drum__collage img {
  border-radius: var(--r); border: 1px solid var(--stroke);
  box-shadow: var(--shadow-foto);
}
.drum__collage img:first-child { width: 64%; transform: rotate(-2deg); }
.drum__collage img:last-child {
  position: absolute; right: 0; bottom: 0; width: 56%;
  aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 42%;
  transform: rotate(3deg);
  outline: 10px solid rgba(255, 255, 255, .85);
}

/* infografic de proces: pași legați de o linie cu săgeți */
.flow {
  list-style: none; margin: 60px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative;
}
.flow::before {   /* linia care leagă nodurile */
  content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(10, 122, 76, .45) 0 7px, transparent 7px 15px);
  z-index: 0;
}
.flow__step { position: relative; z-index: 1; text-align: center; padding: 0 4px; }
.flow__node {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  background: linear-gradient(135deg, var(--neon), #58E8A9); color: #04140C;
  box-shadow: 0 0 0 7px var(--bg), 0 8px 24px rgba(61, 242, 155, .35);  /* inel de fundal ca linia „intră" în nod */
  position: relative; z-index: 1;
}
/* săgeata dintre pași */
.flow__step:not(:last-child)::after {
  content: "→"; position: absolute; top: 12px; right: -21px; z-index: 2;
  font-size: 22px; font-weight: 700; color: var(--green-ink);
  background: var(--bg); padding: 0 4px; line-height: 1.4;
}
.flow__step h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.25; }
.flow__step .flow__lead { font-weight: 700; font-size: 14px; color: var(--green-ink); margin-bottom: 8px; line-height: 1.3; }
.flow__step p { font-size: 14.5px; color: var(--dim); }
.flow__cta { margin-top: 32px; display: flex; justify-content: center; }

/* ============ terapeut — cap 03 (text sus, duet centrat) ============ */
.terapeut__intro { text-align: center; max-width: 46em; margin: 0 auto; }
.terapeut__intro h2 { margin-left: auto; margin-right: auto; }
.terapeut__intro .lead { margin-inline: auto; color: var(--text); }
.terapeut__extra { margin: 18px auto 0; color: var(--dim); max-width: 40em; }

.duo {
  display: grid; grid-template-columns: 1fr;
  gap: 60px; align-items: start;
  max-width: 720px; margin: 60px auto 0;
}
.duo__item { margin: 0; display: grid; gap: 16px; }
.creds { list-style: none; display: grid; gap: 10px; }
.creds li { padding: 14px 20px; display: grid; gap: 2px; }
.creds b { font-family: var(--font-display); font-size: 15.5px; color: var(--green-ink); }
.creds span { font-size: 13.5px; color: var(--dim); }

/* poza mare + caseta-dovadă alături, pe același rând */
.duo__media {
  display: grid; grid-template-columns: 1fr 200px;
  gap: 16px; align-items: center;
}
.duo__main {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-foto);
}
.duo__side {
  padding: 9px; display: grid; gap: 8px; justify-items: center;
  border-radius: 16px;
}
.duo__side img { width: 100%; height: auto; border-radius: 10px; display: block; }
.duo__side span {
  font-size: 11.5px; font-weight: 600; color: var(--dim);
  text-align: center; line-height: 1.4; padding: 0 4px 3px;
}

/* ============ grila de carduri (blog / articole) ============ */
.ghiduri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; align-items: start; }
.ghid {
  display: grid; gap: 16px; align-content: start;
  padding: 30px 28px 32px; text-decoration: none;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
}
.ghid:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 122, 76, .4);
  box-shadow: 0 20px 50px rgba(18, 28, 22, .12), 0 0 40px rgba(61, 242, 155, .14);
}
.ghid__tag { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--green-ink); }
.ghid h3 { font-size: 19.5px; line-height: 1.32; }
.ghid__go { font-weight: 700; font-size: 15px; color: var(--dim); transition: color .2s; }
.ghid:hover .ghid__go { color: var(--green-ink); }

/* ============ rezultat — recenzii Google ============ */
.rezultat { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.rezultat--reviews { align-items: stretch; }
.reviews-copy { align-self: center; }
.reviews-summary {
  position: relative; overflow: hidden;
  padding: 36px; display: grid; gap: 22px; align-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(232,250,241,.88));
  border-color: rgba(10,122,76,.18);
}
.reviews-summary::after {
  content: ""; position: absolute; width: 180px; height: 180px; right: -80px; top: -90px;
  border-radius: 50%; background: rgba(61,242,155,.2); filter: blur(2px); pointer-events: none;
}
.reviews-summary__score { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; }
.reviews-summary__score > strong {
  font-family: var(--font-display); font-size: clamp(58px, 5vw, 78px); line-height: .9;
  letter-spacing: -.06em; color: var(--ink); font-variant-numeric: tabular-nums;
}
.reviews__stars { margin: 0 0 5px; color: var(--gold); font-size: 25px; line-height: 1; letter-spacing: 4px; text-shadow: 0 0 20px rgba(232,169,60,.28); }
.reviews-summary__score div p:last-child { color: var(--green-ink); font-size: 15px; font-weight: 800; }
.reviews-summary__text { position: relative; z-index: 1; max-width: 34em; color: var(--dim); line-height: 1.65; }
.reviews-summary__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; }
.reviews-summary__actions .btn { min-height: 50px; padding-inline: 22px; }

.trust-grid {
  margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 24px; align-items: stretch;
}
.google-reviews {
  position: relative; overflow: hidden; min-height: 560px; margin: 0; padding: 32px;
  display: grid; place-items: center; border: 1px solid rgba(10,122,76,.13); border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(61,242,155,.2), transparent 46%), rgba(255,255,255,.46);
}
.google-reviews[hidden], .google-reviews__official[hidden], .google-reviews__loading[hidden] { display: none !important; }
.google-reviews[hidden] + .practice-stats { grid-column: 1 / -1; width: min(680px, 100%); justify-self: center; }
.google-reviews__official { width: min(400px, 100%); }
.google-reviews[aria-busy="true"] .google-reviews__official { position: absolute; opacity: 0; pointer-events: none; }
.google-reviews__official gmp-place-details {
  width: 100%; height: 490px; margin: 0;
  --gmp-mat-color-surface: #ffffff;
  --gmp-mat-color-on-surface: #121c16;
  --gmp-mat-color-on-surface-variant: #536159;
  --gmp-mat-color-primary: #0a7a4c;
  --gmp-mat-font-family: var(--font-body);
  color-scheme: light;
}
.google-reviews__loading {
  width: min(400px, 100%); height: 490px; border: 1px solid rgba(18,28,22,.08); border-radius: 22px;
  background: linear-gradient(105deg, rgba(255,255,255,.72) 35%, rgba(232,250,241,.98) 48%, rgba(255,255,255,.72) 61%);
  background-size: 240% 100%; animation: reviewShimmer 1.2s ease-in-out infinite;
}
@keyframes reviewShimmer { to { background-position-x: -240%; } }
.practice-stats {
  position: relative;
  overflow: hidden;
  width: auto;
  margin: 0;
  padding: 42px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 242, 155, .26), transparent 42%),
    linear-gradient(180deg, rgba(232,250,241,.94), rgba(247,248,247,.98));
  border: 1px solid rgba(10,122,76,.14);
  border-radius: 28px;
  box-shadow: inset 0 24px 70px rgba(61,242,155,.055), 0 24px 70px rgba(18,28,22,.055);
}
.practice-stats::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(10,122,76,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(61,242,155,.035), 0 0 0 68px rgba(61,242,155,.025);
  pointer-events: none;
}
.practice-stats__intro { position: relative; z-index: 1; text-align: center; }
.practice-stats__intro .eyebrow { justify-content: center; }
.practice-stats__intro h3 { margin: 18px auto 0; font-size: clamp(32px, 3vw, 46px); line-height: 1.05; max-width: 12em; }
.practice-stats__numbers { position: relative; z-index: 1; width: 100%; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.practice-stat {
  min-height: 180px;
  padding: 24px 14px;
  display: grid;
  place-content: center;
  text-align: center;
}
.practice-stat + .practice-stat { border-left: 1px solid rgba(18,28,22,.12); }
.practice-stat strong {
  font-family: var(--font-display);
  font-size: clamp(68px, 6vw, 96px);
  line-height: .84;
  letter-spacing: -.055em;
  color: var(--green-ink);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(61,242,155,.20);
}
.practice-stat span { margin-top: 20px; color: var(--text); font-size: clamp(15px, 1.25vw, 18px); font-weight: 800; }

/* ============ tarife — menu board ============ */
.menu { display: grid; grid-template-columns: minmax(280px, .85fr) 1.15fr; gap: 72px; align-items: start; }
.menu__side { position: sticky; top: 110px; }
.menu__side .btn { margin-top: 30px; }
.menu__grup { padding: 30px 0 36px; border-top: 1px solid var(--stroke); }
.menu__grup:last-child { border-bottom: 1px solid var(--stroke); }
.menu__grup h3 {
  font-size: 20px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.menu__grup h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--neon), #58E8A9);
  box-shadow: 0 0 12px var(--glow);
}
.menu__grup ul { list-style: none; }
.menu__grup li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; font-size: 15.5px; }
.menu__grup li + li { border-top: 1px solid rgba(18, 28, 22, .07); }
.menu__grup li span { flex: none; max-width: 68%; }
.menu__grup li small { font-size: 12.5px; color: var(--dim); }
.menu__grup li i { flex: 1; border-bottom: 1px dotted rgba(18, 28, 22, .3); transform: translateY(-4px); }
.menu__grup li b {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--green-ink); font-variant-numeric: tabular-nums; white-space: nowrap;
}

/* ============ final ============ */
.section--final { text-align: center; padding-bottom: 72px; }
.final__neon {
  font-size: clamp(68px, 10vw, 136px);
  color: var(--neon); line-height: 1.35;
  display: inline-block; transform: rotate(-3deg);
  text-shadow:
    0 0 12px rgba(61, 242, 155, .8),
    0 1px 0 rgba(10, 122, 76, .55),
    0 0 46px rgba(61, 242, 155, .55);
}
.final__neon.is-on { animation: flicker 1.1s steps(1) 1; }
@keyframes flicker {
  0% { opacity: 0; } 9% { opacity: 1; } 14% { opacity: .3; }
  22% { opacity: 1; } 28% { opacity: .25; } 36% { opacity: 1; }
  52% { opacity: .7; } 60% { opacity: 1; } 100% { opacity: 1; }
}
.section--final .final__title { font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; max-width: 17em; margin: 10px auto 20px; }

.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 28px 0 44px; }
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; text-align: left; align-items: stretch; }
.contact__info { padding: 34px 32px; align-content: start; display: grid; gap: 24px; }
.contact__info dt {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .16em; color: var(--green-ink); margin-bottom: 5px;
}
.contact__info dd { font-size: 16.5px; }
.contact__info a { color: var(--text); font-weight: 700; text-decoration-color: var(--green-ink); }
.contact__info .dim { color: var(--dim); font-size: 14px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 38px;
  padding: 8px 12px; border: 1px solid var(--stroke); border-radius: 999px;
  background: var(--surface); color: var(--text) !important; font-size: 14px; text-decoration: none !important;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.social-link svg { width: 17px; height: 17px; color: var(--green-ink); }
.social-link:hover { border-color: var(--green-ink); color: var(--green-ink) !important; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(10, 122, 76, .12); }
.contact__map { padding: 12px; display: grid; gap: 10px; }
.contact__map iframe {
  width: 100%; min-height: 350px; border: 0; border-radius: 14px;
}
.contact__map-link {
  justify-self: start; font-size: 14.5px; font-weight: 700;
  color: var(--green-ink); text-decoration: none; padding: 2px 8px 8px;
}
.contact__map-link:hover { text-decoration: underline; }

/* ============ footer ============ */
.footer { border-top: 1px solid var(--stroke); padding: 32px 0 36px; background: #EEF1EE; }
.footer__inner { display: grid; gap: 8px; font-size: 14px; color: var(--dim); }
.footer__logo { font-size: 15px; color: var(--text); }
.footer__logo .script { color: var(--green-ink); font-size: 22px; margin-right: 8px; text-shadow: 0 0 12px rgba(61, 242, 155, .35); }
.footer__social { display: flex; gap: 9px; margin-top: 4px; }
.footer__social a {
  display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--stroke); border-radius: 50%;
  color: var(--green-ink); background: rgba(255,255,255,.65); transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { transform: translateY(-2px); background: var(--white); border-color: var(--green-ink); }
.footer__social svg { width: 17px; height: 17px; }
.footer__disclaimer { font-size: 12.5px; opacity: .7; }

/* ============ reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .final__neon.is-on { animation: none; }
  .btn, .card, .ghid { transition: none; }
  .orb { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ============ responsive ============ */
@media (max-width: 1100px) {
  .menu { grid-template-columns: 1fr; gap: 40px; }
  .menu__side { position: static; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ghiduri { grid-template-columns: 1fr; }

  /* infograficul devine cronologie verticală */
  .flow { grid-template-columns: 1fr; gap: 0; max-width: 560px; }
  .flow::before {
    top: 0; bottom: 0; left: 28px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, rgba(10, 122, 76, .45) 0 7px, transparent 7px 15px);
  }
  .flow__step {
    text-align: left; display: grid; grid-template-columns: 56px 1fr;
    column-gap: 20px; align-items: start; padding: 0 0 34px;
  }
  .flow__step:last-child { padding-bottom: 0; }
  .flow__node { grid-column: 1; grid-row: 1 / -1; margin: 0; }
  .flow__step h3 { grid-column: 2; }
  .flow__step .flow__lead { grid-column: 2; }
  .flow__step p { grid-column: 2; }
  .flow__step:not(:last-child)::after { display: none; }   /* fără săgeți orizontale pe verticală */
  .flow__cta { justify-content: flex-start; margin-top: 8px; }
}

@media (max-width: 1020px) {
  .hero { min-height: auto; padding: 104px 0 58px; }
  .hero__inner { grid-template-columns: 1fr; gap: 38px; }
  .hero__media { max-width: 480px; margin: 0 auto; }
  .hero__badge--orar { left: -14px; }
  .hero__badge--campion { right: -10px; }

  .drum__head { grid-template-columns: 1fr; gap: 44px; }
  .rezultat { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; }

  /* fără backdrop-filter pe mobil: ar transforma bara în containing block
     pentru panoul fixed al meniului */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(247, 248, 247, .95); }
  .nav.is-scrolled { background: rgba(247, 248, 247, .98); }
  .nav__burger { display: block; position: relative; z-index: 3; }
  .nav__links {
    position: fixed; inset: 0; top: 0; padding: 110px 32px 40px;
    background: #F4F6F4;
    flex-direction: column; gap: 6px; align-items: flex-start;
    transform: translateX(100%);
    transition: transform .3s var(--ease), visibility 0s linear .3s;
    z-index: 2; visibility: hidden;
  }
  .nav__links.is-open { visibility: visible; transform: none; transition: transform .3s var(--ease); }
  .nav__links a { font-size: 24px; font-family: var(--font-display); font-weight: 700; padding: 12px 0; color: var(--text); }
  .nav__links a:hover { background: none; color: var(--green-ink); }
  .nav__socials--desktop { display: none; }
  .nav__socials--mobile { display: flex; gap: 10px; margin-top: 12px; }
  .nav__socials--mobile a {
    width: 46px; height: 46px; padding: 0;
    border: 1px solid rgba(10,122,76,.28);
  }
  .nav__socials--mobile svg { width: 21px; height: 21px; }
  .nav__links-cta {
    display: inline-flex; margin-top: 20px;
    background: linear-gradient(92deg, var(--neon), #6FF5B8);
    color: #04140C !important;
    border-radius: 999px; padding: 16px 30px !important;
    font-family: var(--font-body) !important;
    font-size: 17px !important; font-weight: 800 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__links { transition: none; }
}

@media (max-width: 760px) {
  .trust-grid { margin-top: 18px; gap: 18px; }
  .practice-stats { margin: 0; padding: 38px 18px 32px; grid-template-columns: 1fr; gap: 24px; border-radius: 22px; }
  .practice-stats__intro { text-align: center; }
  .practice-stats__intro .eyebrow { justify-content: center; }
  .practice-stats__intro h3 { font-size: clamp(31px, 9vw, 42px); }
  .practice-stat { min-height: 132px; padding: 16px 6px; }
  .practice-stat strong { font-size: clamp(58px, 18vw, 78px); }
  .practice-stat span { margin-top: 14px; font-size: 14px; }
  body { font-size: 16px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .section { padding: 52px 0; }
  .wrap { padding-inline: 20px; }
  .nav { min-height: 64px; padding: 8px 18px; gap: 14px; }
  .nav__logo-signature { font-size: 34px; }
  .nav__logo-sub { display: none; }
  .btn--nav { display: none; }
  .nav__burger { width: 48px; height: 48px; margin-right: -8px; padding: 10px; }

  /* Primul ecran trebuie să fie util imediat, fără conținut ascuns de reveal. */
  .hero { min-height: auto; padding: 86px 0 34px; }
  .hero__inner { padding-inline: 20px; gap: 24px; }
  .hero .reveal { opacity: 1; transform: none; transition: none; }
  .hero .eyebrow { font-size: 11px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); margin: 14px 0 14px; max-width: 9em; }
  .hero__sub { font-size: 17px; line-height: 1.5; }
  .hero__cta { margin-top: 20px; }
  .hero__cta .btn { width: 100%; min-height: 54px; }
  .hero__cta .btn--glass { display: none; }
  .hero__media { width: 100%; max-width: none; }
  .hero__media > img { width: 100%; height: min(58vh, 460px); object-fit: cover; object-position: center 43%; border-radius: 20px; }
  .hero__media::before { inset: 14px -8px -12px 12px; border-radius: 20px; }
  .hero__badge { padding: 11px 13px; border-radius: 14px; }
  .hero__badge--orar { left: 10px; bottom: 12px; transform: none; }
  .hero__badge--campion { right: 10px; top: 12px; transform: none; }
  .hero__badge b { font-size: 14px; }
  .hero__badge span { font-size: 11px; }

  /* Meniu mobil: panou clar, cu rânduri tactile mari. */
  .nav__links {
    inset: 64px 12px auto; top: 72px; max-height: calc(100dvh - 160px);
    padding: 18px; gap: 4px; overflow-y: auto;
    border: 1px solid var(--stroke); border-radius: 24px;
    background: rgba(247,248,247,.99); box-shadow: 0 24px 70px rgba(18,28,22,.2);
    transform: translateY(-18px) scale(.98); opacity: 0;
    transform-origin: top right;
    transition: transform .22s var(--ease), opacity .18s, visibility 0s linear .22s;
  }
  .nav__links.is-open { transform: none; opacity: 1; transition: transform .22s var(--ease), opacity .18s; }
  .nav__links > a:not(.nav__links-cta) {
    width: 100%; min-height: 52px; padding: 13px 14px;
    display: flex; align-items: center; border-radius: 14px;
    font-size: 18px; font-family: var(--font-body); font-weight: 700;
  }
  .nav__links > a:not(.nav__links-cta):active { background: var(--surface-2); }
  .nav__links-cta { width: 100%; min-height: 54px; justify-content: center; margin-top: 10px; }

  /* Acțiunile principale rămân la un tap distanță oriunde pe pagină. */
  .mobile-actions {
    position: fixed; z-index: 100; left: 10px; right: 10px; bottom: max(8px, env(safe-area-inset-bottom));
    display: grid; grid-template-columns: 116px 1fr; gap: 8px;
    padding: 8px; border: 1px solid rgba(18,28,22,.13); border-radius: 22px;
    background: rgba(255,255,255,.96); box-shadow: 0 14px 44px rgba(18,28,22,.2);
  }
  .mobile-actions a {
    min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 15px; text-decoration: none; font-weight: 800; font-size: 14px;
    touch-action: manipulation; transition: transform .15s var(--ease), background .2s;
  }
  .mobile-actions a:active { transform: scale(.97); }
  .mobile-actions svg { width: 21px; height: 21px; flex: none; }
  .mobile-actions__whatsapp { color: var(--green-ink); background: #EDF8F2; }
  .mobile-actions__book { color: #04140C; background: linear-gradient(92deg, var(--neon), #6FF5B8); box-shadow: 0 8px 24px rgba(61,242,155,.3); }

  .ghostnum { font-size: clamp(100px, 30vw, 160px); top: 24px; }
  .bento { grid-template-columns: 1fr; }
  .bento__b, .bento__d { margin-top: 0; }
  .startpoint { grid-template-columns: 1fr; gap: 26px; }
  .startpoint__foto { max-width: 460px; }
  .drum__collage { padding-bottom: 44px; }
  .drum__collage img:first-child { width: 74%; }
  .drum__collage img:last-child { width: 62%; bottom: 0; }
  .duo { gap: 44px; }
  .duo__media { grid-template-columns: 1fr; gap: 14px; }
  .duo__side { max-width: 320px; margin: 0 auto; }
  .rezultat--reviews { gap: 28px; }
  .reviews-summary { padding: 28px 24px; }
  .reviews-summary__score { gap: 16px; }
  .reviews-summary__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .reviews-summary__actions .btn { width: 100%; }
  .google-reviews { min-height: 520px; margin-top: 18px; padding: 14px; border-radius: 22px; }
  .google-reviews__official gmp-place-details, .google-reviews__loading { height: 490px; }
  .contact__actions .btn { width: 100%; }
}

@media (min-width: 761px) {
  .mobile-actions { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .google-reviews__loading { animation: none; }
}
