*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { min-height: 100vh; line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input { font: inherit; }
svg { display: block; }

/* ============ TOKENS ============ */
:root {
  --emerald-50:  #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius:    28px;
  --radius-lg: 35px;
  --radius-xl: 42px;

  --tr-fast: 180ms cubic-bezier(.4,0,.2,1);
  --tr: 320ms cubic-bezier(.4,0,.2,1);
  --tr-slow: 600ms cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* DARK */
[data-theme="dark"] {
  --bg: #07100c;
  --bg-2: #0a1612;
  --surface: rgba(20, 38, 31, 0.45);
  --surface-2: rgba(28, 52, 42, 0.55);
  --surface-3: rgba(40, 70, 58, 0.6);
  --surface-solid: #0e1d18;
  --border: rgba(110, 231, 183, 0.18);
  --border-strong: rgba(110, 231, 183, 0.32);
  --text: #e6f7ef;
  --text-muted: #9bb5a8;
  --text-dim: #6f8b80;
  --accent: var(--emerald-400);
  --accent-strong: var(--emerald-300);
  --accent-soft: rgba(16, 185, 129, 0.18);
  --glow: 0 0 60px rgba(16, 185, 129, 0.35);
  --shadow-card: 0 10px 30px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.06) inset;
  --grid-color: rgba(110, 231, 183, 0.06);
  --glass-bg: rgba(16, 32, 26, 0.35);
  --glass-bg-strong: rgba(10, 22, 18, 0.55);
  --glass-border: rgba(110, 231, 183, 0.22);
  --glass-highlight: rgba(255, 255, 255, 0.06);
}

/* LIGHT */
[data-theme="light"] {
  --bg: #f6fbf8;
  --bg-2: #eef7f1;
  --surface: rgba(255, 255, 255, 0.55);
  --surface-2: rgba(244, 250, 246, 0.7);
  --surface-3: rgba(233, 245, 238, 0.75);
  --surface-solid: #ffffff;
  --border: rgba(6, 78, 59, 0.14);
  --border-strong: rgba(6, 78, 59, 0.28);
  --text: #0a1f17;
  --text-muted: #436055;
  --text-dim: #6c8579;
  --accent: var(--emerald-600);
  --accent-strong: var(--emerald-700);
  --accent-soft: rgba(16, 185, 129, 0.14);
  --glow: 0 0 60px rgba(16, 185, 129, 0.25);
  --shadow-card: 0 10px 30px rgba(6, 78, 59, .08), 0 1px 0 rgba(255,255,255,.7) inset;
  --grid-color: rgba(6, 78, 59, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-bg-strong: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(6, 78, 59, 0.15);
  --glass-highlight: rgba(255, 255, 255, 0.7);
}



















/* ===== FUNDAL CU IMAGINI PENTRU AMBELE TEME ===== */
/* Light mode - cloud-wall.png */
[data-theme="light"] body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  
  background-image: url('https://cdn.adelin.org/public/pages-wp/www/65f7a48a-3425-43a9-9c81-605a7cced051-v3.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  
  transform-origin: center top;
  will-change: transform, opacity;
}

/* Dark mode */
[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  
  background-image: url('https://cdn.adelin.org/public/pages-wp/www/amb-darkmode-v7-PH-REDUCE.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  
  transform-origin: center top;
  will-change: transform, opacity;
}

/* Conectează variabilele CSS cu efectele pentru ambele teme */
[data-theme="light"] body::before,
[data-theme="dark"] body::before {
  transform: scale(var(--bg-zoom, 1));
  opacity: var(--bg-opacity, 1);
  transition: transform 0.03s linear, opacity 0.03s linear;
}

/* Asigură fundalul de bază */
[data-theme="light"] body {
  position: relative;
  background-color: var(--bg);
}

[data-theme="dark"] body {
  position: relative;
  background-color: var(--bg);
}





















body {
  background-color: var(--bg) !important;
  background-image:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(16,185,129,.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(110,231,183,.06), transparent 60%) !important;
  background-attachment: fixed !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  transition: background-color var(--tr), color var(--tr);
}










/* ===== ANIMAȚIE PENTRU SCHIMBAREA TEMEI ===== */
.theme-transitioning,
.theme-transitioning * {
  transition: none !important;
}

/* Pseudo-element pentru efectul de fade */
.theme-fade::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 9999;
  pointer-events: none;
  animation: themeFade 0.4s ease-out forwards;
}

@keyframes themeFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}













::selection { background: var(--accent); color: #06281d; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--emerald-700), var(--emerald-500)); border-radius: 8px; }











/* ============ LIQUID GLASS UTILITY ============ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.18),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(0,0,0,0.05);
  position: relative;
}
.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.28),
    inset 0 1px 0 var(--glass-highlight);
}
.glass-soft {
  background: color-mix(in srgb, var(--accent-soft) 80%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--border-strong);
}

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 8px; height: 8px; background: var(--emerald-300); transition: transform var(--tr-fast); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--emerald-400);
  transition: transform 220ms var(--ease-out), width var(--tr), height var(--tr), border-color var(--tr);
}
.cursor-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--emerald-300); }
.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(2.2); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none !important; } body { cursor: auto !important; } }
@media (min-width: 901px) { body, body * { cursor: none; } body input, body textarea { cursor: text; } }

/* ============ LOADER ============ */
.page-loader {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .8s ease, visibility .8s ease;
}
.page-loader.gone { opacity: 0; visibility: hidden; }
.loader-orb {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--emerald-300), var(--emerald-700));
  box-shadow: 0 0 80px var(--emerald-500);
  animation: orbPulse 1.4s ease-in-out infinite;
}
.loader-text {
  position: absolute; bottom: 28%;
  font-family: var(--font-mono); letter-spacing: .4em;
  font-size: 12px; color: var(--text-muted);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(.85); filter: blur(0); }
  50% { transform: scale(1.1); filter: blur(2px); }
}
@keyframes blink { 50% { opacity: .35; } }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--emerald-300), var(--emerald-500), var(--emerald-700));
  z-index: 999; box-shadow: 0 0 12px var(--emerald-400);
  transition: width .1s linear;
}

/* ============ PARTICLES ============ */
.particle-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .55;
}
[data-theme="light"] .particle-canvas { opacity: .35; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; z-index: 100;
  border-radius: 999px;
  transition: all var(--tr);
}
.navbar.scrolled {
  width: min(1100px, calc(100% - 32px));
  box-shadow: 0 12px 40px rgb(0 0 0 / 49%);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -.02em;
  color: var(--text);
}
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: linear-gradient(135deg, #34d399, #036549);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(16,185,129,.35), inset 0 1px 0 rgba(255,255,255,.2);
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.logo-text { display: inline-flex; align-items: baseline; gap: 1px; }
.logo-dot { color: var(--accent); font-size: 1.1em; line-height: 0; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 14px; border-radius: 999px;
  font-size: 16px; font-weight: 500; color: var(--text-muted);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.nav-link:hover { color: var(--text); background: var(--accent-soft); }
.nav-link::after {
  content: ''; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--accent); transition: width var(--tr);
  border-radius: 2px;
}
.nav-link:hover::after { width: 18px; }

.nav-controls { display: flex; gap: 8px; align-items: center; }
.ctrl-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 16px; background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  color: var(--text); transition: all var(--tr-fast);
}
.ctrl-btn:hover { background: var(--accent-soft); border-color: var(--border-strong); transform: translateY(-2px); }












.lang-btn {
  width: auto; padding: 0 12px; gap: 4px; display: flex; font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
}
.lang-current { color: var(--accent); }
.lang-divider { color: var(--text-dim); }
.lang-other { color: var(--text-muted); }











.theme-btn .icon-sun { display: none; }
[data-theme="light"] .theme-btn .icon-sun { display: block; }
[data-theme="light"] .theme-btn .icon-moon { display: none; }

.menu-btn { display: none; flex-direction: column; gap: 4px; padding: 0; }
.menu-btn span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--tr); }

/* ============ MOBILE BOTTOM SHEET ============ */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transition: opacity var(--tr); z-index: 200;
  backdrop-filter: blur(8px);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-sheet {
  position: fixed;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 16px));
  max-height: 78vh;
  z-index: 201;
  padding: 14px 22px 22px;
  display: flex; flex-direction: column;
  border-radius: 32px 32px 0 0;
  transition: bottom 480ms var(--ease-out);
  border-bottom: 0;
}
.mobile-sheet.open { bottom: 0; }
.sheet-handle {
  width: 44px; height: 5px; border-radius: 99px;
  background: var(--border-strong);
  margin: 0 auto 12px;
}
.sheet-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.sheet-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.sheet-title img {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
  padding: 3px;
}
.sheet-close {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 16px; color: var(--text);
  transition: all var(--tr-fast);
}
.sheet-close:hover { background: var(--accent); color: #04231b; }
.sheet-links {
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
  padding-bottom: 8px;
}
.sheet-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 18px;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--tr-fast);
}
.sheet-links a > i:first-child {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 10px; font-size: 14px;
}
.sheet-links a > span { flex: 1; }
.sheet-links a .arrow { color: var(--text-dim); font-size: 12px; transition: transform var(--tr); }
.sheet-links a:hover { background: var(--accent-soft); border-color: var(--border-strong); transform: translateX(4px); }
.sheet-links a:hover .arrow { transform: translateX(4px); color: var(--accent); }
.sheet-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dim); font-size: 12px;
}
.sheet-socials { display: flex; gap: 8px; }
.sheet-socials a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--tr-fast);
}
.sheet-socials a:hover { background: var(--accent); color: #04231b; transform: translateY(-2px); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  padding: 130px 24px 80px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg-grid {
  position: absolute; inset: -1px; z-index: -1;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 75%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  z-index: -1; pointer-events: none;
}
.hero-glow-1 { width: 540px; height: 540px; left: -120px; top: -100px; background: radial-gradient(var(--emerald-500), transparent 70%); opacity: .35; }
.hero-glow-2 { width: 600px; height: 600px; right: -160px; bottom: -120px; background: radial-gradient(var(--emerald-700), transparent 70%); opacity: .3; }

.hero-inner {
  width: 100%; max-width: 1240px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 22px; }
/* .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--accent-strong); width: fit-content;
} */
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-400);
  box-shadow: 0 0 0 0 var(--emerald-400); animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1.02;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -.03em;
}
.title-line { display: block; color: var(--text-muted); font-weight: 400; font-size: .55em; margin-bottom: 6px; }
.title-name { display: block; position: relative; }
.name-text {
  background: linear-gradient(120deg, var(--text) 30%, var(--emerald-300) 50%, var(--text) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 200% center; }
  50% { background-position: 0% center; }
}
.name-underline {
  display: block; height: 6px; margin-top: 4px; width: 0;
  background: linear-gradient(90deg, var(--emerald-300), var(--emerald-600));
  border-radius: 4px;
  animation: underlineGrow 1.2s var(--ease-out) .4s forwards;
}
@keyframes underlineGrow { to { width: 60%; } }

