/* ═══════════════════════════════════════════════════════════════
   CUMPĂRĂM MAȘINI RULATE — Editorial Luxury Design System
   Paletă: negru cald (espresso) + bronz-auriu antic
   Tipografie: Fraunces (titluri, editorial serif) + Manrope (text)
   Structură inspirată din referințe 21st.dev: bento cu badge+tag-uri,
   testimoniale „spotlight" (card central), wordmark-fantomă în hero.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black: #120f0d;
  --black-soft: #1a1613;
  --black-card: #201b17;
  --gold: #c08a42;
  --gold-light: #e0b877;
  --gold-dim: rgba(192, 138, 66, 0.12);
  --gold-border: rgba(192, 138, 66, 0.28);
  --cream: #f3ead9;
  --white: #ffffff;
  --grey: #b3a99a;
  /* era #8a8071: doar 4.39:1 pe --black-card (sub AA) — #948a79 trece 5:1+
     pe toate cele trei fundaluri negre folosite în site */
  --grey-dark: #948a79;
  --border: rgba(255, 255, 255, 0.08);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --space-section: clamp(88px, 11vw, 160px);
  --space-lg: clamp(44px, 5.5vw, 88px);
  --space-md: clamp(24px, 3vw, 44px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 100;
  --z-menu: 90;
  --z-sticky: 110;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
section[id], main[id] { scroll-margin-top: 84px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
ol, ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* h1 rămâne cu litere normale — pe titlul lung din hero, pe 4 rânduri,
   majusculele îngreunau citirea. h2/h3 (titluri scurte de secțiune) rămân uppercase. */
h2, h3 { text-transform: uppercase; letter-spacing: 0.01em; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 2000;
  background: var(--gold); color: var(--black);
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  padding: 12px 20px; border-radius: 3px;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 44px, 1220px); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--space-section); }

