/* ==========================================================================
   Voost Vision — Design System
   Dark editorial tech-premium. Sora display / Inter body / JetBrains Mono data.
   ========================================================================== */

:root {
  /* Culori */
  --bg: #0c0907;
  --bg-raised: #110d0a;
  --bg-card: #171109;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --ink: #f8f3ee;
  --ink-soft: #cdc1b6;
  --ink-mute: #91857a;

  --accent: #fb7e3c;
  --accent-2: #ffa05e;
  --accent-deep: #d9531f;
  --accent-ink: #0a0a14;
  --grad: linear-gradient(120deg, #ff8a3d 0%, #f96f2e 55%, #ef5b2a 100%);
  --green: #34d399;

  /* Tipografie */
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Ritm */
  --section-pad: clamp(88px, 12vw, 160px);
  --container: 1160px;
  --radius: 18px;
  --radius-lg: 26px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: rgba(251, 126, 60, 0.35); color: #fff; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #2e1f14;
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: #4a3120; }

/* Grain global */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Tipografie utilitare ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 20px;
  text-wrap: balance;
}
.section-lead {
  margin-top: 18px;
  max-width: 60ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
  will-change: transform;
}
.btn svg { transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 32px -8px rgba(255, 138, 61, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 44px -8px rgba(255, 138, 61, 0.7);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: rgba(255, 160, 94, 0.6);
  background: rgba(251, 126, 60, 0.08);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 7, 13, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 110;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(255, 138, 61, 0.6);
}
.logo span em { font-style: normal; color: var(--ink-mute); font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 11px 22px; font-size: 14px; }

/* Burger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.2s, top 0.3s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(150px, 20vh, 210px);
  padding-bottom: clamp(70px, 9vw, 110px);
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 800px;
  background:
    radial-gradient(ellipse 45% 42% at 38% 38%, rgba(255, 138, 61, 0.26), transparent 70%),
    radial-gradient(ellipse 40% 38% at 64% 46%, rgba(255, 160, 94, 0.18), transparent 70%);
  filter: blur(10px);
  animation: heroGlow 14s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translateX(-50%) scale(1) rotate(0deg); opacity: 0.9; }
  to   { transform: translateX(-52%) scale(1.12) rotate(4deg); opacity: 1; }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 25%, transparent 75%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 {
  margin-top: 30px;
  font-size: clamp(44px, 7.6vw, 96px);
}
.hero h1 .line { display: block; }
.hero h1 .grad-text {
  background: linear-gradient(120deg, #ff8a3d, #ef5b2a 30%, #f96f2e 55%, #ff8a3d 80%, #ef5b2a);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradShift 7s ease-in-out infinite alternate;
}
@keyframes gradShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
.hero-sub {
  margin-top: 28px;
  max-width: 58ch;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  text-wrap: pretty;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-mute);
}

/* Stats */
.hero-stats {
  margin-top: clamp(60px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: 28px 26px 6px 0;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}
.stat::before {
  content: '';
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
  margin-bottom: 16px;
  opacity: 0.85;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num .unit { font-size: 0.55em; color: var(--accent-2); font-weight: 600; margin-left: 5px; }
.stat-label { margin-top: 6px; font-size: 13.5px; color: var(--ink-mute); line-height: 1.45; }

/* ---------- Marquee ---------- */
.marquee-section {
  padding: 30px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-section:hover .marquee { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - 28px)); }
}
.marquee span {
  font-family: var(--font-mono);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee span::after { content: '◆'; font-size: 7px; color: var(--accent); opacity: 0.6; }

/* Ancorele nu se ascund sub header-ul fix */
section[id], [id="audit"], [id="contact"] { scroll-margin-top: 92px; }

/* ---------- Secțiuni ---------- */
.section { padding-block: var(--section-pad); position: relative; }
.section-alt { background: var(--bg-raised); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; }

/* ---------- De ce noi ---------- */
.why-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  transition: background 0.35s;
}
.why-card:hover { background: var(--bg-card); }
.why-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.why-card .ghost {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}
.why-card:hover .ghost { color: rgba(251, 126, 60, 0.1); }
.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(251, 126, 60, 0.1);
  border: 1px solid rgba(251, 126, 60, 0.25);
  color: var(--accent-2);
  margin-top: 18px;
}
.why-card h3 + .why-icon { margin-top: 0; }
.why-card h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.why-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
  text-wrap: pretty;
}
.why-card .tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(251, 126, 60, 0.09);
  border: 1px solid rgba(251, 126, 60, 0.22);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Servicii ---------- */
