/* =====================================================
   PARTY EVO-LAND — Design System v2
   Light / luminous theme · Futuristic animations
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ─ Palette ─ */
  --bg:        #F7F8FC;
  --bg2:       #FFFFFF;
  --surface:   #FFFFFF;
  --surface2:  rgba(255,255,255,0.85);
  --border:    rgba(120,80,255,0.12);
  --border2:   rgba(120,80,255,0.22);

  --violet:    #6C3EFF;
  --violet2:   #9B6DFF;
  --cyan:      #00C2E0;
  --cyan2:     #00E5FF;
  --pink:      #FF5AA0;

  --ink:       #0D0D1A;
  --ink2:      #2A2A45;
  --muted:     #6B7280;
  --muted2:    #9CA3AF;

  /* ─ Shadows ─ */
  --shadow-sm: 0 2px 12px rgba(108,62,255,0.08);
  --shadow-md: 0 8px 32px rgba(108,62,255,0.12);
  --shadow-lg: 0 20px 60px rgba(108,62,255,0.16);
  --shadow-glow: 0 0 40px rgba(108,62,255,0.25);

  /* ─ Layout ─ */
  --eu-h:    48px;
  --nav-h:   62px;
  --offset:  calc(var(--eu-h) + var(--nav-h));
  --radius:  16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  padding-top: var(--offset);
  overflow-x: hidden;
}

/* ════════════════════════════════
   EU COMPLIANCE BAR
════════════════════════════════ */
#eu-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: #fff;
  border-bottom: 1px solid #dce4f2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

#eu-bar .eu-logos {
  display: flex; align-items: center;
  gap: 5px; flex-shrink: 0; padding: 4px 8px;
}
#eu-bar .eu-logos img { height: 22px; width: auto; object-fit: contain; }

#eu-bar .eu-text {
  flex: 1; text-align: center; min-width: 0;
  font-size: 9.5px; color: #003399; font-weight: 500;
  line-height: 1.25; display: none;
  padding: 0 6px;
}

#eu-bar .eu-text-short {
  flex: 1; min-width: 0;
  font-size: 9.5px; color: #003399; font-weight: 500;
  line-height: 1.2; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
  padding: 0 4px;
}

#eu-bar .eu-link {
  font-size: 8px; color: #003399; text-decoration: none;
  text-align: right; flex-shrink: 0;
  line-height: 1.25; display: none;
  max-width: 130px; padding: 0 8px;
}
#eu-bar .eu-link:hover { text-decoration: underline; }

/* Mobile: bara compactă 32px, doar logo + text scurt */
@media (max-width: 767px) {
  :root { --eu-h: 32px; }
  #eu-bar .eu-logos img { height: 20px; }
  #eu-bar .eu-text-short { display: block; font-size: 9px; }
}

/* Desktop: bara 40px, tot conținutul vizibil */
@media (min-width: 768px) {
  :root { --eu-h: 40px; }
  #eu-bar .eu-logos img { height: 26px; }
  #eu-bar .eu-text { display: block; }
  #eu-bar .eu-link { display: block; }
  #eu-bar .eu-text-short { display: none; }
}

/* ════════════════════════════════
   EU POPUP
════════════════════════════════ */
#eu-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(13,13,26,0.55);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
#eu-popup-overlay.hidden { display: none; }

#eu-popup {
  background: #fff;
  color: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  max-width: 540px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.eu-popup-header {
  background: #003399;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.eu-popup-header .logo-patch {
  background: #fff; border-radius: 6px; padding: 4px 8px;
  display: flex; align-items: center; gap: 6px;
}
.eu-popup-header .logo-patch img { height: 28px; width: auto; object-fit: contain; }

