/* ════════════════════════════════════════════════════════════════
   Ecomlab — design system
   Verde brand #1DDA0F · Ink #131313 · Cal Sans / Inter
   ════════════════════════════════════════════════════════════════ */

:root {
  --green: #1DDA0F;
  --green-soft: rgba(29, 218, 15, 0.35);
  --ink: #131313;
  --ink-2: #2b2b2b;
  --paper: #ffffff;
  --paper-soft: #f4f4f2;
  --line: #e7e7e4;
  --muted: #5d6167;
  --muted-2: #9ca0a6;
  --dark-panel: #0d0d0d;

  --font-display: "Cal Sans", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-card: 28px;
  --radius-panel: 36px;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --nav-h: 66px;

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 34px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0925rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; }
p { margin: 0; }
strong { font-weight: 500; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; }

::selection { background: var(--green); color: var(--ink); }

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

/* ── Butoane ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s;
}

.btn--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 14px 34px -12px var(--green-soft);
}

.btn--primary:hover { background: #24ec15; transform: translateY(-2px); box-shadow: 0 20px 40px -12px var(--green-soft); }
.btn--primary:active { transform: translateY(0); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #ececea; transform: translateY(-2px); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.06rem; min-height: 56px; }

.btn__arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Meniu fix ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: min(1240px, calc(100% - 2 * clamp(0.75rem, 2.5vw, 1.75rem)));
  height: var(--nav-h);
  padding-inline: clamp(1.1rem, 2vw, 1.6rem) clamp(0.5rem, 1vw, 0.65rem);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.28);
}

.nav__brand { flex: none; display: inline-flex; }
.nav__brand img { width: 132px; height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.6vw, 0.5rem);
  margin-inline: auto;
}

.nav__links a:not(.btn) {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-2);
  transition: color 0.2s, background-color 0.2s;
}

.nav__links a:not(.btn):hover {
  color: var(--ink);
  background: rgba(19, 19, 19, 0.06);
}

.nav__cta { flex: none; }
.nav__cta-mobile { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out);
}

.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 14px + clamp(3.5rem, 8vh, 6.5rem)) var(--gutter) 0;
  text-align: center;
}

.hero__title {
  margin: 0 auto;
  font-size: clamp(2.6rem, 7.4vw, 6.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.hero__title em { font-style: normal; color: var(--green); }

.hero__line { display: block; }

.hero__chip {
  display: inline-block;
  width: auto;
  height: 0.82em;
  border-radius: 999px;
  object-fit: cover;
  vertical-align: -0.12em;
  margin-inline: 0.08em;
}

.hero__chip--wide { aspect-ratio: 1.6 / 1; }

.hero__sub {
  margin: 1.75rem auto 0;
  max-width: 52ch;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: var(--muted);
}

.hero .btn { margin-top: 2.2rem; }

.hero__note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted-2);
}

/* ── Logo-uri clienți ──────────────────────────────────────────── */
.clients { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  --mq-gap: clamp(4rem, 8.5vw, 8rem);
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee__track img { height: clamp(34px, 4.6vw, 50px); width: auto; }

/* un grup de conținut; fiecare marquee are exact două grupuri identice,
   scrise static în HTML — nimic calculat, nimic clonat */
.mq {
  flex: none;
  display: flex;
  align-items: center;
  gap: var(--mq-gap);
  padding-right: var(--mq-gap);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Benzi diagonale ───────────────────────────────────────────── */
.ribbons {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0;
  overflow: hidden;
}

.ribbon {
  position: relative;
  width: 122vw;
  left: -11vw;
  overflow: hidden;
  padding-block: clamp(1.05rem, 2vw, 1.65rem);
}

.ribbon--green { background: var(--green); transform: rotate(-5.5deg); z-index: 2; }
.ribbon--black { background: var(--ink); transform: rotate(3.8deg); margin-top: clamp(-2.6rem, -2vw, -1.4rem); }

.ribbon__track {
  --mq-gap: clamp(1.6rem, 3vw, 2.75rem);
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.ribbon__track--reverse { animation-direction: reverse; }

.ribbon__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  color: #fff;
  white-space: nowrap;
}

.ribbon--green .ribbon__track span { color: var(--ink); }

.spark {
  flex: none;
  width: 0.9em;
  height: 0.9em;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.ribbon--green .spark { background: var(--ink); }
.spark--green { background: var(--green); }
.spark--dark { background: var(--ink); width: 0.55em; height: 0.55em; }

/* ── Kicker + titluri fantomă + lead ───────────────────────────── */
.kicker {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.ghost {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: linear-gradient(180deg, #d4d4d2 4%, rgba(212, 212, 210, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.ghost--xl { font-size: clamp(4rem, 14.5vw, 15rem); }

/* pentru titluri lungi care altfel ies din pagină */
.ghost--fit { font-size: clamp(2.6rem, 10.8vw, 10.5rem); }

.section-lead {
  max-width: 56ch;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--ink-2);
}

.lead-fade { color: var(--muted-2); }

/* ── Proiecte ──────────────────────────────────────────────────── */
.projects {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.media-block {
  max-width: 1400px;
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  padding-inline: var(--gutter);
}

.media-block__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-align: center;
}

.media-block__title svg { color: var(--green); flex: none; }

.media-block__sub {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 60ch;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  margin-top: 1.75rem;
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(29, 218, 15, 0.16), transparent 60%),
    linear-gradient(160deg, #191919, #0c0c0c);
  display: grid;
  place-items: center;
}

.reel video { width: 100%; height: 100%; object-fit: cover; }

/* Buton central play, cu sunet la redare */
.reel__play {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.25s, transform 0.2s var(--ease-out);
}

.reel__play:active { transform: translate(-50%, -50%) scale(0.94); }

.reel__soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.reel__soon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 13px solid rgba(255, 255, 255, 0.45);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: 1.75rem;
}

.shot {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
}

.shot img { width: 100%; height: 100%; object-fit: cover; }

.shot .reel__soon { color: var(--muted-2); }
.shot .reel__soon::before { display: none; }

.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1.75rem;
}

.project img {
  /* dimensiunea/proporția originală a capturii, fără crop */
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.project:hover img {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -22px rgba(0, 0, 0, 0.35);
}

.project__caption {
  padding: 0.9rem 0.25rem 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--muted);
}

.project__caption strong { color: var(--ink); }

.section-cta {
  display: flex;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

/* ── Ce facem ──────────────────────────────────────────────────── */
.services {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}

.services .ghost { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.services__list {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  border-top: 1px solid var(--line);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1.1fr 1.3fr 3rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(0.5rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease-out);
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
}

.service:hover::before { transform: scaleY(1); }

.service > * { position: relative; z-index: 1; }

.service__index {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--muted-2);
  transition: color 0.3s;
}

.service__name {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.12;
}

.service__desc {
  color: var(--muted);
  max-width: 46ch;
  transition: color 0.3s;
}

.service__arrow {
  justify-self: end;
  color: var(--ink);
  transform: translateY(4px);
  opacity: 0.35;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.service:hover .service__index,
.service:hover .service__desc { color: var(--ink-2); }

.service:hover .service__arrow { transform: translate(3px, -1px); opacity: 1; }

/* ── Cum lucrăm ────────────────────────────────────────────────── */
.process {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1400px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-inline: var(--gutter);
}

.step {
  position: relative;
  overflow: hidden;
  background: var(--paper-soft);
  border-radius: 26px;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid var(--line);
  transition: background-color 0.45s var(--ease-out), border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

/* numărul gigant, doar contur, în colțul cardului */
.step::before {
  content: attr(data-n);
  position: absolute;
  top: -1.6rem;
  right: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.5rem, 8vw, 7.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(19, 19, 19, 0.15);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.45s, transform 0.5s var(--ease-out);
}

/* linia de progres care se umple pe hover */
.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--green);
  transition: right 0.5s var(--ease-out);
}

.step > * { position: relative; z-index: 1; }

.step:hover {
  background: var(--dark-panel);
  border-color: var(--dark-panel);
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.45);
}

.step:hover::before { -webkit-text-stroke-color: rgba(29, 218, 15, 0.6); transform: translateY(-5px); }
.step:hover::after { right: 0; }

.step__num {
  display: inline-block;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

.step:hover .step__num { background: var(--green); border-color: var(--green); color: var(--ink); }

.step h3 {
  margin-top: 1.1rem;
  font-size: 1.4rem;
  transition: color 0.4s;
}

.step p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.4s;
}

.step:hover h3 { color: #fff; }
.step:hover p { color: rgba(255, 255, 255, 0.78); }

.process__note {
  max-width: 56ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding-inline: var(--gutter);
  text-align: center;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-2);
}

/* ── Rezultate ─────────────────────────────────────────────────── */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1400px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-inline: var(--gutter);
}

.stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius-card);
  background:
    radial-gradient(90% 60% at 20% 100%, rgba(96, 96, 96, 0.5), transparent 65%),
    radial-gradient(70% 45% at 85% 0%, rgba(70, 70, 70, 0.45), transparent 60%),
    #101010;
  color: #fff;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted-2);
  font-size: 1rem;
  max-width: 28ch;
}