.title-typed {
  display: block; font-size: .55em; color: var(--text); font-weight: 600;
  margin-top: 6px; min-height: 1.4em;
}
.typed-prefix { color: var(--text-muted); font-weight: 400; }
.typed-target { color: var(--accent); }
/* .typed-cursor { color: var(--accent); animation: blink 1s steps(2) infinite; margin-left: 2px; } */

.hero-desc { font-size: 17px; color: var(--text-muted); max-width: 580px; }
.hero-desc b { color: var(--text); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: all var(--tr); overflow: hidden; isolation: isolate;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  color: #04231b;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--emerald-300), var(--emerald-500));
  opacity: 0; transition: opacity var(--tr);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(16, 185, 129, .5); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  color: var(--text);
  border-color: var(--glass-border);
}
.btn-ghost:hover { background: var(--accent-soft); transform: translateY(-3px); border-color: var(--accent); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--accent-soft); border-color: var(--accent); }






.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 28px;
  padding: 22px 32px;
  border-radius: var(--radius-lg);
  width: fit-content;  /* ASTA FACE CONTAINERUL SĂ FIE DOAR CÂT TREBUIE */
  max-width: 100%;
  border: 1px solid rgba(110, 231, 183, 0.15);

}


.hstat { display: flex; flex-direction: column; }
.hstat b { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.hstat span { font-size: 12px; color: var(--text-dim); letter-spacing: .03em; }














/* ============ HERO VISUAL (premium) ============ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1400px;
  aspect-ratio: 1;
}

.portrait-ring {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

/* ===== Conic glow halo (rotating shadow) ===== */
.ring-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--emerald-300),
    transparent 25%,
    var(--emerald-500) 50%,
    transparent 75%,
    var(--emerald-300)
  );
  filter: blur(48px);
  opacity: .7;
  animation: ringSpin 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.ring-glow-2 {
  inset: -8px;
  filter: blur(24px);
  opacity: .55;
  animation: ringSpin 9s linear infinite reverse;
  background: conic-gradient(
    from 180deg,
    transparent,
    var(--emerald-400) 30%,
    transparent 60%,
    var(--emerald-300) 90%,
    transparent
  );
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* ===== Portrait frame ===== */
.portrait-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  overflow: hidden;
  /* background: var(--surface-solid); */
  animation: floatY 6s ease-in-out infinite;
  transform-style: preserve-3d;
  transition:
    transform 700ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 600ms ease;
  /* box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, .55),
    0 0 0 1px var(--border-strong),
    0 0 60px rgba(16, 185, 129, .15); */
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1),
              filter 700ms ease;
  filter: saturate(1.05) contrast(1.05);
}

/* ===== Shine overlay (sweep on hover) ===== */
.portrait-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 25%,
    rgba(255, 255, 255, .35) 50%,
    transparent 75%
  );
  background-size: 220% 220%;
  background-position: -110% -110%;
  transition: background-position 1.1s cubic-bezier(.16, 1, .3, 1),
              opacity .5s ease;
  mix-blend-mode: overlay;
  opacity: .6;
  z-index: 3;
}

/* Soft inner gradient for premium feel */
.portrait-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .18), transparent 55%),
    radial-gradient(circle at 70% 90%, rgba(16, 185, 129, .18), transparent 60%);
  mix-blend-mode: soft-light;
  z-index: 2;
  transition: opacity .5s ease;
  opacity: .9;
}

/* ===== HOVER — premium 3D & shine ===== */
.hero-visual:hover .portrait-frame {
  /* box-shadow:
    0 50px 110px -20px rgba(0, 0, 0, .6),
    0 0 0 1px var(--accent),
    0 0 100px rgba(16, 185, 129, .35); */
}

.hero-visual:hover .portrait-img {
  /* transform: scale(1.1); */
  /* filter: saturate(1.15) contrast(1.1) brightness(1.05); */
}

.hero-visual:hover .portrait-shine {
  background-position: 110% 110%;
  opacity: 1;
}

.hero-visual:hover .portrait-overlay {
  opacity: 1;
}



/* ===== Floating chips — closer, blurred, bigger icons ===== */
.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  z-index: 5;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .25),
    inset 0 1px 0 var(--glass-highlight);
  animation: floatChip 6s ease-in-out infinite;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.floating-chip i {
  color: var(--accent);
  font-size: 16px;
}



/* Positions — closer to photo */
.chip-1 {
  top: 4%;
  left: 2%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.chip-2 {
  top: 16%;
  right: -8%;
  animation-delay: -.8s;
  animation-duration: 6.5s;
}

.chip-3 {
  bottom: 18%;
  left: -6%;
  animation-delay: -1.6s;
  animation-duration: 5.8s;
}

.chip-4 {
  bottom: 4%;
  right: 4%;
  animation-delay: -2.4s;
  animation-duration: 7s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}











/* Responsive */
@media (max-width: 760px) {
  .floating-chip {
    font-size: 12px;
    padding: 9px 14px;
  }
  .floating-chip i { font-size: 14px; }
  .chip-2 { right: -2%; }
  .chip-3 { left: -2%; }
}

















/* CHIPS */
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--text);
  animation: floatChip 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * -.7s);
  transition: transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.chip i { color: var(--accent); }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em;
  color: var(--text-dim); text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* MARQUEE */



.marquee {
  overflow: hidden; padding: 22px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}



.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display); font-weight: 600; color: var(--text-muted);
  font-size: 18px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track i { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section {
  position: relative; padding: 110px 24px;
  max-width: 1240px; margin: 0 auto;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  color: var(--accent-strong);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow.emerald { background: var(--emerald-500); color: #04231b; border-color: var(--emerald-500); }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.7vw, 82px); letter-spacing: -.025em; line-height: 1.1;
  color: var(--text);
}
/* .section-title .accent-green { color: var(--accent); } */
.section-sub{font-size:18px;color:var(--text-dim);max-width:520px;margin:0 auto;line-height:1.6; margin-top: 14px;}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }







/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 25px 30px 42px;
  border-radius: var(--radius-lg);
  transition: all var(--tr-slow);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgb(194 194 194 / 10%);
  --mx: 50%;
  --my: 50%;
}

/* Acesta este GLOW-UL care merge perfect */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(800px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}


.service-card:hover::before {
  opacity: 1;
}














/* ============ SERVICES - CULORI PERSONALIZATE (INTENS MODERAT) ============ */

/* Emby - Verde */
.service-card[data-testid="service-emby"] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-emby"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(16, 185, 129, 0.35), transparent 55%);
  opacity: 0.25;
}

.service-card[data-testid="service-emby"]:hover::before {
  opacity: 0.7;
}

.service-card[data-testid="service-emby"]:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 20px 35px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), var(--glass-bg));
}

.service-card[data-testid="service-emby"]:hover .service-arrow {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
}

/* Seerr - Mov Lavandă (mai vizibil) */
.service-card[data-testid="service-seerr"] {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-seerr"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(139, 92, 246, 0.4), transparent 55%);
  opacity: 0.3;
}

.service-card[data-testid="service-seerr"]:hover::before {
  opacity: 0.75;
}

.service-card[data-testid="service-seerr"]:hover {
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 20px 35px rgba(139, 92, 246, 0.25);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), var(--glass-bg));
}

.service-card[data-testid="service-seerr"]:hover .service-arrow {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(139, 92, 246, 0.55);
  color: #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Status - Albastru */
.service-card[data-testid="service-status"] {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-status"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(59, 130, 246, 0.35), transparent 55%);
  opacity: 0.25;
}

.service-card[data-testid="service-status"]:hover::before {
  opacity: 0.7;
}

.service-card[data-testid="service-status"]:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 35px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), var(--glass-bg));
}

.service-card[data-testid="service-status"]:hover .service-arrow {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.35);
}

/* Docs - Mov */
.service-card[data-testid="service-docs"] {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-docs"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(168, 85, 247, 0.35), transparent 55%);
  opacity: 0.25;
}

.service-card[data-testid="service-docs"]:hover::before {
  opacity: 0.7;
}

.service-card[data-testid="service-docs"]:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 20px 35px rgba(168, 85, 247, 0.2);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), var(--glass-bg));
}

.service-card[data-testid="service-docs"]:hover .service-arrow {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.35);
}

/* Signup - Alb/Neutru */
.service-card[data-testid="service-signup"] {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-signup"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.15) 55%);
  opacity: 0.25;
}

.service-card[data-testid="service-signup"]:hover::before {
  opacity: 0.6;
}

.service-card[data-testid="service-signup"]:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 35px rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), var(--glass-bg));
}

.service-card[data-testid="service-signup"]:hover .service-arrow {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .service-card[data-testid="service-signup"] {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), var(--glass-bg));
}

[data-theme="light"] .service-card[data-testid="service-signup"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 0, 0, 0.15), rgba(100, 100, 100, 0.1) 55%);
}

[data-theme="light"] .service-card[data-testid="service-signup"]:hover {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* Account Settings - Albastru închis */
.service-card[data-testid="service-account"] {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), var(--glass-bg));
}

.service-card[data-testid="service-account"]::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(37, 99, 235, 0.35), transparent 55%);
  opacity: 0.25;
}

.service-card[data-testid="service-account"]:hover::before {
  opacity: 0.7;
}

.service-card[data-testid="service-account"]:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), var(--glass-bg));
}

.service-card[data-testid="service-account"]:hover .service-arrow {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.5);
  color: #2563eb;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
}

/* Efect de tranziție lină pentru toate */
.service-card {
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  transition: opacity 0.3s ease-out;
}

.service-card .service-arrow {
  transition: all 0.3s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
}































.service-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--border-strong);
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.22);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}





/* ============ SERVICE ICON - CULORI PERSONALIZATE ============ */

/* Emby - Verde */
.service-card[data-testid="service-emby"] .service-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-emby"]:hover .service-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b98138;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.service-card[data-testid="service-emby"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

/* Seerr - Mov Lavandă */
.service-card[data-testid="service-seerr"] .service-icon {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-seerr"]:hover .service-icon {
  background: rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.service-card[data-testid="service-seerr"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

/* Status - Albastru */
.service-card[data-testid="service-status"] .service-icon {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-status"]:hover .service-icon {
  background: rgba(59, 130, 246, 0.3);
  border-color: #3b83f670;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.service-card[data-testid="service-status"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.5));
}

/* Docs - Mov */
.service-card[data-testid="service-docs"] .service-icon {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.15);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-docs"]:hover .service-icon {
  background: rgba(168, 85, 247, 0.3);
  border-color: #a955f779;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.service-card[data-testid="service-docs"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5));
}

/* Signup - Alb */
.service-card[data-testid="service-signup"] .service-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-signup"]:hover .service-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.411);
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.service-card[data-testid="service-signup"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

[data-theme="light"] .service-card[data-testid="service-signup"] .service-icon {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .service-card[data-testid="service-signup"]:hover .service-icon {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* Account Settings - Albastru închis */
.service-card[data-testid="service-account"] .service-icon {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease-out;
}

.service-card[data-testid="service-account"]:hover .service-icon {
  background: rgba(37, 99, 235, 0.3);
  border-color: #2563eb;
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.service-card[data-testid="service-account"]:hover .service-icon img {
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.5));
}

/* Stil de bază pentru toate iconițele */
.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: all 0.3s ease-out;
}







.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.08);
}

