/* Fonturi self-hosted, subsetate la caracterele folosite pe site (RO). Generat local, fara transfer catre Google la runtime. */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/inter-400.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/inter-500.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/inter-600.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/inter-700.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url(fonts/inter-800.woff2) format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:900;font-display:swap;src:url(fonts/inter-900.woff2) format('woff2');}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/space-grotesk-500.woff2) format('woff2');}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/space-grotesk-600.woff2) format('woff2');}
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/space-grotesk-700.woff2) format('woff2');}

/* ============================================
   mobiledev · design-v2 · dark neon
   ============================================ */

:root {
  --bg: #0A0E1A;
  --bg-2: #0E1424;
  --surface: #121829;
  --surface-2: #161d33;
  --border: rgba(255, 255, 255, .08);
  --border-2: rgba(255, 255, 255, .14);
  --text: #E0E6F0;
  --text-soft: #9AA5B8;
  --text-light: #6B7693;
  --cyan: #00F5D4;
  --purple: #9D4EDD;
  --pink: #F72585;
  --blue: #4CC9F0;
  --grad: linear-gradient(135deg, #00F5D4 0%, #9D4EDD 55%, #F72585 100%);
  --grad-soft: linear-gradient(135deg, rgba(0, 245, 212, .15), rgba(157, 78, 221, .15), rgba(247, 37, 133, .15));
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .4);
  --shadow-glow: 0 0 40px rgba(0, 245, 212, .15);
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font);
  --t: .35s cubic-bezier(.4, 0, .2, 1);
}

/* —— Reset —— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--purple); color: #fff; }

/* —— Scroll progress —— */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad); z-index: 200;
  box-shadow: 0 0 10px rgba(0, 245, 212, .6);
  transition: width .1s linear;
}

/* —— Cursor glow —— */
.cursor-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, .08) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  mix-blend-mode: screen;
}

/* —— Particles canvas —— */
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%;
}

/* —— Layout —— */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 2; }
.section { padding: 100px 0; position: relative; z-index: 2; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
  color: var(--cyan);
  background: rgba(0, 245, 212, .08);
  border: 1px solid rgba(0, 245, 212, .2);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -.02em; margin-bottom: 18px;
  color: #fff;
}
.section__lead { font-size: 18px; color: var(--text-soft); }

/* —— Gradient text —— */
.grad-text {
  background: var(--grad);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* —— Grid —— */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* —— Glassmorphism —— */
.glass {
  background: rgba(18, 24, 41, .55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--border);
  position: relative;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: var(--t); white-space: nowrap; position: relative; overflow: hidden;
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad); background-size: 200% 200%;
  color: #0A0E1A; font-weight: 700;
  box-shadow: 0 8px 30px rgba(157, 78, 221, .4), 0 0 20px rgba(0, 245, 212, .2);
  animation: gradShift 6s ease infinite;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(157, 78, 221, .55), 0 0 30px rgba(0, 245, 212, .35); }
.btn--ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0, 245, 212, .06); transform: translateY(-2px); }

/* —— Header —— */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 26, .7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: var(--t);
}
.header.is-scrolled { border-color: var(--border); background: rgba(10, 14, 26, .92); box-shadow: 0 4px 30px rgba(0, 0, 0, .3); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.logo__text { color: #fff; }
.logo__mark svg { border-radius: 7px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; color: var(--text-soft); transition: var(--t); position: relative; }
.nav a:not(.nav__cta)::after { content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--grad); transition: width var(--t); }
.nav a:not(.nav__cta):hover { color: #fff; }
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { color: #0A0E1A !important; }
.header__phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--text); }
.header__phone:hover { color: var(--cyan); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }

/* —— Hero —— */
.hero { position: relative; padding: 100px 0 120px; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
  z-index: 0; pointer-events: none;
}
.blob--1 { width: 500px; height: 500px; background: var(--cyan); top: -150px; right: -100px; animation: blob 18s ease-in-out infinite; }
.blob--2 { width: 450px; height: 450px; background: var(--purple); bottom: -150px; left: -120px; animation: blob 22s ease-in-out infinite reverse; }
.blob--3 { width: 350px; height: 350px; background: var(--pink); top: 40%; left: 40%; opacity: .2; animation: blob 25s ease-in-out infinite; }
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}