.slider {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius-card);
  background:
    linear-gradient(200deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72)),
    url("../assets/bg-glow.webp") center / cover no-repeat,
    #101010;
  color: #fff;
  min-height: 420px;
}

.slider__count {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
}

.slider__count [data-slider-current] { color: #fff; font-weight: 500; }

.slider__viewport {
  position: relative;
  flex: 1;
  display: grid;
  margin-top: 1.5rem;
}

.slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}

.slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.slide__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--green);
}

.slide__quote {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 24ch;
}

.slide footer { margin-top: 1.6rem; }

.slide footer strong { display: block; font-weight: 500; }

.slide footer span { color: var(--muted-2); font-size: 0.98rem; }

.slider__nav {
  position: absolute;
  right: clamp(2rem, 4vw, 3.25rem);
  bottom: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  gap: 0.6rem;
}

.slider__btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.slider__btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── Pachete ───────────────────────────────────────────────────── */
.packs {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.packs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  justify-content: center;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-inline: var(--gutter);
}

.pack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-card);
  padding: clamp(1.9rem, 3.5vw, 3rem);
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.pack--featured {
  background:
    radial-gradient(85% 55% at 85% 0%, rgba(29, 218, 15, 0.16), transparent 60%),
    radial-gradient(70% 45% at 10% 100%, rgba(29, 218, 15, 0.12), transparent 60%),
    #0d0d0d;
  border: 0;
  color: #fff;
}