.service-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  line-height: 1.6;
}

/* Meta info (badges) - poziționat fix jos */
.service-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.chip22 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  animation: none;
  transform: none;
  transition: none;
}

.chip-live {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulseDot 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.chip-free {
  background: rgba(52, 211, 153, 0.15);
  color: var(--accent);
}

.chip-new {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
}

[data-theme="light"] .chip-new {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.1);
}

/* Săgeata */
.service-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--accent);
  transition: all var(--tr);
}

.service-card:hover .service-arrow {
  background: rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(8px);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Animație cascadă */
/* .service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s var(--ease-out) forwards;
} */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .service-arrow {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
  }
}







/* ============ EMBY SHOWCASE ============ */
.emby-showcase { position: relative; }
.emby-bg-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%; z-index: -1;
  background: radial-gradient(var(--emerald-500), transparent 60%);
  filter: blur(140px); opacity: .18; pointer-events: none;
}

.video-feature { margin-bottom: 64px; }
.video-frame {
  position: relative; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 6px var(--surface-2);
}
.video-thumb { position: absolute; inset: 0; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease, filter 1s ease; }
.video-thumb:hover img { transform: scale(1.05); filter: brightness(.7); }




/* Buton Play - Stil elegant Alb/Negru */
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 34px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-out;
  cursor: pointer;
  border: none;
  z-index: 10;
}

.play-btn i {
  margin-left: 4px;
  transition: all 0.3s ease-out;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.play-btn:hover i {
  transform: scale(1.05);
}

/* Animație puls subtilă */
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0), 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 4px 20px rgba(0, 0, 0, 0.2);
  }
}

.play-btn {
  animation: playPulse 2.2s ease-out infinite;
}

/* Light mode */
[data-theme="light"] .play-btn {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .play-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .play-btn {
  animation: playPulseLight 2.2s ease-out infinite;
}

@keyframes playPulseLight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0), 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}




.video-corner-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,.55);
  color: #fff; font-size: 11px; font-family: var(--font-mono);
  letter-spacing: .15em; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15);
}
#videoIframe { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
#videoIframe.active { display: block; }













/* ============ FEATURE GRID — PREMIUM REDESIGN ============ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
  padding: 8px;
}

.feature-card {
  position: relative;
  padding: 32px 24px;
  border-radius: 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  min-height: 240px;
}

/* ===== GRADIENT BACKGROUNDS PER CARD ===== */

.feature-card:nth-child(1) {
  background: linear-gradient(135deg, 
    rgba(239, 68, 68, 0.08) 0%,
    rgba(239, 68, 68, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(239, 68, 68, 0.15);
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(59, 130, 246, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(59, 130, 246, 0.15);
}

.feature-card:nth-child(3) {
  background: linear-gradient(135deg,
    rgba(168, 85, 247, 0.08) 0%,
    rgba(168, 85, 247, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(168, 85, 247, 0.15);
}

.feature-card:nth-child(4) {
  background: linear-gradient(135deg,
    rgba(236, 72, 153, 0.08) 0%,
    rgba(236, 72, 153, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(236, 72, 153, 0.15);
}

.feature-card:nth-child(5) {
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(16, 185, 129, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(16, 185, 129, 0.15);
}

.feature-card:nth-child(6) {
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.08) 0%,
    rgba(245, 158, 11, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(245, 158, 11, 0.15);
}

.feature-card:nth-child(7) {
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(139, 92, 246, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(139, 92, 246, 0.15);
}

.feature-card:nth-child(8) {
  background: linear-gradient(135deg,
    rgba(34, 197, 94, 0.08) 0%,
    rgba(34, 197, 94, 0.04) 50%,
    var(--glass-bg) 100%);
  border-color: rgba(34, 197, 94, 0.15);
}












/* ===== GLOW EFFECT — PER CARD COLOR (INTENSITATE CA ORIGINALUL) ===== */

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card 1 - Red (intensitate 0.28 - puțin peste original) */
.feature-card:nth-child(1)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 68, 68, 0.28),
    rgba(239, 68, 68, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(1):hover::before { opacity: 1; }

/* Card 2 - Blue */
.feature-card:nth-child(2)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(59, 130, 246, 0.28),
    rgba(59, 130, 246, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(2):hover::before { opacity: 1; }

/* Card 3 - Violet */
.feature-card:nth-child(3)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(168, 85, 247, 0.28),
    rgba(168, 85, 247, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(3):hover::before { opacity: 1; }

/* Card 4 - Pink */
.feature-card:nth-child(4)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(236, 72, 153, 0.28),
    rgba(236, 72, 153, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(4):hover::before { opacity: 1; }

/* Card 5 - Emerald (verdele original) */
.feature-card:nth-child(5)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(16, 185, 129, 0.28),
    rgba(16, 185, 129, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(5):hover::before { opacity: 1; }

/* Card 6 - Amber */
.feature-card:nth-child(6)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245, 158, 11, 0.28),
    rgba(245, 158, 11, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(6):hover::before { opacity: 1; }

/* Card 7 - Purple */
.feature-card:nth-child(7)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139, 92, 246, 0.28),
    rgba(139, 92, 246, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(7):hover::before { opacity: 1; }

/* Card 8 - Green */
.feature-card:nth-child(8)::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(34, 197, 94, 0.28),
    rgba(34, 197, 94, 0.04) 70%,
    transparent 100%);
}
.feature-card:nth-child(8):hover::before { opacity: 1; }










/* ===== ICON — MARE ȘI COLORAT ===== */

.feature-card i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 28px;
  transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  z-index: 1;
}

/* ===== ICON COLORS PER CARD ===== */

.feature-card:nth-child(1) i {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.feature-card:nth-child(2) i {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.feature-card:nth-child(3) i {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.feature-card:nth-child(4) i {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.feature-card:nth-child(5) i {
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.feature-card:nth-child(6) i {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.feature-card:nth-child(7) i {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.feature-card:nth-child(8) i {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

/* ===== ICON HOVER ===== */

.feature-card:hover i {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ===== TITLE — PROMINENT ===== */

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 6px 0 0 0;
}

.feature-card:hover h3 {
  color: var(--accent);
}

/* ===== STAT NUMBER (BIG BOLD) ===== */

.feature-card .stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.feature-card:nth-child(1) .stat-number { color: #ef4444; }
.feature-card:nth-child(2) .stat-number { color: #3b82f6; }
.feature-card:nth-child(3) .stat-number { color: #a855f7; }
.feature-card:nth-child(4) .stat-number { color: #ec4899; }
.feature-card:nth-child(5) .stat-number { color: #10b981; }
.feature-card:nth-child(6) .stat-number { color: #f59e0b; }
.feature-card:nth-child(7) .stat-number { color: #8b5cf6; }
.feature-card:nth-child(8) .stat-number { color: #22c55e; }

/* ===== DESCRIPTION ===== */

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  margin-top: -10px;
}

.feature-card:hover p {
  color: var(--text);
}

/* ===== HOVER STATE ===== */

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg,
    var(--glass-bg-strong) 0%,
    color-mix(in srgb, var(--accent) 8%, var(--glass-bg)) 100%);
}

/* Card 1 - Red border */
.feature-card:nth-child(1):hover {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.15);
}

/* Card 2 - Blue border */
.feature-card:nth-child(2):hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.15);
}

/* Card 3 - Violet border */
.feature-card:nth-child(3):hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 24px 60px rgba(168, 85, 247, 0.15);
}

/* Card 4 - Pink border */
.feature-card:nth-child(4):hover {
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.15);
}

/* Card 5 - Emerald border */
.feature-card:nth-child(5):hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.15);
}

/* Card 6 - Amber border */
.feature-card:nth-child(6):hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.15);
}

/* Card 7 - Purple border */
.feature-card:nth-child(7):hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.15);
}

/* Card 8 - Green border */
.feature-card:nth-child(8):hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 24px 60px rgba(34, 197, 94, 0.15);
}








/* ===== ANIMATION CASCADE ===== */

.feature-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.08s; }
.feature-card:nth-child(3) { animation-delay: 0.16s; }
.feature-card:nth-child(4) { animation-delay: 0.24s; }
.feature-card:nth-child(5) { animation-delay: 0.32s; }
.feature-card:nth-child(6) { animation-delay: 0.40s; }
.feature-card:nth-child(7) { animation-delay: 0.48s; }
.feature-card:nth-child(8) { animation-delay: 0.56s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LIGHT MODE ADJUSTMENTS ===== */







[data-theme="light"] .feature-card {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(245, 245, 245, 0.8) 100%);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .feature-card:nth-child(1) {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg,
    rgba(239, 68, 68, 0.06) 0%,
    rgba(239, 68, 68, 0.02) 50%,
    rgba(255, 245, 245, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(2) {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.06) 0%,
    rgba(59, 130, 246, 0.02) 50%,
    rgba(240, 248, 255, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(3) {
  border-color: rgba(168, 85, 247, 0.2);
  background: linear-gradient(135deg,
    rgba(168, 85, 247, 0.06) 0%,
    rgba(168, 85, 247, 0.02) 50%,
    rgba(250, 245, 255, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(4) {
  border-color: rgba(236, 72, 153, 0.2);
  background: linear-gradient(135deg,
    rgba(236, 72, 153, 0.06) 0%,
    rgba(236, 72, 153, 0.02) 50%,
    rgba(255, 245, 252, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(5) {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.06) 0%,
    rgba(16, 185, 129, 0.02) 50%,
    rgba(240, 253, 250, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(6) {
  border-color: rgba(245, 158, 11, 0.2);
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.06) 0%,
    rgba(245, 158, 11, 0.02) 50%,
    rgba(255, 250, 240, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(7) {
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.06) 0%,
    rgba(139, 92, 246, 0.02) 50%,
    rgba(245, 243, 255, 0.8) 100%);
}

[data-theme="light"] .feature-card:nth-child(8) {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg,
    rgba(34, 197, 94, 0.06) 0%,
    rgba(34, 197, 94, 0.02) 50%,
    rgba(245, 255, 250, 0.8) 100%);
}

[data-theme="light"] .feature-card:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Light mode - borderuri la hover (transparente, subtile) */
[data-theme="light"] .feature-card:nth-child(1):hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.1);
}

[data-theme="light"] .feature-card:nth-child(2):hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
}

[data-theme="light"] .feature-card:nth-child(3):hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.1);
}

[data-theme="light"] .feature-card:nth-child(4):hover {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.1);
}

[data-theme="light"] .feature-card:nth-child(5):hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

[data-theme="light"] .feature-card:nth-child(6):hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.1);
}

[data-theme="light"] .feature-card:nth-child(7):hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .feature-card:nth-child(8):hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.1);
}









/* ===== LIGHT MODE — MAI TARE ȘI AICI (0.22) ===== */

[data-theme="light"] .feature-card:nth-child(1)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(239, 68, 68, 0.22),
    rgba(239, 68, 68, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(2)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(59, 130, 246, 0.22),
    rgba(59, 130, 246, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(3)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(168, 85, 247, 0.22),
    rgba(168, 85, 247, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(4)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(236, 72, 153, 0.22),
    rgba(236, 72, 153, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(5)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(16, 185, 129, 0.22),
    rgba(16, 185, 129, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(6)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245, 158, 11, 0.22),
    rgba(245, 158, 11, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(7)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139, 92, 246, 0.22),
    rgba(139, 92, 246, 0.03) 70%,
    transparent 100%);
}

[data-theme="light"] .feature-card:nth-child(8)::before {
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(34, 197, 94, 0.22),
    rgba(34, 197, 94, 0.03) 70%,
    transparent 100%);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 6px;
  }

  .feature-card {
    padding: 28px 22px;
    min-height: 200px;
    gap: 12px;
  }

  .feature-card i {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card .stat-number {
    font-size: 32px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-card i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card .stat-number {
    font-size: 28px;
  }
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card i {
    animation: none !important;
    transition: none !important;
  }

  .feature-card {
    opacity: 1 !important;
    transform: none !important;
  }
}














/* ============ CTA CARD (PREMIUM v2) ============ */
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 64px 64px 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--emerald-500) 18%, transparent) 0%,
      color-mix(in srgb, var(--emerald-700) 14%, transparent) 35%,
      var(--glass-bg-strong) 70%,
      var(--glass-bg) 100%);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 100px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cta-card {
  /* box-shadow:
    0 30px 70px rgba(6, 78, 59, 0.14),
    0 0 100px rgba(16, 185, 129, 0.10),
    inset 0 1px 0 var(--glass-highlight); */
    border: 1px solid rgb(6 78 59 / 34%);
}

/* Subtle grain overlay */
.cta-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,.05), transparent 50%),
    radial-gradient(1px 1px at 75% 70%, rgba(255,255,255,.04), transparent 50%);
  background-size: 220px 220px;
  pointer-events: none;
  opacity: .6;
  z-index: 0;
}

/* Ambient floating glow */
.cta-card::before {
  content: '';
  position: absolute;
  right: -140px; top: -140px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald-400), transparent 65%);
  filter: blur(100px);
  opacity: .4;
  z-index: -1;
  animation: ctaGlowFloat 9s ease-in-out infinite;
}

@keyframes ctaGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .4; }
  50%      { transform: translate(-30px, 20px) scale(1.08); opacity: .55; }
}

/* Left content */
.cta-left { position: relative; z-index: 1; }

.cta-card h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  background: linear-gradient(120deg, var(--text) 25%, var(--accent-strong) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card > .cta-left > p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Feature list — pill-style */
.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  list-style: none;
  margin-bottom: 32px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--tr-fast);
}