[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.gold-text {
  background: linear-gradient(105deg, #93672e 0%, var(--gold-light) 45%, var(--gold) 75%, #f0d9a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGAȚIE
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  padding-block: 6px;
  transition: background-color 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(18, 15, 13, 0.66);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding-block: 4px;
}
.nav__inner {
  width: min(100% - 44px, 1300px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark { height: 112px; width: auto; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-text strong {
  font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.01em;
}
.nav__logo-text > span {
  font-size: 9.5px; letter-spacing: 0.42em; color: var(--gold-light); margin-top: 2px;
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); position: relative; padding-block: 4px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(18, 15, 13, 0.98);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 44px; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: clamp(26px, 6.5vw, 36px);
  padding: 8px 16px; color: var(--white); transition: color 0.3s;
}
.mobile-menu nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BUTOANE
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; padding: 16px 30px; min-height: 48px;
  border: 1px solid transparent; border-radius: 3px;
  cursor: pointer; touch-action: manipulation;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s,
              box-shadow 0.3s, transform 0.25s var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%);
  color: var(--black);
  box-shadow: 0 10px 30px -8px rgba(192, 138, 66, 0.55);
}
.btn--gold:hover { box-shadow: 0 6px 16px -6px rgba(192, 138, 66, 0.35); filter: brightness(1.05); }
.btn--ghost {
  background: transparent; color: var(--cream); border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--lg { padding: 18px 36px; font-size: 14px; }
.btn--xl { padding: 21px 48px; font-size: 15.5px; }
.btn--nav { padding: 11px 20px; min-height: 42px; white-space: nowrap; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HERO — wordmark-fantomă în fundal + card flotant cu tilt
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(120px, 15vw, 160px); padding-bottom: var(--space-section);
  background:
    radial-gradient(ellipse 60% 50% at 82% 12%, rgba(192, 138, 66, 0.14), transparent),
    var(--black);
}
.hero__ghost {
  position: absolute; top: 4%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(110px, 17vw, 300px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(192, 138, 66, 0.14);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(38px, 5.4vw, 62px); line-height: 1.08; letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__sub {
  color: var(--grey); font-size: clamp(16px, 1.6vw, 18px);
  max-width: 480px; margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats { display: flex; gap: clamp(28px, 3.5vw, 48px); flex-wrap: wrap; }
.hero__stat strong {
  display: block; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600; margin-bottom: 4px;
}
.hero__stat span { font-size: 12.5px; color: var(--grey-dark); letter-spacing: 0.03em; }

.hero__visual { position: relative; perspective: 1400px; }
.hero__photo {
  position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  aspect-ratio: 4/5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,15,13,0.55), transparent 40%);
}
.hero__card {
  position: absolute; left: -28px; bottom: 34px; z-index: 2;
  background: rgba(26, 22, 19, 0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border); border-radius: 6px;
  padding: 18px 22px; max-width: 250px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  display: flex; align-items: center; gap: 14px;
  will-change: transform;
}
.hero__card-icon {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  background: var(--gold-dim); color: var(--gold-light);
  display: grid; place-items: center;
}
.hero__card-icon svg { width: 20px; height: 20px; }
.hero__card strong { display: block; font-family: var(--serif); font-size: 15px; margin-bottom: 2px; }
.hero__card span { font-size: 12px; color: var(--grey-dark); }
.hero__badge-top {
  position: absolute; right: -16px; top: 24px; z-index: 2;
  background: var(--gold); color: var(--black);
  border-radius: 999px; padding: 10px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: 0 20px 40px -14px rgba(192, 138, 66, 0.6);
  display: flex; align-items: center; gap: 6px;
}
.hero__badge-top svg { width: 13px; height: 13px; }

/* ═══════════════════════════════════════════════════════════════
   HEADERE SECȚIUNI
   ═══════════════════════════════════════════════════════════════ */
.section__head { max-width: 720px; margin-inline: auto; margin-bottom: var(--space-lg); text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.section__eyebrow::before, .section__eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 3.4vw, 36px); line-height: 1.18; margin-bottom: 18px;
}
.section__title em { font-style: italic; font-weight: 500; color: var(--gold-light); }
.section__lead { color: var(--grey); font-size: 16.5px; }

/* ═══════════════════════════════════════════════════════════════
   MĂRCI
   ═══════════════════════════════════════════════════════════════ */
.brands { background: var(--black-soft); border-block: 1px solid var(--border); }
.brands__marquee {
  display: flex; overflow: hidden; user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.brands__track { display: flex; align-items: stretch; gap: 16px; flex-shrink: 0; padding-right: 16px; animation: marquee 75s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }
.brands__marquee:hover .brands__track, .brands__marquee.is-paused .brands__track { animation-play-state: paused; }
.brands__cell {
  background: var(--black-card); border: 1px solid var(--border); border-radius: 4px;
  padding: 22px clamp(26px, 2.6vw, 40px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  white-space: nowrap; transition: border-color 0.35s;
}
.brands__cell:hover { border-color: var(--gold-border); }
/* SVG inline, colorat prin currentColor — exact, nu prin filtre CSS
   (filtrele sepia+saturate dădeau culori inconsistente între logo-uri,
   ex. Volvo ieșea galben în loc de auriu) */
.brands__logo {
  display: block; width: clamp(110px, 10.5vw, 140px); height: clamp(48px, 4.8vw, 60px);
  color: var(--grey); opacity: 0.85;
  transition: color 0.35s, opacity 0.35s;
}
.brands__cell:hover .brands__logo {
  color: var(--gold-light);
  opacity: 1;
}
.brands__origin { font-size: 10.5px; letter-spacing: 0.25em; color: var(--grey-dark); text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════════
   PAȘI
   ═══════════════════════════════════════════════════════════════ */
/* Desktop/tabletă: grid clasic pe 4 coloane (ca înainte).
   Stacking cards (teanc, sticky) e activat doar pe telefon — vezi
   media query mai jos. */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps__card {
  background: var(--black-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: clamp(28px, 3vw, 40px); position: relative; overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.steps__card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
/* imagine de fundal, foarte discretă — se luminează ușor la hover */
.steps__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.steps__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.16;
  filter: saturate(0.5) brightness(0.65);
  transition: opacity 0.4s, transform 0.6s var(--ease-out);
}
.steps__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black-soft) 18%, rgba(26,22,19,0.55) 60%, rgba(26,22,19,0.25));
}
.steps__card:hover .steps__bg img { opacity: 0.3; transform: scale(1.06); }
.steps__card > :not(.steps__bg) { position: relative; z-index: 1; }
.steps__num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-light); display: block; margin-bottom: 28px; }
.steps__icon {
  width: 46px; height: 46px; margin-bottom: 22px; color: var(--gold-light);
  border: 1px solid var(--gold-border); border-radius: 50%; display: grid; place-items: center;
}
.steps__icon svg { width: 20px; height: 20px; }
.steps__card h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.steps__card p { color: var(--grey); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   BENTO — carduri elegante, în ton cu restul site-ului (fără
   badge-uri pill / tag-uri hashtag / textură de puncte — prea „tech")
   ═══════════════════════════════════════════════════════════════ */
.bento { background: var(--black-soft); border-block: 1px solid var(--border); }
.bento__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: minmax(210px, auto); }
.bento__card {
  background: var(--black-card); border: 1px solid var(--border); border-radius: 8px;
  padding: clamp(26px, 2.6vw, 34px); position: relative; overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
  display: flex; flex-direction: column;
}
.bento__card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.bento__card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.bento__card:hover::after { transform: scaleX(1); }
.bento__card--wide { grid-column: span 2; }
/* pătratul mare din mijloc — ocupă coloana centrală pe ambele rânduri,
   cele 4 carduri mici rămân în jurul lui, pe colțuri */
.bento__card--center {
  grid-column: 2; grid-row: 1 / span 2;
  justify-content: center; align-items: center; text-align: center;
  padding: clamp(36px, 4vw, 56px);
  background: linear-gradient(155deg, #2a2119, var(--black-card) 70%);
}
.bento__card--center .bento__icon { width: 58px; height: 58px; }
.bento__card--center .bento__icon svg { width: 25px; height: 25px; }
/* panou semi-transparent doar în spatele textului — poza rămâne luminoasă
   peste tot în rest, fără o pânză întunecată pe toată suprafața */
.bento__card--center .bento__scrim {
  background: rgba(18, 15, 13, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 12px; padding: 22px 26px;
  display: flex; flex-direction: column; align-items: center;
}
.bento__card--center h3 { font-size: 23px; }
.bento__card--center p { max-width: 34ch; }
.bento__card--center .bento__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
/* imaginea e mai înaltă decât cardul (136%) ca să existe rezervă de mișcare
   pentru parallax-ul din JS, fără să se vadă margini goale */
.bento__card--center .bento__bg img {
  position: absolute; left: 0; top: -18%; width: 100%; height: 136%; object-fit: cover;
  filter: saturate(1) brightness(1);
  transition: filter 0.4s;
  will-change: transform;
}
/* fără overlay întunecat — imaginea rămâne vizibilă la luminozitate naturală;
   lizibilitatea textului e asigurată de text-shadow, nu de o pânză peste poză */
.bento__card--center:hover .bento__bg img { filter: saturate(1.05) brightness(1.05); }
.bento__card--center > :not(.bento__bg) { position: relative; z-index: 1; }
.bento__photo {
  margin-top: auto; padding-top: 20px; border-radius: 5px; overflow: hidden;
  aspect-ratio: 16/9;
}
.bento__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.92); }
.bento__top { margin-bottom: 22px; }
.bento__icon {
  width: 46px; height: 46px; color: var(--gold-light);
  border: 1px solid var(--gold-border); border-radius: 50%;
  display: grid; place-items: center;
  transition: background-color 0.4s;
}
.bento__card:hover .bento__icon { background: var(--gold-dim); }
.bento__icon svg { width: 20px; height: 20px; }
.bento__card h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.bento__card p { color: var(--grey); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALE „SPOTLIGHT" — card central evidențiat
   ═══════════════════════════════════════════════════════════════ */
.testimonials__grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; align-items: stretch;
}
.testimonial-card {
  border-radius: 10px; padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--border); background: var(--black-soft);
  opacity: 0.5; transform: scale(0.96);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.4s;
  cursor: pointer;
}
.testimonial-card:hover { opacity: 0.8; }
.testimonial-card.is-active {
  opacity: 1; transform: scale(1);
  background: linear-gradient(155deg, #2a2119, var(--black-card) 70%);
  border-color: var(--gold-border);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.6);
}
.testimonial-card__stars { color: var(--gold-light); letter-spacing: 4px; margin-bottom: 20px; font-size: 14px; }
.testimonial-card p.quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.5; margin-bottom: 24px; color: var(--cream);
}
.testimonial-card:not(.is-active) p.quote { color: var(--grey-dark); }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card footer img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--gold-border); filter: saturate(0.9);
}
.testimonial-card footer strong { display: block; font-weight: 600; font-size: 14px; }
.testimonial-card footer span { color: var(--grey-dark); font-size: 12.5px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__visual { position: sticky; top: 110px; max-width: 500px; margin-left: auto; }
.faq__visual .hero__photo { aspect-ratio: 4/4.6; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover h3 { color: var(--gold-light); }
.faq__item summary h3 { font-family: var(--serif); font-size: clamp(17px, 2vw, 20px); font-weight: 600; transition: color 0.25s; }
.faq__plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--gold-light); transition: transform 0.35s var(--ease-out); }
.faq__plus::before { left: 0; top: 7px; width: 16px; height: 1.4px; }
.faq__plus::after { left: 7px; top: 0; width: 1.4px; height: 16px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--grey); padding: 0 4px 28px; max-width: 92%; }

