/* ==========================================================================
   TOTAL ACOPERIȘ EXPERT — temă roșu/dark, structură pe secțiuni
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --red: #ed1f24;
  --red-dark: #c4161c;
  --red-band: #e51b23;
  --ink: #151515;
  --ink-2: #212529;
  --dark: #0e0e0e;
  --dark-2: #1a1a1a;
  --grey: #707173;
  --grey-light: #bababa;
  --light: #eef1f7;
  --white: #ffffff;
  --green: #4caf50;
  --green-dark: #429a46;

  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --body: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 78px;
  --callbar-h: 60px;
  --shell: 1180px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  padding-bottom: var(--callbar-h);
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1rem; }

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }

/* ancorele nu trebuie să intre sub header-ul fix */
section[id], main [id] { scroll-margin-top: calc(var(--header-h) + 18px); }


.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--dark); color: var(--grey-light); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--darker { background: var(--dark-2); color: var(--grey-light); }
.section--darker h2, .section--darker h3 { color: var(--white); }
.section--light { background: var(--light); }

/* --- eyebrow + rule -------------------------------------------------- */
.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section--dark .eyebrow, .section--darker .eyebrow { color: var(--red); }

.rule { display: block; width: 96px; height: 4px; margin: 22px 0 26px; background: var(--red); border: 0; }
.rule--center { margin-inline: auto; }
.rule--white { background: var(--white); }

.lead { max-width: 62ch; color: var(--grey); font-size: 1.05rem; }
.section--dark .lead, .section--darker .lead { color: var(--grey-light); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* --- buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--red); border-color: var(--red); }
.btn--wide { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 220ms ease;
}
.header.is-scrolled { box-shadow: 0 6px 26px rgba(0,0,0,0.11); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: min(100% - 32px, var(--shell)); margin-inline: auto; }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo img { width: 46px; height: 46px; object-fit: contain; }
.logo-type { display: grid; font-family: var(--display); line-height: 1.02; text-transform: uppercase; }
.logo-type b { font-size: 1.06rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.logo-type span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em; color: var(--red); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  transition: color 180ms ease;
}
.nav a:hover { color: var(--red); }

.header__cta { display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; background: var(--red); color: var(--white); border-radius: var(--radius); font-family: var(--display); font-size: 0.9rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background-color 200ms ease; }
.header__cta:hover { background: var(--red-dark); }

.burger { display: none; width: 46px; height: 46px; padding: 0; background: transparent; border: 0; cursor: pointer; }
.burger span { display: block; width: 26px; height: 3px; margin: 5px auto; background: var(--red); border-radius: 2px; transition: transform 220ms ease, opacity 180ms ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 89;
  padding: 30px 24px calc(var(--callbar-h) + 30px);
  background: var(--white);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 26px; border-bottom: 0; }
/* .mobile-menu a are specificitate mai mare decât .btn--red — fără asta textul iese negru pe roșu */
.mobile-menu .btn--red { color: var(--white); }

/* ==========================================================================
   PARALLAX
   ========================================================================== */
.parallax { position: relative; isolation: isolate; overflow: hidden; clip-path: inset(0); }
/* Stratificare explicită: fundalul pe 0, conținutul hero pe 1.
   Implicit fundalul e ABSOLUT (stabil peste tot). Efectul de parallax cu
   position:fixed rămâne doar pe desktop cu mouse: pe iOS, clip-ul fundalului
   fixed rămâne în urmă la scroll și hero-ul flashează peste toată pagina —
   utilizatorul „e aruncat pe prima pagină". */