.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; width: 100%; }
.hero__content { max-width: 560px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; background: rgba(0, 245, 212, .08);
  border: 1px solid rgba(0, 245, 212, .25); color: var(--cyan);
  border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 26px;
  box-shadow: 0 0 20px rgba(0, 245, 212, .15);
}
.badge__dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 10px var(--cyan); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 26px;
}
.hero__lead { font-size: 19px; color: var(--text-soft); line-height: 1.65; margin-bottom: 34px; max-width: 520px; }
.hero__lead .word { display: inline-block; }
.js .hero__lead .word { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.js .hero__lead .word.is-in { opacity: 1; transform: none; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__check { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__check li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.hero__check svg { filter: drop-shadow(0 0 4px currentColor); }

/* —— Phone mock —— */
.hero__visual { position: relative; display: flex; justify-content: center; perspective: 1000px; }
.phone {
  width: 280px; background: linear-gradient(145deg, #1a2236, #0d1322); border-radius: 38px;
  padding: 14px; box-shadow: var(--shadow), 0 0 50px rgba(157, 78, 221, .25);
  position: relative; z-index: 2; border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .2s ease-out; transform-style: preserve-3d;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.phone__notch { width: 90px; height: 24px; background: #0A0E1A; border-radius: 0 0 14px 14px; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 3; }
.phone__screen { background: #0F1525; border-radius: 26px; padding: 28px 18px 22px; min-height: 480px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .05); }
.phone__bar__row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.phone__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px rgba(157, 78, 221, .5); }
.phone__line { height: 8px; background: rgba(255, 255, 255, .1); border-radius: 4px; width: 90%; }
.phone__line--sm { width: 60%; height: 6px; margin-top: 4px; }
.phone__line--xs { width: 40%; }
.phone__chip { display: inline-block; font-size: 10px; font-weight: 700; color: var(--cyan); background: rgba(0, 245, 212, .12); border: 1px solid rgba(0, 245, 212, .25); padding: 4px 10px; border-radius: 999px; margin-top: 6px; }
.phone__stat { background: linear-gradient(135deg, rgba(157, 78, 221, .3), rgba(247, 37, 133, .25)); border: 1px solid rgba(157, 78, 221, .3); color: #fff; border-radius: 16px; padding: 18px; margin-bottom: 18px; }
.phone__label { font-size: 11px; opacity: .7; margin-bottom: 6px; }
.phone__value { font-size: 26px; font-weight: 800; color: #fff; }
.phone__trend { font-size: 11px; margin-top: 4px; color: var(--cyan); }
.phone__chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-bottom: 18px; }
.phone__bar2 { flex: 1; background: linear-gradient(180deg, var(--purple), rgba(157, 78, 221, .2)); border-radius: 4px; height: var(--h); box-shadow: 0 0 8px rgba(157, 78, 221, .3); animation: barRise .6s ease-out backwards; }
.phone__bar2:nth-child(1) { animation-delay: .1s; } .phone__bar2:nth-child(2) { animation-delay: .2s; } .phone__bar2:nth-child(3) { animation-delay: .3s; } .phone__bar2:nth-child(4) { animation-delay: .4s; } .phone__bar2:nth-child(5) { animation-delay: .5s; } .phone__bar2:nth-child(6) { animation-delay: .6s; } .phone__bar2:nth-child(7) { animation-delay: .7s; }
@keyframes barRise { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.phone__list { display: flex; flex-direction: column; gap: 10px; }
.phone__item { display: flex; align-items: center; gap: 10px; }
.phone__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.phone__dot:nth-child(1) { background: var(--pink); box-shadow: 0 0 6px var(--pink); }
.phone__fab { position: absolute; bottom: 20px; right: 18px; width: 48px; height: 48px; background: var(--grad); color: #0A0E1A; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 300; box-shadow: 0 6px 20px rgba(247, 37, 133, .5); }

.hero__float { position: absolute; background: rgba(18, 24, 41, .8); backdrop-filter: blur(10px); border: 1px solid var(--border-2); padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; z-index: 3; color: #fff; }
.hero__float--1 { top: 18%; left: -10px; animation: float 4s ease-in-out infinite; }
.hero__float--2 { bottom: 14%; right: -10px; animation: float 5s ease-in-out infinite .8s; }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-light); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll__line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--cyan), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* —— Trust / marquee —— */
.trust { padding: 40px 0 50px; position: relative; z-index: 2; }
.trust__title { text-align: center; font-size: 14px; font-weight: 600; color: var(--text-light); letter-spacing: .04em; margin-bottom: 28px; }
.marquee { overflow: hidden; mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 30s linear infinite; }
.marquee__item { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-soft); white-space: nowrap; transition: color var(--t); }
.marquee__item:hover { color: var(--cyan); }
.marquee__dot { color: var(--purple); font-size: 16px; opacity: .6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* —— Card / Service —— */
.grid--3 > .card { animation: none; }
.card { border-radius: var(--radius); padding: 32px; transition: var(--t); }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .06), transparent 40%);
  transition: opacity var(--t); pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--c); box-shadow: 0 20px 50px rgba(0, 0, 0, .3), 0 0 30px rgba(0, 0, 0, .1); }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  color: var(--c);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--t);
  box-shadow: 0 0 20px color-mix(in srgb, var(--c) 25%, transparent);
}
.card:hover .card__icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 30px color-mix(in srgb, var(--c) 40%, transparent); }
.card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.card p { color: var(--text-soft); margin-bottom: 18px; font-size: 15px; }
.card__list { display: flex; flex-direction: column; gap: 9px; }
.card__list li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text); font-weight: 500; }
.card__list li::before { content: ""; width: 16px; height: 16px; flex-shrink: 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300F5D4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat; filter: drop-shadow(0 0 3px rgba(0, 245, 212, .4)); }

