/* Voost Vision, varianta „glob”. Dark, arc de lumină, glob rotativ, componente cu
   mask-reveal. Accent portocaliu (brandul VV) în locul auriului din referință.
   Fără garduri prefers-reduced-motion: Radu are „reduce motion” pornit și a cerut explicit
   (2026-09-18) ca toate animațiile de pe varianta asta să ruleze oricum. */

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

:root {
  --black: #0a0a0a;
  --ink: #0a0a0a;
  --white: #f5f5f0;
  --gray: #f0f0ec;
  --accent: #fb7e3c;
  --accent-rgb: 251, 126, 60;
  --accent-light: #ffa06a;
  --accent-deep: #d9531f;
  --dark-section: #111111;
  --text-muted: rgba(255, 255, 255, .55);
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-title: "Sora", "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --nav-height: 70px;
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out-quart: cubic-bezier(.76, 0, .24, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-soft: cubic-bezier(.23, 1, .32, 1);
  --ease-rise: cubic-bezier(.19, 1, .22, 1);
}

html { font-size: 16px; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black); color: var(--white);
  font-family: var(--font-body); font-weight: 400; line-height: 1.6;
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
@media (hover: hover) and (pointer: fine) { body { overscroll-behavior: none; } }
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: .92; }
p { line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
section { position: relative; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 100000; padding: 12px 24px; background: var(--accent); color: var(--black); border-radius: 8px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.skip-link:focus { left: 50%; transform: translateX(-50%); position: fixed; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---------- Noise + cursor + progressive bottom blur ---------- */
.noise-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .035; mix-blend-mode: overlay; contain: strict;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); box-shadow: 0 0 10px rgba(var(--accent-rgb), .8); display: none; }
.cursor-follower { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1px solid rgba(var(--accent-rgb), .45); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: width .3s ease, height .3s ease, opacity .3s ease; display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-follower { display: block; }
  body.cursor-hidden .cursor, body.cursor-hidden .cursor-follower { opacity: 0; }
}
.bottom-blur { position: fixed; left: 0; right: 0; bottom: 0; height: 220px; z-index: 20; pointer-events: none; }
.bottom-blur span { position: absolute; inset: 0; transition: opacity .6s ease; }
.bottom-blur .l1 { backdrop-filter: blur(1.5px); -webkit-backdrop-filter: blur(1.5px); mask-image: linear-gradient(to top, #000 0%, #000 60%, transparent 100%); -webkit-mask-image: linear-gradient(to top, #000 0%, #000 60%, transparent 100%); }
.bottom-blur .l2 { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); mask-image: linear-gradient(to top, #000 0%, #000 38%, transparent 74%); -webkit-mask-image: linear-gradient(to top, #000 0%, #000 38%, transparent 74%); }
.bottom-blur .l3 { backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); mask-image: linear-gradient(to top, #000 0%, #000 16%, transparent 46%); -webkit-mask-image: linear-gradient(to top, #000 0%, #000 16%, transparent 46%); }
.bottom-blur.at-bottom span { opacity: 0; }
@media (max-width: 768px) { .bottom-blur { height: 140px; } .bottom-blur .l3 { display: none; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border: 0; border-radius: 100px; position: relative; overflow: hidden; isolation: isolate; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease-soft), box-shadow .2s var(--ease-soft), border-color .2s var(--ease-soft), color .28s var(--ease-soft); }
.btn span { position: relative; z-index: 3; }
.btn::before { content: ""; position: absolute; inset: -1.5px; border-radius: inherit; z-index: 0; transform-origin: center; transition: transform .4s cubic-bezier(.22, 1, .36, 1); }
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(180deg, rgba(var(--accent-rgb), .16), rgba(var(--accent-rgb), .04) 45%, transparent 72%), #0b0b0b; border: 1px solid rgba(var(--accent-rgb), .18); color: var(--black); }
.btn-primary::before { background: #f2f2ed; transform: translateY(0); }
.btn-dark { background: #141414; color: #fff; border: 1px solid rgba(255, 255, 255, .06); }
.btn-dark::before { background: #f2f2ed; transform: translateY(-101%); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, .25); }
.btn-outline::before { background: rgba(255, 255, 255, .08); transform: translateY(-101%); }
.btn-white { background: #fff; color: var(--black); }
.btn-white::before { background: rgba(0, 0, 0, .06); transform: translateY(-101%); }
.btn-accent { background: linear-gradient(135deg, var(--accent-light), var(--accent) 52%, var(--accent-deep)); color: var(--black); box-shadow: 0 6px 20px rgba(var(--accent-rgb), .18), inset 0 1px rgba(255, 255, 255, .4); }
.btn-accent::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%); transform: translateX(-120%); transition: transform .72s var(--ease-soft); pointer-events: none; z-index: 2; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, .3); }
  .btn-primary:hover::before { transform: translateY(110%); }
  .btn-primary:hover { color: #fff; }
  .btn-dark:hover::before, .btn-outline:hover::before, .btn-white:hover::before { transform: translateY(0); }
  .btn-dark:hover { color: var(--black); }
  .btn-accent:hover { box-shadow: 0 14px 38px rgba(var(--accent-rgb), .35), inset 0 1px rgba(255, 255, 255, .5); }
  .btn-accent:hover::after { transform: translateX(120%); }
  [data-magnetic] { transition: transform .4s var(--ease-in-out-quart); will-change: transform; }
}
@media (pointer: coarse), (max-width: 768px) {
  .btn-primary { background: #f2f2ed; border-color: rgba(0, 0, 0, .08); color: var(--black); }
  .btn-primary::before, .btn-dark::before, .btn-outline::before, .btn-white::before { display: none; }
  .btn:active { transform: scale(.94); }
}

/* ---------- Reveal helpers ---------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="blur"] { filter: blur(14px); transition: opacity .85s var(--ease-rise), transform .85s var(--ease-rise), filter 1.2s ease-out; }
[data-reveal="blur"].revealed { filter: blur(0); }
[data-reveal="scale"] { transform: translateY(40px) scale(.985); transition-duration: 1.1s; }
[data-reveal="scale"].revealed { transform: none; }
[data-reveal="line"] { transform: scaleX(0); transform-origin: left center; transition: transform 1s var(--ease-rise); opacity: 1; }
[data-reveal="line"].revealed { transform: scaleX(1); }
[data-reveal="vline"] { transform: scaleY(0); transform-origin: top center; transition: transform 1.2s var(--ease-rise); opacity: 1; }
[data-reveal="vline"].revealed { transform: scaleY(1); }
[data-reveal="fade"] { transform: none; transition: opacity 1.2s ease; }
.mask { display: block; clip-path: inset(0 -100% 0 -100%); padding: .16em 0 .1em; margin: -.16em 0 -.1em; }
.mask > .rise { display: block; transform: translateY(130%); transition: transform 1.3s var(--ease-rise); will-change: transform; }
.mask.revealed > .rise, .revealed .mask > .rise { transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * .12s + var(--d, 0s)); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 32px 36px 16px; display: flex; align-items: center; transition: background .4s ease, transform .35s var(--ease-in-out-quart); }
.nav.hidden { transform: translateY(-110%); }
.nav.scrolled { background: rgba(10, 10, 10, .85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, .04); padding-top: 14px; padding-bottom: 14px; }
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: center; position: relative; min-height: 54px; }
.logo { display: flex; align-items: center; gap: 10px; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.logo img { width: 34px; height: 28px; }
.logo-text { font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: .03em; color: var(--white); text-transform: uppercase; line-height: 1; }
.logo-text em { font-style: normal; color: var(--accent); }
@media (hover: hover) and (pointer: fine) {
  .logo { transition: transform .4s var(--ease-in-out-quart); }
  .logo:hover { transform: translateY(-50%) scale(1.02); }
  .logo:hover .logo-text { background: linear-gradient(100deg, #fff 0%, #fff 40%, var(--accent) 50%, #fff 60%, #fff 100%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; animation: logoShine .85s cubic-bezier(.22, 1, .36, 1) forwards; }
  .logo:hover .logo-text em { color: inherit; -webkit-text-fill-color: inherit; }
}
@keyframes logoShine { 0% { background-position: 135% 0; } to { background-position: -35% 0; } }
.pill-nav { display: flex; align-items: center; gap: 4px; position: relative; overflow: hidden; background: rgba(var(--accent-rgb), .06); border-radius: 100px; padding: 4px; backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); box-shadow: inset 1px 1px 1px rgba(var(--accent-rgb), .25), inset -1px -1px 1px rgba(var(--accent-rgb), .12), 0 4px 12px rgba(0, 0, 0, .2); border: 1px solid rgba(var(--accent-rgb), .15); }
.pill-link { padding: 8px 18px; font-size: 12px; font-weight: 500; letter-spacing: .06em; border-radius: 100px; color: #fff; transition: all .25s ease; white-space: nowrap; position: relative; }
.pill-link:hover, .pill-link.active { background: rgba(var(--accent-rgb), .14); }
.pill-link.active::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 6px; height: 1px; background: currentColor; opacity: .7; }
.nav-right { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 12px; }
.chat-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 999px; background: linear-gradient(180deg, rgba(var(--accent-rgb), .16), rgba(var(--accent-rgb), .04) 45%, transparent 72%), #0b0b0b; border: 1px solid rgba(var(--accent-rgb), .16); white-space: nowrap; font-size: 15px; font-weight: 500; color: var(--black); box-shadow: 0 4px 18px rgba(0, 0, 0, .35), inset 0 1px rgba(var(--accent-rgb), .14); overflow: hidden; isolation: isolate; position: relative; transition: color .3s var(--ease-soft), transform .2s var(--ease-soft); }
.chat-btn::before { content: ""; position: absolute; inset: -1px 0; background: #f2f2ed; border-radius: inherit; z-index: 0; transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.chat-btn > span { position: relative; z-index: 1; }
@media (hover: hover) and (pointer: fine) { .chat-btn:hover { color: #fff; } .chat-btn:hover::before { transform: translateY(105%); } }
.menu-toggle { display: none; flex-direction: column; gap: 5px; justify-content: center; align-items: center; background: rgba(var(--accent-rgb), .25); border: 1px solid rgba(var(--accent-rgb), .3); border-radius: 12px; padding: 10px 12px; min-width: 44px; min-height: 44px; box-shadow: 0 0 12px rgba(var(--accent-rgb), .15), inset 0 1px 1px rgba(var(--accent-rgb), .2); }
.menu-line { display: block; width: 16px; height: 2px; background: #fff; border-radius: 1px; transition: all .3s var(--ease-in-out-quart); transform-origin: center; }
.menu-open .menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-open .menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.full-menu { position: fixed; inset: 0; background: var(--black); z-index: 999; display: none; flex-direction: column; overflow-y: auto; }
.full-menu.open { display: flex; animation: menuSlide .4s cubic-bezier(.22, 1, .36, 1) both; }
@keyframes menuSlide { 0% { opacity: 0; transform: translateY(-4%); } to { opacity: 1; transform: none; } }
.full-menu-inner { padding: 110px 24px 40px; min-height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.full-menu-links { list-style: none; }
.full-menu-links li { opacity: 0; transform: translateY(30px); animation: menuLink .5s cubic-bezier(.22, 1, .36, 1) forwards; animation-delay: calc(.12s + var(--i, 0) * .06s); }
@keyframes menuLink { to { opacity: 1; transform: none; } }
.full-menu-link { display: flex; align-items: baseline; gap: 18px; font-family: var(--font-display); font-size: clamp(44px, 11vw, 96px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .06); color: #fff; line-height: 1; }
.full-menu-link:active { color: var(--accent); }
.full-menu-num { font-family: var(--font-body); font-size: 14px; font-weight: 400; opacity: .35; letter-spacing: .05em; }
.full-menu-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .06); font-size: 14px; opacity: 0; animation: menuLink .5s ease .4s forwards; }
.full-menu-bottom a { font-weight: 600; letter-spacing: .04em; }
@media (max-width: 1000px) {
  .pill-nav, .chat-btn { display: none; }
  .menu-toggle { display: flex; }
  .nav { padding: 18px 20px 14px; }
  .nav-inner { justify-content: space-between; }
  .logo { position: static; transform: none; }
  .logo-text { font-size: 17px; }
  .nav-right { position: static; transform: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; width: 100%; height: 100vh; min-height: 640px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--black); }
.corner-glow { position: absolute; top: 0; left: 0; width: min(60vw, 900px); height: min(70vh, 700px); z-index: 4; pointer-events: none; background: radial-gradient(ellipse 100% 100% at 0% 0%, rgba(255, 255, 255, .16), rgba(255, 236, 224, .1), rgba(var(--accent-rgb), .08) 28%, rgba(var(--accent-rgb), .04), rgba(var(--accent-rgb), .015) 60%, transparent 78%); animation: cornerPulse 7s ease-in-out infinite; }
@keyframes cornerPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.arc-wrap { position: absolute; inset: 0; pointer-events: none; }
.arc { position: absolute; inset: 0; width: 100%; height: 100%; isolation: isolate; pointer-events: none; z-index: 3; transform: translateY(-45%) scaleY(1.25); }
.glow-arc { position: absolute; inset: 0; border-radius: 100%; }
.glow-arc.a1 { transform: scale(1.32); background: #fff; box-shadow: 0 -4px 25px 2px rgba(255, 255, 255, .9), 0 0 60px 10px rgba(var(--accent-rgb), .35); }
.glow-arc.a2 { transform: scale(1.2); background: #ffd0b0; filter: blur(31px); }
.glow-arc.a3 { transform: scale(1.24); background: var(--accent); filter: blur(21px); }
.glow-arc.a4 { transform: scale(1.15); background: #0a0a0a; filter: blur(40px); }
.globe-layer { position: absolute; inset: 0; pointer-events: none; z-index: 4; opacity: 0; transition: opacity .9s var(--ease-soft); }
.globe-layer.ready { opacity: 1; }
.globe { position: absolute; inset: 0; z-index: 4; pointer-events: auto; mix-blend-mode: screen; filter: blur(1.5px); mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 62%); -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 40%, transparent 62%); cursor: grab; }
.globe:active { cursor: grabbing; }
.globe canvas { display: block; width: 100% !important; height: 100% !important; }
.hero-static-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse at 30% 40%, rgba(var(--accent-rgb), .08) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(var(--accent-rgb), .05) 0%, transparent 50%), #0a0a0a; }
.hero-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 30vh; z-index: 1; background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 0 40px 80px; }
.hero-title { display: flex; flex-direction: column; align-items: center; margin-bottom: 28px; }
.hero-title h1 { display: flex; flex-direction: column; align-items: center; }
.title-mask { display: block; clip-path: inset(0 -100% 0 -100%); padding: .12em 0 .06em; margin: -.12em 0 -.06em; }
.title-line { display: block; font-size: clamp(60px, 11.5vw, 150px); font-weight: 900; color: var(--white); letter-spacing: -.035em; line-height: 1; transform: translateY(125%); transition: transform 1.7s var(--ease-rise); will-change: transform; backface-visibility: hidden; }
.title-line.italic { font-style: italic; background: linear-gradient(90deg, #fff 0% 16%, #cecece 36%, #787878 66%, #3a3a3a); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; padding: .14em .3em; margin: -.14em -.3em; transition-delay: .22s; }
.hero-in .title-line { transform: translateY(0); }
.hero-sub { font-family: var(--font-body); font-size: 34px; color: #fff; letter-spacing: -.01em; font-weight: 600; line-height: 1.3; max-width: 680px; text-align: center; margin-bottom: 36px; text-shadow: 0 1px 10px rgba(0, 0, 0, .75); opacity: 0; transform: translateY(44px); transition: opacity 1.5s linear .7s, transform 1.5s cubic-bezier(.33, 1, .68, 1) .7s; }
.hero-in .hero-sub { opacity: 1; transform: none; }
.hero-sub .lead { display: block; }
.cycle-line { display: block; min-height: 1.3em; }
.cycle-char { display: inline-block; white-space: pre; will-change: filter, opacity, transform; opacity: 0; filter: blur(8px); transform: translateY(55%); transition: opacity .8s cubic-bezier(.65, 0, .35, 1), filter .8s cubic-bezier(.65, 0, .35, 1), transform .8s cubic-bezier(.65, 0, .35, 1); transition-delay: var(--cd, 0s); }
.cycle-line.in .cycle-char { opacity: 1; filter: blur(0); transform: none; }
.cycle-line.out .cycle-char { opacity: 0; filter: blur(8px); transform: translateY(-55%); }
.hero-cta { position: relative; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; opacity: 0; transition: opacity 1.2s cubic-bezier(.25, 1, .5, 1) 1.7s; }
.hero-in .hero-cta { opacity: 1; }
.featured { position: absolute; right: 68px; top: 150px; z-index: 6; width: 360px; opacity: 0; transform: translateX(44px); transition: opacity 1.5s linear 1.2s, transform 1.5s cubic-bezier(.33, 1, .68, 1) 1.2s; }
.hero-in .featured { opacity: 1; transform: none; }
.glass-layer { position: absolute; inset: -22px -20px -20px; z-index: -1; border-radius: 30px; backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%); background: linear-gradient(150deg, rgba(255, 255, 255, .09), rgba(24, 24, 22, .3) 42%, rgba(10, 10, 10, .44)); border: 1px solid rgba(255, 255, 255, .18); box-shadow: inset 0 1px rgba(255, 255, 255, .22), inset 0 0 0 1px rgba(255, 255, 255, .04); pointer-events: none; }
.glass-layer::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(142deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .04) 18%, transparent 42%); mix-blend-mode: screen; pointer-events: none; }
.featured-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.featured-label { font-family: var(--font-title); font-weight: 700; font-size: 15px; color: rgba(255, 255, 255, .95); text-shadow: 0 1px 10px rgba(0, 0, 0, .85); }
.featured-num { font-size: 13px; color: rgba(255, 255, 255, .5); }
.featured-rule { display: block; width: 100%; height: 1px; background: rgba(255, 255, 255, .16); margin-bottom: 14px; }
.featured-row { display: flex; flex-direction: column; gap: 32px; }
.featured-card { display: block; position: relative; height: 200px; opacity: 0; transform: translateX(60px); filter: blur(14px); transition: opacity 1.5s var(--ease-out-expo), transform 1.5s var(--ease-out-expo), filter 1.8s ease-out; transition-delay: calc(2.05s + var(--i, 0) * .38s); }
.hero-in .featured-card { opacity: 1; transform: none; filter: blur(0); }
.featured-media { position: absolute; inset: 0; border-radius: 18px; overflow: hidden; background: #111; border: 1px solid rgba(255, 255, 255, .08); box-shadow: 0 18px 44px rgba(0, 0, 0, .55); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease-soft); }
.featured-card:hover .featured-media img { transform: scale(1.04); }
.featured-name { position: absolute; left: 14px; bottom: 12px; font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, .8); }
.view-badge { position: absolute; left: 0; top: 0; margin: -42px 0 0 -42px; width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(100% 100% at 50% 24%, rgba(70, 70, 70, .58), rgba(52, 52, 52, .62) 52%, rgba(36, 36, 36, .66)); backdrop-filter: blur(44px); -webkit-backdrop-filter: blur(44px); box-shadow: 0 18px 40px rgba(0, 0, 0, .5); color: #fff; font-size: 14px; font-weight: 500; letter-spacing: .01em; pointer-events: none; z-index: 8; opacity: 0; transform: scale(.5); transition: opacity .3s cubic-bezier(.22, 1, .36, 1), transform .3s cubic-bezier(.22, 1, .36, 1); }
.view-badge.on { opacity: 1; transform: scale(1); }
@media (max-width: 1160px) { .featured { display: none; } }
@media (max-width: 768px) {
  .hero { min-height: 100svh; height: 100svh; }
  .hero-content { padding: 0 22px 72px; }
  .title-line { font-size: clamp(46px, 16vw, 76px); }
  .hero-title { margin-bottom: 20px; }
  .hero-sub { font-size: 21px; line-height: 1.3; max-width: 340px; margin: 0 0 30px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 330px; gap: 10px; margin-top: 0; }
  .hero-cta .btn { width: 100%; padding: 17px 22px; }
  .arc { inset: auto; width: 1050px; height: 1080px; left: 50%; top: 100%; transform: translateX(-50%) translateY(calc(-44svh - 1080px)); }
  .globe { filter: blur(1.2px); }
}

/* ---------- Phone cards marquee ---------- */
.phones { background: transparent; padding: 50px 0; margin-top: -210px; position: relative; z-index: 5; }
.phones-wrap { position: relative; overflow: hidden; }
.phones-fade { position: absolute; left: 0; top: 0; bottom: 0; width: 120px; background: linear-gradient(to right, #0a0a0a, transparent); z-index: 10; pointer-events: none; }
.phones-fade.right { left: auto; right: 0; background: linear-gradient(to left, #0a0a0a, transparent); }
.phones-track { display: flex; align-items: flex-end; gap: 44px; width: max-content; padding: 60px 0 90px; will-change: transform; touch-action: pan-y; }
.phone-card { flex-shrink: 0; position: relative; width: 250px; height: 330px; border-radius: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)); border: 1.5px solid rgba(var(--accent-rgb), .16); padding: 10px; transform-style: preserve-3d; transition: border-color .25s var(--ease-soft), transform .5s var(--ease-soft); }
.phone-card::before { content: ""; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, .02) 100%); pointer-events: none; z-index: 3; }
.phone-inner { border-radius: 13px; overflow: hidden; width: 100%; height: 100%; background: #111; position: relative; display: flex; align-items: flex-start; justify-content: center; }
.phone-frame { position: absolute; top: 34px; width: 150px; height: 320px; border-radius: 26px; background: #050505; box-shadow: 0 0 0 5px #1a1a1a, 0 0 0 6px #333, 0 30px 60px rgba(0, 0, 0, .7); overflow: hidden; transform: rotate(-6deg) translateX(8px); transform-origin: top center; }
.phone-frame img { width: 100%; height: auto; }
.phone-frame::after { content: ""; position: absolute; left: 50%; top: 8px; width: 46px; height: 12px; border-radius: 8px; background: #000; transform: translateX(-50%); }
.phone-shade { position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, .06), transparent 60%), linear-gradient(to top, #0e0e0e 0%, transparent 45%); pointer-events: none; z-index: 2; }
.phone-name { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, .8); z-index: 5; opacity: 0; transform: translateY(6px); transition: opacity .25s var(--ease-soft), transform .25s var(--ease-soft); pointer-events: none; }
.phone-card.live .phone-name::before { content: "● "; color: #4ade80; font-size: 9px; vertical-align: 2px; }
@media (hover: hover) and (pointer: fine) {
  .phone-card:hover { border-color: rgba(var(--accent-rgb), .45); }
  .phone-card:hover .phone-name { opacity: 1; transform: none; }
  .phone-card:hover .phone-frame { transform: rotate(-3deg) translateX(4px) translateY(-6px); transition: transform .6s var(--ease-soft); }
}
@media (max-width: 768px) {
  .phones { padding: 28px 0 0; margin-top: -150px; }
  .phones-track { gap: 8px; padding: 24px 0 36px; }
  .phone-card { width: 170px; height: 220px; border-radius: 14px; padding: 7px; }
  .phone-inner { border-radius: 9px; }
  .phone-frame { top: 22px; width: 104px; height: 220px; border-radius: 18px; box-shadow: 0 0 0 3px #1a1a1a, 0 0 0 4px #333, 0 20px 40px rgba(0, 0, 0, .7); }
  .phone-frame::after { width: 32px; height: 9px; top: 6px; }
  .phone-name { opacity: 1; transform: none; font-size: 10px; bottom: 10px; }
  .phones-fade { width: 40px; }
}

/* ---------- Logo marquee ---------- */
.logos { position: relative; padding: 24px 0 72px; overflow: hidden; background: var(--black); }
.logos-label { text-align: center; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 34px; }
.logos-mask { mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%); overflow: hidden; }
.logos-track { display: flex; align-items: center; width: max-content; animation: marquee 38s linear infinite; }
.logos-track:hover { animation-play-state: paused; }
.logo-item { flex: none; display: flex; align-items: center; justify-content: center; padding-inline: clamp(30px, 3vw, 54px); font-family: var(--font-title); font-weight: 700; font-size: clamp(20px, 2vw, 28px); letter-spacing: -.01em; color: rgba(255, 255, 255, .5); white-space: nowrap; transition: color .32s var(--ease-soft); }
.logo-item svg { width: 28px; height: 28px; margin-right: 10px; opacity: .8; }
@media (hover: hover) and (pointer: fine) { .logo-item:hover { color: #fff; } }
@keyframes marquee { 0% { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (max-width: 768px) { .logos { padding: 8px 0 48px; } .logo-item { padding-inline: 22px; } .logos-track { animation-duration: 22s; } }

/* ---------- Two big cards (Proiecte / Demo-uri) ---------- */
.showcase { background: var(--black); padding: clamp(80px, 9vw, 130px) 0 90px; overflow: hidden; position: relative; }
.grid-lines { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 25% 100%; background-position: clamp(32px, 4vw, 80px) 0; mask-image: linear-gradient(to bottom, transparent 0, #000 140px, #000 calc(100% - 220px), transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 140px, #000 calc(100% - 220px), transparent 100%); }
.pool { position: absolute; bottom: -240px; left: 50%; transform: translateX(-50%); width: 140vw; height: 1050px; pointer-events: none; mask-image: linear-gradient(to top, transparent 260px, rgba(0, 0, 0, .12) 480px, rgba(0, 0, 0, .45) 760px, #000 1080px); -webkit-mask-image: linear-gradient(to top, transparent 260px, rgba(0, 0, 0, .12) 480px, rgba(0, 0, 0, .45) 760px, #000 1080px); background: linear-gradient(to top, rgba(var(--accent-rgb), .11) 0%, rgba(var(--accent-rgb), .05) 30%, rgba(var(--accent-rgb), .018) 58%, transparent 82%), radial-gradient(ellipse 55% 45% at 50% 80%, rgba(255, 170, 110, .13) 0%, rgba(var(--accent-rgb), .06) 45%, transparent 75%); }
.showcase-inner { display: flex; flex-direction: column; gap: clamp(44px, 5vw, 72px); padding: 0 clamp(32px, 4vw, 80px); position: relative; z-index: 1; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; background: rgba(255, 255, 255, .03); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .75); font-weight: 600; margin-bottom: 34px; }
.eyebrow-pill::before { content: "✦"; color: var(--accent); font-size: 10px; }
.title-big { font-size: clamp(40px, 5.5vw, 78px); color: #fff; line-height: 1.02; letter-spacing: -.03em; font-weight: 900; }
.title-italic { display: block; font-size: clamp(40px, 5.5vw, 78px); font-style: italic; font-weight: 400; color: rgba(255, 255, 255, .45); line-height: 1.08; letter-spacing: -.03em; text-transform: none; }
.show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); position: relative; z-index: 1; width: 100%; }
.show-card { display: block; height: clamp(400px, 36vw, 560px); color: #fff; border: 1px solid rgba(255, 255, 255, .09); border-radius: 24px; background: #0a0a0a; box-shadow: 0 24px 60px rgba(0, 0, 0, .45); transition: border-color .32s ease; position: relative; z-index: 1; overflow: hidden; }
.show-card:hover { border-color: rgba(255, 255, 255, .22); }
.show-preview { position: absolute; inset: 0; overflow: hidden; border-radius: 24px; background: #0a0a0a; }
.show-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.02); transition: transform .6s var(--ease-soft); }
.show-card:hover .show-preview img { transform: scale(1.065); }
.show-card.light .show-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, .1), transparent 40%); }
.show-bottom { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 34px 34px 32px; text-align: center; }
.show-bottom::before { content: ""; position: absolute; inset: 18px 0 0; border-radius: 0 0 23px 23px; backdrop-filter: blur(9px) saturate(115%); -webkit-backdrop-filter: blur(9px) saturate(115%); background: linear-gradient(to top, rgba(14, 14, 16, .93), rgba(14, 14, 16, .76) 42%, rgba(255, 255, 255, .015)); z-index: -1; }
.show-title { font-family: var(--font-title); font-size: clamp(30px, 3.2vw, 44px); font-weight: 700; text-transform: uppercase; letter-spacing: -.02em; line-height: 1; background: linear-gradient(180deg, #fff, #f2f2f3 42%, #b6b6b8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 10px; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55)); }
.show-desc { font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, .85); max-width: 460px; margin: 0 auto; }
.cta-wrap { display: flex; justify-content: center; gap: 12px; width: 100%; flex-wrap: wrap; }
@media (max-width: 900px) { .show-grid { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 768px) {
  .showcase { padding: 64px 0 56px; background: #080808; }
  .grid-lines { background-position: 20px 0; background-size: 50% 100%; }
  .showcase-inner { padding: 0 20px; gap: 36px; }
  .eyebrow-pill { margin-bottom: 24px; }
  .title-big, .title-italic { font-size: clamp(34px, 10.5vw, 54px); }
  .show-card { height: clamp(320px, 82vw, 420px); }
  .show-bottom { padding: 24px 20px 28px; }
  .cta-wrap { flex-direction: column; align-items: stretch; gap: 12px; }
}

/* ---------- Services rows ---------- */
.services { background: var(--black); padding: 100px 0 80px; position: relative; overflow: clip; }
.services-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle 780px at 0% 780px, rgba(var(--accent-rgb), .13) 0%, rgba(var(--accent-rgb), .055) 42%, rgba(var(--accent-rgb), .014) 72%, transparent 100%), radial-gradient(circle 500px at 85% 80%, rgba(var(--accent-rgb), .1) 0%, transparent 70%); }
.services-inner { padding: 0 clamp(6px, .7vw, 16px); max-width: 1800px; margin: 0 auto; position: relative; z-index: 1; }
.svc-head { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.7fr) minmax(0, .85fr) minmax(0, .7fr); }
.h-cell { border-bottom: 1px solid rgba(255, 255, 255, .1); border-right: 1px solid rgba(255, 255, 255, .1); padding: 22px 26px; }
.h-cell.edge { border-right: 0; }
.h-title { display: flex; flex-direction: column; gap: 8px; justify-content: flex-start; padding-top: 60px; padding-bottom: 28px; padding-left: 0; border-right: 0; overflow: visible; white-space: nowrap; }
.h-title .eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 600; }
.h-title .eyebrow::before { content: "✦ "; color: var(--accent); }
.h-title h2 { font-size: clamp(64px, 9.4vw, 132px); font-weight: 900; color: #fff; line-height: .95; letter-spacing: -.03em; }
.h-statement { grid-column: 3 / 5; display: flex; align-items: flex-start; padding-top: 60px; border-left: 1px solid rgba(255, 255, 255, .1); border-right: 0; }
.h-statement p { font-size: clamp(18px, 1.5vw, 24px); line-height: 1.45; color: rgba(255, 255, 255, .52); max-width: 42ch; }
.h-statement strong { color: #fff; font-weight: 600; }
.h-meta { display: flex; flex-direction: column; gap: 10px; border-right: 0; }
.h-meta span { font-size: 16px; color: #fff; }
.h-updated { display: flex; flex-direction: column; gap: 4px; border-left: 1px solid rgba(255, 255, 255, .1); border-right: 0; }
.h-updated small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .52); }
.h-updated b { font-size: 17px; font-weight: 700; color: #fff; }
.h-btn { display: flex; align-items: center; justify-content: flex-end; border-left: 1px solid rgba(255, 255, 255, .1); }
.head-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; transition: border-color .2s, background .2s, box-shadow .2s; white-space: nowrap; }
.head-btn i { font-style: normal; display: inline-block; transition: transform .2s var(--ease-soft); }
@media (hover: hover) and (pointer: fine) { .head-btn:hover { border-color: rgba(var(--accent-rgb), .55); background: rgba(var(--accent-rgb), .08); box-shadow: 0 0 24px rgba(var(--accent-rgb), .12); } .head-btn:hover i { transform: translate(2px, -2px); } }
.svc-list { margin-bottom: 16px; }
.svc-row { border-bottom: 1px solid rgba(255, 255, 255, .1); position: relative; }
.svc-link { display: grid; grid-template-columns: .75fr 1.7fr .85fr .7fr; align-items: stretch; position: relative; isolation: isolate; width: 100%; cursor: pointer; text-align: left; -webkit-tap-highlight-color: transparent; }
.svc-link:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.svc-link::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .05); opacity: 0; transition: opacity .76s cubic-bezier(.33, 1, .68, 1); }
.svc-rule { position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, rgba(var(--accent-rgb), .9), rgba(var(--accent-rgb), .15)); transform: scaleX(0); transform-origin: left center; transition: transform 1s cubic-bezier(.33, 1, .68, 1); }
.svc-num, .svc-title-cell, .svc-media-cell, .svc-arrow { display: flex; align-items: center; padding: clamp(38px, 3.6vw, 54px) clamp(22px, 2.2vw, 36px); border-left: 1px solid rgba(255, 255, 255, .07); }
.svc-arrow { border-right: 1px solid rgba(255, 255, 255, .07); justify-content: flex-end; }
.svc-num { font-size: 12px; letter-spacing: .1em; color: rgba(255, 255, 255, .52); font-weight: 600; }
.svc-title-cell { flex-direction: column; align-items: stretch; justify-content: center; }
.name-clip { display: grid; grid-template-rows: 1fr; overflow: hidden; transition: grid-template-rows .86s cubic-bezier(.4, 0, .2, 1); }
.name-clip > * { display: block; min-height: 0; overflow: hidden; }
.svc-name { display: block; font-family: var(--font-title); font-size: clamp(26px, 2.8vw, 44px); font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: -.02em; line-height: 1.05; transition: transform .72s cubic-bezier(.33, 1, .68, 1), opacity .44s; white-space: nowrap; }
.svc-price { display: block; margin-top: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 500; text-transform: none; letter-spacing: 0; color: rgba(255, 255, 255, .55); }
.head-clip { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .86s cubic-bezier(.4, 0, .2, 1); }
.head-clip > * { min-height: 0; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.svc-headline { font-family: var(--font-title); font-size: clamp(28px, 3vw, 46px); font-weight: 700; color: #fff; letter-spacing: -.02em; line-height: 1.1; max-width: 820px; text-transform: none; transform: translateY(28px); transition: transform .86s cubic-bezier(.4, 0, .2, 1); }
.svc-copy { font-size: clamp(16px, 1.25vw, 18.5px); line-height: 1.65; color: rgba(255, 255, 255, .6); max-width: 640px; opacity: 0; transform: translateY(20px); transition: opacity .56s cubic-bezier(.4, 0, .2, 1) .14s, transform .86s cubic-bezier(.4, 0, .2, 1) .14s; }
.svc-bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; max-width: 640px; opacity: 0; transform: translateY(20px); transition: opacity .56s cubic-bezier(.4, 0, .2, 1) .2s, transform .86s cubic-bezier(.4, 0, .2, 1) .2s; }
.svc-bullets li { font-size: 15px; color: #fff; padding-left: 16px; position: relative; line-height: 1.5; }
.svc-bullets li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.svc-go { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-light); margin-top: 4px; opacity: 0; transform: translateY(16px); transition: opacity .56s cubic-bezier(.4, 0, .2, 1) .24s, transform .86s cubic-bezier(.4, 0, .2, 1) .24s, color .2s; }
.svc-go:hover { color: #fff; }
.svc-row.open .name-clip { grid-template-rows: 0fr; }
.svc-row.open .svc-name { transform: translateY(-110%); opacity: 0; }
.svc-row.open .head-clip { grid-template-rows: 1fr; }
.svc-row.open .svc-headline, .svc-row.open .svc-copy, .svc-row.open .svc-bullets, .svc-row.open .svc-go { opacity: 1; transform: none; }
.svc-media-cell { flex-direction: column; align-items: stretch; justify-content: center; }
.svc-media { display: block; position: relative; width: 100%; aspect-ratio: 3 / 2; border-radius: 10px; overflow: hidden; background: #121212; transform: scale(1); transition: transform .86s cubic-bezier(.4, 0, .2, 1); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.svc-media .alt { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.svc-row.open .svc-media { transform: scale(1.06); }
.svc-row.open .svc-media .alt { opacity: 1; }
.svc-circle { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; position: relative; transition: border-color .72s cubic-bezier(.33, 1, .68, 1), color .72s, background .72s; }
.svc-circle::before, .svc-circle::after { content: ""; position: absolute; background: currentColor; transition: transform .76s cubic-bezier(.33, 1, .68, 1); }
.svc-circle::before { width: 13px; height: 1.5px; }
.svc-circle::after { width: 1.5px; height: 13px; }
.svc-row.open .svc-circle::after { transform: scaleY(0); }
@media (hover: hover) and (pointer: fine) {
  .svc-link:hover::before { opacity: 1; }
  .svc-link:hover .svc-rule { transform: scaleX(1); }
  .svc-link:hover .svc-name { transform: translateX(10px); }
  .svc-link:hover .svc-circle { border-color: rgba(var(--accent-rgb), .6); background: rgba(var(--accent-rgb), .08); color: var(--accent-light); }
}
.svc-row.open .svc-link::before { opacity: 1; }
@media (max-width: 900px) {
  .services-inner { padding: 0 20px; }
  .svc-head { grid-template-columns: minmax(0, 1fr) auto; }
  .h-title, .h-statement, .h-meta { grid-column: 1 / -1; }
  .h-updated { grid-column: 1; }
  .h-btn { grid-column: 2; align-self: stretch; }
  .svc-list { border-left: 1px solid rgba(255, 255, 255, .1); border-right: 1px solid rgba(255, 255, 255, .1); }
  .h-cell { border-left: 1px solid rgba(255, 255, 255, .1); border-right: 1px solid rgba(255, 255, 255, .1); padding: 18px; }
  .h-title { border-left: 0; border-right: 0; padding-top: 24px; white-space: normal; }
  .h-statement { padding-top: 24px; }
  .h-btn { border-left: 0; justify-content: flex-start; }
  .svc-link { grid-template-columns: 1fr 42px; align-items: start; gap: 10px 12px; padding: 26px 18px; }
  .svc-num, .svc-title-cell, .svc-arrow, .svc-media-cell { border: 0; padding: 0; }
  .svc-num { grid-column: 1 / -1; }
  .svc-title-cell { grid-column: 1; align-self: center; }
  .svc-arrow { grid-column: 2; grid-row: 2; align-self: center; }
  .svc-media-cell { grid-column: 1 / -1; grid-row: 3; }
  .svc-media { max-width: 320px; margin-top: 8px; }
  .svc-row:not(.open) .svc-media { display: none; }
  .svc-name { white-space: normal; font-size: clamp(22px, 6vw, 30px); }
  .svc-headline { font-size: clamp(24px, 6.4vw, 34px); }
  .svc-bullets { grid-template-columns: 1fr; }
  .svc-circle { width: 42px; height: 42px; }
  .h-title h2 { font-size: clamp(44px, 12vw, 64px); }
  .svc-go { padding-bottom: 10px; }
}
@media (max-width: 768px) { .services { padding: 60px 0 50px; } }

/* ---------- Schița gratuită (30 de minute) ---------- */
.audit { position: relative; background: var(--black); padding: clamp(70px, 8vw, 130px) 0; overflow: hidden; }
.audit-glow { position: absolute; left: 50%; top: 42%; width: min(1100px, 96vw); height: 620px; transform: translate(-50%, -50%); pointer-events: none; background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), .09) 0%, rgba(var(--accent-rgb), .03) 42%, transparent 72%); }
.audit-inner { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; padding: 0 clamp(16px, 2.4vw, 40px); }
.audit-head { display: flex; align-items: baseline; gap: clamp(16px, 2vw, 32px); padding-bottom: clamp(18px, 2vw, 30px); flex-wrap: wrap; }
.audit-head h2 { font-family: var(--font-title); font-size: clamp(34px, 4.6vw, 74px); font-weight: 700; line-height: .98; letter-spacing: -.03em; color: #fff; }
.accent-text { background: linear-gradient(96deg, var(--accent-light), var(--accent) 46%, var(--accent-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.audit-eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .78); white-space: nowrap; font-weight: 600; }
.audit-eyebrow::before { content: "✦ "; color: var(--accent); }
.head-rule { display: block; height: 1px; background: rgba(255, 255, 255, .14); margin-bottom: clamp(28px, 3.2vw, 50px); }
.audit-card { display: grid; grid-template-columns: 1.42fr 1fr; border: 1px solid rgba(255, 255, 255, .09); border-radius: clamp(18px, 1.8vw, 28px); background: linear-gradient(152deg, #171718, #0f0f10 28%, #070708 58%, #000); overflow: hidden; position: relative; }
.audit-list { padding: clamp(28px, 3vw, 54px); position: relative; }
.audit-item { display: block; padding: clamp(19px, 2vw, 31px) 0; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.audit-item:first-child { padding-top: 0; }
.audit-item:last-child { padding-bottom: 0; border-bottom: 0; }
.audit-item h3 { font-family: var(--font-title); font-size: clamp(22px, 2.1vw, 32px); font-weight: 600; color: #fff; margin: 0 0 .34em; letter-spacing: -.02em; text-transform: none; line-height: 1.18; transform-origin: left center; transition: transform .34s var(--ease-soft); }
.audit-item p { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.62; color: rgba(255, 255, 255, .8); max-width: 46ch; }
@media (hover: hover) and (pointer: fine) { .audit-item:hover h3 { transform: translateX(9px); } }
.col-divider { position: absolute; top: 0; right: -.5px; width: 1px; height: 100%; background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08) 55%, rgba(255, 255, 255, .02)); pointer-events: none; }
.hover-plate { position: absolute; left: 0; top: 0; margin: -135px 0 0 -105px; width: 210px; height: 270px; border-radius: 10px; overflow: hidden; z-index: 6; pointer-events: none; box-shadow: 0 6px 18px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 255, 255, .07); opacity: 0; transform: scale(.92); transition: opacity .32s cubic-bezier(.22, 1, .36, 1), transform .32s cubic-bezier(.22, 1, .36, 1); }
.hover-plate.on { opacity: 1; transform: scale(1); }
.hover-reel { position: absolute; left: 0; top: 0; width: 100%; height: 400%; transition: transform .5s var(--ease-soft); }
.hover-reel img { display: block; width: 100%; height: 25%; object-fit: cover; object-position: top center; }
@media (hover: none), (pointer: coarse) { .hover-plate { display: none; } }
.audit-offer { padding: clamp(32px, 3.4vw, 58px) clamp(28px, 3vw, 48px); position: relative; display: flex; flex-direction: column; justify-content: center; text-align: center; gap: clamp(16px, 1.6vw, 22px); }
.offer-glow { position: absolute; left: 50%; top: 52%; width: 118%; height: 62%; transform: translate(-50%, -50%); pointer-events: none; background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), .16) 0%, rgba(var(--accent-rgb), .055) 42%, transparent 74%); }
.audit-offer > *:not(.offer-glow) { position: relative; z-index: 1; }
.offer-lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: #fff; max-width: 34ch; margin: 0 auto; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.price-big { font-family: var(--font-title); font-size: clamp(56px, 5.7vw, 90px); font-weight: 700; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; background: linear-gradient(170deg, #fff, #efefef 40%, #b8b8bd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; filter: drop-shadow(0 8px 26px rgba(var(--accent-rgb), .22)); }
.price-unit { font-size: 16px; color: rgba(255, 255, 255, .8); }
.offer-note { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, .8); }
.offer-rule { height: 1px; background: rgba(255, 255, 255, .12); }
.offer-alt { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .85); border-bottom: 1px solid rgba(255, 255, 255, .2); padding-bottom: 3px; align-self: center; transition: color .22s, border-color .22s; font-weight: 600; }
.offer-alt:hover { color: #fff; border-color: rgba(255, 255, 255, .6); }
@media (max-width: 900px) { .audit-card { grid-template-columns: 1fr; } .col-divider { display: none; } .audit-list { border-bottom: 1px solid rgba(255, 255, 255, .09); } }

/* ---------- 3D reel (Lucrări) ---------- */
.reel { position: relative; background: var(--black); overflow-x: clip; }
.reel-meta-wrap { max-width: 1360px; margin: 0 auto; padding: clamp(24px, 4vh, 48px) clamp(16px, 2.4vw, 40px) 0; }
.reel-meta { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(245, 245, 240, .1); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(245, 245, 240, .5); font-variant-numeric: tabular-nums; font-weight: 500; }
.reel-meta .mid { text-align: center; } .reel-meta .right { text-align: right; }
.reel-track { position: relative; height: 200vh; }
.reel-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.reel-zoom { transform-origin: center center; will-change: transform; }
.reel-scene { position: relative; width: 1px; height: 1px; perspective: 2805px; transform-style: preserve-3d; }
.reel-card { position: absolute; left: 50%; top: 50%; width: 720px; aspect-ratio: 3 / 2; margin: -240px 0 0 -360px; border-radius: 21px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255, 255, 255, .06); backface-visibility: visible; will-change: transform; }
.reel-card img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.reel-rail { position: absolute; right: clamp(16px, 2.4vw, 40px); top: 50%; translate: 0 -50%; width: 1px; height: clamp(90px, 14vh, 150px); background: rgba(245, 245, 240, .12); overflow: hidden; }
.reel-rail span { display: block; width: 100%; height: 100%; background: rgba(245, 245, 240, .62); transform-origin: top center; transform: scaleY(0); }
.reel-mobile { display: none; padding: clamp(48px, 14vw, 72px) clamp(16px, 5vw, 24px) clamp(40px, 12vw, 64px); }
.reel-mobile h2 { font-family: var(--font-title); font-size: clamp(52px, 16vw, 80px); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; text-transform: none; margin-bottom: clamp(36px, 12vw, 60px); }
.reel-mobile h2 sup { font-family: var(--font-body); font-size: .3em; font-weight: 500; color: rgba(245, 245, 240, .55); vertical-align: super; margin-left: .12em; }
.reel-mobile ul { list-style: none; display: grid; gap: clamp(16px, 6vw, 24px); }
.reel-mobile li { aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; background: #171718; box-shadow: 0 0 0 1px rgba(255, 255, 255, .06); }
.reel-mobile li img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.reel-mobile .reel-meta { grid-template-columns: 1fr auto; margin-top: clamp(48px, 16vw, 72px); border-bottom: 0; border-top: 1px solid rgba(245, 245, 240, .1); padding: 14px 0 0; }
@media (max-width: 900px) { .reel-desktop { display: none; } .reel-mobile { display: block; } }

/* ---------- Proiectul de referință ---------- */
.feature { background: var(--black); padding: 100px 0; overflow: hidden; position: relative; }
.feature-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle 600px at 8% 55%, rgba(var(--accent-rgb), .12) 0%, transparent 70%), radial-gradient(circle 500px at 85% 85%, rgba(var(--accent-rgb), .1) 0%, transparent 70%); }
.feature-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 1.4vw, 28px); position: relative; z-index: 1; }
.feature-title { font-family: var(--font-title); font-size: clamp(42px, 6vw, 96px); font-weight: 700; line-height: 1; letter-spacing: -.025em; text-align: center; margin: 0 0 clamp(30px, 3.2vw, 52px); background: linear-gradient(104deg, #fff, #efeff4 26%, var(--accent) 62%, var(--accent-deep) 88%, #7a2f10); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; text-transform: uppercase; }
.feature-panel { border: 1px solid rgba(255, 255, 255, .08); border-radius: clamp(24px, 2.4vw, 40px); background: linear-gradient(180deg, rgba(255, 255, 255, .024), rgba(255, 255, 255, .008) 38%, transparent), linear-gradient(165deg, #000, #090909 38%, #131313 72%, #1a1a1a); padding: clamp(28px, 3.8vw, 64px); box-shadow: 0 8px 24px rgba(0, 0, 0, .28), 0 2px 6px rgba(0, 0, 0, .2); position: relative; }
.panel-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; margin-bottom: clamp(26px, 3vw, 44px); }
.tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .04); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .82); white-space: nowrap; }
.tag-pill.live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }
.feature-meta { display: flex; flex-direction: column; min-width: 300px; }
.meta-row { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 16px; padding: 18px 0; }
.meta-row + .meta-row { border-top: 1px solid rgba(255, 255, 255, .08); }
.meta-mark { font-family: var(--font-title); font-size: 34px; font-weight: 700; line-height: 1; color: #fff; }
.meta-title { font-family: var(--font-title); font-size: 17px; font-weight: 600; color: #fff; }
.meta-sub { font-size: 14px; color: rgba(255, 255, 255, .5); margin-top: 3px; }
.title-head { text-align: center; min-width: 0; }
.kicker { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 14px; font-weight: 700; text-shadow: 0 0 20px rgba(var(--accent-rgb), .4); }
.feature-name { font-size: clamp(40px, 5vw, 86px); line-height: .98; letter-spacing: -.035em; font-weight: 900; text-align: center; margin: 0; background: linear-gradient(100deg, #2e2e2e, #5c5c5c 34%, #fff 82% 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.feature-sub { font-size: 18px; color: rgba(255, 255, 255, .6); margin-top: 14px; text-align: center; }
.feature-media { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; width: 100%; align-items: center; }
.photo-wrap { perspective: 1200px; }
.photo-3d { position: relative; border-radius: 20px; overflow: hidden; transform: rotateY(-4deg) rotateX(2deg); transform-style: preserve-3d; transition: transform .3s var(--ease-soft); box-shadow: 0 20px 60px rgba(0, 0, 0, .5), -8px 8px 30px rgba(0, 0, 0, .4); }
.photo-3d img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.photo-3d::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .06) 45%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, .06) 55%, transparent 70%); pointer-events: none; }
@media (hover: hover) and (pointer: fine) { .photo-3d:hover { transform: rotateY(-1deg) rotateX(1deg) scale(1.02); } }
.device-wrap { perspective: 1200px; display: flex; justify-content: center; }
.device { position: relative; width: min(260px, 70%); aspect-ratio: 9 / 19.2; border-radius: 34px; background: #050505; box-shadow: 0 0 0 6px #1b1b1b, 0 0 0 7px #3a3a3a, 0 30px 70px rgba(0, 0, 0, .7), 0 0 80px rgba(var(--accent-rgb), .12); overflow: hidden; transform: rotateY(6deg) rotateX(2deg); transform-style: preserve-3d; transition: transform .3s var(--ease-soft); animation: floatY 6s ease-in-out infinite; }
.device::after { content: ""; position: absolute; left: 50%; top: 10px; width: 80px; height: 22px; border-radius: 14px; background: #000; transform: translateX(-50%); z-index: 2; }
.device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (hover: hover) and (pointer: fine) { .device:hover { transform: rotateY(2deg) rotateX(0) scale(1.02); } }
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.panel-bottom { margin-top: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; align-items: center; }
.feature-desc { font-size: clamp(18px, 2vw, 25px); line-height: 1.7; color: #fff; text-align: center; max-width: 760px; font-weight: 500; margin: 0 auto 26px; }
.feature-desc .w { display: inline-block; opacity: 0; filter: blur(8px); transform: translateY(6px); transition: opacity .3s var(--ease-soft), filter .3s var(--ease-soft), transform .3s var(--ease-soft); transition-delay: calc(var(--i) * 45ms); }
.feature-desc.in .w { opacity: 1; filter: blur(0); transform: none; }
.feature-desc b { color: var(--accent-light); font-weight: 700; }
@media (max-width: 1000px) { .panel-top { grid-template-columns: 1fr; text-align: center; gap: 20px; } .tag-pill { justify-self: center; } .feature-meta { min-width: 0; } .meta-row { grid-template-columns: 64px 1fr; text-align: left; } }
@media (max-width: 768px) { .feature { padding: 64px 0; } .feature-media { grid-template-columns: 1fr; gap: 28px; } .device { width: min(220px, 60%); } .panel-top { margin-bottom: 20px; } }

/* ---------- Rezultate + testimonial ---------- */
.results { background: var(--black); padding: clamp(70px, 8vw, 120px) 0 60px; position: relative; overflow: hidden; }
.results-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 40% at 100% 0%, rgba(var(--accent-rgb), .1), transparent 70%); }
.results-inner { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); position: relative; z-index: 1; }
.results-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .12); margin-bottom: clamp(40px, 5vw, 70px); }
.results-head h2 { font-size: clamp(44px, 6vw, 84px); letter-spacing: -.03em; line-height: .95; }
.results-head > span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-light); font-weight: 600; white-space: nowrap; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: clamp(48px, 6vw, 80px); }
.stat { padding: 0 clamp(20px, 3vw, 48px) 0 0; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .1); padding-left: clamp(20px, 3vw, 48px); padding-right: 0; }
.stat-num { font-family: var(--font-title); font-size: clamp(64px, 8vw, 128px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.stat-rule { height: 1px; background: rgba(255, 255, 255, .14); margin: 20px 0 22px; }
.stat-label { font-family: var(--font-title); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.stat-desc { font-size: 15.5px; color: rgba(255, 255, 255, .6); max-width: 46ch; }
.testimonial { border-radius: 24px; border: 1px solid rgba(255, 255, 255, .08); background: linear-gradient(120deg, #151515, #0a0a0a 55%, #0f0f0f); padding: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; position: relative; overflow: hidden; }
.testimonial::before { content: ""; position: absolute; right: -10%; bottom: -60%; width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(var(--accent-rgb), .12), transparent 60%); pointer-events: none; }
.t-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-bottom: 36px; font-weight: 600; }
.t-label::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 10px; vertical-align: 2px; }
.t-avatar { width: 96px; height: 96px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 34px; font-weight: 700; color: #0a0a0a; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(var(--accent-rgb), .25); }
.t-name { font-family: var(--font-title); font-size: 19px; font-weight: 700; color: #fff; }
.t-role { font-size: 14px; color: rgba(255, 255, 255, .6); margin-top: 4px; }
.t-quote { font-family: var(--font-title); font-size: clamp(26px, 3.2vw, 46px); font-weight: 600; line-height: 1.22; letter-spacing: -.02em; color: #fff; position: relative; z-index: 1; }
.t-quote::before { content: "“"; color: var(--accent); }
.t-foot { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 14px; color: rgba(255, 255, 255, .6); position: relative; z-index: 1; }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr; gap: 40px; } .stat + .stat { border-left: 0; padding-left: 0; } .testimonial { grid-template-columns: 1fr; gap: 28px; } .t-avatar { width: 72px; height: 72px; font-size: 26px; border-radius: 12px; } }

/* ---------- FAQ ---------- */
.faq { background: var(--black); padding: clamp(70px, 8vw, 120px) 0; position: relative; }
.faq-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); display: grid; grid-template-columns: 430px 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { font-size: clamp(44px, 4.7vw, 66px); line-height: .95; letter-spacing: -.03em; margin-bottom: 26px; }
.faq-left h2 span { display: block; background: linear-gradient(90deg, #fff 0% 16%, #cecece 36%, #787878 66%, #3a3a3a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.faq-left p { font-size: 16.5px; color: rgba(255, 255, 255, .85); max-width: 36ch; }
.faq-rule { height: 1px; background: rgba(255, 255, 255, .14); margin: 32px 0 40px; }
.faq-card { border-radius: 20px; background: linear-gradient(165deg, #0e0e0e, #0a0a0a 60%, rgba(var(--accent-rgb), .18)); padding: 32px 30px; position: relative; overflow: hidden; }
.faq-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.faq-card-top .mark { width: 60px; height: 60px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; background: #1a1a1a; border: 1px solid rgba(255, 255, 255, .08); overflow: hidden; }
.faq-card-top .mark img { width: 30px; height: 25px; }
.faq-card-top b { display: block; font-family: var(--font-title); font-size: 15px; font-weight: 600; color: #fff; }
.faq-card-top small { display: block; font-size: 14px; color: rgba(255, 255, 255, .6); margin-top: 2px; }
.faq-card .btn { width: 100%; }
.faq-card-mail { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, .6); text-align: center; }
.faq-card-mail a { color: var(--accent-light); border-bottom: 1px solid rgba(var(--accent-rgb), .4); }
.faq-list { border-radius: 24px; border: 1px solid rgba(255, 255, 255, .06); background: linear-gradient(160deg, #0a0a0a, #0a0a0a 55%, rgba(var(--accent-rgb), .14) 100%); padding: 10px clamp(20px, 3vw, 44px); }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 0; text-align: left; font-family: var(--font-title); font-size: clamp(17px, 1.5vw, 21px); font-weight: 500; color: #fff; cursor: pointer; transition: color .2s; }
.faq-q:hover { color: var(--accent-light); }
.faq-icon { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .03); position: relative; transition: border-color .4s, background .4s, transform .5s var(--ease-soft); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: #fff; transform: translate(-50%, -50%); transition: transform .5s var(--ease-soft); }
.faq-icon::before { width: 14px; height: 1.5px; } .faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon { border-color: rgba(var(--accent-rgb), .6); background: rgba(var(--accent-rgb), .1); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s cubic-bezier(.4, 0, .2, 1); }
.faq-a > div { min-height: 0; overflow: hidden; }
.faq-a p { font-size: 16.5px; line-height: 1.7; color: rgba(255, 255, 255, .78); max-width: 68ch; padding-bottom: 30px; opacity: 0; transform: translateY(10px); transition: opacity .5s ease .1s, transform .6s var(--ease-soft) .1s; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a p { opacity: 1; transform: none; }
@media (max-width: 1000px) { .faq-inner { grid-template-columns: 1fr; } .faq-left { position: static; } }
@media (max-width: 768px) { .faq-q { padding: 22px 0; font-size: 17px; } .faq-icon { width: 40px; height: 40px; } }

/* ---------- Începe gratuit (forms) ---------- */
.start { background: var(--black); padding: clamp(70px, 8vw, 120px) 0; position: relative; overflow: hidden; }
.start-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 50% at 50% 100%, rgba(var(--accent-rgb), .14), transparent 70%); }
.start-inner { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); position: relative; z-index: 1; }
.start-head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); }
.start-head h2 { font-size: clamp(40px, 5.5vw, 76px); letter-spacing: -.03em; line-height: .98; margin-bottom: 16px; }
.start-head p { font-size: 18px; color: rgba(255, 255, 255, .75); }
.start-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 28px); }
.form-card { border-radius: 24px; border: 1px solid rgba(255, 255, 255, .1); background: linear-gradient(150deg, rgba(255, 255, 255, .05), rgba(24, 24, 22, .3) 42%, rgba(10, 10, 10, .5)); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: clamp(24px, 3vw, 40px); position: relative; overflow: hidden; box-shadow: inset 0 1px rgba(255, 255, 255, .14); }
.form-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(142deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .02) 18%, transparent 42%); pointer-events: none; }
.form-card > * { position: relative; z-index: 1; }
.form-kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-light); font-weight: 700; margin-bottom: 12px; }
.form-card h3 { font-family: var(--font-title); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; text-transform: none; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 18px; }
.form-card ul { list-style: none; margin-bottom: 26px; display: grid; gap: 8px; }
.form-card ul li { font-size: 15px; color: rgba(255, 255, 255, .8); padding-left: 18px; position: relative; line-height: 1.5; }
.form-card ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.field { display: block; margin-bottom: 14px; }
.field span { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(0, 0, 0, .35); color: #fff; font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field select option { color: #111; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(var(--accent-rgb), .7); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .18); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .3); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-error { display: none; font-size: 14px; color: #ffb4a0; background: rgba(255, 90, 60, .1); border: 1px solid rgba(255, 90, 60, .25); border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; }
.form-error a { color: #fff; text-decoration: underline; }
.form-error.show { display: block; }
.form-foot { font-size: 12.5px; color: rgba(255, 255, 255, .5); margin-top: 14px; text-align: center; }
.form-foot a { color: rgba(255, 255, 255, .75); text-decoration: underline; }
.form-success { display: none; padding: 30px 0 10px; text-align: center; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--accent-light), var(--accent-deep)); display: flex; align-items: center; justify-content: center; color: #0a0a0a; font-size: 26px; font-weight: 700; box-shadow: 0 10px 30px rgba(var(--accent-rgb), .3); }
.form-success b { display: block; font-family: var(--font-title); font-size: 22px; margin-bottom: 8px; }
.form-success p { color: rgba(255, 255, 255, .75); }
form.sent { display: none; }
form.sent + .form-success { display: block; }
.form-card .btn { width: 100%; margin-top: 6px; }
.btn[disabled] { opacity: .6; pointer-events: none; }
@media (max-width: 900px) { .start-grid { grid-template-columns: 1fr; } }

/* ---------- CTA final ---------- */
.cta { position: relative; background: var(--black); padding: clamp(110px, 16vw, 220px) 0 clamp(90px, 12vw, 160px); overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-bg span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.cta-bg .b1 { width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; left: -10%; top: 10%; background: radial-gradient(circle, rgba(var(--accent-rgb), .35), transparent 65%); animation: drift 14s ease-in-out infinite alternate; }
.cta-bg .b2 { width: 50vw; height: 50vw; max-width: 760px; max-height: 760px; right: -10%; bottom: -10%; background: radial-gradient(circle, rgba(255, 190, 140, .28), transparent 65%); animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(6%, -8%) scale(1.12); } }
.cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.cta h2 { font-size: clamp(56px, 10vw, 150px); line-height: .9; letter-spacing: -.04em; background: linear-gradient(180deg, #fff 0%, #e8e8e8 40%, #7a7a7a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 30px; }
.cta p { font-size: clamp(18px, 2vw, 24px); color: #fff; max-width: 640px; margin: 0 auto 34px; line-height: 1.5; }
.cta-tags { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #fff; margin-bottom: 40px; }
.cta-tags i { width: 1px; height: 14px; background: rgba(255, 255, 255, .3); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta .btn { padding: 20px 40px; font-size: 14px; }
@media (max-width: 768px) { .cta-tags { flex-direction: column; gap: 10px; } .cta-tags i { display: none; } .cta-btns { flex-direction: column; align-items: stretch; } }

/* ---------- Footer ---------- */
.footer { background: var(--black); position: relative; padding: 0 0 40px; }
.footer-top-border { height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .3), transparent); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; max-width: 1240px; margin: 0 auto; padding: 72px 40px 64px; gap: 60px; }
.footer-brand { max-width: 320px; flex-shrink: 0; }
.footer-brand .logo { position: static; transform: none; margin-bottom: 16px; }
.footer-tagline { font-size: 16px; line-height: 1.7; color: #fff; margin-bottom: 20px; }
.footer-company { font-size: 13px; line-height: 1.8; color: rgba(255, 255, 255, .6); }
.footer-cols { display: flex; gap: 48px; min-width: 0; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer-col h3 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 22px; font-weight: 700; }
.footer-col a, .footer-col button { font-size: 15.5px; color: #fff; display: block; padding: 7px 0; transition: color .25s ease; text-align: left; }
.footer-col a:hover, .footer-col button:hover { color: var(--accent-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1240px; margin: 0 auto; padding: 24px 40px 0; border-top: 1px solid rgba(245, 245, 240, .06); gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 14px; color: rgba(255, 255, 255, .8); }
.footer-legal { display: flex; gap: 18px; font-size: 13px; }
.footer-legal a { color: rgba(255, 255, 255, .7); } .footer-legal a:hover { color: #fff; }
.status { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #fff; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .4); } 50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); } }
@media (max-width: 1100px) { .footer-cols { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 28px 32px; } }
@media (max-width: 768px) { .footer-top { flex-direction: column; padding: 48px 24px 40px; gap: 40px; } .footer-cols { grid-template-columns: 1fr 1fr; width: 100%; } .footer-col h3 { margin-bottom: 12px; } .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px 0; } .footer-legal { justify-content: center; flex-wrap: wrap; } }

/* ---------- Floating WhatsApp ---------- */
.float-chat { position: fixed; right: 28px; bottom: 28px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--accent-light), var(--accent-deep)); color: #0a0a0a; box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 0 6px rgba(var(--accent-rgb), .12); transition: transform .3s var(--ease-spring), box-shadow .3s; opacity: 0; transform: scale(.6); }
.float-chat.on { opacity: 1; transform: scale(1); }
.float-chat svg { width: 26px; height: 26px; }
@media (hover: hover) and (pointer: fine) { .float-chat.on:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(0, 0, 0, .55), 0 0 0 10px rgba(var(--accent-rgb), .16); } }
@media (max-width: 768px) { .float-chat { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* ---------- Cookie banner (consent script) ---------- */
#cookie-banner { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 950; width: min(520px, calc(100% - 32px)); background: #121212; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 22px 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, .6); }
#cookie-banner[hidden] { display: none; }
#cookie-banner p { font-size: 14px; line-height: 1.55; color: #fff; margin-bottom: 16px; }
#cookie-banner .row { display: flex; gap: 10px; }
#cookie-banner button { padding: 10px 24px; border-radius: 999px; font-size: 14px; font-weight: 600; }
#cookie-accept { background: var(--accent); color: #0a0a0a; }
#cookie-reject { border: 1px solid rgba(255, 255, 255, .2); color: #fff; }

/* ---------- Inner pages (shared) ---------- */
.page-hero { position: relative; padding: calc(var(--nav-height) + 100px) 0 60px; text-align: center; overflow: hidden; }
.page-hero .arc { transform: translateX(-50%) translateY(calc(-1080px - 120px)); opacity: .55; }
.page-hero h1 { font-size: clamp(44px, 8vw, 120px); letter-spacing: -.035em; line-height: .95; margin-bottom: 22px; position: relative; z-index: 2; }
.page-hero p { font-size: clamp(17px, 1.6vw, 22px); color: rgba(255, 255, 255, .78); max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .kicker { position: relative; z-index: 2; }
.prose { max-width: 760px; margin: 0 auto; padding: 40px 20px 100px; }
.prose h2 { font-family: var(--font-title); text-transform: none; font-size: 26px; letter-spacing: -.02em; margin: 40px 0 14px; line-height: 1.2; }
.prose h3 { font-family: var(--font-title); text-transform: none; font-size: 19px; margin: 28px 0 10px; line-height: 1.3; }
.prose p, .prose li { font-size: 16.5px; color: rgba(255, 255, 255, .82); margin-bottom: 14px; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose a { color: var(--accent-light); text-decoration: underline; }
.prose strong { color: #fff; }

/* ======================= Pagini interioare ======================= */
.page-hero { position: relative; padding: calc(var(--nav-height) + 110px) 0 70px; text-align: center; overflow: hidden; background: var(--black); min-height: 0; }
.page-hero .arc-wrap { z-index: 0; }
.page-hero .arc { transform: translateY(-28%) scaleY(1.25); opacity: .8; }
.page-hero .globe-layer { z-index: 1; }
.page-hero .globe { mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 55%); -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 55%); }
.page-hero-inner { position: relative; z-index: 5; max-width: 900px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; }
.page-hero .kicker { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(42px, 6.4vw, 96px); letter-spacing: -.035em; line-height: .95; margin-bottom: 24px; text-transform: none; }
.page-hero h1 .accent-text { font-style: italic; }
.page-hero .lead { font-size: clamp(17px, 1.5vw, 21px); color: rgba(255, 255, 255, .8); max-width: 680px; margin: 0 auto 30px; line-height: 1.6; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .04); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: #fff; }
.hero-meta span b { color: var(--accent-light); font-weight: 700; }
.page-hero .hero-cta { opacity: 1; }
.page-hero .hero-bottom-fade { height: 40%; z-index: 2; }
@media (max-width: 768px) { .page-hero { padding: calc(var(--nav-height) + 60px) 0 50px; } .page-hero .arc { inset: auto; width: 1050px; height: 1080px; left: 50%; top: 100%; transform: translateX(-50%) translateY(calc(-30svh - 1080px)); } .page-hero .hero-cta { flex-direction: column; width: 100%; max-width: 340px; } .page-hero .hero-cta .btn { width: 100%; } }

.sec { position: relative; padding: clamp(70px, 8vw, 120px) 0; background: var(--black); }
.sec-inner { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); position: relative; z-index: 1; }
.sec-head { max-width: 820px; margin-bottom: clamp(36px, 4.6vw, 64px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 18px; }
.sec-head .eyebrow::before { content: "✦ "; color: var(--accent); }
.sec-head h2 { font-family: var(--font-title); font-size: clamp(30px, 3.8vw, 56px); font-weight: 700; text-transform: none; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 16px; }
.sec-head h2.big { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 6vw, 88px); line-height: .95; }
.sec-head p { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255, 255, 255, .72); }
.sec-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sec-glow.l { background: radial-gradient(circle 600px at 0% 50%, rgba(var(--accent-rgb), .12), transparent 70%); }
.sec-glow.r { background: radial-gradient(circle 600px at 100% 40%, rgba(var(--accent-rgb), .1), transparent 70%); }
.sec-glow.b { background: radial-gradient(ellipse 50% 40% at 50% 100%, rgba(var(--accent-rgb), .14), transparent 70%); }

/* citate „îți sună cunoscut” */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.pain { border-radius: 22px; border: 1px solid rgba(255, 255, 255, .09); background: linear-gradient(160deg, #141414, #0b0b0b 60%, #0a0a0a); padding: clamp(24px, 2.6vw, 36px); position: relative; overflow: hidden; transition: border-color .3s, transform .5s var(--ease-soft); }
.pain::after { content: ""; position: absolute; right: -30%; bottom: -60%; width: 80%; height: 100%; background: radial-gradient(ellipse, rgba(var(--accent-rgb), .12), transparent 60%); pointer-events: none; }
.pain:hover { border-color: rgba(var(--accent-rgb), .35); transform: translateY(-4px); }
.pain-q { font-family: var(--font-title); font-size: clamp(22px, 2vw, 28px); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; color: #fff; margin-bottom: 10px; }
.pain-tag { display: inline-block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-light); font-weight: 700; margin-bottom: 18px; }
.pain p { font-size: 15.5px; color: rgba(255, 255, 255, .72); position: relative; z-index: 1; }
.pain-note { margin-top: clamp(28px, 3vw, 40px); font-size: clamp(17px, 1.5vw, 21px); color: #fff; max-width: 760px; }

/* carduri de conținut */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
.card { border-radius: 20px; border: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .025); padding: clamp(22px, 2.4vw, 32px); position: relative; transition: border-color .3s, background .3s, transform .5s var(--ease-soft); }
.card:hover { border-color: rgba(var(--accent-rgb), .3); background: rgba(255, 255, 255, .04); transform: translateY(-3px); }
.card-num { font-size: 12px; letter-spacing: .12em; color: var(--accent-light); font-weight: 700; margin-bottom: 18px; display: block; }
.card-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(var(--accent-rgb), .12); border: 1px solid rgba(var(--accent-rgb), .25); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent-light); }
.card-ico svg { width: 22px; height: 22px; }
.card h3 { font-family: var(--font-title); font-size: clamp(18px, 1.5vw, 22px); font-weight: 600; text-transform: none; letter-spacing: -.02em; line-height: 1.25; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: rgba(255, 255, 255, .72); }
.card a.more { display: inline-flex; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-light); }
.card a.more:hover { color: #fff; }
.card.dur { padding-bottom: 60px; }
.card .dur-tag { position: absolute; left: clamp(22px, 2.4vw, 32px); bottom: 22px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 600; }

/* dovada */
.proof { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 3vw, 48px); align-items: center; border-radius: 28px; border: 1px solid rgba(255, 255, 255, .08); background: linear-gradient(165deg, #000, #090909 38%, #131313 72%, #1a1a1a); padding: clamp(24px, 3vw, 48px); }
.proof .photo-3d img { aspect-ratio: 16 / 10; }
.proof-name { font-family: var(--font-title); font-size: clamp(28px, 3vw, 44px); font-weight: 700; text-transform: none; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.proof-url { font-size: 13px; letter-spacing: .08em; color: var(--accent-light); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; display: block; }
.proof p { font-size: 16px; color: rgba(255, 255, 255, .78); margin-bottom: 20px; }
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.proof-stats div { border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; padding: 14px; }
.proof-stats b { display: block; font-family: var(--font-title); font-size: clamp(22px, 2vw, 30px); font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.proof-stats small { font-size: 12.5px; color: rgba(255, 255, 255, .6); line-height: 1.3; display: block; }
.proof .note { font-size: 13.5px; color: rgba(255, 255, 255, .55); }

/* preț + ce îl mișcă */
.price-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 3vw, 48px); border-radius: 28px; border: 1px solid rgba(255, 255, 255, .09); background: linear-gradient(152deg, #171718, #0f0f10 28%, #070708 58%, #000); padding: clamp(24px, 3vw, 48px); }
.price-side { display: flex; flex-direction: column; justify-content: center; text-align: center; position: relative; }
.price-side .offer-glow { width: 100%; height: 80%; }
.price-side > * { position: relative; z-index: 1; }
.price-side p { font-size: 16px; color: #fff; margin-bottom: 20px; }
.price-side .btn { margin-top: 22px; align-self: center; }
.factors { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.factor { padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.factor:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(255, 255, 255, .08); }
.factor:nth-child(even) { padding-left: 24px; }
.factor:nth-last-child(-n+2) { border-bottom: 0; }
.factor h3 { font-family: var(--font-title); font-size: 19px; font-weight: 600; text-transform: none; letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.25; }
.factor p { font-size: 15px; color: rgba(255, 255, 255, .7); }

/* pachete de preț */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); align-items: stretch; }
.plan { border-radius: 26px; border: 1px solid rgba(255, 255, 255, .1); background: linear-gradient(160deg, #141414, #0b0b0b 60%, #0a0a0a); padding: clamp(26px, 2.6vw, 38px); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.plan.hot { border-color: rgba(var(--accent-rgb), .45); box-shadow: 0 0 60px rgba(var(--accent-rgb), .12); }
.plan.hot::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--accent-rgb), .16), transparent 70%); pointer-events: none; }
.plan > * { position: relative; z-index: 1; }
.plan-badge { position: absolute; top: 22px; right: 22px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #0a0a0a; background: var(--accent); padding: 6px 12px; border-radius: 999px; z-index: 2; }
.plan h3 { font-family: var(--font-title); font-size: 24px; font-weight: 700; text-transform: none; letter-spacing: -.02em; margin-bottom: 10px; }
.plan .desc { font-size: 15px; color: rgba(255, 255, 255, .7); margin-bottom: 24px; min-height: 3.2em; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price small { font-size: 14px; color: rgba(255, 255, 255, .6); }
.plan-price b { font-family: var(--font-title); font-size: clamp(40px, 3.6vw, 54px); font-weight: 700; letter-spacing: -.04em; line-height: 1; background: linear-gradient(170deg, #fff, #efefef 40%, #b8b8bd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.plan-time { font-size: 13.5px; color: rgba(255, 255, 255, .6); margin-bottom: 22px; }
.plan ul { list-style: none; display: grid; gap: 10px; margin: 22px 0 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); flex: 1; }
.plan li { font-size: 15px; color: #fff; padding-left: 22px; position: relative; line-height: 1.45; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-light); font-weight: 700; }
.plan .btn { width: 100%; }
.plan .more { display: block; text-align: center; margin-top: 14px; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .7); text-decoration: underline; }
.plan .more:hover { color: #fff; }
.maint { margin-top: clamp(16px, 2vw, 24px); border-radius: 20px; border: 1px dashed rgba(255, 255, 255, .16); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.maint p { font-size: 15.5px; color: rgba(255, 255, 255, .78); max-width: 70ch; }
.maint b { font-family: var(--font-title); font-size: 20px; white-space: nowrap; }

/* FAQ simplu (fără coloana din stânga) */
.faq-simple { max-width: 900px; margin: 0 auto; }

/* pagina de proiecte */
.live-list { display: grid; gap: clamp(16px, 2vw, 28px); }
.live-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; border-radius: 26px; border: 1px solid rgba(255, 255, 255, .09); background: linear-gradient(165deg, #000, #0b0b0b 40%, #141414); overflow: hidden; }
.live-card:nth-child(even) { grid-template-columns: .95fr 1.05fr; }
.live-card:nth-child(even) .live-media { order: 2; }
.live-media { position: relative; min-height: 320px; background: #111; overflow: hidden; }
.live-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease-soft); }
.live-card:hover .live-media img { transform: scale(1.03); }
.live-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent 70%, rgba(0, 0, 0, .35)); pointer-events: none; }
.live-body { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.live-body .tag-pill { align-self: flex-start; margin-bottom: 18px; }
.live-body h3 { font-family: var(--font-title); font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; text-transform: none; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.live-body .proof-url { margin-bottom: 14px; }
.live-body p { font-size: 15.5px; color: rgba(255, 255, 255, .75); margin-bottom: 14px; }
.live-body .proof-stats { margin: 14px 0 18px; }
.demo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.4vw, 20px); }
.demo-card { display: block; border-radius: 18px; border: 1.5px solid rgba(var(--accent-rgb), .14); background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)); padding: 8px; position: relative; transition: border-color .25s, transform .5s var(--ease-soft); }
.demo-card:hover { border-color: rgba(var(--accent-rgb), .45); transform: translateY(-4px); }
.demo-shot { border-radius: 12px; overflow: hidden; background: #111; aspect-ratio: 3 / 4; position: relative; display: flex; justify-content: center; }
.demo-shot .phone-frame { top: 22px; width: 112px; height: 240px; border-radius: 18px; transform: rotate(-5deg) translateX(6px); box-shadow: 0 0 0 3px #1a1a1a, 0 0 0 4px #333, 0 20px 40px rgba(0, 0, 0, .7); }
.demo-shot .phone-frame::after { width: 34px; height: 9px; top: 6px; }
.demo-shot .phone-shade { z-index: 2; }
.demo-body { padding: 14px 8px 8px; }
.demo-body b { display: block; font-family: var(--font-title); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.demo-body small { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.demo-body .signed { display: inline-block; margin-top: 8px; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #4ade80; }
.demo-body .signed::before { content: "● "; font-size: 8px; vertical-align: 2px; }
.quote-strip { margin-top: clamp(40px, 5vw, 64px); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.contact-side { display: grid; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .025); transition: border-color .25s, background .25s; }
.contact-item:hover { border-color: rgba(var(--accent-rgb), .35); background: rgba(255, 255, 255, .04); }
.contact-item .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(var(--accent-rgb), .12); border: 1px solid rgba(var(--accent-rgb), .25); display: flex; align-items: center; justify-content: center; color: var(--accent-light); }
.contact-item .ico svg { width: 20px; height: 20px; }
.contact-item small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .5); font-weight: 600; margin-bottom: 3px; }
.contact-item b { font-family: var(--font-title); font-size: 16px; font-weight: 600; color: #fff; }
.company { border-radius: 16px; border: 1px dashed rgba(255, 255, 255, .14); padding: 20px 22px; font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, .7); }
.company b { display: block; color: #fff; font-family: var(--font-title); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.contact-note { font-size: 15px; color: rgba(255, 255, 255, .7); padding: 6px 4px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }

/* 404 */
.err { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 24px 80px; position: relative; overflow: hidden; }
.err h1 { font-size: clamp(64px, 14vw, 200px); line-height: .9; letter-spacing: -.05em; margin-bottom: 20px; background: linear-gradient(180deg, #fff, #7a7a7a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.err p { font-size: 18px; color: rgba(255, 255, 255, .75); max-width: 480px; margin: 0 auto 30px; }

@media (max-width: 1000px) { .cards.c4 { grid-template-columns: repeat(2, 1fr); } .demo-grid { grid-template-columns: repeat(3, 1fr); } .factors { grid-template-columns: 1fr; } .factor:nth-child(odd) { padding-right: 0; border-right: 0; } .factor:nth-child(even) { padding-left: 0; } .factor:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); } .factor:last-child { border-bottom: 0; } }
@media (max-width: 900px) { .pain-grid, .cards, .cards.c2, .pricing, .contact-grid, .proof, .price-panel, .live-card, .live-card:nth-child(even) { grid-template-columns: 1fr; } .live-card:nth-child(even) .live-media { order: 0; } .live-media { min-height: 220px; aspect-ratio: 16 / 10; } .proof-stats { grid-template-columns: 1fr; } .plan.hot { order: -1; } }
@media (max-width: 640px) { .cards.c4 { grid-template-columns: 1fr; } .demo-grid { grid-template-columns: repeat(2, 1fr); } .field-row { grid-template-columns: 1fr; } .pain-q { font-size: 21px; } }

/* ---------- Intro (cortină + wordmark care zboară în nav) ---------- */
.intro { position: fixed; inset: 0; z-index: 2000; background: #f5f4f0; overflow: hidden; will-change: transform; transition: transform .9s cubic-bezier(.76, 0, .24, 1); }
.intro-inner { position: absolute; inset: 0; will-change: transform; transition: transform .9s cubic-bezier(.76, 0, .24, 1); }
.intro-word { position: absolute; display: block; white-space: nowrap; overflow: hidden; color: #0a0a0a; font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: .03em; text-transform: uppercase; line-height: 1; transform-origin: 50% 50%; will-change: transform; backface-visibility: hidden; }
.intro-word > span { display: block; transform: translateY(100%); will-change: transform; }
.intro.pop .intro-word > span { transform: translateY(0); transition: transform 1s cubic-bezier(.25, 1, .5, 1); }
.intro.fly .intro-word { transition: transform 1.9s cubic-bezier(.83, 0, .17, 1); }
.intro.curtain { transform: translateY(-100vh); }
.intro.curtain .intro-inner { transform: translateY(100vh); }
.intro.done { display: none; }
@media (max-width: 1000px) { .intro-word { font-size: 17px; } }