.parallax__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  background: var(--dark);
}
@media (min-width: 821px) and (hover: hover) {
  .parallax__bg { position: fixed; height: 100vh; }
}
.parallax > .shell { position: relative; z-index: 1; }
.parallax__bg picture { display: block; }
.parallax__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.parallax__bg::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,10,14,0.72), rgba(8,10,14,0.82)); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; display: flex; align-items: center; min-height: 100svh; padding: calc(var(--header-h) + 70px) 0 80px; color: var(--white); }
.hero__inner { max-width: 720px; }
.hero h1 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--white);
  font-size: clamp(2.1rem, 6.4vw, 4rem);
  line-height: 1.08;
}
.hero h1::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 6px; background: var(--red); }
.hero .lead { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.2vw, 1.22rem); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(76,175,80,0.2); }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.07); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0; text-align: center; }
.trust__item strong { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.trust__item span { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   SPLIT (text + blurbs)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media img { width: 100%; border-radius: var(--radius); }

.blurb { display: grid; grid-template-columns: 52px 1fr; gap: 18px; margin-top: 30px; }
.blurb__icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--red); }
.blurb__icon svg { width: 40px; height: 40px; }
.blurb h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 6px; }
.blurb p { margin: 0; color: var(--grey); font-size: 0.95rem; }

/* ==========================================================================
   REASONS
   ========================================================================== */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 52px; }
.reason { padding: 38px 30px; background: var(--white); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.reason:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.1); border-color: rgba(237,31,36,0.35); }
.reason__icon { display: grid; place-items: center; width: 66px; height: 66px; margin-bottom: 22px; background: rgba(237,31,36,0.09); border-radius: 50%; color: var(--red); }
.reason__icon svg { width: 32px; height: 32px; }
.reason h3 { font-size: 1.22rem; margin-bottom: 10px; }
.reason p { margin: 0; color: var(--grey); font-size: 0.95rem; }

