/* ==========================================================================
   LAUNCHLY — Atelier digital
   Carbon + off-white cald + accent incandescent. Clash Display / Switzer /
   JetBrains Mono. Zero imagini — tipografie, linii, cod.
   ========================================================================== */

:root {
  /* Paletă Launchly oficial — Paper / Ink / Cobalt (light) */
  --bg: #F6F6F3;
  --surface: #EFEFEA;
  --surface-2: #E6E6E0;
  --line: rgba(18, 19, 22, 0.12);
  --line-strong: rgba(18, 19, 22, 0.24);
  --ink: #121316;
  --body: #45484E;
  --muted: #7B7E85;
  --accent: #2643F0;
  --accent-dk: #1B33CC;
  --accent-soft: rgba(38, 67, 240, 0.10);

  --font-display: "Clash Display", "Arial Black", sans-serif;
  --font-body: "Switzer", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(5.5rem, 14vh, 10rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* scară z-index */
  --z-grid: 1;
  --z-content: 2;
  --z-header: 50;
  --z-menu: 60;
  --z-cursor: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

img, svg, canvas { display: block; max-width: 100%; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; cursor: pointer; }

ul { list-style: none; }

/* ---------- Focus vizibil ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

/* ---------- Utilitare ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tick {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.65rem;
  background: var(--accent);
  transform: translateY(-1px) rotate(45deg);
}

/* ---------- Linii de grilă editoriale ---------- */
.grid-lines {
  position: fixed;
  inset: 0;
  z-index: var(--z-grid);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.grid-lines span {
  width: 1px;
  background: rgba(18, 19, 22, 0.05);
}
@media (max-width: 768px) {
  .grid-lines span:nth-child(n+4) { display: none; }
}

main, .footer { position: relative; z-index: var(--z-content); }

/* ---------- Cursor custom ---------- */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-cursor);
    pointer-events: none;
  }
  .cursor__dot, .cursor__ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
  }
  .cursor__ring {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
                border-color 0.25s var(--ease-out);
  }
  .cursor--active .cursor__ring {
    width: 52px;
    height: 52px;
    border-color: var(--accent);
  }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out), transform 0.3s var(--ease-out);
  min-height: 44px;
}
.btn svg { transition: transform 0.25s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent-dk); }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm { padding: 0.65rem 1.2rem; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 0.875rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.header--solid {
  background: rgba(246, 246, 243, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.header__logo sup {
  font-size: 0.55em;
  color: var(--accent);
  margin-left: 1px;
}
.header__nav {
  display: flex;
  gap: 2.25rem;
}
.header__nav a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
  transition: color 0.2s var(--ease-out);
}
.header__nav a:hover { color: var(--ink); }
.header__actions { display: flex; align-items: center; gap: 1rem; }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.header__burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__actions .btn { display: none; }
  .header__burger { display: flex; }
}

/* ---------- Meniu mobil ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease-out), padding-left 0.25s var(--ease-out);
}
.mobile-menu__link:hover { color: var(--accent); padding-left: 0.75rem; }
.mobile-menu__meta { color: var(--muted); }
.mobile-menu .btn { align-self: flex-start; }

/* meniul mobil stă deasupra header-ului, dar sub burger */
body.menu-open .header { z-index: calc(var(--z-menu) + 1); }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(76px + 4rem) 0 4.5rem;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__kicker {
  color: var(--muted);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12.5vw, 10.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}
/* bară cobalt care mătură titlul la încărcare */
.hero__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
}
.js .hero__scan {
  animation: heroScan 1.15s var(--ease-out) 0.2s 1;
}
@keyframes heroScan {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  will-change: transform;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--body);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.hero__stats dt {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.hero__stats dd {
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 500;
}
.hero__stats dd span:not([data-count]) { color: var(--accent); font-size: 1rem; }

.hero__scrollhint {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  z-index: 1;
  color: var(--muted);
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--surface);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 1.75rem;
}
.marquee__group i {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Secțiuni generice ---------- */
.section { padding: var(--section-pad) 0; }

.section__label {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__head { margin-bottom: clamp(3rem, 7vh, 5rem); }

/* ---------- Manifest ---------- */
.manifest { border-top: 1px solid var(--line); }
.manifest__statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 62rem;
  margin-bottom: clamp(4rem, 9vh, 6.5rem);
}
.manifest__statement em {
  font-style: normal;
  color: var(--accent);
}
.manifest__statement .word { opacity: 0.18; }

.manifest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principle {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 2rem 2.5rem;
  position: relative;
  transition: background-color 0.3s var(--ease-out);
}
.principle:hover { background: var(--surface); }
.principle__num {
  display: block;
  color: var(--accent);
  margin-bottom: 2.75rem;
}
.principle h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.principle p { font-size: 0.9875rem; color: var(--body); }

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

/* ---------- Prețuri ---------- */
.pricing {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
/* glow cobalt difuz în spate (ecou la fundalul componentei originale) */
.pricing__glow {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(840px, 92%);
  height: 460px;
  background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.pricing .container { position: relative; z-index: 1; }

.pricing__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 7vh, 4.5rem);
}
.pricing__head .section__label { display: inline-block; }
.pricing__sub {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  color: var(--body);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.ptier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.ptier:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.ptier--popular {
  border-color: var(--accent);
  box-shadow: 0 30px 70px -32px rgba(38, 67, 240, 0.5);
  z-index: 2;
}
.ptier__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.ptier__num { display: block; color: var(--muted); margin-bottom: 1.5rem; }
.ptier__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.ptier__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  min-height: 3rem;
}
.ptier__from { color: var(--muted); font-size: 0.75rem; }
.ptier__amount {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.ptier__time { color: var(--accent); margin-bottom: 1.25rem; }
.ptier__desc { font-size: 0.9375rem; color: var(--body); margin-bottom: 1.75rem; }
.ptier__cta { width: 100%; justify-content: center; margin-bottom: 1.75rem; }
.ptier__incl { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: auto; }
.ptier__incl-title {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
}
.ptier__incl ul { display: flex; flex-direction: column; gap: 0.8rem; }
.ptier__incl li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9375rem;
  color: var(--body);
}
.ptier__dot {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.ptier__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing__note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
}

/* ---------- Lucrări (portofoliu) ---------- */
.work { border-top: 1px solid var(--line); }
.work__head { max-width: 48rem; }
.work__sub {
  margin-top: 1.5rem;
  max-width: 34rem;
  color: var(--body);
}

.work__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 11vh, 8rem);
}

