/* ============================================================
   Voost Vision · site.css
   Direcție: editorial cald pe fundal închis. Serif display
   (Fraunces) pentru titluri, Instrument Sans pentru text,
   JetBrains Mono pentru etichete de tip „fișă tehnică".
   Un singur accent: portocaliu #fb7e3c, folosit cu disciplină.
   ============================================================ */

:root {
  --bg: #0e0b09;
  --bg-2: #13100d;
  --card: #171310;
  --card-2: #1d1714;
  --ink: #f5efe7;
  --dim: #ab9e90;
  --faint: #7c7066;
  --line: rgba(245, 239, 231, .09);
  --line-strong: rgba(245, 239, 231, .17);
  --accent: #fb7e3c;
  --accent-deep: #d9531f;
  --accent-2: #ffa05e;
  --accent-ink: #1c0d04;
  --ok: #8fd8a8;
  --danger: #ffab8a;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1160px;
  --radius: 18px;
  --radius-lg: 24px;
  --nav-h: 64px;
  --shadow: 0 24px 60px -32px rgba(0, 0, 0, .8);
}

/* ---------- reset scurt ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 28px);
  -webkit-text-size-adjust: 100%;
}
body {
  background:
    radial-gradient(1100px 460px at 50% -160px, rgba(251, 126, 60, .08), transparent 65%),
    var(--bg);
  color: var(--ink);
  font: 400 1rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 200;
  padding: .65rem 1.1rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* ---------- container & secțiuni ---------- */
.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 108px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.section + .section, .section + .section-tight, .section-tight + .section { border-top: 1px solid var(--line); }
main > .section:first-of-type { border-top: 0; }

.section-head { margin-bottom: clamp(34px, 5vw, 54px); max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lede { color: var(--dim); font-size: clamp(1rem, 1.5vw, 1.13rem); max-width: 62ch; }
.section-head .lede { margin-top: 14px; }
.section-head h2 { margin-top: 16px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 540; line-height: 1.12; letter-spacing: -.015em; text-wrap: balance; }
h2 { font-size: clamp(1.72rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font: 500 .74rem/1 var(--font-mono);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); flex: none; }
.eyebrow::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .55; }

/* ---------- butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .97rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-sm { min-height: 42px; padding: .5rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.link-arrow:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.link-arrow .arr { transition: transform .18s ease; }
.link-arrow:hover .arr { transform: translate(2px, -2px); }

/* ---------- header / nav ---------- */
.site-head {
  position: fixed;
  top: 12px; left: 0; right: 0;
  z-index: 90;
  display: flex;
  justify-content: center;
  padding-inline: 14px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--container), 100%);
  min-height: var(--nav-h);
  padding: 8px 10px 8px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 13, 10, .74);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, .85);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand img { width: 40px; height: 33px; }