/* ==========================================================================
   SERVICES (dark)
   ========================================================================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 54px; }
.service { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.02); transition: transform 240ms ease, border-color 240ms ease; }
.service:hover { transform: translateY(-6px); border-color: rgba(237,31,36,0.6); }
.service img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service__body { display: flex; flex-direction: column; flex: 1; padding: 28px 26px 30px; }
.service h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service p { color: var(--grey-light); font-size: 0.95rem; flex: 1; }
.service .btn { margin-top: 20px; align-self: flex-start; }

/* ==========================================================================
   PROCESS / PROMISE
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding: 34px 24px 30px; background: var(--white); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; margin-bottom: 14px; font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--grey); font-size: 0.92rem; }

/* ==========================================================================
   GALLERY (dark)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
.gallery figure { margin: 0; }
.gallery__btn {
  position: relative; display: block; width: 100%; padding: 0; margin: 0;
  background: none; border: 0; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 4 / 3;
}
.gallery__btn picture { display: block; width: 100%; height: 100%; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms cubic-bezier(.2,.8,.2,1); }
.gallery__btn::after { content: "+"; position: absolute; right: 12px; top: 10px; display: grid; place-items: center; width: 32px; height: 32px; color: var(--white); background: rgba(237,31,36,0.9); border-radius: 50%; font-size: 1.2rem; line-height: 1; opacity: 0; transform: scale(.7); transition: opacity 220ms ease, transform 220ms ease; }
@media (hover: hover) {
  .gallery__btn:hover img { transform: scale(1.07); }
  .gallery__btn:hover::after { opacity: 1; transform: scale(1); }
}
.gallery__btn:focus-visible::after { opacity: 1; transform: scale(1); }
.gallery.is-collapsed figure:nth-child(n+9) { display: none; }
.gallery__more { margin-top: 34px; text-align: center; }

.lightbox {
  width: min(96vw, 1120px); max-width: none; max-height: 96vh;
  padding: 0; background: transparent; border: 0; overflow: visible;
}
.lightbox::backdrop { background: rgba(0,0,0,0.9); }
.lightbox__stage { position: relative; padding: 52px 0 0; }
.lightbox figure { margin: 0; }
.lightbox picture { display: block; }
.lightbox img { width: 100%; max-height: calc(96vh - 120px); object-fit: contain; border-radius: var(--radius); background: var(--dark); }
.lightbox figcaption { margin-top: 12px; color: var(--white); font-size: 0.92rem; text-align: center; }
.lightbox__count { color: rgba(255,255,255,0.55); margin-left: 6px; }
.lightbox__close {
  position: absolute; top: 6px; right: 0; z-index: 2;
  width: 40px; height: 40px; background: var(--red); color: var(--white);
  border: 0; border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: var(--red-dark); }
.lightbox__nav {
  position: absolute; top: calc(50% + 26px); transform: translateY(-50%); z-index: 2;
  display: grid; place-items: center; width: 48px; height: 48px;
  background: rgba(0,0,0,0.55); color: var(--white);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; cursor: pointer;
  transition: background-color 180ms ease;
}
.lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }
@media (max-width: 560px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; margin-top: 46px; align-items: start; }
.contact h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }

.contact__item { display: grid; grid-template-columns: 50px 1fr; gap: 16px; margin-bottom: 26px; align-items: start; }
.contact__icon { display: grid; place-items: center; width: 50px; height: 50px; background: var(--red); color: var(--white); border-radius: 50%; }
.contact__icon svg { width: 22px; height: 22px; }
.contact__item strong { display: block; font-family: var(--display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 3px; }
.contact__item a, .contact__item span { font-size: 1.06rem; color: var(--ink); text-decoration: none; font-weight: 600; }
.contact__item a:hover { color: var(--red); }

.lead-form { padding: 34px 30px 36px; background: var(--white); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius); box-shadow: 0 18px 48px rgba(0,0,0,0.07); }
.lead-form h3 { font-size: 1.25rem; margin-bottom: 6px; }
.lead-form > p { color: var(--grey); font-size: 0.92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: block; margin-bottom: 14px; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fbfbfc;
  border: 1px solid rgba(0,0,0,0.16);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(237,31,36,0.14); }
.lead-form textarea { resize: vertical; min-height: 92px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 18px; font-size: 0.8rem; color: var(--grey); font-weight: 400; }
.consent input { width: 18px; height: 18px; flex-shrink: 0; margin: 1px 0 0; accent-color: var(--red); }
.consent span { flex: 1; }
.form-status { margin: 12px 0 0; font-size: 0.85rem; color: var(--grey); min-height: 1.2em; }
.honeypot { position: absolute; left: -9999px; }

/* ==========================================================================
   RED BAND
   ========================================================================== */