.work-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* zig-zag: al doilea proiect inversează vizualul cu textul */
.work-item:nth-child(even) .work-item__visual { order: 2; }
.work-item:nth-child(even) .work-item__meta { order: 1; }

/* --- Cadru tip browser --- */
.work-item__visual {
  display: block;
  perspective: 1100px;
}
.work-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s var(--ease-out),
              box-shadow 0.45s var(--ease-out),
              transform 0.3s var(--ease-out);
  will-change: transform;
}
.work-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 42px;
  padding: 0 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.work-frame__dots {
  display: inline-flex;
  gap: 7px;
  flex-shrink: 0;
}
.work-frame__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.work-frame__url {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  max-width: 70%;
  color: var(--muted);
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: 0.01em;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-frame__url svg { flex-shrink: 0; opacity: 0.7; }
.work-frame__shot {
  position: relative;
  aspect-ratio: 1280 / 800;
  overflow: hidden;
  background: var(--surface);
}
.work-frame__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
/* overlay „Vezi live" */
.work-frame__view {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.6rem 0.95rem;
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
/* crop-mark accent (semnătura vizuală a site-ului) */
.work-frame::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  z-index: 2;
  pointer-events: none;
}
.work-item__visual:hover .work-frame,
.work-item__visual:focus-visible .work-frame {
  border-color: var(--accent);
  box-shadow: 0 30px 60px -28px rgba(18, 19, 22, 0.28);
}
.work-item__visual:hover .work-frame__shot img { transform: scale(1.045); }
.work-item__visual:hover .work-frame__view,
.work-item__visual:focus-visible .work-frame__view { opacity: 1; transform: translateY(0); }
.work-item__visual:hover .work-frame::after,
.work-item__visual:focus-visible .work-frame::after { opacity: 1; }

/* pe ecrane fără hover (telefon), arată mereu îndemnul */
@media (hover: none) {
  .work-frame__view { opacity: 1; transform: none; }
}

/* --- Meta proiect --- */
.work-item__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.work-item__index { color: var(--accent); flex-shrink: 0; }
.work-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.work-item__desc {
  font-size: 1rem;
  color: var(--body);
  max-width: 32rem;
}
.work-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
}
.tag--live { color: var(--ink); border-color: var(--line-strong); }
.tag--live .dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.tag--live .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: livePulse 2.2s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}
.work-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease-out), color 0.2s var(--ease-out);
}
.work-item__cta:hover { color: var(--accent); gap: 0.85rem; }