.eu-popup-body { padding: 24px; }
.eu-popup-body h2 {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  color: #003399; margin-bottom: 12px;
}
.eu-popup-body p { font-size: 13.5px; line-height: 1.6; color: #444; margin-bottom: 16px; }

.eu-popup-info-block {
  border-left: 4px solid #003399;
  padding: 10px 14px; background: #f0f4ff;
  border-radius: 0 6px 6px 0; margin-bottom: 20px;
}
.eu-popup-info-block a {
  color: #003399; font-size: 13px; text-decoration: none; font-weight: 500;
}
.eu-popup-info-block a:hover { text-decoration: underline; }

.eu-popup-btn {
  display: block; width: 100%; padding: 13px;
  background: linear-gradient(135deg, #6C3EFF, #00C2E0);
  color: #fff; font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; border: none;
  border-radius: 8px; cursor: pointer; transition: opacity 0.2s;
}
.eu-popup-btn:hover { opacity: 0.9; }

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
nav {
  position: fixed;
  top: var(--eu-h); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
nav.scrolled { box-shadow: var(--shadow-md); }

/* Desktop links */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: width 0.3s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 20px !important;
  background: linear-gradient(135deg, var(--violet), var(--violet2)) !important;
  color: #fff !important; border-radius: 10px !important;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: box-shadow 0.25s !important;
  box-shadow: var(--shadow-sm) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: var(--shadow-glow) !important; }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  z-index: 1002;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}

/* ── MOBILE NAV ── */
@media (max-width: 860px) {
  nav { padding: 0 4%; }

  /* Show hamburger */
  .nav-toggle { display: flex; }

  /* Hide links by default, slide in when .open */
  .nav-links {
    position: fixed;
    top: var(--offset);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(108,62,255,0.1);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 1001;
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }

  /* Each menu item */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(108,62,255,0.07);
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 16px 5%;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    white-space: normal;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(108,62,255,0.04); }

  /* CTA in mobile menu */
  .nav-links .nav-cta {
    display: block !important;
    margin: 12px 5% 16px !important;
    padding: 13px 20px !important;
    text-align: center !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    background: linear-gradient(135deg, var(--violet), var(--violet2)) !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

@media (max-width: 400px) {
  :root { --nav-h: 56px; }
  .nav-logo-img img { height: 30px !important; }
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 6% 60px;
  background: var(--bg);
}

/* Animated mesh gradient background */
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(108,62,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,194,224,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(255,90,160,0.06) 0%, transparent 60%);
  animation: mesh-drift 12s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50%  { opacity: 1; }
  100% { opacity: 0.8; transform: scale(1.05) rotate(1deg); }
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,62,255,0.12), transparent 70%);
  top: -100px; left: -80px;
  animation: orb-float 9s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,194,224,0.1), transparent 70%);
  bottom: -60px; right: 5%;
  animation: orb-float 11s ease-in-out infinite reverse;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,90,160,0.08), transparent 70%);
  top: 40%; left: 60%;
  animation: orb-float 7s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -25px); }
  66%       { transform: translate(-20px, 20px); }
}

/* Geometric grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,62,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,62,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
}

.hero-content { position: relative; z-index: 2; max-width: 860px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--violet);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: badge-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.8) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 6px var(--violet);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7.5vw, 92px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 .line-1 { display: block; }

.hero h1 .gradient-word {
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 60%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: grad-shift 5s ease infinite;
}

@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero p {
  font-size: clamp(16px, 2vw, 19px); color: #1a1a2e; text-shadow: 0 1px 8px rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 560px; margin: 0 auto 44px;
  font-weight: 300;
}

.hero-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* scroll indicator */
.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
}
.scroll-track {
  width: 24px; height: 38px; border-radius: 12px;
  border: 1.5px solid var(--border2);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--violet);
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { top: 4px; opacity: 1; }
  80%  { top: 22px; opacity: 0.3; }
  100% { top: 4px; opacity: 1; }
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn-primary {
  display: inline-block; padding: 14px 34px;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  color: #fff; border-radius: 12px;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(108,62,255,0.3);
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(108,62,255,0.45); transform: translateY(-2px); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-block; padding: 14px 34px;
  border: 1.5px solid var(--border2);
  color: var(--violet); border-radius: 12px;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--violet);
  box-shadow: 0 8px 28px rgba(108,62,255,0.15);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   SECTION COMMON
════════════════════════════════ */
section { padding: 96px 6%; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--violet);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.8px; color: var(--ink);
  margin-bottom: 16px;
}

.grad-text {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  max-width: 560px; font-weight: 300;
}

/* ════════════════════════════════
   STATS STRIP
════════════════════════════════ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 6%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px; text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 58px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stat-lbl { color: var(--muted); font-size: 13px; margin-top: 6px; font-weight: 400; }

/* ════════════════════════════════
   SERVICE CARDS
════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 52px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.3s, border-color 0.3s;
}

/* Shimmer overlay on hover */
.svc-card::before {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 80%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: skewX(-20deg);
  opacity: 0; transition: opacity 0.1s;
  pointer-events: none;
}
.svc-card:hover::before {
  opacity: 1;
  animation: shimmer-slide 0.6s ease forwards;
}
@keyframes shimmer-slide {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* Glow border on hover */
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--violet), var(--cyan)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { opacity: 1; }