.band { background: var(--red-band); color: var(--white); padding: 68px 0; }
.band__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.band h2 { color: var(--white); font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.band p { color: rgba(255,255,255,0.92); font-style: italic; margin: 0; }
.band__phone { display: flex; align-items: center; gap: 18px; }
.band__phone-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 3px solid var(--white); border-radius: 50%; flex-shrink: 0; }
.band__phone-icon svg { width: 28px; height: 28px; }
.band__phone small { display: block; font-size: 1rem; color: rgba(255,255,255,0.92); }
.band__phone a { display: block; font-family: var(--display); font-size: clamp(1.7rem, 4.4vw, 2.4rem); font-weight: 800; color: var(--white); text-decoration: underline; text-underline-offset: 5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { margin-top: 44px; border-top: 1px solid rgba(0,0,0,0.1); }
.faq-list details { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-family: var(--display); font-size: 1.03rem; font-weight: 700; color: var(--ink); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex-shrink: 0; display: grid; place-items: center; width: 28px; height: 28px; background: rgba(237,31,36,0.1); color: var(--red); border-radius: 50%; font-size: 1.2rem; transition: transform 220ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 0 0 22px; color: var(--grey); font-size: 0.96rem; max-width: 76ch; }

/* ==========================================================================
   SUBPAGINI — hero compact, breadcrumbs, conținut editorial
   ========================================================================== */
.page-hero { background: var(--dark); color: var(--grey-light); padding: calc(var(--header-h) + 60px) 0 56px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { position: relative; margin: 0 0 18px; padding-left: 20px; color: var(--white); font-size: clamp(1.9rem, 4.6vw, 2.9rem); line-height: 1.12; }
.page-hero h1::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 5px; background: var(--red); }
.page-hero .lead { color: rgba(255,255,255,0.87); }
.page-hero .hero__actions { margin-top: 28px; }

.crumbs { margin: 0 0 22px; font-size: 0.8rem; color: var(--grey); }
.crumbs a { color: var(--grey-light); text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs [aria-current] { color: var(--grey); }

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.prose li::marker { color: var(--red); }
.prose a { color: var(--red-dark); text-decoration: underline; text-underline-offset: 3px; }

.nav a[aria-current="page"], .mobile-menu a[aria-current="page"] { color: var(--red); }
.service h3 a { color: inherit; text-decoration: none; transition: color 180ms ease; }
.service h3 a:hover { color: var(--red); }
.zones__list a { display: flex; align-items: center; gap: 10px; flex: 1; color: inherit; text-decoration: none; }
.zones__list a:hover strong { color: var(--red); }
.zones__list a small { margin-left: auto; }

.linkrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.linkrow a {
  display: inline-flex; padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.14); border-radius: var(--radius);
  font-family: var(--display); font-size: 0.82rem; font-weight: 700;
  text-decoration: none; color: var(--ink);
  transition: border-color 180ms ease, color 180ms ease;
}
.linkrow a:hover { border-color: var(--red); color: var(--red); }
.section--dark .linkrow a, .section--darker .linkrow a, .page-hero .linkrow a { color: var(--white); border-color: rgba(255,255,255,0.28); }

/* ==========================================================================
   RECENZII
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 52px; text-align: left; }
.review { display: flex; flex-direction: column; padding: 34px 30px 28px; background: var(--white); border: 1px solid rgba(0,0,0,0.09); border-radius: var(--radius); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.review:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.1); border-color: rgba(237,31,36,0.35); }
.review__stars { color: var(--red); font-size: 1.02rem; letter-spacing: 0.22em; margin-bottom: 16px; }
.review blockquote { margin: 0 0 22px; color: var(--ink-2); font-size: 0.97rem; line-height: 1.65; flex: 1; }
.review footer { display: flex; align-items: center; gap: 13px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 18px; }
.review__avatar { display: grid; place-items: center; width: 44px; height: 44px; background: rgba(237,31,36,0.09); border-radius: 50%; color: var(--red); font-family: var(--display); font-size: 1rem; font-weight: 800; flex-shrink: 0; }
.review footer strong { display: block; font-family: var(--display); font-size: 0.94rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.review footer span { display: block; font-size: 0.79rem; color: var(--grey); }

/* ==========================================================================
   ZONE DE LUCRU — hartă
   ========================================================================== */
.zones__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.zones__list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 22px; margin: 0 0 32px; padding: 0; list-style: none; }
.zones__list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.zones__list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.zones__list strong { font-family: var(--display); font-size: 0.96rem; font-weight: 700; color: var(--white); }
.zones__list small { margin-left: auto; font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.07em; }

.zones__map { position: relative; }
.zones__svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 26px 52px rgba(0,0,0,0.5)); }
.zones__note { margin: 20px 0 0; font-size: 0.84rem; color: var(--grey); text-align: center; }

