/* ============================================================
   ABOUT ME · POPICA ADELIN — Premium Liquid Glass
   ============================================================ */

*, *::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;

  /* PREMIUM ROUNDED — 30-40px liquid glass */
  --r-xs: 14px;
  --r-sm: 20px;
  --r-md: 28px;
  --r-lg: 34px;
  --r-xl: 40px;
  --r-2xl: 48px;

  /* iPhone-style easing */
  --ease-iphone: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-rev:    cubic-bezier(0.16, 1, 0.3, 1);

  --tr-fast: 220ms var(--ease-iphone);
  --tr:      400ms var(--ease-iphone);
  --tr-slow: 700ms var(--ease-soft);
}

/* DARK theme */
[data-theme="dark"] {
  --bg: #07100c;
  --bg-2: #0a1612;
  --surface: rgba(20, 38, 31, 0.45);
  --surface-2: rgba(28, 52, 42, 0.55);
  --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);
  --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);
  --shadow-card: 0 12px 40px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.06) inset;
  --bg-img: url('https://cdn.adelin.org/public/pages-wp/www/amb-darkmode-v7-PH-REDUCE.png');
}

/* LIGHT theme */
[data-theme="light"] {
  --bg: #f6fbf8;
  --bg-2: #eef7f1;
  --surface: rgba(255, 255, 255, 0.55);
  --surface-2: rgba(244, 250, 246, 0.7);
  --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);
  --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);
  --shadow-card: 0 10px 30px rgba(6, 78, 59, .08), 0 1px 0 rgba(255,255,255,.7) inset;
  --bg-img: url('https://cdn.adelin.org/public/pages-wp/www/65f7a48a-3425-43a9-9c81-605a7cced051-v3.png');
}

/* ===== Body & Background ===== */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  position: relative;
  transition: background-color var(--tr), color var(--tr);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(var(--bg-zoom, 1));
  opacity: var(--bg-opacity, 1);
  transition: transform .03s linear, opacity .03s linear;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    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%);
}

::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 UTILITIES ============ */
.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.04);
  position: relative;
}
.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 56px rgba(0,0,0,0.32), 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-soft), 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; }
}

.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 ============ */
.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: width var(--tr), box-shadow var(--tr);
  isolation: isolate;
}
.navbar.scrolled {
  width: min(1100px, calc(100% - 32px));
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
}
.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,.25), transparent 70%);
  opacity: 0; transition: opacity .35s ease-out;
  border-radius: inherit; pointer-events: none;
}
.navbar:hover::before { opacity: 1; }

.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; }
.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.active { color: var(--accent); background: var(--accent-soft); }
.nav-link:hover::after, .nav-link.active::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; }





/* ============ BUTON MENIU (HAMBURGER) ============ */
.menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.menu-btn:hover {
  background: var(--accent-soft);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Stil pentru butonul deschis (când meniul e activ) */
.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ RESPONSIVE - TELEFON ============ */
@media (max-width: 760px) {
  .menu-btn {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    gap: 4px;
  }
  
  .menu-btn span {
    width: 18px;
    height: 2px;
  }
  
  /* Animatie pentru deschis pe mobil */
  .menu-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .menu-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


































/* ============ HERO ============ */
.about-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-inner {
  width: 100%; max-width: 1240px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 22px; }

/* Badge — neschimbat */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--accent-strong); width: fit-content;
  text-transform: uppercase;
}
.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); }
}

/* Titlu — doar „Despre mine", calm și mare */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800; line-height: 1; letter-spacing: -.035em;
  font-size: clamp(54px, 8vw, 76px);
  margin: 4px 0 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; } }

/* Descriere — neschimbată */
.hero-desc { font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.hero-desc b { color: var(--text); font-weight: 600; }

/* CTA — neschimbat */
.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 24px; 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:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(16, 185, 129, .5); }
.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-large { padding: 18px 32px; font-size: 16px; border-radius: 999px; }

/* Passion chips — neschimbate */
.passion-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.passion-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--text);
}
.passion-chip i { color: var(--accent); font-size: 14px; }

















/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1400px;
  aspect-ratio: 1;
}

.portrait-ring {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Inelele glow din jurul pozei */
.ring-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #6ee7b7, transparent 25%, #10b981 50%, transparent 75%, #6ee7b7);
  filter: blur(48px);
  opacity: 0.7;
  animation: ringSpin 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.ring-glow-2 {
  inset: -8px;
  filter: blur(24px);
  opacity: 0.55;
  animation: ringSpin 9s linear infinite reverse;
  background: conic-gradient(from 180deg, transparent, #34d399 30%, transparent 60%, #6ee7b7 90%, transparent);
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Cadrul pozei */
.portrait-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  animation: floatY 6s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: box-shadow 600ms ease;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 4px var(--glass-border, rgba(110, 231, 183, 0.22)), 0 0 60px rgba(16, 185, 129, 0.18);
}

@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(0.16, 1, 0.3, 1);
  filter: saturate(1.05) contrast(1.05);
}

/* Strălucirea peste poză la hover */
.portrait-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  background-size: 220% 220%;
  background-position: -110% -110%;
  transition: background-position 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 3;
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 90%, rgba(16, 185, 129, 0.18), transparent 60%);
  mix-blend-mode: soft-light;
  z-index: 2;
  opacity: 0.9;
}

/* Efecte hover */
.hero-visual:hover .portrait-shine {
  background-position: 110% 110%;
  opacity: 1;
}