/* .cta-features li:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(4px);
} */

.cta-features i {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-300), var(--emerald-600));
  color: #04231b;
  font-size: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16,185,129,.4);
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Primary — alb pe verde */
.cta-buttons .btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  box-shadow:
    0 10px 28px rgba(16, 185, 129, .45),
    inset 0 1px 0 rgba(255,255,255,.25);
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  box-shadow: 0 16px 40px rgba(16, 185, 129, .6);
}

.cta-buttons .btn-primary i { color: #ffffff; }

/* Documentation button */
.btn-docs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  transition: all var(--tr);
}

.btn-docs i {
  color: var(--accent);
  transition: transform var(--tr);
}

.btn-docs:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.btn-docs:hover i {
  transform: translateX(2px) rotate(-4deg);
}

/* ============ RIGHT VISUAL — clean, no thick border ============ */
.cta-right {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.cta-visual {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(110, 231, 183, .22), transparent 70%) !important;
  border: 0;
  box-shadow: none;
  animation: ctaVisualFloat 6s ease-in-out infinite;
}

@keyframes ctaVisualFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Soft inner halo (no harsh border) */
.cta-visual::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(16, 185, 129, .35), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

/* Subtle dashed orbit */
.cta-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(110, 231, 183, .25);
  animation: spin 30s linear infinite;
  pointer-events: none;
}

.cta-visual img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(16, 185, 129, .55));
}

/* ============ FLOATING BUBBLES — multi-color ============ */
.cta-bubble {
  position: absolute;
  z-index: 3;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -8px 16px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  animation: ctaBubbleFloat 5s ease-in-out infinite;
}

.cta-bubble img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

/* Bubble 1 — Emerald (Emby) */
.cta-bubble:nth-child(1) {
  top: -8px; right: -18px;
  animation-delay: 0s;
  background: linear-gradient(135deg, #34d399, #047857);
  box-shadow:
    0 14px 32px rgba(16, 185, 129, .55),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* Bubble 2 — Violet (Seerr / Requests) */
.cta-bubble-2 {
  bottom: 10px; left: -30px;
  width: 68px; height: 68px;
  font-size: 26px;
  animation-delay: -1.6s;
  background: linear-gradient(135deg, #a78bfa, #6d28d9);
  box-shadow:
    0 14px 32px rgba(139, 92, 246, .55),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* Bubble 3 — Blue (Status / Docs) */
.cta-bubble-3 {
  bottom: -18px; right: 20px;
  width: 60px; height: 60px;
  font-size: 22px;
  animation-delay: -3.2s;
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
  box-shadow:
    0 14px 32px rgba(59, 130, 246, .55),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

@keyframes ctaBubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(6deg); }
}

/* Responsive */
@media (max-width: 1100px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 40px;
  }
  .cta-right { min-height: 300px; }
  .cta-visual { width: 240px; height: 240px; }
}

@media (max-width: 640px) {
  .cta-card { padding: 36px 26px; gap: 32px; }
  .cta-features { grid-template-columns: 1fr; }
  .cta-visual { width: 210px; height: 210px; }
  .cta-bubble { width: 64px; height: 64px; font-size: 24px; }
  .cta-bubble-2 { width: 56px; height: 56px; font-size: 22px; }
  .cta-bubble-3 { width: 50px; height: 50px; font-size: 20px; }
}



























/* ============ TESTIMONIALS (NEW SLIDER) ============ */
.testimonials-wrap { position: relative; }
.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  transition: transform .4s var(--ease-out);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 var(--glass-highlight), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.testimonial-card:hover { transform: translateY(-6px); }
.rating { display: flex; gap: 3px; color: #fbbf24; font-size: 22px; }
.testimonial-text { flex: 1; color: var(--text); font-size: 15px; line-height: 1.65; font-style: italic; }
.testimonial-user {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.user-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--accent); flex-shrink: 0;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-name { font-weight: 600; font-size: 16px; color: var(--text); }
.user-role { font-size: 13px; color: var(--text-muted); }

.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 20px;
}
.t-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--text);
  transition: all .3s var(--ease-out);
  font-size: 14px;
}
.t-nav-btn:hover {
  background: var(--accent) !important;
  color: #04231b;
  transform: scale(1.08);
  border-color: var(--accent) !important;
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-strong);
  transition: all .3s; cursor: pointer;
  border: 0;
}
.t-dot.active { background: var(--accent); width: 26px; border-radius: 4px; }







/* ============================================================
   ✨ NEWS SECTION — premium, colored per-card, full-row featured
   ============================================================ */

.news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured = FULL ROW (toate 3 coloanele) */
.news .news-card.featured {
  grid-column: 1 / -1;
}

/* ============ COLOR TOKENS PER CARD ============ */
.news-card[data-color="blue"]   { --c-rgb: 59,130,246;  --c-hex: #3b82f6; --c-deep: #1d4ed8; }
.news-card[data-color="amber"]  { --c-rgb: 245,158,11;  --c-hex: #f59e0b; --c-deep: #b45309; }
.news-card[data-color="cyan"]   { --c-rgb: 6,182,212;   --c-hex: #06b6d4; --c-deep: #0e7490; }
.news-card[data-color="purple"] { --c-rgb: 168,85,247;  --c-hex: #a855f7; --c-deep: #7c3aed; }
.news-card[data-color="green"]  { --c-rgb: 16,185,129;  --c-hex: #10b981; --c-deep: #047857; }
.news-card[data-color="violet"] { --c-rgb: 139,92,246;  --c-hex: #8b5cf6; --c-deep: #6d28d9; }
.news-card[data-color="pink"]   { --c-rgb: 236,72,153;  --c-hex: #ec4899; --c-deep: #be185d; }

/* ============ BASE CARD ============ */
.news .news-card {
  position: relative;
  padding: 28px 28px 24px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg,
      rgba(var(--c-rgb), 0.14) 0%,
      rgba(var(--c-rgb), 0.06) 45%,
      var(--glass-bg) 100%) !important;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(var(--c-rgb), 0.30) !important;
  box-shadow:
    0 6px 20px rgba(var(--c-rgb), 0.10),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              box-shadow .4s ease,
              border-color .3s ease;
}

[data-theme="light"] .news .news-card {
  background:
    linear-gradient(135deg,
      rgba(var(--c-rgb), 0.10) 0%,
      rgba(var(--c-rgb), 0.04) 45%,
      rgba(255,255,255,0.85) 100%) !important;
}

/* Featured — și mai rotund */
.news .news-card.featured {
  border-radius: 36px;
}

/* Has-image — layout 2 coloane interne pe desktop */
.news .news-card.has-image {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  padding: 30px;
  align-items: stretch;
}

/* Top accent line */
.news .news-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-hex), transparent);
  opacity: .6;
  z-index: 1;
}

/* Glow follow cursor — MARE */
.news .news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1020px circle at var(--mx,50%) var(--my,0%),
    rgba(var(--c-rgb), 0.38),
    rgba(var(--c-rgb), 0.10) 35%,
    transparent 65%);
  opacity: 0;
  transition: opacity .45s ease;
  border-radius: inherit;
  pointer-events: none;
}

.news .news-card.featured::before {
  background: radial-gradient(1300px circle at var(--mx,50%) var(--my,0%),
    rgba(var(--c-rgb), 0.40),
    rgba(var(--c-rgb), 0.12) 35%,
    transparent 70%);
}

.news .news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--c-rgb), 0.55) !important;
  box-shadow:
    0 22px 48px rgba(var(--c-rgb), 0.25),
    0 4px 12px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.news .news-card:hover::before { opacity: 1; }

/* ============ MEDIA — image hover zoom (fără buton) ============ */
.news-card-media {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.news-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.9,.3,1.0),
              filter .5s ease;
}

/* Dark overlay subtil la hover */
.news-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 1;
}

.news-img-wrap:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.04);
}

.news-img-wrap:hover::after { opacity: 1; }