.services-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 40%),
    var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 126, 60, 0.45);
  box-shadow: 0 24px 60px -24px rgba(255, 138, 61, 0.35);
}
.service-card.featured {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(251, 126, 60, 0.08), rgba(251, 126, 60, 0) 45%),
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 70px -28px rgba(255, 138, 61, 0.5);
}
.service-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255, 138, 61, 0.8), rgba(255, 160, 94, 0.25) 35%, rgba(255, 138, 61, 0.1) 60%, rgba(255, 160, 94, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.service-card.featured .service-price .amount {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-card.featured .service-price .amount small {
  -webkit-text-fill-color: var(--ink-mute);
}
.service-card.featured::before {
  content: 'Cel mai cerut';
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 13px;
  border-radius: 999px;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(251, 126, 60, 0.1);
  border: 1px solid rgba(251, 126, 60, 0.25);
  color: var(--accent-2);
}
.service-card h3 {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service-card > p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; flex-grow: 0; }
.service-card ul {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.service-card li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.service-card li::before {
  content: '';
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: var(--accent-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M6.5 12.3 2.7 8.5l1.1-1.1 2.7 2.7 5.7-5.7 1.1 1.1z'/%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 fill='currentColor' d='M6.5 12.3 2.7 8.5l1.1-1.1 2.7 2.7 5.7-5.7 1.1 1.1z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.service-price {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.service-price .from { font-size: 12.5px; color: var(--ink-mute); display: block; }
.service-price .amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-price .amount small { font-size: 15px; font-weight: 500; color: var(--ink-mute); }
.maintenance-bar {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 50%),
    var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 30px;
}
.maintenance-bar p { color: var(--ink-soft); font-size: 15px; max-width: 64ch; }
.maintenance-bar p strong { color: var(--ink); }
.maintenance-bar .price { font-family: var(--font-display); font-weight: 700; font-size: 19px; white-space: nowrap; }
.maintenance-bar .price small { color: var(--ink-mute); font-weight: 500; font-size: 13px; }

/* ---------- Studii de caz ---------- */
.case-list {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  gap: 26px;
}
.case-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 35%),
    var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  transition: border-color 0.3s, box-shadow 0.4s;
}
.case-card:hover {
  border-color: rgba(251, 126, 60, 0.4);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.case-type {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(251, 126, 60, 0.09);
  border: 1px solid rgba(251, 126, 60, 0.22);
  padding: 5px 12px;
  border-radius: 999px;
}
.case-client { font-size: 13.5px; color: var(--ink-mute); }
.case-card h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.case-card h3 a { transition: color 0.2s; }
.case-card h3 a:hover { color: var(--accent-2); }
.case-card .case-desc { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; text-wrap: pretty; }
.case-stack {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-stack span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: 999px;
}
.case-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent-2);
}
.case-link svg { transition: transform 0.3s var(--ease-out); }
.case-link:hover svg { transform: translate(3px, -3px); }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  align-self: center;
}
.case-metric { background: var(--bg-raised); padding: 22px 24px; }
.case-metric .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
}
.case-metric .v small { font-size: 0.55em; color: var(--accent-2); font-weight: 600; }
.case-metric .k { margin-top: 4px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }

/* Screenshot cu ramă de browser în studiile de caz */
.case-side { display: grid; gap: 18px; align-self: center; }
.case-shot {
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-raised);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}
.case-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 126, 60, 0.5);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}
.case-shot .shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.case-shot .shot-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.case-shot .shot-bar em {
  margin-left: 10px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.case-shot img { width: 100%; height: auto; display: block; }
.case-side .case-metrics { grid-template-columns: repeat(4, 1fr); }
.case-side .case-metric { padding: 16px 14px; }
.case-side .case-metric .v { font-size: clamp(18px, 1.8vw, 23px); }
.case-side .case-metric .k { font-size: 11.5px; }

/* ---------- Audit gratuit (lead magnet) ---------- */
.audit-section {
  position: relative;
  overflow: clip;
}
.audit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 55% 70% at 18% 40%, rgba(255, 138, 61, 0.14), transparent 70%);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.audit-list {
  margin-top: 30px;
  list-style: none;
  display: grid;
  gap: 16px;
}
.audit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.audit-list li strong { color: var(--ink); }
.audit-list .ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(251, 126, 60, 0.1);
  border: 1px solid rgba(251, 126, 60, 0.25);
  color: var(--accent-2);
  margin-top: 1px;
}
.audit-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.audit-form-card {
  background:
    linear-gradient(180deg, rgba(251, 126, 60, 0.07), rgba(251, 126, 60, 0) 45%),
    var(--bg-card);
  border: 1px solid transparent;
  background-clip: padding-box, padding-box;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 30px 80px -30px rgba(255, 138, 61, 0.3);
  position: relative;
}
.audit-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255, 138, 61, 0.65), rgba(255, 160, 94, 0.18) 35%, rgba(255, 138, 61, 0.08) 65%, rgba(255, 160, 94, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.audit-form-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.audit-form-card > p { margin-top: 8px; font-size: 14px; color: var(--ink-mute); }
.audit-form-card form { margin-top: 22px; display: grid; gap: 16px; }
.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Sticky CTA mobil ---------- */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(13, 13, 23, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.7);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), opacity 0.3s, visibility 0.45s;
}
.mobile-cta.visible { transform: none; opacity: 1; visibility: visible; }
.mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }

/* ---------- Proces ---------- */
.process-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 26px; }
.process-step::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  right: -22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 126, 60, 0.45), var(--line-strong) 60%);
}
.process-step:last-child::before { right: 0; }
.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(251, 126, 60, 0.14), 0 0 16px rgba(251, 126, 60, 0.7);
}
.process-step .phase {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.process-step h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.process-step p { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); text-wrap: pretty; }
.process-step .dur {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16.5px, 1.8vw, 19px);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item summary .icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease-out), background 0.25s, border-color 0.25s;
}
.faq-item summary .icon::before {
  content: '+';
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-soft);
}
.faq-item[open] summary .icon {
  transform: rotate(45deg);
  background: rgba(251, 126, 60, 0.12);
  border-color: rgba(251, 126, 60, 0.4);
}
.faq-item .faq-body {
  padding: 0 4px 28px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 64ch;
  text-wrap: pretty;
}
.faq-item .faq-body a { color: var(--accent-2); font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.contact-info > p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }
.contact-rows { margin-top: 30px; display: grid; gap: 14px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}
.contact-row:hover { border-color: rgba(251, 126, 60, 0.45); transform: translateY(-2px); }
.contact-row .ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(251, 126, 60, 0.1);
  border: 1px solid rgba(251, 126, 60, 0.22);
  color: var(--accent-2);
}
.contact-row .lbl { font-size: 12.5px; color: var(--ink-mute); }
.contact-row .val { font-weight: 600; font-size: 15.5px; }
.contact-promise {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-mute);
}
.contact-promise svg { flex: 0 0 auto; margin-top: 2px; color: var(--green); }

/* Form */
.form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 35%),
    var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 42px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237e8093' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-field select option { background: var(--bg-card); color: var(--ink); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-mute); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 126, 60, 0.18);
}
.form-submit { margin-top: 24px; width: 100%; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-mute); text-align: center; }
.form-note a { color: var(--ink-soft); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: grid;
  place-items: center;
  color: var(--green);
}
.form-success h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.form-success p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }

/* ---------- CTA final ---------- */
.final-cta {
  position: relative;
  text-align: center;
  padding-block: var(--section-pad);
  overflow: clip;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(255, 138, 61, 0.24), transparent 70%);
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 100%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 100%, #000 20%, transparent 75%);
}
.final-cta .alt-action {
  display: block;
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-mute);
}
.final-cta .alt-action a {
  color: var(--accent-2);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 160, 94, 0.4);
}
.final-cta .alt-action a:hover { text-decoration-color: currentColor; }
.final-cta h2 {
  font-size: clamp(32px, 5.4vw, 64px);
  max-width: 20ch;
  margin-inline: auto;
}
.final-cta p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 52ch;
  margin-inline: auto;
}
.final-cta .btn { margin-top: 38px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  border-top: 0;
  background: var(--bg-raised);
  padding: clamp(48px, 6vw, 72px) 0 36px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(30px, 4vw, 56px);
}
.footer-brand p { margin-top: 16px; color: var(--ink-mute); max-width: 34ch; font-size: 13.5px; }
.footer-col .footer-h {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.footer-col ul { margin-top: 18px; list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--ink-soft); transition: color 0.2s; font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-legal-info { color: var(--ink-mute); font-size: 13px; line-height: 1.8; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 13px;
}
.footer-bottom .anpc-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--ink); }

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 126, 60, 0.45), rgba(255, 160, 94, 0.35), transparent);
}