.zmap__rest path { fill: rgba(255,255,255,0.045); stroke: rgba(255,255,255,0.13); stroke-width: 1; }
.zmap__county { fill: rgba(237,31,36,0.3); stroke: rgba(237,31,36,0.85); stroke-width: 1.3; transition: fill 200ms ease; }
.zmap__county:hover, .zmap__county.is-hot { fill: rgba(237,31,36,0.55); }
.zmap__cities { pointer-events: none; }
.zmap__dot { fill: var(--white); stroke: var(--red); stroke-width: 2.6; }
.zmap__halo { fill: rgba(237,31,36,0.4); }
html.js .zmap__halo { animation: zpulse 2.6s ease-out infinite; }
.zmap__city:nth-child(2n) .zmap__halo { animation-delay: 0.9s; }
.zmap__city:nth-child(3n) .zmap__halo { animation-delay: 1.7s; }
.zmap__label { fill: var(--white); font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: 0.01em; paint-order: stroke; stroke: rgba(10,10,10,0.6); stroke-width: 4px; stroke-linejoin: round; }
.zmap__city--main .zmap__label { font-size: 19px; }
@keyframes zpulse {
  0% { transform: scale(0.35); opacity: 0.9; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { html.js .zmap__halo { animation: none; opacity: 0.35; } }

.zmap__tip {
  position: absolute; z-index: 5; pointer-events: none;
  padding: 8px 14px; background: var(--white); color: var(--ink);
  font-family: var(--display); font-size: 0.84rem; font-weight: 700; white-space: nowrap;
  border-radius: var(--radius); box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transform: translate(-50%, calc(-100% - 16px));
}
.zmap__tip::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 10px; height: 10px; background: var(--white); transform: translateX(-50%) rotate(45deg); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--grey-light); padding: 66px 0 0; }
.footer h3 { color: var(--white); font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 9px; font-size: 0.92rem; }
.footer a { color: var(--grey-light); text-decoration: none; transition: color 180ms ease; }
.footer a:hover { color: var(--red); }
.footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer__logo img { width: 44px; height: 44px; object-fit: contain; }
.footer__logo .logo-type b { color: var(--white); }
.footer__about { font-size: 0.92rem; max-width: 42ch; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; font-size: 0.82rem; color: #8c8c8c; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; }

/* ==========================================================================
   STICKY CALL BAR
   ========================================================================== */
.callbar { position: fixed; inset: auto 0 0; z-index: 95; display: grid; grid-template-columns: 1fr 1fr; height: var(--callbar-h); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--display); font-size: 1.02rem; font-weight: 700; color: var(--white); text-decoration: none; }
.callbar svg { width: 21px; height: 21px; }
.callbar__call { background: var(--green); }
.callbar__call:hover { background: var(--green-dark); }
.callbar__wa { background: #25d366; }
.callbar__wa:hover { background: #1ebe5a; }

/* ==========================================================================
   REVEAL (gated pe .js ca să nu rămână pagina goală fără JS)
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.is-visible,
html.js .reveal.is-instant {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .reasons { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .band__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; gap: 22px; }
  .zones__grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 820px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .section { padding: 62px 0; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 92svh; padding-top: calc(var(--header-h) + 46px); }
  /* background-attachment fix e nesigur pe iOS — parallax rămâne pe tehnica clip-path */
}

@media (max-width: 820px) {
  .zmap__label { font-size: 22px; stroke-width: 5px; }
  .zmap__city--main .zmap__label { font-size: 25px; }
  .zmap__dot { r: 6px; }
  .zmap__halo { r: 14px; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .gallery.is-collapsed figure:nth-child(n+7) { display: none; }
  .zones__list { grid-template-columns: 1fr; }
  .zmap__label { font-size: 25px; stroke-width: 5px; }
  .zmap__city--main .zmap__label { font-size: 29px; }
  .zmap__dot { r: 8px; stroke-width: 3.4; }
  .zmap__halo { r: 18px; }
  /* la lățime mică, Constanța se ciocnește cu Călărași — o coborâm */
  .zmap__city[data-city="Constanța"] .zmap__label { transform: translateY(12px); }
}

/* ==========================================================================
   A11Y — focus vizibil, text doar pentru cititoare de ecran
   ========================================================================== */
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}
.section--dark :focus-visible,
.section--darker :focus-visible,
.hero :focus-visible,
.footer :focus-visible { outline-color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  padding: 12px 20px; background: var(--red); color: var(--white);
  font-family: var(--display); font-weight: 700; text-decoration: none; border-radius: var(--radius);
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   FORMULAR — stări de validare + select stilizat
   ========================================================================== */
.lead-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707173' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"] { border-color: var(--red); background: #fff6f6; }
.field-error { display: block; margin-top: 5px; color: var(--red-dark); font-size: 0.76rem; font-weight: 600; }
.form-status { transition: color 180ms ease; }
.form-status[data-state="ok"] { color: var(--green-dark); font-weight: 600; }
.form-status[data-state="error"] { color: var(--red-dark); font-weight: 600; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   BULĂ WHATSAPP (desktop) + CALLBAR (mobil)
   ========================================================================== */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 94;
  display: none; align-items: center; gap: 12px;
  height: 58px; padding: 0 16px;
  background: #25d366; color: var(--white);
  border-radius: 999px; box-shadow: 0 12px 34px rgba(0,0,0,0.26);
  font-family: var(--display); font-size: 0.94rem; font-weight: 700; text-decoration: none;
  transition: max-width 260ms ease, background-color 200ms ease, transform 200ms ease;
  max-width: 58px; overflow: hidden; white-space: nowrap;
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float span { opacity: 0; transition: opacity 200ms ease 60ms; }
@media (hover: hover) {
  .wa-float:hover { max-width: 320px; background: #1ebe5a; transform: translateY(-2px); }
  .wa-float:hover span { opacity: 1; }
}
.wa-float:focus-visible { max-width: 320px; }
.wa-float:focus-visible span { opacity: 1; }

@media (min-width: 821px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
  .wa-float { display: inline-flex; }
}

/* content-visibility:auto pe secțiunile lungi a fost SCOS: estimarea de 800px
   nu se potrivea cu înălțimea reală (galeria extinsă are ~1400px), iar la
   scroll browserul teleporta poziția — „mă aruncă pe prima pagină". */

/* ==========================================================================
   MOTION — respectăm setarea sistemului peste tot
   ========================================================================== */
@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;
  }
  .btn:hover, .reason:hover, .service:hover, .wa-float:hover { transform: none; }
}

/* efectele de hover nu au sens pe touch — evită stările „lipite" */
@media (hover: none) {
  .btn:hover, .reason:hover, .service:hover { transform: none; box-shadow: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .header, .mobile-menu, .callbar, .wa-float, .gallery__more, .lightbox, .hero__actions { display: none !important; }
  .parallax__bg { display: none; }
  body { padding-bottom: 0; color: #000; }
  .section, .band, .footer { background: #fff !important; color: #000 !important; padding: 18px 0; }
  .section--dark h2, .section--dark h3, .section--darker h2, .section--darker h3, .band h2, .footer h3 { color: #000 !important; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
}

/* ==========================================================================
   PAGINI SIMPLE (mulțumim / 404)
   ========================================================================== */
.page-simple { padding-bottom: 0; background: var(--dark); color: var(--grey-light); }
.simple { min-height: 100svh; display: grid; place-items: center; padding: 48px 0; }
.simple__logo { width: 120px; height: 120px; margin: 0 auto 26px; object-fit: contain; }
.simple h1 { color: var(--white); font-size: clamp(2.2rem, 7vw, 3.8rem); line-height: 1.06; }
.simple .lead { color: var(--grey-light); margin-inline: auto; margin-bottom: 32px; }
.simple__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.simple__back { margin-top: 30px; font-size: 0.9rem; color: var(--grey); }
.simple__back a { color: var(--grey-light); text-decoration: underline; text-underline-offset: 4px; }
.simple__back a:hover { color: var(--red); }
@media (max-width: 560px) {
  .simple__actions { flex-direction: column; align-items: stretch; }
  .simple__actions .btn { width: 100%; }
}