/* --- Bandă de îndemn sub proiecte --- */
.work__cta {
  margin-top: clamp(4rem, 9vh, 7rem);
  border: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    linear-gradient(90deg, var(--accent-soft), transparent 60%),
    var(--surface);
}
.work__cta p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 2.05rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.work__cta p span { color: var(--accent); }

@media (max-width: 900px) {
  .work-item { grid-template-columns: 1fr; gap: 2rem; }
  .work-item:nth-child(even) .work-item__visual,
  .work-item:nth-child(even) .work-item__meta { order: 0; }
}

/* ---------- Proces ---------- */
.process { border-top: 1px solid var(--line); }
.process__layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.process__sticky {
  position: sticky;
  top: 110px;
}
.process__sub {
  margin-top: 1.5rem;
  max-width: 26rem;
}
.process__steps {
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vh, 5rem);
}
.process__rail {
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line);
}
.process__rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(0);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
}
.step__num {
  font-size: 1rem;
  color: var(--accent);
  border: 1px solid var(--line-strong);
  padding: 0.55rem 0.8rem;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.step p { max-width: 30rem; }

@media (max-width: 900px) {
  .process__layout { grid-template-columns: 1fr; }
  .process__sticky { position: static; }
}

/* ---------- Standard ---------- */
.standard { background: var(--surface); border-top: 1px solid var(--line); }
.standard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 2rem;
  background: var(--bg);
}
.stat__value {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}
.stat__value span { color: var(--accent); }
.stat__value [data-count] { color: var(--ink); }
.stat__label {
  color: var(--muted);
  font-size: 0.875rem;
}

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

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.faq__sub {
  margin-top: 1.5rem;
  color: var(--muted);
}
.faq__sub a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s var(--ease-out);
}
.faq__sub a:hover { color: var(--accent); }

.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease-out);
  min-height: 44px;
}
.qa__q:hover { color: var(--accent); }
.qa__icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
}
.qa__q[aria-expanded="true"] .qa__icon { transform: rotate(45deg); }
.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.qa__a > p {
  overflow: hidden;
  max-width: 38rem;
}
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa.is-open .qa__a > p { padding-bottom: 1.5rem; }

@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Contact ---------- */
.contact {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-block: clamp(7rem, 18vh, 12rem);
}
.contact .section__label { justify-self: center; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.contact__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.contact__sub {
  max-width: 36rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}
.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.contact__email {
  color: var(--muted);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.contact__email:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 14.5vw, 13.5rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-align: center;
  color: transparent;
  user-select: none;
  margin-bottom: 2.5rem;
  /* negru (ink) la bază, se umple cu cobalt de la stânga la dreapta la scroll (--fill din JS) */
  background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat, no-repeat;
  background-size: var(--fill, 0%) 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  color: var(--muted);
}
.footer__row a { transition: color 0.2s var(--ease-out); }
.footer__row a:hover { color: var(--accent); }
.footer__wink { color: var(--accent); }

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

/* ---------- Modal booking ---------- */
.booking {
  width: min(620px, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  background: var(--surface);
  color: var(--body);
  border: 1px solid var(--line-strong);
  padding: 0;
  margin: auto;
}
.booking::backdrop {
  background: rgba(18, 19, 22, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.booking[open] {
  animation: bookingIn 0.35s var(--ease-out);
}
@keyframes bookingIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking__inner {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  overflow-y: auto;
  max-height: calc(100svh - 2rem);
}
.booking__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.booking__close:hover { color: var(--ink); border-color: var(--accent); }

.booking__label { color: var(--accent); margin-bottom: 1rem; padding-right: 3.25rem; display: block; }
.booking__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  padding-right: 3rem;
}
.booking__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field .optional { color: var(--muted); opacity: 0.7; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease-out);
  border-radius: 0;
  min-height: 44px;
}
.field textarea { resize: vertical; min-height: 86px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field input[aria-invalid="true"] { border-color: var(--accent); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237B7E85' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-error {
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.booking__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.booking__submit[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
.booking__privacy {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

.booking__success {
  text-align: center;
  padding: 2.5rem 0.5rem;
}
.booking__check {
  margin: 0 auto 1.75rem;
  color: var(--accent);
}
.booking__success h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.booking__success p {
  max-width: 26rem;
  margin: 0 auto 2rem;
  color: var(--body);
}
.booking__success a { color: var(--accent); }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Stări de reveal (setate din JS) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}
.js.no-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; transform: none; }
  .hero__scrollhint { animation: none; }
}