/* ---------- Pagini legale ---------- */
.legal-page { padding-top: clamp(140px, 18vh, 190px); padding-bottom: var(--section-pad); }
.legal-page h1 { font-size: clamp(32px, 5vw, 52px); }
.legal-page .updated { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); }
.legal-body { margin-top: 48px; max-width: 760px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 44px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; margin-top: 14px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-top: 8px; }
.legal-body a { color: var(--accent-2); }
.legal-body strong { color: var(--ink); }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
}
.page-404 .code {
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 200px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-404 h1 { margin-top: 10px; font-size: clamp(22px, 3vw, 30px); }
.page-404 p { margin-top: 14px; color: var(--ink-soft); }
.page-404 .btn { margin-top: 32px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; }
  .case-card { grid-template-columns: 1fr; }
  .case-metrics { align-self: stretch; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 22px; }
  .process-step:nth-child(2)::before { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(7, 7, 13, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 21px; font-family: var(--font-display); font-weight: 600; }
  .nav-cta { padding: 14px 30px; font-size: 16px; }
  .nav-toggle { display: block; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 0 6px; border-left: 0; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .case-side .case-metrics { grid-template-columns: 1fr 1fr; }
  .audit-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 96px; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step::before { right: 0; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   v4 — Experiență: pain section, tabs, motion system
   ========================================================================== */

[hidden] { display: none !important; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}

/* Hero: cuvinte care urcă */
.hero-title .line { display: block; }
.hero-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-title .w > span {
  display: inline-block;
  transform: translateY(115%);
  animation: wordUp 0.85s var(--ease-out) forwards;
  animation-delay: calc(var(--wi, 0) * 90ms + 120ms);
}
@keyframes wordUp { to { transform: translateY(0); } }

/* Pain section */
.pain-section { position: relative; overflow: clip; }
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 85% 20%, rgba(255, 160, 94, 0.08), transparent 70%);
}
.pain-grid {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 40%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.pain-card:hover { transform: translateY(-5px); border-color: rgba(251, 126, 60, 0.4); }
.pain-card::before {
  content: '„';
  position: absolute;
  top: 2px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  color: rgba(251, 126, 60, 0.16);
  pointer-events: none;
}
.pain-card blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: balance;
  padding-right: 30px;
}
.pain-who {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(251, 126, 60, 0.09);
  border: 1px solid rgba(251, 126, 60, 0.22);
  padding: 4px 11px;
  border-radius: 999px;
}
.pain-card figcaption p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.pain-bridge {
  margin-top: clamp(36px, 4vw, 52px);
  max-width: 62ch;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.pain-bridge strong { color: var(--ink); }

/* Tabs lead magnet */
.start-tabs {
  margin-top: clamp(36px, 4vw, 52px);
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.start-tab {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  text-align: left;
}
.start-tab small {
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-mute);
}
.start-tab.active {
  background: var(--grad);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 26px -10px rgba(255, 138, 61, 0.6);
}
.start-tab.active small { color: rgba(255, 255, 255, 0.75); }
.start-panel { margin-top: clamp(36px, 4vw, 56px); align-items: start; }
.start-panel.fade-in { animation: panelIn 0.5s var(--ease-out); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.start-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 27px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
  max-width: 24ch;
}
.audit-list { margin-top: 26px; }

/* Stacking pe proiecte (desktop) */
@media (min-width: 821px) {
  .case-list { gap: 0; }
  .case-card {
    position: sticky;
    top: 96px;
    margin-bottom: 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 -18px 50px -20px rgba(0, 0, 0, 0.75);
  }
  .case-card:last-child { margin-bottom: 0; }
}

/* Cursor glow pe carduri (doar pointer fin) */
@media (pointer: fine) {
  .why-card, .service-card, .pain-card, .case-card {
    --mx: 50%;
    --my: 50%;
  }
  .why-card::before, .service-card .glow-layer, .pain-card .glow-layer { content: none; }
  .glow-target { position: relative; }
  .glow-target::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(251, 126, 60, 0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
  }
  .glow-target:hover::after { opacity: 1; }
  .service-card.featured.glow-target::after {
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(251, 126, 60, 0.1), transparent 65%);
  }
}

/* Scroll-driven enhancements (Chrome/Edge; restul primesc fallback-ul IO) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .case-shot img {
      animation: imgSettle linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 90%;
    }
    @keyframes imgSettle {
      from { transform: scale(1.07); }
      to { transform: scale(1); }
    }
    .process-step::before {
      transform-origin: left;
      animation: lineDraw linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 70%;
    }
    @keyframes lineDraw {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    .hero-bg::after {
      animation: gridDrift linear both;
      animation-timeline: scroll();
      animation-range: 0 700px;
    }
    @keyframes gridDrift {
      to { transform: translateY(-50px); }
    }
    .pain-card::before {
      animation: quoteFloat linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes quoteFloat {
      from { transform: translateY(14px); }
      to { transform: translateY(-10px); }
    }
  }
}

/* Responsive pentru noile componente */
@media (max-width: 1020px) {
  .pain-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 820px) {
  .start-tabs { display: flex; width: 100%; }
  .start-tab { flex: 1; padding: 11px 14px; }
  .start-tab small { font-size: 11px; }
}

.btn-primary, .start-tab.active, .logo-mark, .service-card.featured::before { color: #2a1505; }
.start-tab.active small { color: #2a1505; opacity: .65; }


/* Logo oficial (VV in cerc) */
.logo-mark-img {
  width: auto;
  height: 26px;
  filter: drop-shadow(0 3px 10px rgba(255, 138, 61, 0.35));
}