.brand .brand-name em { font-style: normal; color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > a:not(.btn) {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--dim);
  font-size: .93rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav-menu > a:not(.btn):hover { color: var(--ink); background: rgba(245, 239, 231, .06); }
.nav-menu > a[aria-current="page"] { color: var(--accent-2); }
.nav-menu .btn { margin-left: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: var(--ink);
}
.nav-toggle:hover { background: rgba(245, 239, 231, .07); }
.nav-toggle-box { display: grid; gap: 5px; place-items: center; width: 20px; margin-inline: auto; }
.nav-toggle-box span {
  display: block;
  height: 2px;
  width: 20px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-open .nav-toggle-box span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-open .nav-toggle-box span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav { padding-right: 8px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(19, 15, 12, .96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
  }
  .nav-open .nav-menu { display: flex; }
  .nav-menu > a:not(.btn) {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 1rem;
  }
  .nav-menu > a[aria-current="page"] { background: rgba(251, 126, 60, .1); }
  .nav-menu .btn { margin: 10px 4px 4px; }
}

/* ---------- hero ---------- */
.hero { padding-top: calc(var(--nav-h) + clamp(56px, 10vw, 120px)); padding-bottom: clamp(48px, 7vw, 88px); }
.hero-inner { max-width: 860px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(245, 239, 231, .04);
  color: var(--dim);
  font-size: .87rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(143, 216, 168, .15); }
.hero-title {
  margin-top: 26px;
  font-size: clamp(2.65rem, 7vw, 4.7rem);
  line-height: 1.04;
  font-weight: 560;
  letter-spacing: -.022em;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero-sub {
  margin-top: 24px;
  color: var(--dim);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  line-height: 1.66;
  max-width: 620px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { margin-top: 16px; color: var(--faint); font-size: .92rem; max-width: 480px; }

.promise-strip {
  margin-top: clamp(48px, 7vw, 76px);
  border-block: 1px solid var(--line);
  padding-block: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promise { display: flex; align-items: flex-start; gap: 12px; color: var(--dim); font-size: .93rem; line-height: 1.5; }
.promise svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
.promise strong { color: var(--ink); font-weight: 600; display: block; font-size: .97rem; }

@media (max-width: 760px) {
  .promise-strip { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- pagini de serviciu: hero compact ---------- */
.page-hero { padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero .crumb { margin-bottom: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.crumb a { color: var(--faint); font-size: .88rem; text-decoration: none; }
.crumb a:hover { color: var(--accent-2); }
.crumb .sep { color: var(--faint); font-size: .8rem; }
.crumb .here { color: var(--accent-2); font-size: .88rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 780px; }
.page-hero .hero-sub { margin-top: 20px; }
.fact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: .88rem;
  color: var(--dim);
}
.fact-chip strong { color: var(--ink); font-weight: 600; }
.fact-chip svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- carduri de durere („îți sună cunoscut") ---------- */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
@media (max-width: 900px) { .pains { grid-template-columns: 1fr; } .pain:nth-child(2), .pain:nth-child(3) { margin-top: 0; } }
.pain {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain .tag { align-self: flex-start; }
@media (min-width: 901px) {
  .pain:nth-child(2) { margin-top: 26px; }
  .pain:nth-child(3) { margin-top: 52px; }
}
.pain blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
}
.pain blockquote::before { content: "„"; color: var(--accent); margin-right: 1px; }
.pain blockquote::after { content: "”"; color: var(--accent); }
.pain .answer { color: var(--dim); font-size: .95rem; }
.pain .answer strong { color: var(--ink); }
.pains-foot { margin-top: 34px; color: var(--dim); max-width: 640px; font-size: 1.02rem; }
.pains-foot strong { color: var(--ink); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: .28rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 239, 231, .04);
  color: var(--faint);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}
.tag-accent { color: var(--accent-2); border-color: rgba(251, 126, 60, .35); background: rgba(251, 126, 60, .07); }

/* ---------- checklist „ce primești" ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.checklist .item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.checklist .item svg { width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.checklist h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; }
.checklist p { color: var(--dim); font-size: .93rem; margin-top: 5px; }
@media (max-width: 700px) { .checklist { grid-template-columns: 1fr; } }

/* ---------- pași (cum lucrăm) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 30px); counter-reset: step; }
.step { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.step-num {
  font: 500 .8rem/1 var(--font-mono);
  color: var(--accent);
  letter-spacing: .12em;
}
.step h3 { margin-top: 14px; font-size: 1.28rem; }
.step p { color: var(--dim); font-size: .93rem; margin-top: 10px; }
.step .when {
  display: inline-block;
  margin-top: 14px;
  font: 500 .74rem/1 var(--font-mono);
  letter-spacing: .08em;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .75rem;
}
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { padding-top: 16px; } }

/* ---------- planuri de preț ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, var(--card-2), var(--card) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.plan h3 { font-size: 1.42rem; }
.plan .for { color: var(--dim); font-size: .93rem; }
.plan ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.plan li {
  position: relative;
  padding-left: 28px;
  color: var(--dim);
  font-size: .93rem;
  line-height: 1.5;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: .18em;
  width: 18px; height: 18px;
  background-color: var(--accent);
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M3 8.6 6.4 12 13 4.6" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') center / contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath d="M3 8.6 6.4 12 13 4.6" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') center / contain no-repeat;
}
.plan-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price { font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.05rem); font-weight: 560; color: var(--ink); letter-spacing: -.01em; }
.price-from { display: block; font: 500 .72rem/1 var(--font-mono); text-transform: uppercase; letter-spacing: .14em; color: var(--faint); margin-bottom: 8px; }
.price-term { color: var(--faint); font-size: .85rem; }
.plan .link-arrow { margin-top: auto; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; } }

.maintenance-note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--dim);
  font-size: .95rem;
}
.maintenance-note strong { color: var(--ink); }
.maintenance-note .price { color: var(--accent-2); font-weight: 600; }

/* ---------- proiecte ---------- */
.work {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}
.work + .work { margin-top: 22px; }
.work-media { position: relative; min-height: 280px; }
.work-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-media a { display: block; height: 100%; }
.work-body { padding: clamp(24px, 3.4vw, 40px); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.work-body .meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.work-body h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.work-body .desc { color: var(--dim); font-size: .98rem; }
.work .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.work-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.work-stats > div { background: var(--bg-2); padding: 14px 16px; }
.work-stats .n { font: 560 1.25rem/1.2 var(--font-display); color: var(--accent-2); }
.work-stats .l { display: block; color: var(--faint); font-size: .8rem; margin-top: 3px; line-height: 1.4; }
.live-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.live-pair .work { grid-template-columns: 1fr; margin-top: 0; }
.live-pair .work-media { min-height: 230px; position: relative; }
.live-pair .work-media img { position: absolute; }
@media (max-width: 860px) {
  .work { grid-template-columns: 1fr; }
  .work-media { min-height: 0; aspect-ratio: 1200 / 700; }
  .work-media img { position: absolute; }
  .live-pair { grid-template-columns: 1fr; }
}

.demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.demo {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.demo:hover { border-color: rgba(251, 126, 60, .45); transform: translateY(-3px); }
.demo .thumb { position: relative; aspect-ratio: 1200 / 750; overflow: hidden; }
.demo .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.demo:hover .thumb img { transform: scale(1.03); }
.demo .thumb .badge-signed {
  position: absolute;
  top: 12px; left: 12px;
  font: 500 .68rem/1 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(14, 11, 9, .82);
  border: 1px solid rgba(251, 126, 60, .5);
  padding: .42rem .7rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.demo-body { padding: 18px 20px 20px; display: grid; gap: 5px; }
.demo-body h3 { font-size: 1.14rem; }
.demo-body .kind { color: var(--faint); font-size: .84rem; }
.demo-body .url { color: var(--accent-2); font-size: .82rem; margin-top: 6px; }
@media (max-width: 940px) { .demos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .demos { grid-template-columns: 1fr; } }

.quote {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 180px at 50% 0%, rgba(251, 126, 60, .07), transparent 70%),
    var(--card);
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.32;
  font-weight: 500;
}
.quote blockquote::before { content: "„"; color: var(--accent); }
.quote blockquote::after { content: "”"; color: var(--accent); }
.quote figcaption { margin-top: 18px; color: var(--faint); font-size: .9rem; }
.quote figcaption strong { color: var(--dim); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 21px 0;
  background: none;
  border: 0;
  color: var(--ink);
  font: 600 1.06rem/1.4 var(--font-body);
  text-align: left;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent-2); }
.faq-ico { flex: none; width: 22px; height: 22px; color: var(--accent); transition: transform .25s ease; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows .3s ease, visibility .3s;
}
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--dim); font-size: .97rem; padding-bottom: 22px; max-width: 66ch; }
.faq-item.open .faq-a { grid-template-rows: 1fr; visibility: visible; }

/* ---------- formulare ---------- */
.form-shell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}
@media (max-width: 860px) { .form-shell { grid-template-columns: 1fr; } }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 34px);
  display: grid;
  gap: 18px;
}
.form-card .kicker { display: flex; align-items: center; gap: 10px; font: 500 .72rem/1 var(--font-mono); text-transform: uppercase; letter-spacing: .14em; color: var(--accent); }
.form-card .kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.form-card h3 { font-size: 1.4rem; }
.form-card > p { color: var(--dim); font-size: .95rem; margin-top: -8px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 500; color: var(--dim); }
.field .req { color: var(--accent); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: .72rem .95rem;
  background: #0f0c0a;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: .97rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 118px; resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 126, 60, .18);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"%3E%3Cpath d="M3 5l4 4 4-4" fill="none" stroke="%23ab9e90" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
select:invalid { color: var(--faint); }
select option { background: #171310; color: var(--ink); }
.form-grid { display: grid; gap: 15px; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 480px) { .form-cols { grid-template-columns: 1fr; } }
.form-note { color: var(--faint); font-size: .84rem; line-height: 1.55; }
.form-note a { color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }
.form-note a:hover { color: var(--accent-2); }
.form-error {
  display: none;
  padding: 13px 16px;
  border: 1px solid rgba(255, 138, 96, .4);
  background: rgba(217, 83, 31, .1);
  border-radius: 12px;
  color: var(--danger, #ffc4a8);
  font-size: .92rem;
  line-height: 1.5;
}
.form-error.show { display: block; }
.form-error a { color: var(--accent-2); }
.form-success {
  border: 1px solid rgba(143, 216, 168, .35);
  background: rgba(143, 216, 168, .07);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 30px);
}
.form-success h3 { color: var(--ok); font-size: 1.25rem; }
.form-success p { color: var(--dim); margin-top: 8px; font-size: .97rem; }
.hp { position: absolute; left: -6000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-aside { display: grid; gap: 26px; }
.contact-block h2 { font-size: 1.15rem; margin-bottom: 12px; }
.contact-lines { list-style: none; padding: 0; display: grid; gap: 4px; }
.contact-lines li a, .contact-lines li span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: var(--ink);
  text-decoration: none;
  font-size: .98rem;
}
.contact-lines li a:hover { color: var(--accent-2); }
.contact-lines svg { width: 19px; height: 19px; color: var(--accent); flex: none; }
.contact-lines .sub { color: var(--faint); font-size: .82rem; display: block; }
.firm-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: var(--card);
  font-size: .9rem;
  color: var(--dim);
  line-height: 1.7;
}
.firm-card strong { color: var(--ink); display: block; margin-bottom: 4px; }

/* ---------- bandă CTA finală ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 126, 60, .28);
  border-radius: 28px;
  padding: clamp(34px, 6vw, 64px);
  background:
    radial-gradient(560px 260px at 12% 0%, rgba(251, 126, 60, .16), transparent 62%),
    radial-gradient(420px 220px at 92% 110%, rgba(217, 83, 31, .12), transparent 60%),
    var(--card);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); max-width: 640px; }
.cta-band p { color: var(--dim); margin-top: 14px; max-width: 560px; }
.cta-band .hero-ctas { margin-top: 30px; }
.cta-band .alt { margin-top: 22px; color: var(--faint); font-size: .92rem; }
.cta-band .alt a { color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }
.cta-band .alt a:hover { color: var(--accent-2); }

/* ---------- pagina de prețuri: rânduri explicative ---------- */
.factor-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(28px, 4vw, 56px); border-top: 1px solid var(--line); }
@media (max-width: 700px) { .factor-list { grid-template-columns: 1fr; } }
.factor { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.factor .idx { font: 500 .78rem/1 var(--font-mono); color: var(--accent); letter-spacing: .12em; }
.factor h3 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.factor p { color: var(--dim); font-size: .94rem; }

/* ---------- legal / text lung ---------- */
.prose { max-width: 720px; }
.prose h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-top: 18px; }
.prose .updated { color: var(--faint); font-size: .9rem; margin-top: 12px; }
.prose h2 { font-size: 1.34rem; margin: 44px 0 12px; line-height: 1.3; }
.prose p, .prose li { color: var(--dim); font-size: .99rem; line-height: 1.72; }
.prose p strong, .prose li strong { color: var(--ink); }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose ul { padding-left: 20px; display: grid; gap: 8px; margin: 14px 0; }
.prose p + p { margin-top: 12px; }
.prose .cookie-reset {
  margin-top: 14px;
  min-height: 46px;
  padding: .6rem 1.3rem;
  font: 600 .93rem var(--font-body);
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
}
.prose .cookie-reset:hover { border-color: var(--accent); color: var(--accent-2); }

/* ---------- 404 ---------- */
.error-wrap { min-height: 62vh; display: grid; align-content: center; justify-items: start; gap: 18px; padding-top: calc(var(--nav-h) + 80px); }
.error-code { font: 560 clamp(4.5rem, 12vw, 7.5rem)/1 var(--font-display); color: var(--accent); letter-spacing: -.03em; }

/* ---------- footer ---------- */
.site-foot {
  margin-top: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .35));
  padding: clamp(40px, 6vw, 72px) 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: clamp(26px, 4vw, 48px);
}
.foot-brand p { color: var(--dim); font-size: .92rem; margin-top: 14px; max-width: 300px; }
.foot-brand .brand { margin-bottom: 2px; }
.foot-tag { color: var(--accent-2) !important; font-weight: 500; }
.foot-col h3 { font: 500 .74rem/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 2px; }
.foot-col a, .foot-col li {
  color: var(--dim);
  font-size: .93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.foot-col a:hover { color: var(--accent-2); }
.foot-firm { font-size: .9rem; color: var(--dim); line-height: 1.75; }
.foot-firm-address { margin-top: 10px; }
.foot-firm a { color: var(--dim); text-decoration: none; }
.foot-firm a:hover { color: var(--accent-2); }
.foot-bottom {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: .85rem;
}
.foot-bottom a { color: var(--dim); text-decoration: none; }
.foot-bottom a:hover { color: var(--accent-2); }
@media (max-width: 940px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- motion ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .7, .25, 1);
  transition-delay: calc(var(--d, 0) * 70ms);
  will-change: opacity, transform;
}
.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .demo:hover .thumb img { transform: none; }
}

/* ---------- ecrane mari ---------- */
@media (min-width: 1600px) {
  :root { --container: 1200px; }
}

:root { --faint: #a4978b; --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; --bg-raised: #171310; }
[hidden] { display: none !important; }
.hero-topline { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.availability { display: flex; align-items: center; gap: 9px; color: var(--dim); font-size: .8rem; }
.availability::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow::after { display: none; }
.hero-composition { display: grid; grid-template-columns: 1.35fr 1fr; align-items: center; gap: 56px; margin-top: 36px; }
.hero-title { margin-top: 0; font-size: clamp(2.65rem, 5.2vw, 4.7rem); }
.hero-muted { color: #c1b5a8; }
.hero-sub { max-width: 47ch; font-size: 1.1rem; }
.hero-project { display: block; text-decoration: none; border: 1px solid var(--line-strong); border-radius: 18px; background: var(--card); padding: 16px; transform: rotate(2deg); transition: transform .3s ease; }
.hero-project:hover { transform: rotate(0); }
.project-top, .project-caption { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.project-top { font: .68rem var(--font-mono); letter-spacing: .07em; text-transform: uppercase; color: var(--dim); padding: 3px 2px 15px; }
.project-top > span:last-child { color: var(--accent); font-size: 1.4rem; }
.hero-project-image { overflow: hidden; border-radius: 8px; }
.hero-project-image img { width: 100%; height: auto; aspect-ratio: 1.3; object-fit: cover; object-position: center; }
.project-caption { padding-top: 18px; }
.project-caption strong { font-size: 1.1rem; }
.hero-project > p { font-size: .82rem; color: var(--dim); margin-top: 7px; }
.hero-work-link { display: inline-flex; align-items: center; gap: 9px; min-height: 48px; font-size: .9rem; text-underline-offset: 5px; }
.hero-ctas { align-items: center; }
.small-check { color: var(--accent); }
.promise-strip { margin-top: 62px; }
.promise strong { font-size: .85rem; font-weight: 500; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-heading-row .section-head { margin: 0; }
h2 em { font-weight: 500; color: var(--dim); }
.live-label { display: inline-flex; align-items: center; gap: 7px; font: .69rem var(--font-mono); text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); white-space: nowrap; }
.live-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.source-note, .field-hint { color: var(--faint); font-size: .76rem; line-height: 1.5; }
.price-disclaimer { margin-top: 14px; }
.work-media { min-width: 0; display: flex; align-items: center; background: #231b15; padding: 24px; }
.work-media a { width: 100%; height: auto; }
.work-media img, .live-pair .work-media img { position: static; width: 100%; height: auto; border-radius: 8px; }
.live-pair .work-media { min-height: 0; aspect-ratio: auto; padding: 20px; }
.live-pair .work-body { flex: 1; }
.work-body > .link-arrow { margin-top: auto; }
.plan-index { font: .67rem var(--font-mono); color: var(--accent); letter-spacing: .09em; }
.price small { font: 1rem var(--font-body); }
.plan h3 { min-height: 2.5em; }
.quote { border: 0; background: none; padding-block: 20px; }
.quote-mark { font: 6rem/.8 var(--font-display); color: var(--accent); }
.quote blockquote { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
.quote blockquote::before, .quote blockquote::after { content: none; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; }
.faq-plus { font-size: 1.6rem; font-weight: 400; color: var(--accent); transition: transform .2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.cta-band h2 { margin-top: 24px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.legal-links a, .foot-col a, .foot-firm a, .link-arrow { min-height: 44px; align-content: center; }
.form-card > .form-note { font-size: .8rem; margin-top: 0; }
button:disabled { opacity: .7; cursor: wait; }
.form-error { overflow-wrap: anywhere; }
.checklist .item > span { color: var(--accent); }
@media (max-width: 940px) {
  .hero-composition { gap: 30px; }
  .hero-title { font-size: clamp(2.65rem, 5.6vw, 4.7rem); }
  .faq-layout { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 760px) {
  .hero { padding-top: 126px; }
  .hero-topline { align-items: start; flex-direction: column; gap: 12px; }
  .hero-composition { grid-template-columns: 1fr; margin-top: 30px; gap: 40px; }
  .hero-title { font-size: clamp(2.7rem, 10.8vw, 4.6rem); }
  .hero-title > br:first-of-type { display: none; }
  .hero-sub { font-size: 1rem; margin-top: 22px; }
  .hero-ctas { margin-top: 26px; gap: 10px 18px; }
  .hero-project { transform: none; }
  .hero-project-image img { aspect-ratio: 1.6; }
  .promise-strip { margin-top: 32px; }
  .section-heading-row { align-items: start; flex-direction: column; gap: 15px; margin-bottom: 28px; }
  .work-media { min-height: 0; aspect-ratio: auto; padding: 15px; }
  .live-pair .work-media { padding: 15px; }
  .form-card .kicker { line-height: 1.7; }
  .brand img { width: 34px; height: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .foot-brand, .foot-firm { grid-column: 1 / -1; }
  .foot-col a { font-size: .85rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-project, .hero-project:hover, .plan:hover, .demo:hover { transform: none; }
}
@media (scripting: none) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; position: static; flex-direction: row; flex-wrap: wrap; }
  .nav { flex-wrap: wrap; border-radius: 18px; }
}