/* ═══════════════════════════════════════════════════════════════
   FORMULAR
   ═══════════════════════════════════════════════════════════════ */
.form-section { background: var(--black-soft); border-block: 1px solid var(--border); }
.form-card { background: var(--black-card); border: 1px solid var(--border); border-radius: 10px; padding: clamp(28px, 4vw, 46px); }
.eval-form { display: flex; flex-direction: column; gap: 22px; }
.eval-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.eval-form__row--3 { grid-template-columns: repeat(3, 1fr); }
.eval-form__field { display: flex; flex-direction: column; gap: 8px; }
.eval-form__field label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.eval-form__field label span { color: var(--gold-light); }
.eval-form__field input, .eval-form__field select {
  background: var(--black); border: 1px solid var(--border); border-radius: 3px;
  color: var(--white); font-family: var(--sans); font-size: 16px;
  padding: 14px 16px; min-height: 50px; width: 100%; appearance: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.eval-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c08a42' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; cursor: pointer;
}
.eval-form__field input::placeholder { color: var(--grey-dark); }
.eval-form__field input:focus, .eval-form__field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.eval-form__field input.is-invalid, .eval-form__field select.is-invalid { border-color: #c0625a; }
.eval-form__error { color: #d3897f; font-size: 14px; font-weight: 600; }
.eval-form__note { color: var(--grey-dark); font-size: 13px; text-align: center; }
.eval-form__note a { color: var(--grey); text-decoration: underline; text-underline-offset: 3px; }
.eval-form__note a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.final-cta { position: relative; overflow: hidden; padding-block: var(--space-section); text-align: center; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.55); }
.final-cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(192, 138, 66, 0.16), transparent),
    linear-gradient(to bottom, rgba(18,15,13,0.88), rgba(18,15,13,0.75) 45%, rgba(18,15,13,0.94));
}
.final-cta__ghost {
  position: absolute; z-index: 1; bottom: -8%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(90px, 15vw, 240px); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(192, 138, 66, 0.12); white-space: nowrap; pointer-events: none; user-select: none;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta__title { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 5vw, 52px); line-height: 1.15; margin-bottom: 18px; }