.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(108,62,255,0.12), rgba(0,194,224,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  border: 1px solid var(--border2);
  transition: transform 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-4deg); }

.svc-card h3 {
  font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
}
.svc-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.svc-tag {
  display: inline-block; margin-top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  color: var(--violet); background: rgba(108,62,255,0.08);
  padding: 4px 10px; border-radius: 100px;
}

/* ════════════════════════════════
   PRODUCT CARDS
════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px; margin-top: 52px;
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border2); }

.prod-img {
  width: 100%; height: 220px; overflow: hidden;
  position: relative; background: var(--bg);
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.prod-card:hover .prod-img img { transform: scale(1.08); }

/* Overlay gradient on image */
.prod-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%; pointer-events: none;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.prod-card:hover .prod-img::after { opacity: 1; }

.prod-badge {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.5px; padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; z-index: 1;
}

.prod-body { padding: 22px 20px; }
.prod-body h3 {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.prod-body p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* Wide product card (servicii page) */
.prod-card-wide {
  display: grid; grid-template-columns: 320px 1fr;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.3s, border-color 0.3s;
}
.prod-card-wide:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.prod-card-wide .prod-img { height: 100%; min-height: 230px; max-height: 270px; }
.prod-card-wide .prod-body { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }

@media (max-width: 768px) {
  .prod-card-wide { grid-template-columns: 1fr; }
  .prod-card-wide .prod-img { max-height: 220px; }
}

/* Spec chips */
.spec-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.spec-chip {
  background: rgba(108,62,255,0.07); border: 1px solid var(--border2);
  color: var(--ink2); font-size: 11px; padding: 4px 10px; border-radius: 100px;
}

/* Tarif box */
.tarif-box {
  background: linear-gradient(135deg, rgba(108,62,255,0.05), rgba(0,194,224,0.04));
  border: 1px solid var(--border2); border-radius: 12px;
  padding: 14px 18px; margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.tarif-box .t-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.tarif-box .t-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--violet); }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 6%;
}

.cta-section .mesh-cta {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(108,62,255,0.07) 0%, transparent 70%);
  animation: mesh-drift 10s ease-in-out infinite alternate;
}

.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-sub { margin: 0 auto 40px; }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.about-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-visual img { width: 100%; height: 480px; object-fit: cover; }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,62,255,0.12), rgba(0,194,224,0.06));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  pointer-events: none;
}

/* Floating badge on image */
.about-float-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.float-badge-icon { font-size: 28px; }
.float-badge-text strong { display: block; font-family: 'Syne',sans-serif; font-size: 16px; font-weight: 800; color: var(--ink); }
.float-badge-text span { font-size: 12px; color: var(--muted); }

.about-text p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 18px; font-weight: 300; }

.feature-list { margin-top: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.feat-dot {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
}
.feature-item p { margin: 0; font-size: 14px; color: var(--ink2); line-height: 1.5; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual img { height: 300px; }
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: start; margin-top: 52px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 36px 32px;
}

.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,62,255,0.1), rgba(0,194,224,0.08));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.ci-item h4 { font-family: 'Syne',sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ci-item a, .ci-item p { color: var(--muted); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.ci-item a:hover { color: var(--violet); }

/* Form */
.cf-form h3 { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.cf-form > p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 14px; color: var(--ink);
  font-family: 'Inter',sans-serif; font-size: 14px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted2); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--violet); box-shadow: 0 0 0 3px rgba(108,62,255,0.1);
}
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236B7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.fg textarea { resize: vertical; min-height: 110px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .fg-row { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-family: 'Syne',sans-serif; font-size: 15px; font-weight: 700; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--violet); }
.faq-q .faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--violet); font-weight: 300;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--violet); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ════════════════════════════════
   PACKAGES
════════════════════════════════ */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 40px;
}

.pkg-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.pkg-card.featured {
  border-color: var(--violet);
  background: linear-gradient(145deg, rgba(108,62,255,0.04), rgba(255,255,255,1));
}
.pkg-card.featured::before {
  content: 'Recomandat';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), var(--violet2));
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase;
}

.pkg-card h3 { font-family: 'Syne',sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.pkg-card .pk-desc { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 18px; }

.pk-list { list-style: none; margin-bottom: 22px; }
.pk-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink2); margin-bottom: 7px; }
.pk-list li::before { content: '✓'; color: var(--violet); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.pk-price .pk-val { font-family: 'Syne',sans-serif; font-size: 19px; font-weight: 800; color: var(--violet); display: block; margin-bottom: 2px; }
.pk-price .pk-note { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════
   DIGICO HIGHLIGHT
════════════════════════════════ */
.digi-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.digi-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,62,255,0.08), transparent 70%);
}