.hero-visual:hover .portrait-frame {
  box-shadow: 0 50px 110px -20px rgba(0, 0, 0, 0.6), 0 0 0 4px var(--accent, #34d399), 0 0 100px rgba(16, 185, 129, 0.35);
}

/* Floating chips (etichetele care plutesc în jur) */
.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(16, 32, 26, 0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(110, 231, 183, 0.22);
  color: #e6f7ef;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: floatChip 6s ease-in-out infinite;
}

.floating-chip i {
  color: #34d399;
  font-size: 16px;
}

/* Pozițiile fiecărui chip */
.chip-1 {
  top: 4%;
  left: 0%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.chip-2 {
  top: 18%;
  right: -8%;
  animation-delay: -0.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 pentru mobil */
@media (max-width: 760px) {
  .hero-visual {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .portrait-ring {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .floating-chip {
    font-size: 11.5px;
    padding: 8px 12px;
  }
  
  .chip-1 {
    top: 0%;
    left: -2%;
  }
  
  .chip-2 {
    top: 12%;
    right: -2%;
  }
  
  .chip-3 {
    bottom: 14%;
    left: -2%;
  }
  
  .chip-4 {
    bottom: 0%;
    right: 0%;
  }
}








/* ============================================
   LIGHT MODE · HERO VISUAL
   ============================================ */

[data-theme="light"] .hero-visual {
  /* culori de bază ajustate implicit */
}

/* Inele glow - mai subtile pentru light mode */
[data-theme="light"] .ring-glow {
  background: conic-gradient(from 0deg, #10b981, transparent 25%, #059669 50%, transparent 75%, #10b981);
  opacity: 0.3;
  filter: blur(40px);
}

[data-theme="light"] .ring-glow-2 {
  background: conic-gradient(from 180deg, transparent, #34d399 30%, transparent 60%, #10b981 90%, transparent);
  opacity: 0.2;
  filter: blur(20px);
}

/* Cadrul pozei - umbre mai delicate */
[data-theme="light"] .portrait-frame {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 
              0 0 0 4px rgba(16, 185, 129, 0.25), 
              0 0 30px rgba(16, 185, 129, 0.08);
}

[data-theme="light"] .hero-visual:hover .portrait-frame {
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15), 
              0 0 0 4px #10b981, 
              0 0 50px rgba(16, 185, 129, 0.2);
}

/* Strălucirea peste poză - mai transparentă */
[data-theme="light"] .portrait-shine {
  background: linear-gradient(125deg, transparent 25%, rgba(255, 255, 255, 0.6) 50%, transparent 75%);
  opacity: 0.4;
}

[data-theme="light"] .portrait-overlay {
  background: radial-gradient(circle at 30% 25%, rgba(16, 185, 129, 0.08), transparent 55%),
              radial-gradient(circle at 70% 90%, rgba(6, 78, 59, 0.05), transparent 60%);
  opacity: 0.8;
}

/* Floating chips (etichetele plutitoare) - light mode */
[data-theme="light"] .floating-chip {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #0a1f17;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05), 
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .floating-chip i {
  color: #059669;
}

[data-theme="light"] .floating-chip:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.15);
  transform: translateY(-8px) rotate(1deg);
}

[data-theme="light"] .floating-chip:hover i {
  color: #047857;
  transform: scale(1.1);
}

/* Animațiile rămân aceleași, doar culorile ajustate */
/* Nu e nevoie să rescrii @keyframes, ele sunt deja definite */












/* Scroll hint — neschimbat */
.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); } }

/* ====== Cascade de intrare (păstrăm logica ta) ====== */
.about-hero .hero-badge   { opacity: 0; animation: fadeUp .8s var(--ease-iphone) .10s forwards; }
.about-hero .hero-title   { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .22s forwards; }
.about-hero .hero-desc    { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .42s forwards; }
.about-hero .hero-cta     { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .56s forwards; }
.about-hero .passion-chips{ opacity: 0; animation: fadeUp .85s var(--ease-iphone) .70s forwards; }
.about-hero .portrait     { opacity: 0; animation: fadeScale 1s var(--ease-soft) .25s forwards; }
.about-hero .scroll-hint  { opacity: 0; animation: fadeUp 1s var(--ease-iphone) 1.1s forwards; }

@keyframes fadeUp   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeScale{ from { opacity: 0; transform: scale(.96); }       to { opacity: 1; transform: scale(1); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: left; }
  .portrait { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .about-hero { padding: 100px 18px 70px; min-height: auto; }
  .hero-inner { display: flex; flex-direction: column; gap: 42px; }
  .hero-title { font-size: clamp(46px, 13vw, 64px); }
  .hero-desc  { font-size: 15.5px; }
  .portrait   { max-width: 320px; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
}

















/* ============ SECTIONS ============ */
.section {
  position: relative;
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 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 i { font-size: 12px; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 74px); letter-spacing: -.025em; line-height: 1.1;
  color: var(--text);
}
.section-sub { font-size: 17px; color: var(--text-dim); max-width: 580px; margin: 18px auto 0; line-height: 1.6; }

.accent-green { background: linear-gradient(135deg, #6ee7b7, #10b981); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent-cyan  { background: linear-gradient(135deg, #67e8f9, #06b6d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent-violet{ background: linear-gradient(135deg, #c4b5fd, #8b5cf6); -webkit-background-clip: text; background-clip: text; color: transparent; }













/* ============ PASSION SECTIONS ============ */
.passion-content { display: flex; flex-direction: column; gap: 32px; }
.passion-story {
  padding: 36px 38px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
}
.passion-story p { color: var(--text-muted); font-size: 16px; line-height: 1.75; }
.passion-story p b { color: var(--text); font-weight: 600; }

.photo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-card {
  padding: 28px 26px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--tr), border-color var(--tr);
}
.photo-card:hover { transform: translateY(-8px) scale(1.01); border-color: var(--border-strong); }
.photo-ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--c, var(--accent)) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 35%, transparent);
  color: var(--c, var(--accent));
  font-size: 24px;
}
.photo-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text); }
.photo-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

.passion-cta { display: flex; justify-content: center; }

/* ============ EDIT CARDS ============ */
.edit-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.edit-card {
  padding: 32px 30px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--tr), border-color var(--tr);
}
.edit-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.edit-head { display: flex; justify-content: space-between; align-items: center; }
.edit-ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), transparent);
  border: 1px solid rgba(139, 92, 246, .3);
  color: #c4b5fd;
  font-size: 20px;
}
.edit-tag {
  padding: 5px 12px; border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
}
.edit-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); }
.edit-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.passion-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cta-link {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  transition: transform var(--tr), border-color var(--tr), background var(--tr);
}
.cta-link:hover { transform: translateY(-4px) scale(1.02); border-color: var(--border-strong); background: var(--glass-bg-strong); }
.cta-link-ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--c, var(--accent)) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 40%, transparent);
  color: var(--c, var(--accent));
  font-size: 20px; flex-shrink: 0;
}
.cta-link-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.cta-link-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .15em; color: var(--text-dim); text-transform: uppercase; }
.cta-link-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); }
.cta-link-arrow { color: var(--text-dim); transition: transform var(--tr); font-size: 14px; }
.cta-link:hover .cta-link-arrow { transform: translate(4px, -4px); color: var(--accent); }

/* ============ SERVER BLOCK ============ */
.server-block { display: flex; flex-direction: column; gap: 32px; }
.server-intro {
  padding: 36px 38px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
}
.server-intro p { color: var(--text-muted); font-size: 16px; line-height: 1.75; }
.server-intro p b { color: var(--text); font-weight: 600; }

.block-subtitle {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--text); text-align: left; margin-bottom: 4px;
}

































/* ============ SRV CARDS (SERVERE & PROGRAMARE) - CULORI SUBTILE ============ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.srv-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  --mx: 50%;
  --my: 50%;
  cursor: default;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Glow-ul care urmărește cursorul - MAI SUBTIL */
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.srv-card:hover::before {
  opacity: 0.5;
}