/* —— Proces / steps scroll —— */
.proces { padding-bottom: 80px; }
.steps-scroll { overflow-x: auto; overflow-y: hidden; padding: 8px 0 30px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.steps-scroll::-webkit-scrollbar { height: 6px; }
.steps-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, .05); border-radius: 4px; }
.steps-scroll::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 4px; }
.steps { display: flex; gap: 22px; padding: 0 24px; min-width: max-content; }
.step { width: 340px; border-radius: var(--radius); padding: 30px; scroll-snap-align: center; transition: var(--t); flex-shrink: 0; position: relative; overflow: hidden; }
.step::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--c); border-radius: 22px 22px 0 0; box-shadow: 0 0 15px var(--c); opacity: .6; }
.step:hover { transform: translateY(-4px); border-color: var(--c); }
.step__num {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  background: var(--grad); background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(157, 78, 221, .3));
}
.step h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 8px; color: #fff; }
.step p { color: var(--text-soft); font-size: 14px; }

/* —— Flutter —— */
.flutter__grid { gap: 18px; }
.flutter__item { border-radius: var(--radius); padding: 28px 24px; text-align: left; transition: var(--t); }
.flutter__item:hover { transform: translateY(-4px); border-color: var(--c); box-shadow: 0 0 30px color-mix(in srgb, var(--c) 20%, transparent); }
.flutter__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: 0 0 20px color-mix(in srgb, var(--c) 20%, transparent);
  transition: var(--t);
}
.flutter__item:hover .flutter__icon { transform: scale(1.1); }
.flutter__item h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; color: #fff; }
.flutter__item p { color: var(--text-soft); font-size: 14px; }