.digi-block h3 { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin: 10px 0 8px; }
.digi-block > p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 660px; margin-bottom: 24px; position: relative; }

.digi-specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px; position: relative;
}

.ds-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  transition: border-color 0.25s;
}
.ds-item:hover { border-color: var(--border2); }
.ds-item .dk { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.ds-item .dv { font-size: 13px; font-weight: 500; color: var(--ink2); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 6% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 36px;
}
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 12px; font-weight: 300; }
footer h4 { font-family: 'Syne',sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
footer ul li a:hover { color: var(--violet); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  color: var(--muted2); font-size: 12px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding: 40px 6% 48px; text-align: center;
  background: var(--bg); position: relative; overflow: hidden;
}
.page-hero .hero-mesh { position: absolute; inset: 0; }
.page-hero > * { position: relative; z-index: 1; }

/* ════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-left.visible, .reveal.from-right.visible { transform: translateX(0); }

.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* Cursor glow (desktop) */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 9990;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(108,62,255,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  display: none;
}
@media (hover: hover) { #cursor-glow { display: block; } }

/* ════════════════════════════════
   CATEGORY HEADER
════════════════════════════════ */
.cat-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cat-header-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,62,255,0.1), rgba(0,194,224,0.07));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.cat-header h2 { font-family: 'Syne',sans-serif; font-size: clamp(20px,3vw,26px); font-weight: 800; color: var(--ink); }
.cat-header p { color: var(--muted); font-size: 13px; margin-top: 2px; }

.cat-section { margin-bottom: 72px; }

/* ownership pill */
.own-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,194,224,0.08); border: 1px solid rgba(0,194,224,0.2);
  color: var(--cyan); font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px; margin-bottom: 10px;
}

/* Section divider */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* Social links */
.social-row { display: flex; gap: 10px; margin-top: 28px; }
.soc-link {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}
.soc-link:hover { border-color: var(--violet); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Map placeholder */
.map-ph {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); height: 200px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; margin-top: 24px;
  color: var(--muted); font-size: 14px;
}

/* Values grid (despre page) */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px; margin-top: 48px;
}
.val-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.val-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow-md); }
.val-card .vi { font-size: 30px; display: block; margin-bottom: 12px; }
.val-card h3 { font-family: 'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.val-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* Timeline */
.timeline { max-width: 680px; margin: 40px auto 0; padding-left: 28px; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--cyan), transparent);
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item::before {
  content: ''; position: absolute; left: -34px; top: 5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--violet); box-shadow: 0 0 0 3px rgba(108,62,255,0.15);
}
.tl-year { font-size: 10px; color: var(--cyan); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.tl-item h4 { font-family: 'Syne',sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.tl-item p { color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* Collab grid */
.collab-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px; margin-top: 36px;
}
.collab-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s;
}
.collab-item:hover { border-color: var(--border2); transform: translateY(-3px); }
.collab-item .ci2 { font-size: 26px; display: block; margin-bottom: 7px; }
.collab-item p { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* Mission quote block */
.mission-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 48px 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); margin: 72px 6%;
}
.mission-block::before {
  content: '\201C'; position: absolute;
  top: -24px; left: 32px;
  font-family: 'Syne',sans-serif; font-size: 180px; font-weight: 800;
  color: rgba(108,62,255,0.06); line-height: 1; pointer-events: none;
}
.mission-block p {
  font-family: 'Syne',sans-serif; font-size: clamp(18px,2.5vw,26px);
  font-weight: 600; line-height: 1.55; color: var(--ink); position: relative;
  max-width: 760px;
}
.mission-block .ms { margin-top: 18px; font-size: 13px; color: var(--muted); position: relative; font-family: 'Inter',sans-serif; }

@media (max-width: 768px) {
  .mission-block { padding: 32px 24px; margin: 48px 4%; }
}

/* Form success */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .fs-icon { font-size: 48px; margin-bottom: 14px; }
.form-success h3 { font-family: 'Syne',sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── LOGO IMAGE IN NAV ── */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Footer logo slightly larger */
.footer-brand .nav-logo-img img {
  height: 52px;
  max-width: 200px;
}

@media (max-width: 768px) {
  .nav-logo-img img { height: 36px; max-width: 150px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 58px; }
  .nav-logo-img img { height: 32px !important; max-width: 130px !important; }
  .nav-toggle span { width: 22px; }
}