.final-cta__title em { font-style: italic; color: var(--gold-light); }
.final-cta p { color: var(--grey); margin-bottom: 40px; font-size: 17px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); background: var(--black-soft); padding-top: var(--space-lg); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: var(--space-md); padding-bottom: var(--space-lg); }
.footer__logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer__logo-mark { height: 144px; width: auto; flex-shrink: 0; }
.footer__logo-text strong { font-family: var(--serif); font-size: 19px; font-weight: 600; display: block; margin-bottom: 4px; }
.footer__logo-text span { font-size: 10px; letter-spacing: 0.4em; color: var(--gold-light); }
.footer__brand p { color: var(--grey); font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer__col h3 { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 20px; }
.footer__col a, .footer__col p { display: block; color: var(--grey); font-size: 14.5px; margin-bottom: 2px; padding-block: 9px; transition: color 0.3s; width: fit-content; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-block: 24px; color: var(--grey-dark); font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP + STICKY BAR
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; right: 30px; bottom: 30px; z-index: var(--z-sticky);
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: none; place-items: center; box-shadow: 0 10px 28px -6px rgba(0,0,0,0.45);
  transition: transform 0.25s var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.07); }
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  display: grid; grid-template-columns: 1fr 1fr; background: var(--black-soft);
  border-top: 1px solid var(--border); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.sticky-bar__btn { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; border-radius: 3px; font-size: 13px; font-weight: 600; touch-action: manipulation; transition: transform 0.2s var(--ease-out); }