/* ============ HEAD — icon + category ============ */
.news .news-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

/* Icon — MARE, gradient color-aware */
.news .news-head .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-hex), var(--c-deep));
  color: #ffffff;
  border-radius: 20px;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow:
    0 8px 22px rgba(var(--c-rgb), 0.45),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform .4s cubic-bezier(.34,1.2,.64,1);
}

.news .news-card:hover .news-head .icon {
  transform: rotate(-7deg) scale(1.06);
}

/* ============ NEWS-TAG-HEAD — Inter, titlu de categorie ============ */
.news .news-tag-head {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  margin: 0;
  font-family: 'Sora', 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--c-hex);
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: 1.1;
  transition: color .3s ease, transform .3s ease;
}

[data-theme="light"] .news .news-tag-head { color: var(--c-deep); }

.news .news-card:hover .news-tag-head { transform: translateX(2px); }

/* ============ TITLE ============ */
.news .news-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 2px 0 0;
  transition: color .3s ease;
}

.news .news-card.featured h3 { font-size: 24px; }

.news .news-card:hover h3 { color: var(--c-hex); }
[data-theme="light"] .news .news-card:hover h3 { color: var(--c-deep); }

/* ============ DESCRIPTION ============ */
.news .news-card p {
  color: var(--text-muted);
  font-size: 13.8px;
  line-height: 1.6;
  margin: 0;
}

.news .news-card.featured p { font-size: 14.5px; }

/* ============ READ MORE LINK ============ */
.news .news-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-hex);
  width: fit-content;
  padding: 4px 0;
  position: relative;
  transition: color .3s ease, gap .3s ease;
}

[data-theme="light"] .news .news-link { color: var(--c-deep); }

.news .news-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 1px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-hex), var(--c-deep));
  border-radius: 2px;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}

.news .news-link:hover {
  gap: 10px;
  text-decoration: none !important;
}

.news .news-link:hover::after { width: calc(100% - 18px); }

/* ============ TAGS ============ */
.news .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.news .news-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  background: rgba(var(--c-rgb), 0.10);
  color: var(--c-hex);
  border: 1px solid rgba(var(--c-rgb), 0.28);
  transition: all .25s ease;
  cursor: default;
}

[data-theme="light"] .news .news-tags .tag { color: var(--c-deep); }

.news .news-tags .tag::before {
  content: '#';
  opacity: .6;
  margin-right: 2px;
  font-weight: 700;
}

.news .news-tags .tag:hover {
  background: var(--c-hex);
  color: #ffffff;
  border-color: var(--c-hex);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(var(--c-rgb), 0.40);
}

.news .news-tags .tag:hover::before { opacity: 1; color: #fff; }

/* ============ DATE ============ */
.news .news-date {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-hex);
  background: rgba(var(--c-rgb), 0.10);
  border: 1px solid rgba(var(--c-rgb), 0.28);
  border-radius: 999px;
  transition: all .3s ease;
  z-index: 2;
}

[data-theme="light"] .news .news-date { color: var(--c-deep); }

.news .news-date i {
  font-size: 12px;
  color: var(--c-hex);
}

[data-theme="light"] .news .news-date i { color: var(--c-deep); }

.news .news-card:hover .news-date {
  background: var(--c-hex);
  color: #ffffff;
  border-color: var(--c-hex);
  box-shadow: 0 6px 16px rgba(var(--c-rgb), 0.40);
}

.news .news-card:hover .news-date i { color: #ffffff; }

/* ============ RESPONSIVE ============ */

/* Tablet — 2 coloane, featured rămâne full row, imaginea dispare */
@media (max-width: 1100px) {
  .news .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news .news-card.featured { grid-column: 1 / -1; }

  .news .news-card.has-image {
    display: flex;
    flex-direction: column;
    padding: 26px;
  }
  .news .news-card.has-image .news-card-media { display: none; }
}

/* Mobile */
@media (max-width: 760px) {
  .news .news-grid { grid-template-columns: 1fr; gap: 16px; }
  .news .news-card,
  .news .news-card.featured {
    grid-column: 1 / -1;
    padding: 24px 22px;
    border-radius: 28px;
  }

  .news .news-card.featured h3 { font-size: 20px; }
  .news .news-card h3 { font-size: 17.5px; }
  .news .news-tag-head { font-size: 16px; }

  .news .news-head .icon {
    width: 50px;
    height: 50px;
    font-size: 19px;
    border-radius: 14px;
  }

  .news .news-date {
    top: 20px;
    right: 20px;
    padding: 6px 11px;
    font-size: 11px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .news .news-tag-head::before { animation: none !important; }
  .news .news-card,
  .news-img-wrap img { transition: none !important; }
}












/* ============ FAQ (premium animated) ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

/* Item — overrides .glass pentru rotunjire mare */
.faq-item.glass,
.faq-item {
  border-radius: 38px !important;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 var(--glass-highlight);
  transition:
    border-radius 520ms var(--ease-out),
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 420ms ease,
    transform 320ms ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.faq-item:has(.faq-summary[aria-expanded="true"]) {
  border-radius: 42px !important;
  border-color: var(--border-strong);
  background: var(--glass-bg-strong) !important;
  box-shadow:
    0 18px 50px rgba(16, 185, 129, .20),
    inset 0 1px 0 var(--glass-highlight);
  transform: none;
}

/* ===== Question (summary) ===== */
.faq-summary {
  width: 100%;
  min-height: 84px;
  padding: 10px 28px 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -.015em;
  transition: color var(--tr-fast);
}

.faq-summary > span:first-child {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 1px;
}

.faq-summary:hover { color: var(--accent); }

/* ===== Plus / X icon — mare, centrat ===== */
.faq-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
  transition:
    transform 520ms var(--ease-out),
    background-color 360ms ease,
    color 360ms ease,
    box-shadow 360ms ease;
}

.faq-icon i {
  display: block;
  line-height: 1;
  transition: transform 480ms var(--ease-out);
}

.faq-summary[aria-expanded="true"] .faq-icon {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  color: #ffffff;
  box-shadow:
    0 0 0 4px var(--accent-soft),
    0 6px 18px rgba(16, 185, 129, .45);
}

.faq-summary[aria-expanded="true"] .faq-icon i {
  transform: rotate(45deg);
}

/* ===== Body — fără spațiu gol când e închis ===== */
.faq-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 540ms var(--ease-out);
}

.faq-summary[aria-expanded="true"] + .faq-body-wrap {
  grid-template-rows: 1fr;
}

.faq-body-wrap > .faq-body {
  min-height: 0;
  overflow: hidden;
  padding: 0 32px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 380ms ease 80ms,
    transform 480ms var(--ease-out) 80ms,
    padding 480ms var(--ease-out);
}

.faq-summary[aria-expanded="true"] + .faq-body-wrap > .faq-body {
  opacity: 1;
  transform: none;
  padding: 12px 32px 26px;
  border-top: 1px dashed var(--border);
  margin-top: -14px;
}

.faq-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.faq-body a:hover {
  color: var(--accent-strong);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .faq-list { gap: 12px; }
  .faq-item.glass,
  .faq-item { border-radius: 28px !important; }
  .faq-item:has(.faq-summary[aria-expanded="true"]) { border-radius: 30px !important; }

  .faq-summary {
    min-height: 72px;
    padding: 18px 22px 18px 24px;
    font-size: 17.5px;
    gap: 14px;
  }

  .faq-icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .faq-body-wrap > .faq-body {
    padding: 0 24px;
    font-size: 14.5px;
  }

  .faq-summary[aria-expanded="true"] + .faq-body-wrap > .faq-body {
    padding: 10px 24px 20px;
  }
}
















/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
  width: 100%;
}

.contact-card {
  padding: 30px 28px;
  border-radius: 35px;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 40px rgba(16, 185, 129, .14);
}

/* ===== Header ===== */
.cc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.cc-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 21px;
  flex-shrink: 0;
}

.cc-ico.green {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  color: #04231b;
  border-color: transparent;
  box-shadow: 0 10px 28px -8px rgba(16, 185, 129, .55);
}

.cc-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  min-width: 0;
}

/* ===== Items list — dividers between rows ===== */
.contact-items {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color var(--tr-fast);
  min-width: 0;
}

.c-item:last-child {
  border-bottom: 0;
}

.c-item::before {
  content: '';
  position: absolute;
  inset: 4px -10px;
  background: var(--accent-soft);
  border-radius: 14px;
  opacity: 0;
  transition: opacity var(--tr-fast);
  z-index: 0;
}

.c-item:hover::before { opacity: 1; }

.c-item > * { position: relative; z-index: 1; }

.c-item > i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast);
}

.c-item:hover > i {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: scale(1.05);
}

.c-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.c-label {
  font-size: 10.5px;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
}

.c-value {
  font-size: 14px;
  font-weight: 500;
  color: #60a5fa;
  transition: color var(--tr-fast);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-theme="light"] .c-value { color: #2563eb; }

a.c-value:hover {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="light"] a.c-value:hover { color: #1d4ed8; }

.c-value-plain { color: var(--text) !important; }

/* ===== Copy / Open button ===== */
.c-copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .25s, transform .3s var(--ease-out),
              background-color .25s, color .25s, border-color .25s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.c-copy i { font-size: 11px; }

.c-item:hover .c-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.c-copy:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(16, 185, 129, .4);
}

.c-item.copied .c-copy {
  background: var(--emerald-500);
  color: #ffffff;
  border-color: var(--emerald-500);
  opacity: 1;
}

.c-item.copied .c-copy i::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ===== Toast ===== */
.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 24px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9500;
  opacity: 0;
  transition: opacity .35s, transform .45s var(--ease-out);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.copy-toast i { color: var(--accent); font-size: 16px; }

/* ============ SOCIAL STRIP ============ */
.social-strip {
  text-align: center;
  padding: 44px 38px;
  border-radius: 55px;
}

.social-strip h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 35px;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 8px;
}


.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-slow);
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 0 1px 0 var(--glass-highlight);
}

.social-icon::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}

.social-icon:hover {
  transform: translateY(-6px) rotate(-4deg) scale(1.08);
  box-shadow: 0 18px 40px rgba(16,185,129,.35), inset 0 1px 0 var(--glass-highlight);
  border-color: var(--accent);
}

.social-img {
  width: 45px; height: 45px;
  object-fit: contain;
  transition: transform var(--tr);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

.social-icon:hover .social-img { transform: scale(1.1); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-card { padding: 26px 22px; }
  .cc-head h3 { font-size: 21px; }
  .cc-ico { width: 50px; height: 50px; font-size: 19px; }
  .c-copy span { display: none; }
  .c-copy {
    padding: 8px;
    width: 32px; height: 32px;
    justify-content: center;
  }
}





















/* ============ NEWSLETTER ============ */
.newsletter-strip {
  margin: 60px auto;
  max-width: 1240px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-500));
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(16, 185, 129, .3);
  transition: all 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.newsletter-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 70%);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  pointer-events: none;
}