/* —— About —— */
.about__inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 80px; align-items: center; }
.about__content h2 { margin-bottom: 22px; }
.about__content p { color: var(--text-soft); margin-bottom: 16px; font-size: 17px; }
.about__content strong { color: var(--cyan); font-weight: 600; }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; color: var(--text); }
.about__list svg { filter: drop-shadow(0 0 4px currentColor); flex-shrink: 0; }
.about__visual { position: relative; min-height: 320px; }
.about__card { position: absolute; top: 0; left: 0; width: 65%; padding: 24px; border-radius: var(--radius); z-index: 2; animation: float 5s ease-in-out infinite; }
.about__card__bar { height: 12px; background: linear-gradient(90deg, var(--cyan), rgba(0, 245, 212, .3)); border-radius: 6px; margin-bottom: 10px; box-shadow: 0 0 10px rgba(0, 245, 212, .3); }
.about__card__bar--sm { height: 8px; width: 75%; background: rgba(255, 255, 255, .1); box-shadow: none; }
.about__card__bar--xs { height: 6px; width: 45%; background: rgba(255, 255, 255, .08); box-shadow: none; }
.about__code { position: absolute; bottom: -10px; right: 0; width: 70%; padding: 0; border-radius: var(--radius); overflow: hidden; z-index: 3; box-shadow: var(--shadow), 0 0 30px rgba(157, 78, 221, .2); }
.about__code__head { background: rgba(10, 14, 26, .8); padding: 12px 16px; display: flex; gap: 7px; border-bottom: 1px solid var(--border); }
.about__code__head .dot { width: 11px; height: 11px; border-radius: 50%; }
.about__code__head .dot:nth-child(1) { background: var(--pink); } .about__code__head .dot:nth-child(2) { background: var(--purple); } .about__code__head .dot:nth-child(3) { background: var(--cyan); }
.about__code pre { background: rgba(8, 11, 20, .95); padding: 18px; overflow-x: auto; margin: 0; }
.about__code code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 12.5px; line-height: 1.7; color: var(--text-soft); }
.c-key { color: var(--pink); } .c-cls { color: var(--cyan); } .c-fn { color: var(--purple); }

/* —— CTA —— */
.cta { padding: 100px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.blob--cta { width: 600px; height: 600px; background: var(--purple); opacity: .15; bottom: -300px; right: -150px; filter: blur(100px); position: absolute; z-index: 0; animation: blob 20s ease-in-out infinite; }
.cta__inner { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: start; }
.cta__lead { color: var(--text-soft); font-size: 18px; margin-bottom: 32px; }
.cta__contact { display: flex; flex-direction: column; gap: 15px; }
.cta__contact li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.cta__contact svg { filter: drop-shadow(0 0 4px currentColor); flex-shrink: 0; }
.cta__contact a:hover { color: #fff; text-decoration: underline; }
.cta__phones { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cta__phones__sep { opacity: .4; }
.cta__address { line-height: 1.5; font-style: normal; margin: 0; }

/* —— Form —— */
.form { border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow), 0 0 30px rgba(157, 78, 221, .15); border: 1px solid rgba(157, 78, 221, .2); }
.form__row { margin-bottom: 18px; }
.form__row label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form__row input, .form__row textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font: inherit; color: #fff; background: rgba(8, 11, 20, .6);
  transition: var(--t); resize: vertical;
}
.form__row input::placeholder, .form__row textarea::placeholder { color: var(--text-light); }
.form__row input:focus, .form__row textarea:focus { outline: none; border-color: var(--cyan); background: rgba(0, 245, 212, .05); box-shadow: 0 0 0 3px rgba(0, 245, 212, .15); }
.form__note { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 14px; }
/* Honeypot anti-spam: ascuns vizual dar accesibil pentru boți */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Mesaj status formular */
.form__status { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.5; border: 1px solid var(--border); }
.form__status--success { color: var(--cyan); background: rgba(0, 245, 212, .08); border-color: rgba(0, 245, 212, .35); }
.form__status--error { color: #ff9db6; background: rgba(247, 37, 133, .08); border-color: rgba(247, 37, 133, .4); }
/* Consimțământ GDPR pe formular */
.form__consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 6px; font-size: 13px; color: var(--text-soft); line-height: 1.5; }
.form__consent input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--cyan); cursor: pointer; }
.form__consent a { color: var(--cyan); text-decoration: underline; }