.sticky-bar__btn:active { transform: scale(0.97); }
.sticky-bar__btn--call { background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%); color: var(--black); }
.sticky-bar__btn--wa { background: #25d366; color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) { .whatsapp-float { display: grid; } .sticky-bar { display: none; } }

@media (max-width: 1024px) {
  .nav__links { display: none; } .btn--nav { display: none; } .nav__burger { display: flex; }
  body { padding-bottom: 74px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; } .hero__cta, .hero__stats { justify-content: center; }
  .hero__visual { max-width: 440px; margin-inline: auto; }
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .bento__card--center { grid-column: span 2; grid-row: auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .testimonial-card { opacity: 1; transform: none; display: none; }
  .testimonial-card.is-active { display: flex; }
  .testimonials__nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
  .testimonials__arrow { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; color: var(--grey); transition: border-color 0.3s, color 0.3s; }
  .testimonials__arrow:hover { border-color: var(--gold); color: var(--gold-light); }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__visual { position: static; max-width: 380px; margin: 0 auto var(--space-lg); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brands__marquee { -webkit-mask-image: none; mask-image: none; position: relative; }
  .brands__marquee::before, .brands__marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 30px; z-index: 2; pointer-events: none; }
  .brands__marquee::before { left: 0; background: linear-gradient(to right, var(--black-soft), transparent); }
  .brands__marquee::after { right: 0; background: linear-gradient(to left, var(--black-soft), transparent); }
  /* Stacking cards — doar pe telefon: cardul cu imagine rămâne static,
     în flux normal, NU intră în stack; celelalte 4 carduri se suprapun
     între ele, ca la secțiunea „Pași". */
  .bento__grid { display: block; grid-template-columns: 1fr; max-width: 100%; padding-top: 40px; }
  .bento__card--center { grid-column: auto; grid-row: auto; margin-bottom: 24px; }
  .bento__card:not(.bento__card--center) {
    position: sticky; margin-bottom: 24px; will-change: transform, filter;
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
  }
  .bento__card:not(.bento__card--center):hover { transform: none; }
  .bento__card:nth-child(2) { top: 96px; z-index: 1; }
  .bento__card:nth-child(3) { top: 122px; z-index: 2; }
  .bento__card:nth-child(4) { top: 148px; z-index: 3; }
  .bento__card:nth-child(5) { top: 174px; z-index: 4; margin-bottom: 0; }
  .eval-form__row, .eval-form__row--3 { grid-template-columns: 1fr; }
  .hero__card, .hero__badge-top { display: none; }
  .hero__eyebrow::before { display: none; }
  .hero .hero__cta { display: none; }
  .nav__logo-mark { height: 84px; }
  .nav.is-scrolled { background: rgba(18, 15, 13, 0.42); }
  .final-cta .hero__cta {
    flex-wrap: nowrap; gap: 10px;
  }
  .final-cta .hero__cta .btn {
    padding: 16px 14px; font-size: 12.5px; flex: 1 1 0; white-space: nowrap;
  }

  /* Stacking cards — doar pe telefon: coloană unică, fiecare card
     „lipit" (sticky) cu un prag puțin mai jos decât precedentul —
     la scroll, următorul urcă și îl acoperă pe cel dinainte. */
  .steps__grid { display: block; max-width: 100%; padding-top: 40px; }
  .steps__card {
    position: sticky; margin-bottom: 24px; will-change: transform, filter;
    box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
    transition: border-color 0.35s;
  }
  .steps__card:hover { transform: none; }
  .steps__card:nth-child(1) { top: 96px; z-index: 1; }
  .steps__card:nth-child(2) { top: 122px; z-index: 2; }
  .steps__card:nth-child(3) { top: 148px; z-index: 3; }
  .steps__card:nth-child(4) { top: 174px; z-index: 4; margin-bottom: 0; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .container { width: calc(100% - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .brands__track { animation: none; flex-wrap: wrap; }
  [data-reveal] { opacity: 1; transform: none; }
}