.newsletter-strip::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.247) 0%, rgba(0,0,0,0.05) 70%);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
  pointer-events: none;
}

/* HOVER EFFECTS - Premium */
/* .newsletter-strip:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 40px 80px rgba(16, 185, 129, 0.5);
} */

.newsletter-strip:hover::before {
  transform: translate(30px, -30px) scale(1.25) rotate(5deg);
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.08) 70%);
  right: -60px;
  top: -70px;
}

.newsletter-strip:hover::after {
  transform: translate(-40px, 40px) scale(1.35) rotate(-4deg);
  background: radial-gradient(circle, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.08) 70%);
  left: -80px;
  bottom: -100px;
}






.ns-inner {
  position: relative;
  z-index: 1;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.ns-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; /* mai îngroșat */
  color: #ffffff; /* alb */
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.ns-inner p {
  color: rgba(255, 255, 255, 0.9); /* alb */
  font-weight: 500; /* semi-îngroșat */
  font-size: 16px;
}

.ns-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.95);
  padding: 6px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.newsletter-strip:hover .ns-form {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.ns-form input {
  flex: 1;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  color: #04231b;
  outline: none;
}

.ns-form input::placeholder {
  color: rgba(4, 35, 27, 0.5);
}

.ns-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #04231b;
  color: #fff;
  font-weight: 700; /* îngroșat */
  transition: all 0.3s ease;
  cursor: pointer;
}

.ns-form button:hover {
  background: var(--emerald-900);
  transform: scale(1.02);
  gap: 12px;
}

.ns-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,.95);
  color: #04231b;
  font-weight: 600;
  border-radius: 999px;
  margin-top: 14px;
}

.ns-success i {
  color: var(--emerald-700);
  font-size: 22px;
}

/* Eroare */
.ns-error {
  color: #fef08a;
  font-size: 0.875rem;
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  width: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .ns-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .ns-form {
    flex-direction: column;
    background: transparent;
    gap: 12px;
  }
  
  .ns-form input {
    background: rgba(255,255,255,.95);
    width: 100%;
  }
  
  .ns-form button {
    justify-content: center;
  }
}















.loading-newslester1 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

















/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 0;
  margin-top: 40px;
  position: relative; /* necesar pentru pseudo-element */
  isolation: isolate; /* opțional, izolează stratul */
}