/* Hover general */
.srv-card:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ===== 1. EMBY - MOV TRANSPARENT ===== */
.srv-card[data-testid="srv-emby"] {
  background: linear-gradient(135deg, 
    rgba(155, 89, 182, 0.12), 
    rgba(155, 89, 182, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(155, 89, 182, 0.25);
}

.srv-card[data-testid="srv-emby"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(155, 89, 182, 0.25), 
    rgba(155, 89, 182, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-emby"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-emby"]:hover {
  border: 2px solid rgba(155, 89, 182, 0.4);
  box-shadow: 0 15px 30px rgba(155, 89, 182, 0.15);
  background: linear-gradient(135deg, 
    rgba(155, 89, 182, 0.18), 
    rgba(155, 89, 182, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-emby"] .srv-ico { 
  background: rgba(155, 89, 182, 0.15);
  border: 2px solid rgba(155, 89, 182, 0.35);
}
.srv-card[data-testid="srv-emby"] .srv-ico i { color: #A855F7; font-size: 32px; }
.srv-card[data-testid="srv-emby"]:hover .srv-ico i { color: #C084FC; }
.srv-card[data-testid="srv-emby"]:hover h4 { color: #A855F7; }

/* ===== 2. SEERR - VERDE TRANSPARENT ===== */
.srv-card[data-testid="srv-seerr"] {
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.12), 
    rgba(16, 185, 129, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(16, 185, 129, 0.25);
}

.srv-card[data-testid="srv-seerr"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(16, 185, 129, 0.25), 
    rgba(16, 185, 129, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-seerr"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-seerr"]:hover {
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.18), 
    rgba(16, 185, 129, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-seerr"] .srv-ico { 
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.35);
}
.srv-card[data-testid="srv-seerr"] .srv-ico i { color: #2DD4BF; font-size: 32px; }
.srv-card[data-testid="srv-seerr"]:hover .srv-ico i { color: #5EEAD4; }
.srv-card[data-testid="srv-seerr"]:hover h4 { color: #2DD4BF; }

/* ===== 3. STOCARE - PORTOCALIU TRANSPARENT ===== */
.srv-card[data-testid="srv-storage"] {
  background: linear-gradient(135deg, 
    rgba(245, 158, 11, 0.12), 
    rgba(245, 158, 11, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(245, 158, 11, 0.25);
}

.srv-card[data-testid="srv-storage"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(245, 158, 11, 0.25), 
    rgba(245, 158, 11, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-storage"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-storage"]:hover {
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
  background: linear-gradient(135deg, 
    rgba(245, 158, 11, 0.18), 
    rgba(245, 158, 11, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-storage"] .srv-ico { 
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.35);
}
.srv-card[data-testid="srv-storage"] .srv-ico i { color: #FBBF24; font-size: 32px; }
.srv-card[data-testid="srv-storage"]:hover .srv-ico i { color: #FCD34D; }
.srv-card[data-testid="srv-storage"]:hover h4 { color: #FBBF24; }

/* ===== 4. VPN - ALBASTRU TRANSPARENT ===== */
.srv-card[data-testid="srv-vpn"] {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.12), 
    rgba(59, 130, 246, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(59, 130, 246, 0.25);
}

.srv-card[data-testid="srv-vpn"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(59, 130, 246, 0.25), 
    rgba(59, 130, 246, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-vpn"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-vpn"]:hover {
  border: 2px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.18), 
    rgba(59, 130, 246, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-vpn"] .srv-ico { 
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.35);
}
.srv-card[data-testid="srv-vpn"] .srv-ico i { color: #60A5FA; font-size: 32px; }
.srv-card[data-testid="srv-vpn"]:hover .srv-ico i { color: #93C5FD; }
.srv-card[data-testid="srv-vpn"]:hover h4 { color: #60A5FA; }

/* ===== 5. RDP - CYAN TRANSPARENT ===== */
.srv-card[data-testid="srv-rdp"] {
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.12), 
    rgba(6, 182, 212, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(6, 182, 212, 0.25);
}

.srv-card[data-testid="srv-rdp"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(6, 182, 212, 0.25), 
    rgba(6, 182, 212, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-rdp"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-rdp"]:hover {
  border: 2px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.15);
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.18), 
    rgba(6, 182, 212, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-rdp"] .srv-ico { 
  background: rgba(6, 182, 212, 0.15);
  border: 2px solid rgba(6, 182, 212, 0.35);
}
.srv-card[data-testid="srv-rdp"] .srv-ico i { color: #22D3EE; font-size: 32px; }
.srv-card[data-testid="srv-rdp"]:hover .srv-ico i { color: #67E8F9; }
.srv-card[data-testid="srv-rdp"]:hover h4 { color: #22D3EE; }

/* ===== 6. SSH - VERDE ÎNCHIS TRANSPARENT ===== */
.srv-card[data-testid="srv-ssh"] {
  background: linear-gradient(135deg, 
    rgba(5, 150, 105, 0.12), 
    rgba(5, 150, 105, 0.04),
    var(--glass-bg));
  border: 2px solid rgba(5, 150, 105, 0.25);
}

.srv-card[data-testid="srv-ssh"]::before {
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), 
    rgba(5, 150, 105, 0.25), 
    rgba(5, 150, 105, 0.05) 60%, 
    transparent 85%);
  opacity: 0;
}

.srv-card[data-testid="srv-ssh"]:hover::before {
  opacity: 0.4;
}

.srv-card[data-testid="srv-ssh"]:hover {
  border: 2px solid rgba(5, 150, 105, 0.4);
  box-shadow: 0 15px 30px rgba(5, 150, 105, 0.15);
  background: linear-gradient(135deg, 
    rgba(5, 150, 105, 0.18), 
    rgba(5, 150, 105, 0.06),
    var(--glass-bg));
}

.srv-card[data-testid="srv-ssh"] .srv-ico { 
  background: rgba(5, 150, 105, 0.15);
  border: 2px solid rgba(5, 150, 105, 0.35);
}
.srv-card[data-testid="srv-ssh"] .srv-ico i { color: #2DD4BF; font-size: 32px; }
.srv-card[data-testid="srv-ssh"]:hover .srv-ico i { color: #5EEAD4; }
.srv-card[data-testid="srv-ssh"]:hover h4 { color: #2DD4BF; }

/* ===== ELEMENTE GENERALE ===== */

/* Iconița */
.srv-ico {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 2px solid;
  font-size: 32px;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.srv-card:hover .srv-ico {
  transform: rotate(-5deg) scale(1.05);
}

/* Titlu */
.srv-card h4 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

/* Descriere */
.srv-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.srv-card:hover p {
  color: var(--text);
}

/* Link */
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.srv-link:hover {
  gap: 12px;
  color: var(--accent-strong);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .srv-card {
    padding: 24px;
  }
  
  .srv-ico {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }
}

























/* ============================================================
   STACK CONTAINER - CARD PREMIUM
   ============================================================ */

.stack-container {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 36px;
  padding: 28px 30px;
  margin-top: 24px;
  transition: border-color 0.3s ease, box-shadow 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stack-container:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.stack-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.stack-header i {
  font-size: 32px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 16px;
}

.stack-header span {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

/* Grid-ul pentru toate pill-urile */
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   STACK PILLS - CULORI PERSONALIZATE PER BRAND
   ============================================================ */

.stack-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  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: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  cursor: default;
  position: relative;
  isolation: isolate;
}

/* Glow pe hover */
.stack-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 50%),
              rgba(16, 185, 129, 0.3),
              transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.stack-pill:hover::before {
  opacity: 1;
}

.stack-pill:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
  background: var(--accent-soft);
}

/* ===== CULORI SPECIFICE PENTRU FIECARE BRAND (la hover) ===== */

/* React */
.stack-pill[data-brand="react"]:hover {
  border-color: #61DAFB;
  box-shadow: 0 8px 20px rgba(97, 218, 251, 0.3);
}
.stack-pill[data-brand="react"] i { color: #61DAFB; }

/* HTML5 */
.stack-pill[data-brand="html5"]:hover {
  border-color: #E34F26;
  box-shadow: 0 8px 20px rgba(227, 79, 38, 0.3);
}
.stack-pill[data-brand="html5"] i { color: #E34F26; }

/* CSS3 */
.stack-pill[data-brand="css3"]:hover {
  border-color: #1572B6;
  box-shadow: 0 8px 20px rgba(21, 114, 182, 0.3);
}
.stack-pill[data-brand="css3"] i { color: #1572B6; }

/* JavaScript */
.stack-pill[data-brand="javascript"]:hover {
  border-color: #F7DF1E;
  box-shadow: 0 8px 20px rgba(247, 223, 30, 0.3);
}
.stack-pill[data-brand="javascript"] i { color: #F7DF1E; }

/* Node.js */
.stack-pill[data-brand="nodejs"]:hover {
  border-color: #339933;
  box-shadow: 0 8px 20px rgba(51, 153, 51, 0.3);
}
.stack-pill[data-brand="nodejs"] i { color: #339933; }

/* Apache */
.stack-pill[data-brand="apache"]:hover {
  border-color: #D22128;
  box-shadow: 0 8px 20px rgba(210, 33, 40, 0.3);
}
.stack-pill[data-brand="apache"] i { color: #D22128; }

/* Python */
.stack-pill[data-brand="python"]:hover {
  border-color: #3776AB;
  box-shadow: 0 8px 20px rgba(55, 118, 171, 0.3);
}
.stack-pill[data-brand="python"] i { color: #3776AB; }

/* Cloudflare */
.stack-pill[data-brand="cloudflare"]:hover {
  border-color: #F38020;
  box-shadow: 0 8px 20px rgba(243, 128, 32, 0.3);
}
.stack-pill[data-brand="cloudflare"] i { color: #F38020; }

/* Tailscale */
.stack-pill[data-brand="tailscale"]:hover {
  border-color: #4E9FDF;
  box-shadow: 0 8px 20px rgba(78, 159, 223, 0.3);
}
.stack-pill[data-brand="tailscale"] i { color: #4E9FDF; }

/* SSH */
.stack-pill[data-brand="ssh"]:hover {
  border-color: #89E051;
  box-shadow: 0 8px 20px rgba(137, 224, 81, 0.3);
}
.stack-pill[data-brand="ssh"] i { color: #89E051; }

/* SSL/TLS */
.stack-pill[data-brand="ssl"]:hover {
  border-color: #00A859;
  box-shadow: 0 8px 20px rgba(0, 168, 89, 0.3);
}
.stack-pill[data-brand="ssl"] i { color: #00A859; }

/* Docker */
.stack-pill[data-brand="docker"]:hover {
  border-color: #1D63ED;
  box-shadow: 0 8px 20px rgba(29, 99, 237, 0.3);
}
.stack-pill[data-brand="docker"] i { color: #1D63ED; }

/* VMware */
.stack-pill[data-brand="vmware"]:hover {
  border-color: #607078;
  box-shadow: 0 8px 20px rgba(96, 112, 120, 0.3);
}
.stack-pill[data-brand="vmware"] i { color: #607078; }

/* Windows Server */
.stack-pill[data-brand="windows"]:hover {
  border-color: #0078D4;
  box-shadow: 0 8px 20px rgba(0, 120, 212, 0.3);
}
.stack-pill[data-brand="windows"] i { color: #0078D4; }

/* Ubuntu */
.stack-pill[data-brand="ubuntu"]:hover {
  border-color: #E95420;
  box-shadow: 0 8px 20px rgba(233, 84, 32, 0.3);
}
.stack-pill[data-brand="ubuntu"] i { color: #E95420; }

/* Termux */
.stack-pill[data-brand="termux"]:hover {
  border-color: #2A2A2A;
  box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3);
}
.stack-pill[data-brand="termux"] i { color: #2A2A2A; }

/* Git */
.stack-pill[data-brand="git"]:hover {
  border-color: #F05032;
  box-shadow: 0 8px 20px rgba(240, 80, 50, 0.3);
}
.stack-pill[data-brand="git"] i { color: #F05032; }

/* GitHub */
.stack-pill[data-brand="github"]:hover {
  border-color: #181717;
  box-shadow: 0 8px 20px rgba(24, 23, 23, 0.3);
}
.stack-pill[data-brand="github"] i { color: #181717; }

/* FFmpeg */
.stack-pill[data-brand="ffmpeg"]:hover {
  border-color: #FF0000;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}
.stack-pill[data-brand="ffmpeg"] i { color: #FF0000; }

/* Telegram */
.stack-pill[data-brand="telegram"]:hover {
  border-color: #26A5E4;
  box-shadow: 0 8px 20px rgba(38, 165, 228, 0.3);
}
.stack-pill[data-brand="telegram"] i { color: #26A5E4; }

/* ===== LIGHT MODE ajustări ===== */
[data-theme="light"] .stack-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stack-container:hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .stack-container {
    padding: 20px 18px;
    border-radius: 28px;
  }
  
  .stack-header i {
    font-size: 22px;
    padding: 8px;
  }
  
  .stack-header span {
    font-size: 18px;
  }
  
  .stack-pill {
    padding: 7px 14px;
    font-size: 12px;
    gap: 8px;
  }
  
  .stack-pill i {
    font-size: 13px;
  }
}



















/* ============ CONTAINER PENTRU UX EVOLUTION ============ */

.ux-evolution-wrapper {
  margin-top: 32px;
}

.ux-evolution-container {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  padding: 32px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ux-evolution-container:hover {
  border: 2px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

/* ============ UX EVOLUTION (CODUL TĂU EXISTENT) ============ */

.ux-evolution {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 0;
}

.ux-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ux-head p {
  color: var(--text-muted);
  font-size: 15px;
}

.ux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ux-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr);
}

.ux-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}

.ux-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-strong);
}

.ux-card:hover::before {
  opacity: 1;
}

.ux-card.featured {
  border-color: var(--border-strong);
}

.ux-card.current {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(16, 185, 129, .25);
}

.ux-year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--accent);
  font-weight: 700;
}

.ux-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.ux-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ux-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ux-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ux-evolution-container {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .ux-grid {
    grid-template-columns: 1fr;
  }
  
  .ux-evolution-container {
    padding: 22px 18px;
    border-radius: 28px;
  }
}












/* ============ TIMELINE ============ */
.timeline-section {
  padding: 100px 24px 120px;
}
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 5px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--border-strong) 8%, var(--border-strong) 92%, transparent);
  border-radius: 999px;
  z-index: 1;
}
.timeline-line-fill {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, var(--emerald-300), var(--emerald-500), var(--emerald-700));
  height: 0%;
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(16, 185, 129, .55);
  transition: height .15s linear;
}

.t-item {
  position: relative;
  width: 50%;
  padding: 24px 50px;
  z-index: 2;
}
.t-item.left  { left: 0; padding-right: 60px; padding-left: 24px; }
.t-item.right { left: 50%; padding-left: 60px; padding-right: 24px; }

.t-dot {
  position: absolute;
  top: 36px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
  display: grid; place-items: center;
  color: #04231b;
  font-size: 23px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .4), 0 0 0 6px var(--bg), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform var(--tr-slow) var(--ease-spring);
}
.t-item.left  .t-dot { right: -26px; }
.t-item.right .t-dot { left: -26px; }
.t-item.in .t-dot { animation: dotPop .7s var(--ease-spring) both; }
@keyframes dotPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.t-card {
  padding: 28px 30px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px rgba(16, 185, 129, .22);
}
.t-card.highlight { border-color: var(--border-strong); box-shadow: 0 12px 40px rgba(16, 185, 129, .25); }
.t-card.current { border-color: var(--accent); box-shadow: 0 16px 48px rgba(16, 185, 129, .35); }



/* ============ TIMELINE YEAR - VARIANTĂ PREMIUM ============ */

.t-year {
  display: inline-block;
  font-family: 'Sora', var(--font-display), system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px;
  padding: 5px 18px;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 4px;
}

/* Hover effect */
.t-card:hover .t-year {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.2);
}

/* Varianta highlight (upgrade major - aprilie 2026) */
.t-year.highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
  border-color: #10B981;
  color: #34D399;
  font-weight: 800;
}

/* Varianta current (prezent) */
.t-year.current {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #C084FC;
}

/* Light mode */
[data-theme="light"] .t-year {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
}

[data-theme="light"] .t-year.current {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.03));
  border-color: #8B5CF6;
  color: #7C3AED;
}





.t-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.25; }
.t-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.t-card p b { color: var(--text); font-weight: 600; }

.t-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.t-tag {
  padding: 5px 12px; border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em;
}

.t-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-top: 6px;
}
.t-link:hover { color: var(--accent-strong); }
.t-link i { font-size: 11px; }

/* ============ SETUP ============ */
.setup-section { padding-bottom: 80px; }
.setup-card {
  padding: 44px 44px;
  border-radius: var(--r-2xl);
  display: flex; flex-direction: column; gap: 28px;
  position: relative; overflow: hidden;
}
.setup-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.setup-header { display: flex; align-items: center; gap: 18px; }
.setup-ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-700));
  color: #04231b;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .35), inset 0 1px 0 rgba(255,255,255,.3);
}
.setup-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); }
.setup-header p { color: var(--text-dim); font-size: 13px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

.setup-specs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.spec-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--tr), border-color var(--tr);
}
.spec-pill:hover { transform: translateY(-4px) scale(1.02); border-color: var(--border-strong); }
.spec-pill i { color: var(--accent); font-size: 22px; flex-shrink: 0; }
.spec-pill > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.spec-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; color: var(--text-dim); text-transform: uppercase; }
.spec-value { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text); }

.setup-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border: 1px solid var(--border-strong);
  transition: all var(--tr);
}
.setup-cta:hover { background: linear-gradient(135deg, var(--accent-soft), var(--accent-soft)); transform: translateY(-3px); border-color: var(--accent); }
.setup-cta-text { display: flex; flex-direction: column; gap: 2px; }
.setup-cta-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; color: var(--accent); text-transform: uppercase; font-weight: 700; }
.setup-cta-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text); }
.setup-cta i { color: var(--accent); font-size: 22px; transition: transform var(--tr); }
.setup-cta:hover i { transform: translate(4px, -4px); }

/* ============ THANKS SECTION ============ */
.thanks-section {
  padding: 60px 24px 100px;
  max-width: 1100px;
}
.thanks-card {
  padding: 60px 40px;
  border-radius: var(--r-2xl);
  text-align: center;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.thanks-glow {
  position: absolute; top: -50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.thanks-card > * { position: relative; z-index: 1; }
.thanks-icon {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ee5a6f);
  color: #fff;
  font-size: 32px;
  box-shadow: 0 12px 40px rgba(238, 90, 111, .4), inset 0 1px 0 rgba(255,255,255,.2);
  animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.12); }
  40% { transform: scale(1); }
  60% { transform: scale(1.08); }
}
.thanks-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--text);
}
.thanks-text {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.7;
}

.thanks-links {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.thanks-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  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-weight: 600; font-size: 15px;
  transition: all var(--tr);
}
.thanks-btn i { color: var(--accent); font-size: 16px; transition: transform var(--tr); }
.thanks-btn:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--border-strong);
  background: var(--glass-bg-strong);
  box-shadow: 0 12px 32px rgba(16, 185, 129, .25);
}
.thanks-btn:hover i { transform: rotate(-8deg) scale(1.15); }
.thanks-btn.primary {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  color: #04231b;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(16, 185, 129, .35), inset 0 1px 0 rgba(255,255,255,.25);
}
.thanks-btn.primary i { color: #04231b; }
.thanks-btn.primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(16, 185, 129, .55); }

.thanks-socials {
  display: flex; gap: 12px;
  margin-top: 12px;
}
.thanks-socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  transition: all var(--tr);
}
.thanks-socials a:hover {
  background: var(--accent);
  color: #04231b;
  transform: translateY(-4px) scale(1.08);
  border-color: var(--accent);
}

.thanks-copy {
  color: var(--text-dim);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  margin-top: 12px;
}

/* ============ SCROLL TOP BUTTON ============ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  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: 18px;
  display: grid; place-items: center;
  z-index: 90;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.85);
  transition: all var(--tr-slow) var(--ease-iphone);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.scroll-top-btn.show {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  background: var(--accent);
  color: #04231b;
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.05);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity .9s var(--ease-iphone),
    transform .9s var(--ease-iphone),
    filter .9s var(--ease-iphone);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Hero entrance cascade */
.about-hero .hero-badge { opacity: 0; animation: fadeUp .8s var(--ease-iphone) .1s forwards; }
.about-hero .title-line { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .2s forwards; }
.about-hero .title-name { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .32s forwards; }
.about-hero .title-sub  { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .44s forwards; }
.about-hero .hero-desc  { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .56s forwards; }
.about-hero .hero-cta   { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .68s forwards; }
.about-hero .passion-chips { opacity: 0; animation: fadeUp .85s var(--ease-iphone) .8s forwards; }
.about-hero .hero-visual .portrait-ring { opacity: 0; animation: fadeScale 1s var(--ease-soft) .25s forwards; }
.about-hero .scroll-hint { opacity: 0; animation: fadeUp 1s var(--ease-iphone) 1.1s forwards; }

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fadeScale {
  0%   { opacity: 0; transform: scale(.92); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* Cascade for grids */
.intro-grid .reveal.in:nth-child(1) { transition-delay: 0s; }
.intro-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.intro-grid .reveal.in:nth-child(3) { transition-delay: .16s; }
.intro-grid .reveal.in:nth-child(4) { transition-delay: .24s; }

.photo-cards .reveal.in:nth-child(1) { transition-delay: 0s; }
.photo-cards .reveal.in:nth-child(2) { transition-delay: .1s; }
.photo-cards .reveal.in:nth-child(3) { transition-delay: .2s; }

.edit-cards .reveal.in:nth-child(1) { transition-delay: 0s; }
.edit-cards .reveal.in:nth-child(2) { transition-delay: .12s; }

.passion-cta-grid .reveal.in:nth-child(1) { transition-delay: 0s; }
.passion-cta-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.passion-cta-grid .reveal.in:nth-child(3) { transition-delay: .16s; }

.services-grid .reveal.in:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal.in:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal.in:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal.in:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal.in:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal.in:nth-child(6) { transition-delay: .3s; }

.stack-grid .reveal.in:nth-child(1) { transition-delay: 0s; }
.stack-grid .reveal.in:nth-child(2) { transition-delay: .04s; }
.stack-grid .reveal.in:nth-child(3) { transition-delay: .08s; }
.stack-grid .reveal.in:nth-child(4) { transition-delay: .12s; }
.stack-grid .reveal.in:nth-child(5) { transition-delay: .16s; }
.stack-grid .reveal.in:nth-child(6) { transition-delay: .2s; }
.stack-grid .reveal.in:nth-child(7) { transition-delay: .24s; }
.stack-grid .reveal.in:nth-child(8) { transition-delay: .28s; }

/* Timeline alternate slide-in */
.t-item.left  { transform: translateX(-40px) translateY(20px); }
.t-item.right { transform: translateX(40px) translateY(20px); }
.t-item.left.in,
.t-item.right.in { transform: translateX(0) translateY(0); }

/* ============ RESPONSIVE ============ */
@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%; }
  .photo-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ux-grid { grid-template-columns: repeat(2, 1fr); }
  .passion-cta-grid { grid-template-columns: repeat(2, 1fr); }
  .setup-specs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  /* NAV */
  .navbar {
    top: 10px; left: 10px; right: 10px;
    transform: none; width: auto; padding: 8px 10px 8px 14px;
  }
  .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 { width: 40px !important; height: 40px !important; padding: 0 !important; border-radius: 50% !important; display: grid !important; place-items: center !important; font-size: 0 !important; }
  .lang-btn .lang-current, .lang-btn .lang-divider, .lang-btn .lang-other { display: none !important; }
  .lang-btn::before { content: '🇷🇴' !important; font-size: 22px !important; line-height: 1 !important; display: block !important; transition: transform .3s ease; }
  html[lang="en"] .lang-btn::before { content: '🇬🇧' !important; }

  /* HERO */
  .about-hero { padding: 90px 16px 50px; min-height: auto; }
  .hero-inner { display: flex; flex-direction: column; gap: 40px; }
  .hero-visual { order: -1; max-width: 300px; margin: 0 auto; width: 100%; }
  .portrait-ring { width: 100% !important; max-width: 300px; margin: 0 auto; }
  .hero-text { width: 100%; text-align: left; }
  .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; }
  .hero-title { font-size: clamp(32px, 9vw, 46px); }
  .hero-cta { gap: 10px; width: 100%; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .btn-large { padding: 14px 24px; font-size: 14.5px; }
  .scroll-hint { display: none; }

  /* SECTIONS */
  .section { padding: 70px 16px; }
  .section-head { margin-bottom: 36px; }

  /* INTRO */
  .intro-grid { grid-template-columns: 1fr; gap: 14px; }
  .intro-card { padding: 26px 24px; border-radius: var(--r-lg); }

  /* PHOTO + EDIT */
  .photo-cards { grid-template-columns: 1fr; }
  .photo-card { padding: 24px 22px; border-radius: var(--r-lg); }
  .edit-cards { grid-template-columns: 1fr; }
  .edit-card { padding: 26px 24px; border-radius: var(--r-lg); }
  .passion-cta-grid { grid-template-columns: 1fr; }
  .cta-link { padding: 18px 20px; border-radius: var(--r-md); }
  .passion-story { padding: 28px 24px; border-radius: var(--r-lg); }

  /* SERVERS */
  .server-intro { padding: 28px 24px; border-radius: var(--r-lg); }
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { padding: 22px 20px; border-radius: var(--r-md); }
  .ux-grid { grid-template-columns: 1fr; }
  .ux-card { padding: 24px 22px; border-radius: var(--r-md); }

  /* TIMELINE — single column on mobile */
  .timeline-line { left: 24px; }
  .t-item, .t-item.left, .t-item.right {
    width: 100%; left: 0;
    padding: 16px 16px 16px 60px;
  }
  .t-item .t-dot { left: -4px !important; right: auto !important; width: 48px; height: 48px; font-size: 18px; }
  .t-card { padding: 22px 22px; border-radius: var(--r-lg); }
  .t-card h3 { font-size: 18px; }
  .t-card p { font-size: 14px; }
  .t-item.left, .t-item.right { transform: translateX(-30px) translateY(20px); }
  .t-item.left.in, .t-item.right.in { transform: translateX(0) translateY(0); }

  /* SETUP */
  .setup-card { padding: 28px 22px; border-radius: var(--r-xl); }
  .setup-specs { grid-template-columns: 1fr; gap: 10px; }
  .setup-cta { flex-direction: row; padding: 18px 20px; border-radius: var(--r-md); gap: 12px; }
  .setup-cta-title { font-size: 15px; }

  /* THANKS */
  .thanks-card { padding: 44px 22px; border-radius: var(--r-xl); }
  .thanks-icon { width: 64px; height: 64px; font-size: 26px; }
  .thanks-title { font-size: clamp(24px, 7vw, 32px); }
  .thanks-text { font-size: 15px; }
  .thanks-links { gap: 8px; }
  .thanks-btn { padding: 11px 18px; font-size: 13.5px; }
  .thanks-socials a { width: 40px; height: 40px; font-size: 16px; }

  /* SCROLL TOP */
  .scroll-top-btn { width: 44px; height: 44px; bottom: 16px; right: 16px; font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 15px; }
  .section-title { font-size: clamp(26px, 8vw, 34px); }
  .hero-visual, .portrait-ring { max-width: 260px; }
  .passion-chip { font-size: 12px; padding: 8px 14px; }
  .thanks-btn span { font-size: 13px; }
}

/* 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;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}










/* ============================================================
   INTRO CARDS - PREMIUM GLOW + HOVER EFFECT + SHADOW ANIMATION
   ============================================================ */

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.intro-card {
  position: relative;
  padding: 32px 30px;
  border-radius: var(--r-xl, 40px);
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  
  /* ===== TRANSITION COMPLETĂ ===== */
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.3s ease,
              box-shadow 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              background 0.3s ease;
  
  isolation: isolate;
  overflow: hidden;
  
  /* Shadow inițial */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 var(--glass-highlight);
}

/* Glow care urmărește cursorul */
.intro-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, rgba(16, 185, 129, 0.25)),
              transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  border-radius: inherit;
  pointer-events: none;
}

.intro-card:hover::before {
  opacity: 1;
}

/* ===== HOVER - SHADOW CREȘTE GRADUAL ===== */
.intro-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong, rgba(110, 231, 183, 0.5));
  
  /* Shadow-ul final - se va anima LIN datorită transition de mai sus */
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25),
              0 0 0 1px rgba(16, 185, 129, 0.1),
              inset 0 1px 0 var(--glass-highlight);
}

/* Iconița */
.intro-card:hover .intro-ico {
  transform: scale(1.05) rotate(-3deg);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.intro-ico {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm, 20px);
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  font-size: 22px;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              border-color 0.3s ease,
              background 0.3s ease;
}

/* Titlul */
.intro-card h3 {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.intro-card:hover h3 {
  color: var(--accent);
}

/* Textul */
.intro-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.intro-card:hover p {
  color: var(--text);
}

/* ===== ANIMAȚIE LA APARIȚIE ===== */
.intro-card.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-card.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.intro-grid .intro-card.reveal.in:nth-child(1) { transition-delay: 0s; }
.intro-grid .intro-card.reveal.in:nth-child(2) { transition-delay: 0.08s; }
.intro-grid .intro-card.reveal.in:nth-child(3) { transition-delay: 0.16s; }
.intro-grid .intro-card.reveal.in:nth-child(4) { transition-delay: 0.24s; }

/* ===== LIGHT MODE ===== */
[data-theme="light"] .intro-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .intro-card:hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2),
              0 0 0 1px rgba(16, 185, 129, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .intro-card {
    padding: 26px 24px;
    border-radius: 32px;
  }
  .intro-ico {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .intro-card h3 {
    font-size: 18px;
  }
  .intro-card p {
    font-size: 14px;
  }
}










/* ============ MOBILE BOTTOM SHEET ============ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  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 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 0;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.32), inset 0 1px 0 var(--glass-highlight);
}

.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: 27px;
  color: var(--text);
}

.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 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.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);
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.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 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.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 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.sheet-socials a:hover {
  background: var(--accent);
  color: #04231b;
  transform: translateY(-2px);
}







/* ============ RESPONSIVE TELEFON (max 760px) ============ */
@media (max-width: 760px) {

  .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: 24px;
    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-links a .arrow {
    font-size: 11px;
  }

  .sheet-footer {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 11px;
  }

  .sheet-socials a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}









/* ============================================================
   RESPONSIVE PENTRU TELEFON (max 760px)
   ============================================================ */

@media (max-width: 760px) {

  /* ===== NAVBAR ===== */
  .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;
  }

  /* ===== BUTON LANG (steag) ===== */
  .lang-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    font-size: 0 !important;
  }
  .lang-btn .lang-current,
  .lang-btn .lang-divider,
  .lang-btn .lang-other {
    display: none !important;
  }
  .lang-btn::before {
    content: '🇷🇴' !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: block !important;
  }
  html[lang="en"] .lang-btn::before {
    content: '🇬🇧' !important;
  }

  /* ===== BUTON MENIU ===== */
  .menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    gap: 4px;
  }
  .menu-btn span {
    width: 18px;
    height: 2px;
  }
  .menu-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* ===== HERO ===== */
  .about-hero {
    padding: 90px 16px 50px;
    min-height: auto;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
  .portrait-ring {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-text {
    width: 100%;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(32px, 9vw, 46px);
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-cta {
    gap: 10px;
    width: 100%;
  }
  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }
  .btn-large {
    padding: 14px 24px;
    font-size: 14.5px;
  }
  .hero-stats {
    gap: 14px;
    padding: 16px;
    flex-wrap: wrap;
    width: 100%;
  }
  .hstat b {
    font-size: 22px;
  }
  .hstat span {
    font-size: 11px;
  }
  .scroll-hint {
    display: none;
  }

  /* ===== FLOATING CHIPS ===== */
  .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;
  }

  /* ===== SECTIONS GENERALE ===== */
  .section {
    padding: 70px 16px;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .section-sub {
    font-size: 15px;
  }

  /* ===== INTRO CARDS ===== */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .intro-card {
    padding: 26px 24px;
    border-radius: 32px;
  }
  .intro-ico {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .intro-card h3 {
    font-size: 18px;
  }
  .intro-card p {
    font-size: 14px;
  }

  /* ===== PHOTO CARDS ===== */
  .photo-cards {
    grid-template-columns: 1fr;
  }
  .photo-card {
    padding: 24px 22px;
    border-radius: 28px;
  }

  /* ===== EDIT CARDS ===== */
  .edit-cards {
    grid-template-columns: 1fr;
  }
  .edit-card {
    padding: 26px 24px;
    border-radius: 28px;
  }

  /* ===== CTA LINKS GRID ===== */
  .passion-cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-link {
    padding: 18px 20px;
    border-radius: 24px;
  }

  /* ===== PASSION STORY ===== */
  .passion-story {
    padding: 28px 24px;
    border-radius: 28px;
  }

  /* ===== SERVER INTRO ===== */
  .server-intro {
    padding: 28px 24px;
    border-radius: 28px;
  }

  /* ===== SRV CARDS ===== */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .srv-card {
    padding: 24px;
    border-radius: 24px;
  }
  .srv-ico {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  /* ===== UX GRID ===== */
  .ux-grid {
    grid-template-columns: 1fr;
  }
  .ux-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  /* ===== STACK CONTAINER ===== */
  .stack-container {
    padding: 20px 18px;
    border-radius: 28px;
  }
  .stack-header i {
    font-size: 22px;
    padding: 8px;
  }
  .stack-header span {
    font-size: 18px;
  }
  .stack-pill {
    padding: 7px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .stack-pill i {
    font-size: 13px;
  }

  /* ===== UX EVOLUTION CONTAINER ===== */
  .ux-evolution-container {
    padding: 22px 18px;
    border-radius: 28px;
  }

  /* ===== TIMELINE ===== */
  .timeline-line {
    left: 24px;
  }
  .t-item,
  .t-item.left,
  .t-item.right {
    width: 100%;
    left: 0;
    padding: 16px 16px 16px 60px;
  }
  .t-item .t-dot {
    left: -4px !important;
    right: auto !important;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .t-card {
    padding: 22px;
    border-radius: 24px;
  }
  .t-card h3 {
    font-size: 18px;
  }
  .t-card p {
    font-size: 14px;
  }

  /* ===== SETUP ===== */
  .setup-card {
    padding: 28px 22px;
    border-radius: 32px;
  }
  .setup-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .setup-cta {
    flex-direction: row;
    padding: 18px 20px;
    border-radius: 24px;
    gap: 12px;
  }
  .setup-cta-title {
    font-size: 15px;
  }

  /* ===== THANKS SECTION ===== */
  .thanks-card {
    padding: 44px 22px;
    border-radius: 32px;
  }
  .thanks-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
  .thanks-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .thanks-text {
    font-size: 15px;
  }
  .thanks-links {
    gap: 8px;
  }
  .thanks-btn {
    padding: 11px 18px;
    font-size: 13.5px;
  }
  .thanks-socials a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* ===== FEATURE GRID ===== */
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .feature-card {
    padding: 22px 20px;
  }

  /* ===== SERVICE GRID ===== */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* ===== CTA CARD ===== */
  .cta-card {
    display: flex;
    flex-direction: column;
    padding: 32px 22px;
    gap: 28px;
  }
  .cta-right {
    order: -1;
    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 ===== */
  .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 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .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 STRIP ===== */
  .social-strip {
    padding: 32px 22px;
    border-radius: 28px;
  }
  .social-strip h4 {
    font-size: 24px !important;
  }
  .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-summary {
    min-height: 70px;
    padding: 16px 20px 16px 22px;
    font-size: 16px;
    gap: 12px;
  }
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  /* ===== SCROLL TOP BUTTON ===== */
  .scroll-top-btn {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
    font-size: 16px;
  }

  /* ===== HERO STATS BORDER ===== */
  .hero-stats {
    border-radius: 25px !important;
  }

  /* ===== CTA VISUAL IMG ===== */
  .cta-visual img {
    width: 45%;
    height: 45%;
  }
}

/* ============================================================
   RESPONSIVE PENTRU TELEFOANE MICI (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-visual,
  .portrait-ring {
    max-width: 260px;
  }
  .passion-chip {
    font-size: 12px;
    padding: 8px 14px;
  }
  .thanks-btn span {
    font-size: 13px;
  }
  .section-title {
    font-size: clamp(24px, 7vw, 30px);
  }
  .cta-visual {
    width: 160px;
    height: 160px;
  }
  .cta-bubble {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 14px;
  }
}

/* ============================================================
   RESPONSIVE PENTRU TABLETE (max 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);
  }
}




/* CÂND ESTE SUS DE TOT (fără scroll) - background închis */
.navbar:not(.scrolled) {
  background: rgba(0, 0, 0, 0.46) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(110, 231, 183, 0.2) !important;
}

/* LIGHT MODE - când e sus (închis) */
[data-theme="light"] .navbar:not(.scrolled) {
  background: rgb(255 255 255 / 55%) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(110, 231, 183, 0.25) !important;
}








/* ============ HIGHLIGHT ACTIVE SECTION ============ */
.section-highlight {
  animation: sectionGlow 0.6s ease-out 2;
  position: relative;
  border-radius: 60px;
}

@keyframes sectionGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    border-color: transparent;
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.329), inset 0 0 0 1px rgba(16, 185, 129, 0.3);
    border-color: var(--accent);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    border-color: transparent;
  }
}




.nav-links{ overflow: visible !important; }

.nav-links .nav-item.has-mega{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-links .nav-item.has-mega > .nav-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15.5px;
  letter-spacing: .01em;
  cursor: pointer;
}
.nav-links .nav-caret{
  font-size: 10px;
  opacity: .65;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s, color .25s;
}
.nav-links .nav-item.has-mega.is-open > .nav-link .nav-caret{
  transform: rotate(-180deg);
  opacity: 1;
  color: var(--accent-green, #22c55e);
}

/* ====== PANEL ======
   Va fi mutat în <body> de JS — folosim position: fixed.
   Folosim un wrapper de blur (mega-blur) ca să asigurăm blur real
   indiferent ce părinte are transform/filter. */
.mega-panel{
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, 14px) scale(.96);
  transform-origin: top center;
  width: 380px;
  padding: 18px;
  border-radius: 26px;

  /* Blur garantat: backdrop-filter pe element (panoul însuși) */
  background: radial-gradient(120% 80% at 0% 0%, rgba(34, 197, 94, .10), transparent 55%), radial-gradient(120% 80% at 100% 100%, rgba(16, 185, 129, .08), transparent 55%), rgb(11 13 16 / 60%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.65),
    0 10px 30px -10px rgba(34,197,94,.18),
    inset 0 1px 0 rgba(255,255,255,.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .28s ease,
    transform .42s cubic-bezier(.2,.8,.2,1),
    visibility .28s;
  z-index: 9999;
}
.mega-panel[data-cols="2"]{ width: 560px; }

/* Light theme */
html[data-theme="light"] .mega-panel{
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(34,197,94,.12), transparent 55%),
    radial-gradient(120% 80% at 100% 100%, rgba(16,185,129,.10), transparent 55%),
    rgba(255,255,255,.72);
  border-color: rgba(15,23,42,.08);
  box-shadow:
    0 30px 80px -20px rgba(15,23,42,.20),
    0 10px 30px -10px rgba(34,197,94,.18),
    inset 0 1px 0 rgba(255,255,255,.65);
}

/* Săgeată */
.mega-arrow{
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: inherit;
  border-left: 1px solid rgba(255,255,255,.10);
  border-top: 1px solid rgba(255,255,255,.10);
  border-top-left-radius: 4px;
}
html[data-theme="light"] .mega-arrow{
  border-color: rgba(15,23,42,.08);
}

/* OPEN state (controlat de JS) */
.mega-panel.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

/* ====== HEAD ====== */
.mega-head{
  padding: 4px 10px 14px;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  margin-bottom: 12px;
}
html[data-theme="light"] .mega-head{
  border-bottom-color: rgba(15,23,42,.10);
}
.mega-head h4{
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}
html[data-theme="light"] .mega-head h4{ color: #0b1220; }
.mega-head p{
  margin: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
}
html[data-theme="light"] .mega-head p{ color: rgba(15,23,42,.62); }

/* ====== GRID ====== */
.mega-grid{ display: grid; grid-template-columns: 1fr; gap: 4px; }
.mega-grid-2{ grid-template-columns: 1fr 1fr; gap: 6px; }

/* ====== ITEM ====== */
.mega-panel a{
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 23px;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .28s ease, color .25s ease;
}
html[data-theme="light"] .mega-panel a{ color: #0b1220; }

/* fade verde prin ::before (nu pe :hover direct -> tranziție în ambele sensuri) */
.mega-panel a::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(16,185,129,.06));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.mega-panel a:hover::before{ opacity: 1; }

/* entrance staggered, doar când panoul este deschis */
.mega-panel.is-open a{
  animation: megaIn .45s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes megaIn{ to{ transform: translateY(0); opacity: 1; } }

/* Icon — simplu, fără shadow verde */
.m-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--accent-green, #22c55e);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.22);
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
html[data-theme="light"] .m-ico{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.30);
}

/* la hover pe item -> iconița se "aprinde" cu verde, fără shadow */
.mega-panel a:hover .m-ico{
  background: rgba(34,197,94,.22);
  border-color: rgba(34,197,94,.45);
  color: #fff;
}

/* Text */
.m-text{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.m-text b{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.m-text em{
  font-style: normal;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html[data-theme="light"] .m-text em{ color: rgba(15,23,42,.58); }

/* Săgeată item */
.m-arrow{
  font-size: 15px;
  color: rgba(255,255,255,.30);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s, color .25s;
}
html[data-theme="light"] .m-arrow{ color: rgba(15,23,42,.30); }
.mega-panel a:hover .m-arrow{
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-green, #22c55e);
}

/* Mobile */
@media (max-width: 980px){
  .mega-panel{ display: none !important; }
  .nav-caret{ display: none; }
}



#cursorDot,
.cursor-dot,
#cursorRing,
.cursor-ring{
  z-index: 2147483647 !important;  /* max int */
  pointer-events: none !important;
}