/* —— Pagini legale —— */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-header { border-bottom: 1px solid var(--border); padding: 18px 0; }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; }
.legal-back { color: var(--text-soft); font-size: 14px; text-decoration: none; }
.legal-back:hover { color: var(--cyan); }
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; flex: 1; }
.legal h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin-bottom: 10px; }
.legal .legal__updated { color: var(--text-light); font-size: 14px; margin-bottom: 8px; }
.legal .legal__intro { color: var(--text-soft); margin-bottom: 32px; }
.legal h2 { font-family: var(--font-display); font-size: 21px; margin: 34px 0 12px; color: var(--text); }
.legal h3 { font-size: 17px; margin: 22px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--text-soft); line-height: 1.7; }
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .legal__box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; margin: 18px 0; }
.legal dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 4px 0 16px; }
.legal dt { color: var(--text-light); }
.legal dd { color: var(--text); }
.legal-footer { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; font-size: 13px; color: var(--text-light); }
.legal-footer a { color: var(--text-soft); text-decoration: none; margin: 0 8px; }
.legal-footer a:hover { color: var(--cyan); }
.legal-footer__legal { margin-bottom: 8px; }
/* Link-uri legale în footer principal */
.footer__legal-links { margin-top: 8px; }
.footer__legal-links a { color: var(--text-soft); text-decoration: none; }
.footer__legal-links a:hover { color: var(--cyan); }

/* —— Footer —— */
.footer { background: var(--bg-2); color: var(--text-soft); padding: 80px 0 32px; border-top: 1px solid rgba(157, 78, 221, .2); position: relative; z-index: 2; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 24px; }
.footer .logo__text { color: #fff; }
.footer__tagline { margin: 16px 0 20px; font-size: 14px; line-height: 1.6; max-width: 280px; color: var(--text-soft); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .06); display: flex; align-items: center; justify-content: center; color: var(--text-soft); border: 1px solid var(--border); transition: var(--t); }
.footer__social a:hover { background: var(--grad); color: #0A0E1A; transform: translateY(-3px); border-color: transparent; box-shadow: 0 6px 20px rgba(157, 78, 221, .4); }
.footer__col h4 { color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a, .footer__col span { display: block; color: var(--text-soft); font-size: 14px; padding: 6px 0; transition: color var(--t); }
.footer__col a:hover { color: var(--cyan); }
.footer__hours { color: var(--text-light) !important; font-size: 13px !important; padding-top: 10px !important; border-top: 1px solid var(--border); margin-top: 6px; }

/* —— Footer legal —— */
.footer__legal { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 24px; margin-bottom: 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .02); }
.footer__legal__brand { margin-bottom: 22px; }
.footer__legal__brand h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; letter-spacing: -.01em; }
.footer__legal__brand p { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.footer__legal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__legal__col h5 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer__legal__col dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; align-items: baseline; }
.footer__legal__col dt { font-size: 13px; color: var(--text-light); font-weight: 500; }
.footer__legal__col dd { font-size: 13px; color: var(--text); font-weight: 600; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; letter-spacing: -.01em; }
.footer__bar { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-light); }

/* —— Reveal animation ——
   Fără JS conținutul e vizibil implicit; animația se activează doar când
   scriptul inline din <head> pune clasa .js pe <html>. */
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* —— Noise overlay (subtle grain) —— */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 150; opacity: .025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
  .hero__inner { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .header__phone { display: none; }
  .nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(10, 14, 26, .98); backdrop-filter: blur(20px); flex-direction: column; align-items: stretch; padding: 24px; border-bottom: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0, 0, 0, .4); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: var(--t); gap: 0; }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { display: block; margin-top: 16px; text-align: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 30px 0 90px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero__content { max-width: none; margin: 0 auto; }
  .hero__check { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__visual { order: -1; }
  .phone { width: 240px; }
  .phone__screen { min-height: 400px; }
  .hero__scroll { display: none; }

  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { min-height: 260px; }
  .about__list { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__legal__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
  .section__head { margin-bottom: 40px; }

  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .hero__lead .word { opacity: 1; transform: none; }
  .phone, .hero__float, .about__card, .blob { animation: none; }
  .grad-text { animation: none; }
  .marquee__track { animation: none; }
}