.pack__name { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.pack__tagline { margin-top: 0.4rem; color: var(--muted); font-size: 1.05rem; }

.pack--featured .pack__tagline { color: var(--muted-2); }

.pack__label {
  margin: 1.75rem 0 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 400;
}

.pack__item { margin-top: 1.35rem; }

.pack__item h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.18rem;
}

.pack__item h4 .spark { width: 0.75em; height: 0.75em; }

.pack__item p,
.pack__item ul {
  margin: 0.5rem 0 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
}

.pack--featured .pack__item p,
.pack--featured .pack__item ul { color: rgba(255, 255, 255, 0.78); }

.pack__item ul { list-style: disc; padding-left: 1.1rem; display: grid; gap: 0.3rem; }

.pack__item li::marker { color: var(--green); }

.pack--featured .pack__item strong { color: #fff; }

.pack__text { margin-top: 1.15rem; color: var(--ink-2); }

.pack__text strong { color: var(--ink); }

.pack__cta { margin-top: auto; }

.pack__item:last-of-type, .pack__text:last-of-type { margin-bottom: 2rem; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq {
  padding: clamp(5rem, 10vw, 8.5rem) var(--gutter);
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
}

.faq__title {
  text-align: center;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.faq__item {
  background: var(--paper-soft);
  border-radius: 22px;
  padding: 1.7rem 1.9rem;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.35;
  min-height: 44px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__icon {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  transition: background-color 0.25s, transform 0.3s var(--ease-out);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease-out);
}

.faq__icon::after { transform: rotate(90deg); }

.faq__item[open] .faq__icon { background: var(--green); transform: rotate(180deg); }
.faq__item[open] .faq__icon::before { background: var(--ink); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); background: var(--ink); }

/* Tranziție smooth pentru <details>: browserul ascunde nativ conținutul
   cu display:none (nu se poate anima), așa că suprascriem cu display:grid
   permanent și animăm înălțimea reală prin grid-template-rows 0fr -> 1fr.
   Textul stă într-un <span> intern: un grid item are min-size:auto (dat de
   conținut) în afară de cazul în care el însuși (nu doar containerul) are
   overflow:hidden — de-aia span-ul, nu p-ul, poartă overflow:hidden. */
.faq__item p {
  display: grid !important;
  grid-template-rows: 0fr;
  margin-top: 0;
  max-width: 58ch;
  color: var(--muted);
  transition:
    grid-template-rows 0.35s var(--ease-out),
    margin-top 0.35s var(--ease-out);
}

.faq__item p > span {
  display: block;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq__item[open] p {
  grid-template-rows: 1fr;
  margin-top: 1.1rem;
}

.faq__item[open] p > span {
  opacity: 1;
  transition-delay: 0.08s;
}

/* ── Contact ───────────────────────────────────────────────────── */
.contact {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.contact__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 1520px;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: var(--dark-panel);
  color: #fff;
  isolation: isolate;
}

.contact__panel::before {
  content: "";
  position: absolute;
  inset: -4%;
  background: url("../assets/hero-wall.webp") center / cover no-repeat;
  filter: blur(16px) brightness(0.55);
  transform: scale(1.06);
  z-index: -2;
}

.contact__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.84) 20%, rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.contact__info h3 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.contact__note { margin-top: 1.5rem; color: rgba(255, 255, 255, 0.8); }

.contact__list {
  margin-top: 0.9rem;
  padding-left: 1.25rem;
  list-style: disc;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact__list li::marker { color: var(--green); }

.contact__promise { margin-top: 1.6rem; }

.contact__promise strong { color: #fff; font-weight: 500; }

.contact__channels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 1.4rem;
}

.contact__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}

.contact__channel-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--green);
  transition: background-color 0.25s, border-color 0.25s;
}