/* Stratul de background cu fade (doar el are mask-image) */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; /* pus în spatele conținutului */
  
  /* Background-ul tău original - va fi diferit în funcție de temă */
  background: rgba(16, 32, 26, 0.35);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  
  /* Fade doar pe background (tunsoare modernă) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 55%, black 100%);
}

/* Light mode - mai transparent și mai deschis */
[data-theme="light"] .footer::before {
  background: rgb(184 220 202 / 97%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

/* Tot conținutul footer-ului rămâne clar, fără fade */
.footer > * {
  position: relative;
  z-index: 1;
}






.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.f-col h5 {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
}
.f-col a { display: block; padding: 6px 0; color: var(--text-muted); font-size: 14px; transition: color var(--tr-fast); }
.f-col a:hover { color: var(--accent); }
.f-brand .f-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  margin-bottom: 14px;
}
.f-brand .f-logo img {
  width: 40px; height: 40px; border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
  padding: 4px;
}
.f-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.f-socials { display: flex; gap: 10px; margin-top: 18px; }
.f-socials a {
  width: 40px; height: 40px; padding: 0; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; transition: all var(--tr);
  color: var(--text);
}
.f-socials a:hover { background: var(--accent); color: #04231b; transform: translateY(-3px); }

.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom a { color: var(--accent); }


















/* ============ RESPONSIVE ============ */

/* ===== Tablete (1100px) ===== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: left;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card.featured { grid-column: span 2; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .testimonials-track { grid-auto-columns: calc((100% - 22px) / 2); }
}

/* ===== Telefon (760px) — fix complet ===== */
@media (max-width: 760px) {

  /* ===== NAVBAR — fix vizibilitate ===== */
  .navbar {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    max-width: none;
    padding: 8px 10px 8px 14px;
    border-radius: 999px;
  }
  .navbar.scrolled {
    width: auto;
    left: 10px;
    right: 10px;
    transform: none;
  }
  .nav-logo { font-size: 14px; gap: 8px; min-width: 0; flex: 1; overflow: hidden; }
  .nav-logo .logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
  .logo-mark img { width: 22px; height: 22px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-controls { gap: 6px; flex-shrink: 0; }
  .ctrl-btn { width: 36px; height: 36px; border-radius: 12px; }
  .lang-btn { padding: 0 9px; font-size: 11px; }

  /* ===== MOBILE SHEET (meniul hamburger) — fix dimensiune ===== */
  .mobile-sheet {
    width: calc(100% - 12px);
    max-width: 100%;
    max-height: 82vh;
    padding: 12px 16px 18px;
    border-radius: 28px 28px 0 0;
    bottom: -100%;
  }
  .mobile-sheet.open { bottom: 0; }
  .sheet-handle { width: 40px; height: 4px; margin-bottom: 10px; }
  .sheet-head {
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
  .sheet-title { font-size: 27px; gap: 10px; }
  .sheet-title img { width: 38px; height: 38px; }
  .sheet-close { width: 34px; height: 34px; font-size: 18px; }
  .sheet-links { gap: 5px; }
  .sheet-links a {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 14px;
    gap: 12px;
  }
  .sheet-links a > i:first-child {
    width: 32px; height: 32px;
    font-size: 13px;
    border-radius: 9px;
  }
  .sheet-footer {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 11px;
  }
  .sheet-socials a { width: 36px; height: 36px; font-size: 19px; }

  /* ===== HERO — IMAGINE PRIMA, TEXT APOI ===== */
  .hero {
    padding: 90px 16px 50px;
    min-height: auto;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: left;
  }
  .hero-visual {
    order: -1;        /* IMAGINEA prima */
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-text { order: 1; }

  /* Photo center fix — nu mai apare aliniat stânga */
  .portrait-ring {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .portrait-frame { width: 100%; height: 100%; }

  /* Chips mai apropiate pe mobil */
  .floating-chip,
  .chip {
    font-size: 11.5px !important;
    padding: 8px 12px !important;
    gap: 7px;
  }
  .floating-chip i, .chip i { font-size: 13px !important; }
  .chip-1, .chip[style*="left:-6%"] { top: 0% !important; left: -2% !important; }
  .chip-2, .chip[style*="right:-10%"] { top: 12% !important; right: -2% !important; }
  .chip-3, .chip[style*="left:-10%"] { bottom: 14% !important; left: -2% !important; }
  .chip-4, .chip[style*="right:-4%"] { bottom: 0% !important; right: 0% !important; }

  .hero-title { font-size: clamp(32px, 9vw, 46px); }
  .hero-stats {
    gap: 14px;
    padding: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .hstat b { font-size: 22px; }
  .hstat span { font-size: 11px; }

  .hero-cta { gap: 10px; }
  .btn { padding: 12px 18px; font-size: 14px; }

  /* ===== SECTIONS ===== */
  .section { padding: 70px 16px; }
  .section-head { margin-bottom: 40px; }

  /* ===== FEATURE GRID — UNA SUB ALTA ===== */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .feature-card { padding: 22px 20px; }

  /* ===== SERVICE GRID ===== */
  .service-grid { grid-template-columns: 1fr; }

  /* ===== CTA CARD — VISUAL PRIMA, TEXT APOI ===== */
  .cta-card {
    display: flex;
    flex-direction: column;
    padding: 32px 22px;
    gap: 28px;
  }
  .cta-right {
    order: -1;        /* visual-ul SUS */
    min-height: 240px;
    width: 100%;
  }
  .cta-left { order: 1; }
  .cta-visual { width: 200px; height: 200px; }
  .cta-bubble { width: 60px; height: 60px; font-size: 22px; }
  .cta-bubble-2 { width: 52px; height: 52px; font-size: 20px; }
  .cta-bubble-3 { width: 48px; height: 48px; font-size: 18px; }
  .cta-features { grid-template-columns: 1fr; }
  .cta-card h3 { font-size: clamp(26px, 7vw, 34px); }

  /* ===== NEWS ===== */
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .news-card { padding: 22px 20px; }

  /* ===== CONTACT ===== */
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-card { padding: 24px 20px; }
  .cc-head h3 { font-size: 21px; }
  .cc-ico { width: 50px; height: 50px; font-size: 19px; }
  .c-copy span { display: none; }
  .c-copy {
    padding: 8px;
    width: 32px; height: 32px;
    justify-content: center;
  }






















  /* ===== NEWSLETTER — mai îngust pe mobil ===== */
  .newsletter-strip {
    margin: 40px 16px;
    border-radius: 28px;
    max-width: calc(100% - 32px);
  }
  .ns-inner {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    gap: 20px;
  }
  .ns-inner h3 { font-size: clamp(22px, 6vw, 28px); }
  .ns-form {
    flex-direction: column;
    border-radius: 22px;
    padding: 6px;
    gap: 6px;
  }
  .ns-form input, .ns-form button {
    border-radius: 16px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ===== FOOTER ===== */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials-track { grid-auto-columns: 100%; }
  .testimonial-card { padding: 24px; }

  /* ===== SOCIAL ===== */
  .social-strip { padding: 32px 22px; border-radius: 28px; }
  .social-icon { width: 52px; height: 52px; border-radius: 14px; }
  .social-img { width: 30px; height: 30px; }

  /* ===== FAQ ===== */
  .faq-item.glass,
  .faq-item { border-radius: 26px !important; }
  .faq-item:has(.faq-summary[aria-expanded="true"]) { border-radius: 28px !important; }
  .faq-summary {
    min-height: 70px;
    padding: 16px 20px 16px 22px;
    font-size: 16px;
    gap: 12px;
  }
  .faq-icon { width: 40px; height: 40px; font-size: 14px; }
}

/* ===== Mobile mic (480px) ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 37px; }
  .hero-desc { font-size: 15px; }
  .section-title { font-size: clamp(28px, 8vw, 36px); }
  .hero-visual,
  .portrait-ring { max-width: 280px; }
  .cta-visual { width: 180px; height: 180px; }
  .cta-bubble { width: 52px; height: 52px; font-size: 19px; }
  .btn { font-size: 13.5px; padding: 11px 16px; }
}

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







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




.accent-green{
  background:linear-gradient(135deg,#6ee7b7,#10b981);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.btn-outline-green{
  background:transparent;color:#34d399; border:1px solid #34d399 ;
}
.btn-outline-green:hover{background:var(--green-glow-soft);transform:translateY(-2px)}









/* ============ FIX RESPONSIVE MOBILE — overflow & centrare ============ */

/* 1. Blochează overflow-ul orizontal la rădăcină */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  position: relative;
}

/* 2. Canvas-ul de particule NU mai trebuie să forțeze layout-ul */
.particle-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  pointer-events: none;
  z-index: 0;
}

/* 3. Cursor custom — ascuns complet pe touch / mobil (sub 900px) */
@media (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    transform: none !important;
  }
  body, body * { cursor: auto !important; }
}

/* 5. MOBILE — centrare totală a hero & layout */
@media (max-width: 760px) {

  /* Hero — flex column, totul centrat */
  .hero {
    padding: 90px 16px 50px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    gap: 36px !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  /* Imagine SUS, perfect centrată */
  .hero-visual {
    order: -1 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .portrait-ring {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  /* Stats — centrate și flexibile */
  .hero-stats {
    width: 100% !important;
    max-width: 100% !important;
    margin: 28px auto 0 !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: space-between !important;
  }

  /* Butoane CTA — full width pe mobil */
  .hero-cta {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  /* Chip-uri — restrânge poziționarea ca să nu iasă afară */
  .floating-chip {
    font-size: 11.5px !important;
    padding: 8px 12px !important;
  }
  .chip-1 { top: 0% !important; left: -2% !important; }
  .chip-2 { top: 12% !important; right: -2% !important; }
  .chip-3 { bottom: 14% !important; left: -2% !important; }
  .chip-4 { bottom: 0% !important; right: 0% !important; }

  /* Section padding redus + lățime corectă */
  .section {
    padding: 70px 16px !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
  }

  /* Newsletter — strânge marginile */
  .newsletter-strip {
    margin: 40px 16px !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
  }

  /* Footer — full width */
  .footer { padding-left: 16px !important; padding-right: 16px !important; }
}

/* 6. Telefoane mici — extra reducere */
@media (max-width: 480px) {
  .hero-visual,
  .portrait-ring { max-width: 280px !important; }

  .hero-stats {
    gap: 10px !important;
    padding: 14px !important;
  }
  .hstat b { font-size: 20px !important; }
  .hstat span { font-size: 10.5px !important; }
}
















/* ============ MOBILE LANG TOGGLE — DOAR STEAG ============ */
@media (max-width: 760px) {

  /* ASCUNDE complet textul RO / / / EN */
  .lang-btn .lang-current,
  .lang-btn .lang-divider,
  .lang-btn .lang-other,
  .lang-btn span {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
  }

  /* Butonul devine cerc cu steag */
  .lang-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    font-size: 0 !important;
  }

  /* STEAGUL — implicit RO */
  .lang-btn::before {
    content: '🇷🇴' !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
  }

  /* Când e EN — schimbă pe UK 
     (funcționează dacă JS pune lang="en" pe <html>) */
  html[lang="en"] .lang-btn::before {
    content: '🇬🇧' !important;
  }

  /* Hover / tap */
  .lang-btn:hover::before { transform: scale(1.15); }
  .lang-btn:active::before { transform: scale(0.85); }
}




@media (max-width: 760px) {
  .ctrl-btn.menu-btn {
    justify-content: center !important;
  }
}



/* Ascunde elementul doar pe ecrane mici (telefoane) */
@media (max-width: 768px) {
  .scroll-hint {
    display: none;
  }
}




/* Pe telefon (ecrane mai mici de 768px) */
@media (max-width: 768px) {
  .cta-visual img {
    width: 45%;  /* ajustează după nevoie: 40%, 50%, 60% etc. */
    height: 45%; /* ajustează după nevoie */
  }
}


























/* ==========================================================
   ✨ PREMIUM SUBTLE ANIMATIONS — Elegant Edition
   - Mișcări mici, blur delicat
   - Folosește @keyframes (nu transition) → NU strică hover-urile
   - Final state clean → backdrop-filter intact
   ========================================================== */

:root {
  --ease-rev: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.25, .8, .3, 1);
}

/* ============== KEYFRAMES — Subtile ============== */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeUpSm {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translate3d(-22px, 0, 0);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translate3d(22px, 0, 0);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes fadeZoomSoft {
  0% {
    opacity: 0;
    transform: scale(.94);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}


/* ==========================================================
   1) HERO — cascadă elegantă la load
   ========================================================== */

.hero .title-line,
.hero .title-name,
.hero .title-typed,
.hero-desc,
.hero-cta,
.hero-cta .btn,
.hero-stats,
.hero-visual .portrait-ring,
.hero .scroll-hint {
  opacity: 0;
  animation-fill-mode: both;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.hero .title-line  { animation: fadeUp .75s var(--ease-rev) .05s both; }
.hero .title-name  { animation: fadeUp .75s var(--ease-rev) .15s both; }
.hero .title-typed { animation: fadeUp .75s var(--ease-rev) .25s both; }
.hero-desc         { animation: fadeUp .75s var(--ease-rev) .35s both; }
.hero-cta          { animation: fadeUp .75s var(--ease-rev) .45s both; }

.hero-cta .btn:nth-child(1) { animation: fadeUpSm .65s var(--ease-rev) .50s both; }
.hero-cta .btn:nth-child(2) { animation: fadeUpSm .65s var(--ease-rev) .58s both; }
.hero-cta .btn:nth-child(3) { animation: fadeUpSm .65s var(--ease-rev) .66s both; }

.hero-stats { animation: fadeUp .75s var(--ease-rev) .72s both; }

.hero-visual .portrait-ring {
  animation: fadeZoomSoft .9s var(--ease-soft) .15s both;
}

.hero .scroll-hint {
  animation: fadeUp .9s var(--ease-rev) 1s both;
}

/* Hero — niciodată blocat de .reveal */
.hero .reveal,
.hero .reveal.in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none;
}


/* ==========================================================
   2) GLOBAL .reveal → .in
   ========================================================== */

.reveal { opacity: 0; }

.reveal.in {
  animation: fadeUp .7s var(--ease-rev) both;
}


/* ==========================================================
   3) CASCADĂ INTERNĂ — subtilă și elegantă
   ========================================================== */










/* ---- SERVICES ---- */
.service-grid .service-card.reveal { opacity: 0; }
.service-grid .service-card.reveal.in {
  animation: fadeUp .7s var(--ease-rev) both;
}
.service-grid .service-card.reveal.in:nth-child(1) { animation-delay: .00s; }
.service-grid .service-card.reveal.in:nth-child(2) { animation-delay: .08s; }
.service-grid .service-card.reveal.in:nth-child(3) { animation-delay: .16s; }
.service-grid .service-card.reveal.in:nth-child(4) { animation-delay: .24s; }
.service-grid .service-card.reveal.in:nth-child(5) { animation-delay: .32s; }
.service-grid .service-card.reveal.in:nth-child(6) { animation-delay: .40s; }




/* ---- EMBY FEATURE GRID ---- */
.feature-grid.reveal .feature-card { opacity: 0; }
.feature-grid.reveal.in .feature-card {
  animation: fadeUp .65s var(--ease-rev) both;
}
.feature-grid.reveal.in .feature-card:nth-child(1) { animation-delay: .00s; }
.feature-grid.reveal.in .feature-card:nth-child(2) { animation-delay: .06s; }
.feature-grid.reveal.in .feature-card:nth-child(3) { animation-delay: .12s; }
.feature-grid.reveal.in .feature-card:nth-child(4) { animation-delay: .18s; }
.feature-grid.reveal.in .feature-card:nth-child(5) { animation-delay: .24s; }
.feature-grid.reveal.in .feature-card:nth-child(6) { animation-delay: .30s; }
.feature-grid.reveal.in .feature-card:nth-child(7) { animation-delay: .36s; }
.feature-grid.reveal.in .feature-card:nth-child(8) { animation-delay: .42s; }











/* ---- CTA CARD ---- */
.cta-card.reveal .cta-left,
.cta-card.reveal .cta-right { opacity: 0; }

.cta-card.reveal.in .cta-left {
  animation: fadeLeft .8s var(--ease-rev) .05s both;
}
.cta-card.reveal.in .cta-right {
  animation: fadeScale .85s var(--ease-soft) .15s both;
}

/* CTA features */
.cta-card.reveal .cta-features li { opacity: 0; }
.cta-card.reveal.in .cta-features li {
  animation: fadeLeft .55s var(--ease-rev) both;
}
.cta-card.reveal.in .cta-features li:nth-child(1) { animation-delay: .25s; }
.cta-card.reveal.in .cta-features li:nth-child(2) { animation-delay: .32s; }
.cta-card.reveal.in .cta-features li:nth-child(3) { animation-delay: .39s; }
.cta-card.reveal.in .cta-features li:nth-child(4) { animation-delay: .46s; }
.cta-card.reveal.in .cta-features li:nth-child(5) { animation-delay: .53s; }
.cta-card.reveal.in .cta-features li:nth-child(6) { animation-delay: .60s; }

/* ---- TESTIMONIALS ---- */
.testimonials-wrap.reveal .testimonial-card { opacity: 0; }
.testimonials-wrap.reveal.in .testimonial-card {
  animation: fadeUp .7s var(--ease-rev) both;
}
.testimonials-wrap.reveal.in .testimonial-card:nth-child(1) { animation-delay: .05s; }
.testimonials-wrap.reveal.in .testimonial-card:nth-child(2) { animation-delay: .13s; }
.testimonials-wrap.reveal.in .testimonial-card:nth-child(3) { animation-delay: .21s; }
.testimonials-wrap.reveal.in .testimonial-card:nth-child(4) { animation-delay: .29s; }
.testimonials-wrap.reveal.in .testimonial-card:nth-child(5) { animation-delay: .37s; }

/* ---- NEWS ---- */
.news-grid .news-card.reveal { opacity: 0; }
.news-grid .news-card.reveal.in {
  animation: fadeUp .7s var(--ease-rev) both;
}
.news-grid .news-card.reveal.in:nth-child(1) { animation-delay: .00s; }
.news-grid .news-card.reveal.in:nth-child(2) { animation-delay: .08s; }
.news-grid .news-card.reveal.in:nth-child(3) { animation-delay: .16s; }
.news-grid .news-card.reveal.in:nth-child(4) { animation-delay: .24s; }
.news-grid .news-card.reveal.in:nth-child(5) { animation-delay: .32s; }
.news-grid .news-card.reveal.in:nth-child(6) { animation-delay: .40s; }
.news-grid .news-card.reveal.in:nth-child(7) { animation-delay: .48s; }
.news-grid .news-card.reveal.in:nth-child(8) { animation-delay: .56s; }

/* ---- FAQ ---- */
.faq-list.reveal .faq-item { opacity: 0; }
.faq-list.reveal.in .faq-item {
  animation: fadeUpSm .6s var(--ease-rev) both;
}
.faq-list.reveal.in .faq-item:nth-child(1) { animation-delay: .00s; }
.faq-list.reveal.in .faq-item:nth-child(2) { animation-delay: .06s; }
.faq-list.reveal.in .faq-item:nth-child(3) { animation-delay: .12s; }
.faq-list.reveal.in .faq-item:nth-child(4) { animation-delay: .18s; }
.faq-list.reveal.in .faq-item:nth-child(5) { animation-delay: .24s; }
.faq-list.reveal.in .faq-item:nth-child(6) { animation-delay: .30s; }
.faq-list.reveal.in .faq-item:nth-child(7) { animation-delay: .36s; }
.faq-list.reveal.in .faq-item:nth-child(8) { animation-delay: .42s; }

/* ---- CONTACT ---- */
.contact-grid .contact-card.reveal { opacity: 0; }
.contact-grid .contact-card.reveal.in {
  animation: fadeUp .7s var(--ease-rev) both;
}
.contact-grid .contact-card.reveal.in:nth-child(1) { animation-delay: .00s; }
.contact-grid .contact-card.reveal.in:nth-child(2) { animation-delay: .10s; }
.contact-grid .contact-card.reveal.in:nth-child(3) { animation-delay: .20s; }

/* Items din interiorul contact-card */
.contact-card.reveal .c-item { opacity: 0; }
.contact-card.reveal.in .c-item {
  animation: fadeLeft .55s var(--ease-rev) both;
}
.contact-card.reveal.in .c-item:nth-child(1) { animation-delay: .25s; }
.contact-card.reveal.in .c-item:nth-child(2) { animation-delay: .33s; }
.contact-card.reveal.in .c-item:nth-child(3) { animation-delay: .41s; }
.contact-card.reveal.in .c-item:nth-child(4) { animation-delay: .49s; }
.contact-card.reveal.in .c-item:nth-child(5) { animation-delay: .57s; }

/* ---- SOCIAL STRIP — scale subtil ---- */
.social-strip.reveal .social-icon { opacity: 0; }
.social-strip.reveal.in .social-icon {
  animation: fadeScale .55s var(--ease-soft) both;
}
.social-strip.reveal.in .social-icon:nth-child(1)  { animation-delay: .10s; }
.social-strip.reveal.in .social-icon:nth-child(2)  { animation-delay: .16s; }
.social-strip.reveal.in .social-icon:nth-child(3)  { animation-delay: .22s; }
.social-strip.reveal.in .social-icon:nth-child(4)  { animation-delay: .28s; }
.social-strip.reveal.in .social-icon:nth-child(5)  { animation-delay: .34s; }
.social-strip.reveal.in .social-icon:nth-child(6)  { animation-delay: .40s; }
.social-strip.reveal.in .social-icon:nth-child(7)  { animation-delay: .46s; }
.social-strip.reveal.in .social-icon:nth-child(8)  { animation-delay: .52s; }
.social-strip.reveal.in .social-icon:nth-child(9)  { animation-delay: .58s; }
.social-strip.reveal.in .social-icon:nth-child(10) { animation-delay: .64s; }

/* ---- NEWSLETTER STRIP ---- */
.newsletter-strip.reveal.in {
  animation: fadeUp .8s var(--ease-rev) both;
}

/* ---- FOOTER ---- */
.footer .footer-grid .f-col {
  opacity: 0;
  animation: fadeUp .7s var(--ease-rev) both;
}
.footer .footer-grid .f-col:nth-child(1) { animation-delay: .00s; }
.footer .footer-grid .f-col:nth-child(2) { animation-delay: .08s; }
.footer .footer-grid .f-col:nth-child(3) { animation-delay: .16s; }
.footer .footer-grid .f-col:nth-child(4) { animation-delay: .24s; }


/* ==========================================================
   4) SECTION HEADERS
   ========================================================== */
.section-head.reveal .section-title,
.section-head.reveal .section-sub,
.section-head.reveal .section-eyebrow { opacity: 0; }

.section-head.reveal.in .section-eyebrow {
  animation: fadeUpSm .55s var(--ease-rev) 0s both;
}
.section-head.reveal.in .section-title {
  display: inline-block;
  animation: fadeUp .75s var(--ease-rev) .1s both;
}
.section-head.reveal.in .section-sub {
  animation: fadeUpSm .65s var(--ease-rev) .22s both;
}


/* ==========================================================
   5) MOBILE — mai snappy, blur redus pentru performanță
   ========================================================== */
@media (max-width: 760px) {

  .hero .title-line  { animation-duration: .6s; animation-delay: .15s; }
  .hero .title-name  { animation-duration: .6s; animation-delay: .23s; }
  .hero .title-typed { animation-duration: .55s; animation-delay: .31s; }
  .hero-desc         { animation-duration: .55s; animation-delay: .39s; }
  .hero-cta          { animation-duration: .55s; animation-delay: .47s; }
  .hero-cta .btn:nth-child(1) { animation-delay: .52s; }
  .hero-cta .btn:nth-child(2) { animation-delay: .58s; }
  .hero-cta .btn:nth-child(3) { animation-delay: .64s; }
  .hero-stats        { animation-duration: .55s; animation-delay: .68s; }
  .hero-visual .portrait-ring { animation-duration: .75s; animation-delay: .05s; }
  .hero .scroll-hint { animation-delay: .85s; }

  .reveal.in { animation-duration: .55s; }

  .feature-grid.reveal.in .feature-card:nth-child(1) { animation-delay: .00s; }
  .feature-grid.reveal.in .feature-card:nth-child(2) { animation-delay: .05s; }
  .feature-grid.reveal.in .feature-card:nth-child(3) { animation-delay: .10s; }
  .feature-grid.reveal.in .feature-card:nth-child(4) { animation-delay: .15s; }
  .feature-grid.reveal.in .feature-card:nth-child(5) { animation-delay: .20s; }
  .feature-grid.reveal.in .feature-card:nth-child(6) { animation-delay: .25s; }
  .feature-grid.reveal.in .feature-card:nth-child(7) { animation-delay: .30s; }
  .feature-grid.reveal.in .feature-card:nth-child(8) { animation-delay: .35s; }
}


/* ==========================================================
   6) Reduced motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  .reveal,
  [class*="reveal"] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}



































/* ===== SERVICE CARDS - BORDER & SHADOW ANIMATIONS (CASCADE FIX) ===== */

/* Resetare tranziții generale pentru service cards */
.service-card {
  transition: transform 0.3s ease-out, box-shadow 0.4s ease-out, border-color 0.3s ease-out !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 var(--glass-highlight);
  border: 1px solid var(--glass-border);
}

/* Efect pentru hover */
.service-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25), inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.35s ease-out, border-color 0.25s ease-out !important;
}

/* Glow radial care urmărește mouse-ul (merge doar când cursorul e pe card) */
.service-card {
  position: relative;
  isolation: isolate;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease-out;
  border-radius: inherit;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0.7;
}

/* Asigură că efectele de cascade nu blochează tranzițiile hover */
.reveal.service-card {
  transition: transform 0.3s ease-out, box-shadow 0.4s ease-out, border-color 0.3s ease-out, opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Efect special pentru iconiță la hover */
.service-card:hover .service-icon {
  transform: rotate(-3deg) scale(1.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Săgeata la hover */
.service-card:hover .service-arrow {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease-out;
}












/* ===== NAVBAR GLOW EFFECT (same as service cards) ===== */

/* Poziționare relativă pentru efectul glow */
.navbar {
  position: fixed;
  isolation: isolate;
  overflow: visible !important;
}

/* Gradient radial care urmărește mouse-ul */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%),
              rgba(16, 185, 129, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease-out;
  border-radius: inherit;
  pointer-events: none;
}

/* Activează glow-ul la hover pe navbar */
.navbar:hover::before {
  opacity: 1;
}

/* Asigură că elementele din navbar sunt deasupra glow-ului */
.navbar > * {
  position: relative;
  z-index: 1;
}

/* Efect de hover mai pronunțat pentru navbar când e hover */
.navbar:hover {
  border-color: rgba(110, 231, 183, 0.4);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2),
              inset 0 1px 0 var(--glass-highlight);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efect separat pentru link-uri la hover (păstrează stilul original) */
.nav-link:hover {
  background: rgba(16, 185, 129, 0.12);
  transition: background 0.2s ease;
}



/* Forțează titlul news pe un singur rând */
.section#news .section-title,
.section.news .section-title {
  white-space: nowrap;
}

/* Responsive - pe mobil foarte mic, revine pe două rânduri dacă e nevoie */
@media (max-width: 480px) {
  .section#news .section-title,
  .section.news .section-title {
    white-space: normal;
    word-break: keep-all;
  }
}








/* ===== NEWS CARD WITH IMAGE ===== */

.news-card-with-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 28px !important;
}

.news-card-content {
  flex: 1.2;
}

.news-card-image {
  flex: 0.8;
}

.news-card-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-with-image:hover .news-card-image img {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
  border-color: var(--accent-soft);
}

/* Responsive - pe mobil, imaginea se pune dedesubt */
@media (max-width: 768px) {
  .news-card-with-image {
    flex-direction: column;
    padding: 22px !important;
  }
  
  .news-card-content {
    flex: auto;
  }
  
  .news-card-image {
    flex: auto;
    width: 100%;
    margin-top: 16px;
  }
  
  .news-card-image img {
    max-height: 200px;
    object-fit: cover;
  }
}

















.news-card-content .news-head {
  margin-bottom: 10px;
}

.news-card-content h3[data-i18n="news.n1.title"] {
  margin-bottom: 5px;
}




[data-theme="light"] .testimonial-card {
  box-shadow: 0 3px 10px rgb(0 0 0 / 31%), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}





/* ===== FIX TESTIMONIALS NAV - SHADOW & OVERFLOW ===== */

/* Container principal - elimină overflow-ul care taie shadow-ul */
.testimonials-wrap {
  overflow: visible !important;
  position: relative;
  padding-bottom: 20px;
}

/* Track-ul poate rămâne cu overflow hidden, dar nav-ul trebuie să fie vizibil */
.testimonials-track {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  margin-bottom: 10px;
}

/* Navigation container - shadow vizibil complet */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
  overflow: visible !important;
  padding: 10px 20px;
}

/* Butoanele nav - shadow vizibil */
.t-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  overflow: visible !important;
}

.t-nav-btn:hover {
  background: var(--accent);
  color: #04231b;
  transform: scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Dots container - curățat și fără duplicate */
.t-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow: visible !important;
}

/* Stil pentru fiecare dot */
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  overflow: visible !important;
  box-shadow: none;
}

/* Dot activ */
.t-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Hover pe dot */
.t-dot:hover {
  transform: scale(1.2);
  background: var(--accent-strong);
}














/* ===== HERO MOBILE - DOAR POZA MAI JOS ===== */

@media (max-width: 760px) {
  .hero-visual {
    margin-top: 0px !important;
  }
  
  .portrait-ring {
    margin-top: 40px !important;
  }
}






@media (max-width: 760px) {
  .hero-stats {
    border-radius: 25px !important;
  }
}




@media (max-width: 760px) {
  .social-strip h4 {
    font-size: 24px !important;
  }
}















/* Tranziții pentru toate elementele */
html,
body,
body::before,
.service-card,
.feature-card,
.news-card,
.footer,
.cta-card {
  transition: background-color 0.3s ease,
              background-image 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease !important;
}

