.contact__channel:hover { color: var(--green); }
.contact__channel:hover .contact__channel-icon { background: rgba(29, 218, 15, 0.16); border-color: var(--green); }

.contact__form { display: flex; flex-direction: column; gap: 1.35rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-weight: 400;
  font-size: 1.02rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.2rem;
  min-height: 44px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  color: #fff;
  font: inherit;
  resize: vertical;
  transition: border-color 0.25s;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
  padding-right: 2rem;
}

.field select option { color: var(--ink); background: #fff; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--green);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-bottom-color: #ff5a4e; }

.field__error {
  min-height: 1.1em;
  font-size: 0.9rem;
  color: #ff8d84;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.contact__submit { justify-content: center; margin-top: 0.4rem; }

.contact__status { min-height: 1.4em; font-weight: 400; }
.contact__status.is-ok { color: var(--green); }
.contact__status.is-err { color: #ff8d84; }

.contact__fallback { display: flex; flex-direction: column; gap: 0.35rem; }

.contact__fallback[hidden] { display: none; }

.contact__fallback a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s;
}

.contact__fallback a:hover { color: var(--green); }

/* ── Footer ────────────────────────────────────────────────────── */
.footer { padding-top: clamp(2rem, 4vw, 3rem); }

.footer__marquee {
  overflow: hidden;
  padding-block: clamp(1.5rem, 3.5vw, 3rem);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.footer__marquee-track {
  --mq-gap: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.footer__marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer__panel {
  position: relative;
  margin: 0 clamp(0.6rem, 1.5vw, 1.25rem) clamp(0.6rem, 1.5vw, 1.25rem);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.75rem, 5vw, 5rem) 0;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background:
    url("../assets/lights.svg") right -10% top -20% / 90% auto no-repeat,
    url("../assets/bg-glow.webp") center bottom / cover no-repeat,
    #0b0d0a;
  color: #fff;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.footer__col { display: flex; flex-direction: column; align-items: flex-start; }

.footer__col--brand { max-width: 280px; }

.footer__logo { width: 150px; height: auto; filter: brightness(0) invert(1); }

.footer__tagline { margin-top: 0.9rem; color: var(--muted-2); }

.footer__label {
  color: var(--muted-2);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer__col a {
  font-weight: 400;
  font-size: 1.08rem;
  padding-block: 0.4rem;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s;
}

.footer__col a:hover { color: var(--green); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-block: 1.25rem;
  color: var(--muted-2);
  font-size: 0.98rem;
}

.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.25s var(--ease-out);
}

.footer__top:hover { transform: translateY(-2px); }

.footer__wordmark {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(1rem, 3vw, 2.5rem);
  opacity: 0.92;
  filter: drop-shadow(0 0 34px rgba(29, 218, 15, 0.35));
  mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
}

/* ── Popup cookies ─────────────────────────────────────────────── */
.cookie {
  position: fixed;
  left: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 100;
  display: flex;
  gap: 0.9rem;
  width: min(380px, calc(100% - 1.5rem));
  padding: 1.15rem 1.25rem;
  background: var(--dark-panel);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.5);
  animation: cookie-in 0.45s var(--ease-out) both;
}

.cookie[hidden] { display: none; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.cookie__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(29, 218, 15, 0.14);
  color: var(--green);
}

.cookie__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.cookie__text a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.cookie__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.cookie__btn { padding: 0.6rem 1.4rem; min-height: 42px; font-size: 0.95rem; }

.cookie__decline {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cookie__decline:hover { color: #fff; }

@media (max-width: 480px) {
  .cookie { flex-direction: column; gap: 0.6rem; }
}

/* ── Reveal on scroll ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out) var(--d, 0s), transform 0.7s var(--ease-out) var(--d, 0s);
}

[data-reveal].in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav__links {
    position: fixed;
    top: calc(14px + var(--nav-h) + 10px);
    left: 50%;
    width: min(1240px, calc(100% - 2 * clamp(0.75rem, 2.5vw, 1.75rem)));
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin: 0;
    padding: 1.25rem 1.5rem 1.6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }

  .nav__links.is-open { opacity: 1; transform: translateX(-50%); pointer-events: auto; }

  .nav__links a:not(.btn) { font-size: 1.15rem; padding-block: 0.65rem; }

  .nav__cta { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 0.75rem; }
  .nav__toggle { display: flex; }

  .reel-grid { grid-template-columns: repeat(3, 1fr); }
  .shot-grid { grid-template-columns: repeat(3, 1fr); }

  .process__grid { grid-template-columns: 1fr 1fr; }

  .service { grid-template-columns: 3rem 1fr 2.5rem; }
  .service__desc { grid-column: 2; grid-row: 2; }
  .service__arrow { grid-row: 1; grid-column: 3; }

  .testimonials__layout { grid-template-columns: 1fr; }
  .stats { flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
  .stat { flex: 1 1 160px; }

  .packs__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .projects__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .contact__panel { grid-template-columns: 1fr; }

  .slider__nav { position: static; margin-top: 1.75rem; justify-content: flex-end; }
  .slider { min-height: 0; }
}

@media (max-width: 640px) {
  /* Rezultate: cifre mai apropiate pe mobil */
  .stats { gap: 1.4rem; justify-content: flex-start; }
  .stat { flex: 0 0 auto; }
  .stat strong { font-size: 2.7rem; }
  .stat span { margin-top: 0.2rem; }

  /* Pe mobil: hero doar cu text, fără imagini inline */
  .hero__title { font-size: clamp(2.1rem, 10vw, 2.9rem); max-width: 14ch; }
  .hero__chip { display: none; }
  /* dimensionat ca subtitlul să încapă pe 2 rânduri (nu 3) pe telefoane 375px+ */
  .hero__sub { font-size: 16px; }

  /* dimensionat ca linia de sub titlurile de secțiune să încapă pe 1 rând pe telefoane 375px+ */
  .section-lead { font-size: 15.5px; }

  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }

  .process__grid { grid-template-columns: 1fr; }

  .stats { flex-direction: column; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Motion redus ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal] { opacity: 1; transform: none; transition: none; }

  .marquee__track,
  .ribbon__track,
  .footer__marquee-track { animation: none; }

  .btn, .slider__btn, .project img, .service::before, .step, .step::before, .step::after { transition: none; }
}
