        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
  
/* ─── NEWSLETTER POPUP ─── */
.nl-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(4,5,14,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nl-backdrop.nl-open {
  display: flex;
  animation: nlFadeIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes nlFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nl-card {
  position: relative;
  background: #08090E;
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 24px;
  padding: 2.6rem 2.4rem 2.2rem;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(37,99,235,0.10), 0 0 60px rgba(37,99,235,0.08);
  animation: nlSlideUp 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
  overflow: hidden;
}
@keyframes nlSlideUp {
  from { transform: translateY(28px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

/* Glow accent top */
.nl-card::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 120px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.28) 0%, transparent 70%);
  pointer-events: none;
}

.nl-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}
.nl-close:hover { background: rgba(255,255,255,0.14); transform: scale(1.1); }

.nl-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #1A3FBF, #2563EB);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.nl-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 0.55rem;
}

.nl-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.nl-title span { color: #2563EB; }

.nl-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nl-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-input-wrap:focus-within {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.18);
}
.nl-input-wrap svg { flex-shrink: 0; opacity: 0.4; }
.nl-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 0.7rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
}
.nl-input-wrap input::placeholder { color: rgba(255,255,255,0.28); }

.nl-btn {
  background: linear-gradient(135deg, #1A3FBF, #2563EB);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.nl-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.45); }
.nl-btn:active { transform: translateY(0); }

.nl-gdpr {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
}

/* Stare succes */
.nl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
  gap: 0.75rem;
}
.nl-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #1A3FBF, #2563EB);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  animation: nlPop 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes nlPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.nl-success p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.nl-success strong { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: #fff; }

@media (max-width: 480px) {
  .nl-card { padding: 2rem 1.5rem 1.75rem; border-radius: 20px; }
  .nl-title { font-size: 1.35rem; }
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --navy: #04050A;
  --navy-mid: #09090F;
  --navy-card: #08090E;
  --grad-start: #2563EB;
  --grad-mid:   #1A3FBF;
  --grad-end:   #0F2380;
  --blue: #1A3FBF;
  --blue-bright: #2563EB;
  --blue-glow: #2563EB;
  --white: #FFFFFF;
  --white-dim: rgba(255,255,255,0.85);
  --muted: #93B8F0;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(37,99,235,0.35);
  --gradient: linear-gradient(135deg, #2563EB 0%, #1A3FBF 60%, #0F2380 100%);
  --gradient-hover: linear-gradient(135deg, #3B82F6 0%, #2563EB 60%, #1A3FBF 100%);
  --gradient-glow: 0 8px 28px rgba(37,99,235,0.40);
}

/* ===== DRACULA GRADIENT SYSTEM ===== */
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons use gradient */
.btn-primary,
.nav-cta,
.colab-btn,
.cnf-btn,
.submit-btn,
.pkg-btn.solid,
.contact-btn,
.contact-btn-solo,
.mob-btn-primary {
  background: #2563EB !important;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s !important;
  border: none !important;
}
.btn-primary:hover,
.nav-cta:hover,
.colab-btn:hover,
.cnf-btn:hover,
.submit-btn:hover,
.pkg-btn.solid:hover,
.contact-btn:hover,
.contact-btn-solo:hover,
.mob-btn-primary:hover {
  background: #3B82F6 !important;
  box-shadow: 0 10px 32px rgba(37,99,235,0.40) !important;
  transform: translateY(-2px) !important;
}

/* Custom pkg button */
.pkg-btn-custom {
  background: #2563EB !important;
  animation: none !important;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s !important;
}
.pkg-btn-custom:hover {
  background: #3B82F6 !important;
  box-shadow: 0 10px 32px rgba(37,99,235,0.42) !important;
  transform: translateY(-2px) !important;
}

/* Eyebrow dot pulse */
.eyebrow-dot {
  background: #2563EB !important;
}

/* Active pill gradient */
.cust-pill.active {
  background: linear-gradient(90deg, rgba(37,99,235,0.22), rgba(37,99,235,0.22)) !important;
  border-color: rgba(37,99,235,0.55) !important;
  color: #A0CCFF !important;
}

/* Featured pkg top line */
.pkg.featured::before {
  background: linear-gradient(90deg, transparent, #2563EB, transparent) !important;
}

/* Nav active link */
.nav-links a.active {
  color: #2563EB !important;
}

/* Orb 1 — gradient glow */
.orb-1 {
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, rgba(37,99,235,0.10) 60%, transparent 100%) !important;
}

/* Scrollbar thumb gradient */
.page::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563EB, #1A3FBF) !important;
}

/* Page label pill */
.page-label {
  background: linear-gradient(90deg, rgba(37,99,235,0.14), rgba(37,99,235,0.14)) !important;
  border-color: rgba(37,99,235,0.25) !important;
  color: #2563EB !important;
}

/* Feat icon */
.feat-icon {
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.2)) !important;
  border-color: rgba(37,99,235,0.4) !important;
}
.feat-icon svg { stroke: #2563EB !important; }

/* Serv icon */
.serv-icon {
  background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(37,99,235,0.16)) !important;
  border-color: rgba(37,99,235,0.2) !important;
}
.serv-icon svg { stroke: #2563EB !important; }

/* Process step icon */
.process-step-icon {
  background: linear-gradient(145deg, rgba(37,99,235,0.22), rgba(37,99,235,0.14)) !important;
  border-color: rgba(37,99,235,0.25) !important;
}
.process-step-icon svg { stroke: #2563EB !important; }

/* Serv tags */
.serv-tags span {
  background: linear-gradient(90deg, rgba(37,99,235,0.12), rgba(37,99,235,0.12)) !important;
  border-color: rgba(37,99,235,0.2) !important;
  color: #2563EB !important;
}

/* Video tag */
.video-tag { color: #2563EB !important; }

/* Stat number accent */
.stat-num span { color: #2563EB !important; }

/* Page h1 strong */
.page-h1 strong { color: #2563EB !important; }

/* Grid overlay tint (dezactivat) */
body::before {
  background-image: none !important;
}

/* Home eyebrow color */
.home-eyebrow { color: #2563EB !important; }

/* Home h1 em */
.home-h1 em { color: #2563EB !important; }

/* Contact email link */
.contact-email { color: #2563EB !important; border-color: rgba(37,99,235,0.25) !important; }

/* ig link */
.ig-link {
  background: linear-gradient(90deg, rgba(37,99,235,0.12), rgba(37,99,235,0.12)) !important;
  border-color: rgba(37,99,235,0.25) !important;
  color: #2563EB !important;
}

/* b-custom badge */
.b-custom { background: linear-gradient(90deg, rgba(37,99,235,0.2), rgba(37,99,235,0.18)) !important; color: #A0CCFF !important; border-color: rgba(37,99,235,0.4) !important; }
.b-default, .b-pop { background: linear-gradient(90deg, rgba(37,99,235,0.12), rgba(37,99,235,0.12)) !important; color: #2563EB !important; border-color: rgba(37,99,235,0.3) !important; }

/* pkg.custom glow border */
.pkg.custom { border-color: rgba(37,99,235,0.4) !important; }

/* ANDREI gradient text on hero */
.home-h1 .line2 {
  color: #2563EB !important;
  -webkit-text-stroke: 0 !important;
  display: block;
}

/* cust-count-btn */
.cust-count-btn { color: #2563EB !important; }
.cust-count-btn:hover { background: rgba(37,99,235,0.15) !important; }

/* Equip dot */
.equip-dot { background: #2563EB !important; }

/* pkg outline btn hover */
.pkg-btn.outline:hover { border-color: #2563EB !important; color: #2563EB !important; }

/* Focus states */
.colab-field input:focus,
.colab-field textarea:focus,
.colab-field select:focus,
.cnf-field input:focus,
.cnf-field textarea:focus,
.cnf-field select:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(37,99,235,0.55) !important;
  background: linear-gradient(90deg, rgba(37,99,235,0.03), rgba(37,99,235,0.03)) !important;
}


html, body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'DM Sans', sans-serif;
            background: var(--black);
  color: var(--white);
  cursor: none;
}

/* Cursor normal */
body {
  cursor: auto !important;
}

/* Mâna pe elementele interactive */
a,
button,
[onclick],
[role="button"],
.btn,
.button,
.card,
nav a,
.menu-item,
input,
select,
textarea {
  cursor: pointer !important;
}
/* NOISE OVERLAY */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.4;
}

/* GRID PATTERN (dezactivat) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ORB */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(37,99,235,0.15); top: -200px; right: -150px; animation: orbFloat1 16s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(37,99,235,0.12); bottom: -100px; left: -100px; animation: orbFloat2 20s ease-in-out infinite; }

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 50px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.1); }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,8,0.80);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  cursor: none;
}
.logo span { color: var(--blue-glow); }
.logo .subtext {
    font-size: 0.5em;       /* Va fi mai mic față de textul principal */
    font-weight: 400;       /* Mai subțire față de logo */
    letter-spacing: 0.1em;
    color: var(--white);
    margin-top: 2px;        /* Spațiu mic sub "USL MEDIA" */
    text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: color 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--blue-glow); }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 0.75rem 1.7rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.35); }


.nav-contact-secondary{
  background:transparent;
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white);
  margin-left:0.8rem;
}

.nav-contact-secondary:hover{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.2);
}

a.nav-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* PAGE SYSTEM */
.page-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.page {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 84px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(40px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.6s;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.page.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* TRANSITION OVERLAY */
.transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-panel {
  position: absolute;
  inset: 0;
  background: #08080C;
  transform: scaleY(0);
  transform-origin: bottom;
}
.t-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0;
  z-index: 1;
}
.t-logo span { color: var(--blue-glow); }

/* ===== HOME PAGE ===== */
#page-home {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.home-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.home-stats {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(37,99,235,0.08);
  border: 1px solid var(--border-blue);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
  align-self: center;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue-glow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.home-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s ease forwards;
}
.home-h1 .line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.home-h1 em {
  font-style: normal;
  color: var(--blue-glow);
  -webkit-text-stroke: 0;
}

.home-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
  text-align: center;
}

.home-btns {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s ease forwards;
  justify-content: center;
  align-items: center;
}
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,99,235,0.4); }
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 1rem 2.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }

.btn-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--blue-glow);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-link svg { width: 14px; height: 14px; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.btn-link:hover { gap: 0.55rem; }
.btn-link:hover svg { transform: translateX(2px); }

.home-stats {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
  justify-content: center;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--blue-glow); }
.stat-lbl { font-size: 0.78rem; color: var(--muted); font-weight: 300; margin-top: 2px; }

/* Floating badge */
.float-badge {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-card);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}
.float-badge-title { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.equip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: var(--white-dim);
  font-weight: 300;
}
.equip-item:last-child { margin-bottom: 0; }
.equip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-glow); flex-shrink: 0; }

.despre-photo-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.despre-photo-wrap {
  position: relative;
}

.despre-photo {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  object-position: top center;
  max-height: 380px;
  border: 1px solid var(--border);
}

.despre-text-col p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.despre-text-col p:last-child { margin-bottom: 0; }
.despre-text-col strong { color: var(--white); font-weight: 500; }

.despre-aside-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: #93B8F0;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: auto;
}
.ig-link:hover {
  background: rgba(37,99,235,0.22);
  border-color: rgba(37,99,235,0.45);
  color: #C0D8FF;
}

@media (max-width: 768px) {
  .despre-photo-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .despre-photo {
    max-height: 280px;
    width: 100%;
  }
  .despre-aside-inline {
    grid-template-columns: 1fr;
  }
  .page-footer {
    padding: 2.6rem 1.5rem 1.4rem !important;
    gap: 2rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
    text-align: center;
  }
  .footer-brand { max-width: 100% !important; }
  .footer-logo { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-links a:hover { transform: none; }
  .footer-socials { justify-content: center; }
  .footer-cta { max-width: 100% !important; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem !important;
  }
}

/* ===== DESPRE PAGE ===== */
.despre-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  flex: 1;
}
.page-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,114,245,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 2rem;
}
.page-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 3.5rem;
}
.page-h1 strong { color: var(--blue-glow); font-weight: 800; }

.despre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.despre-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.despre-text p:last-child { margin-bottom: 0; }
.despre-text strong { color: var(--white); font-weight: 500; }

.despre-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aside-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s;
}
.aside-card:hover { border-color: var(--border-blue); }
.aside-card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem; }
.aside-card-val { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }
.value-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--blue-glow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.value-desc { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* --- Despre: hero badge pe poză, lead paragraph --- */
.despre-photo-badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(4,5,10,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 0.4rem 0.8rem 0.4rem 0.5rem;
  font-size: 0.76rem;
  color: var(--white);
}
.despre-photo-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 8px #34d399; flex-shrink: 0; }
.despre-lead {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
}
.despre-lead strong { color: var(--blue-glow); font-weight: 700; }

/* --- Despre: traseul (journey) --- */
.journey-section { margin-bottom: 3rem; }
.journey-title-main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.journey-wrap { position: relative; }
.journey-line {
  position: absolute;
  top: 22px; left: 22px; right: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0.35), rgba(255,255,255,0.1) 50%, rgba(37,99,235,0.35));
}
.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.journey-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 1px solid rgba(37,99,235,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.journey-node svg { width: 19px; height: 19px; stroke: var(--blue-glow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.journey-when {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-glow); margin-bottom: 0.4rem;
}
.journey-step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
.journey-desc { font-size: 0.84rem; line-height: 1.6; color: var(--muted); }

/* --- Despre: CTA de final --- */
.despre-cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(37,99,235,0.03));
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  margin-top: 3rem;
}
.despre-cta-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white); margin-bottom: 0.3rem; }
.despre-cta-desc { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 768px) {
  .journey-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .journey-line { display: none; }
  .despre-cta-strip { flex-direction: column; align-items: flex-start; }
}

.cert-section { margin-top: 3rem; }
.cert-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.75rem;
  align-items: center;
  transition: border-color 0.3s;
}
.cert-card:hover { border-color: var(--border-blue); }
.cert-img { width: 100%; border-radius: 12px; display: block; border: 1px solid var(--border); }
.cert-title { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.cert-issuer { font-size: 0.78rem; color: var(--blue-glow); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.cert-desc { font-size: 0.87rem; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.6; margin-bottom: 0.75rem; }
.cert-meta { font-size: 0.78rem; color: var(--muted); font-weight: 300; }
@media (max-width: 640px) {
  .cert-card { grid-template-columns: 1fr; text-align: center; }
}


/* ===== SERVICII PAGE ===== */
.servicii-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  flex: 1;
}

.servicii-header {
  text-align: center;
  margin-bottom: 4rem;
}

.servicii-sub {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-bottom: 5rem;
}

.serv-card {
  background: linear-gradient(145deg, rgba(12,21,40,0.95), rgba(8,14,28,0.92));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.serv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,114,245,0.06), transparent);
  opacity: 0;
  transition: 0.35s ease;
}

.serv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,114,245,0.35);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.serv-card:hover::before {
  opacity: 1;
}

.serv-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(37,99,235,0.16);
  border: 1px solid rgba(59,114,245,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.serv-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-glow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.serv-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.serv-desc {
  color: rgba(255,255,255,0.90);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

.serv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.serv-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,114,245,0.16);
  font-size: 0.72rem;
  color: var(--blue-glow);
}

.process-wrap {
  margin-top: 2rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(59,114,245,0.18);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(37,99,235,0.22), rgba(59,114,245,0.12));
  border: 1px solid rgba(59,114,245,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 2;
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-glow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 230px;
  margin: 0 auto;
}

.servicii-cta {
  margin-top: 5rem;
  text-align: center;
}

.servicii-cta .btn-primary {
  padding: 1rem 2.4rem;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .process-line::before {
    display: none;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .servicii-wrap {
    padding: 3rem 1.5rem 4rem;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ===== PORTOFOLIU PAGE ===== */
.porto-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  flex: 1;
}
.porto-header {
  text-align: center;
  margin-bottom: 3rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.video-card {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  background: #000;
  overflow: hidden;
}
.video-wrap video, .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}
.video-info { padding: 0.85rem 1.1rem 1.1rem; }
.video-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.video-tag { font-size: 0.68rem; color: var(--blue-glow); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== PRETURI PAGE ===== */
.preturi-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  flex: 1;
}
.preturi-header { text-align: center; margin-bottom: 3rem; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: start;
}
.pkg {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
}
.pkg:hover { transform: translateY(-8px); border-color: var(--border-blue); box-shadow: 0 24px 55px rgba(0,0,0,0.45); }
.pkg.featured { border-color: rgba(37,99,235,0.5); background: linear-gradient(145deg, #09090F, #04050A); position: relative; }
.pkg.featured::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-glow), transparent); }
.pkg-badge { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.8rem; border-radius: 100px; width: fit-content; }
.b-default { background: rgba(37,99,235,0.12); color: var(--blue-glow); border: 1px solid rgba(59,114,245,0.2); }
.b-pop { background: rgba(37,99,235,0.22); color: var(--blue-glow); border: 1px solid rgba(59,114,245,0.35); }
.pkg-name { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin: 0.3rem 0 0; }
.pkg-price { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.pkg-price span { font-size: 1rem; color: var(--muted); font-weight: 300; font-family: 'DM Sans', sans-serif; }
.pkg-desc { font-size: 0.82rem; color: var(--muted); font-weight: 300; font-style: italic; line-height: 1.5; margin: 0.2rem 0 0.5rem; }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin: 0.5rem 0; }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.25rem; }
.pkg-feats li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.87rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.4; }
.feat-icon { width: 17px; height: 17px; border-radius: 50%; background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feat-icon svg { width: 9px; height: 9px; stroke: var(--blue-glow); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pkg-btn-wrap {}
.pkg-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
a.pkg-btn, a.pkg-btn-custom { text-decoration: none; }
.pkg-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: var(--white); }
.pkg-btn.outline:hover { border-color: var(--blue-glow); color: var(--blue-glow); transform: translateY(-2px); }
.pkg-btn.solid { background: var(--blue); color: var(--white); }
.pkg-btn.solid:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.4); }

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
  flex: 1;
}
.contact-header { margin-bottom: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; font-weight: 500; color: var(--muted); letter-spacing: 0.03em; }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(90,112,153,0.5); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--border-blue); background: rgba(37,99,235,0.04); }
.field select option { background: var(--navy-card); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--blue);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.submit-btn:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.4); }
.success-wrap { display: none; text-align: center; padding: 3rem 0; }
.success-icon { width: 60px; height: 60px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.success-icon svg { width: 26px; height: 26px; stroke: #5B9AF0; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.success-wrap h3 { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.success-wrap p { font-size: 0.9rem; color: var(--muted); font-weight: 300; }


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
}

.contact-info-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,114,245,0.18);
  color: var(--blue-glow);
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-email:hover {
  transform: translateY(-2px);
  border-color: rgba(59,114,245,0.35);
}

.contact-form-modern {
  background: linear-gradient(145deg, rgba(12,21,40,0.96), rgba(8,14,28,0.94));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
}

.contact-form-modern .field input,
.contact-form-modern .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.contact-form-modern .field textarea {
  min-height: 140px;
}

.contact-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
  cursor: none;
}

.contact-btn:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}



.contact-side-stack{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}

.contact-mini-card{
  background: linear-gradient(145deg, rgba(12,21,40,0.96), rgba(8,14,28,0.94));
  border:1px solid var(--border);
  border-radius:22px;
  padding:1.8rem;
  transition:0.3s ease;
}

.contact-mini-card:hover{
  border-color:rgba(59,114,245,0.25);
  transform:translateY(-4px);
}

.contact-mini-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:rgba(37,99,235,0.18);
  border:1px solid rgba(37,99,235,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.2rem;
  font-size:1.2rem;
}

.contact-mini-title{
  font-family:'Syne',sans-serif;
  font-size:1.3rem;
  margin-bottom:0.5rem;
  color:var(--white);
}

.contact-mini-text{
  color:var(--muted);
  font-size:0.92rem;
  line-height:1.7;
}

.contact-quote{
  background:linear-gradient(135deg, rgba(37,99,235,0.28), rgba(59,10,15,0.55));
  border:1px solid rgba(37,99,235,0.25);
}

.contact-quote p{
  color:var(--white);
  font-style:italic;
  font-size:1rem;
  margin-bottom:1rem;
}

.contact-quote span{
  color:var(--muted);
  letter-spacing:0.15em;
  font-size:0.75rem;
  font-weight:600;
}

.contact-form-modern{
  padding:2.2rem;
}

.contact-form-modern .field label{
  text-transform:uppercase;
  font-size:0.72rem;
  letter-spacing:0.08em;
}

.contact-form-modern .field input,
.contact-form-modern .field textarea{
  border-radius:16px;
  padding:1rem 1.1rem;
}

.contact-form-modern .field textarea{
  min-height:130px;
}

.contact-btn{
  background:linear-gradient(90deg,#ff4fa3,#8b5cf6);
  font-weight:700;
  border-radius:18px;
  padding:1.05rem;
}

.contact-btn:hover{
  transform:translateY(-2px) scale(1.01);
  filter:brightness(1.08);
}


.contact-mini-card{
  backdrop-filter:blur(14px);
  border-radius:26px;
}

.contact-form-modern{
  border-radius:30px;
  box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.contact-form-modern .field input,
.contact-form-modern .field textarea{
  background:rgba(255,255,255,0.025);
  border:1px solid rgba(255,255,255,0.08);
  font-size:0.95rem;
}

.contact-form-modern .field input::placeholder,
.contact-form-modern .field textarea::placeholder{
  color:rgba(255,255,255,0.40);
}

.contact-form-modern .field select{
  width:100%;
  background:rgba(255,255,255,0.025);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:1rem 1.1rem;
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  font-size:0.95rem;
  font-weight:300;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A7099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  cursor:none;
  transition:border-color 0.2s;
  outline:none;
}

.contact-form-modern .field select:focus{
  border-color:rgba(59,114,245,0.4);
}

.contact-form-modern .field select option{
  background:#09090F;
  color:var(--white);
}

.contact-btn{
  background:linear-gradient(90deg,#1A3FBF,#3B82F6);
  box-shadow:0 10px 40px rgba(37,99,235,0.35);
}

.contact-btn:hover{
  background:linear-gradient(90deg,#2563EB,#3B82F6);
}

/* ===== CONTACT SOLO FORM ===== */
.contact-form-solo {
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.contact-form-solo-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.contact-form-solo .field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.contact-form-solo .field input,
.contact-form-solo .field textarea,
.contact-form-solo .field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-solo .field input:focus,
.contact-form-solo .field textarea:focus,
.contact-form-solo .field select:focus {
  border-color: rgba(37,99,235,0.5);
}

.contact-form-solo .field input::placeholder,
.contact-form-solo .field textarea::placeholder {
  color: rgba(255,255,255,0.40);
}

.contact-form-solo .field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A7099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: none;
}

.contact-form-solo .field select option {
  background: #09090F;
  color: var(--white);
}

.contact-form-solo .field textarea {
  min-height: 130px;
  resize: none;
}

.contact-form-solo .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-btn-solo {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: #1A3FBF;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.4rem;
}

.contact-btn-solo:hover {
  background: #2563EB;
  transform: translateY(-1px);
}

/* ===== NEW SPLIT CONTACT LAYOUT ===== */
.contact-new-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: linear-gradient(145deg, #09090F, #09090F);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 1.8rem;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(37,99,235,0.25);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.contact-info-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-info-card-text {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-form-card {
  background: linear-gradient(145deg, #09090F, #09090F);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cnf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cnf-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.cnf-field input,
.cnf-field textarea,
.cnf-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.cnf-field input:focus,
.cnf-field textarea:focus,
.cnf-field select:focus {
  border-color: rgba(37,99,235,0.5);
}

.cnf-field input::placeholder,
.cnf-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.cnf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%235A7099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: none;
}

.cnf-field select option {
  background: #09090F;
  color: var(--white);
}

.cnf-field textarea {
  min-height: 120px;
  resize: none;
}

.cnf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cnf-btn {
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 10px;
  background: #1A3FBF;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  margin-top: 0.2rem;
}

.cnf-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58,95,240,0.4);
}

.cnf-gdpr {
  font-size: 0.72rem;
  color: rgba(90,112,153,0.8);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  margin-top: -0.2rem;
}

@media (max-width: 768px) {
  .contact-new-split {
    grid-template-columns: 1fr;
  }
  .cnf-field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-solo .field-row {
    grid-template-columns: 1fr;
  }
}

/* ===== COLABORAM SOLO FORM ===== */
.colab-form-wrap {
  max-width: 640px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.colab-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.colab-field label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}

.colab-field input,
.colab-field textarea,
.colab-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.colab-field input:focus,
.colab-field textarea:focus,
.colab-field select:focus {
  border-color: rgba(37,99,235,0.5);
}

.colab-field input::placeholder,
.colab-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.colab-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%235A7099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: none;
}

.colab-field select option {
  background: #09090F;
  color: var(--white);
}

.colab-field textarea {
  min-height: 130px;
  resize: none;
}

.colab-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.colab-btn {
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 12px;
  background: #1A3FBF;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  letter-spacing: 0.01em;
}

.colab-btn:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,85,232,0.4);
}

.colab-gdpr {
  font-size: 0.72rem;
  color: rgba(90,112,153,0.8);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .colab-field-row { grid-template-columns: 1fr; }
}

/* CONTACT FORM card textarea height */
.contact-form-card .cnf-field textarea {
  min-height: 160px;
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.page.active .anim { animation: fadeUp 0.7s ease both; }
.page.active .anim-1 { animation-delay: 0.05s; }
.page.active .anim-2 { animation-delay: 0.15s; }
.page.active .anim-3 { animation-delay: 0.25s; }
.page.active .anim-4 { animation-delay: 0.35s; }
.page.active .anim-5 { animation-delay: 0.45s; }
.page.active .anim-6 { animation-delay: 0.55s; }

/* ===== FOOTER (rich, 3 coloane) ===== */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 3.2rem 3rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 100%;
  flex-shrink: 0;
  margin-top: auto;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,0.03));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

/* --- Coloana brand --- */
.footer-brand { max-width: 380px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1.1rem;
}
.footer-logo-badge {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  flex-shrink: 0;
}
.footer-logo-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.footer-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.15rem;
}
.footer-tagline {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(147,184,240,0.55);
}

/* --- Coloane link-uri / social --- */
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.3rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
}
.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* --- Social --- */
.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.footer-social {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.footer-social:hover {
  background: rgba(37,99,235,0.15);
  border-color: var(--border-blue);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 220px;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  background: var(--gradient) !important;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.55);
}

/* --- Bară de jos --- */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(4,8,22,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.mobile-drawer-links a {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a.active { color: var(--white); }
.mobile-drawer-links a.active { color: var(--blue-glow); }
.mobile-drawer-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mobile-drawer-btns button,
.mobile-drawer-btns a.mob-btn-secondary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
.mob-btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
}
.mob-btn-primary:hover { background: var(--blue-bright); }
.mob-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.mob-btn-secondary:hover { background: rgba(255,255,255,0.05); }
.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* SCROLLBAR */
.page::-webkit-scrollbar { width: 4px; }
.page::-webkit-scrollbar-track { background: transparent; }
.page::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 2px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
    gap: 0;
  }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }

  .home-hero { padding: 3rem 1.25rem 2rem; }
  .home-stats { padding: 2rem 1.25rem; gap: 1.5rem; flex-wrap: wrap; }
  .float-badge { display: none; }
  .home-h1 { font-size: clamp(2.5rem, 9vw, 3.8rem); }

  .despre-wrap,
  .porto-wrap,
  .preturi-wrap,
  .contact-wrap,
  .servicii-wrap { padding: 2rem 1.25rem 4rem; }

  .despre-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  
  /* UPDATED VIDEO GRID FOR MOBILE */
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .video-card { max-width: 100%; }
  
  .pkg-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .colab-field-row { grid-template-columns: 1fr; }
  .cnf-field-row { grid-template-columns: 1fr; }
  .contact-new-split { grid-template-columns: 1fr; }
  .colab-form-wrap { margin-top: 1.5rem; }

  .page-footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 0.72rem;
  }

  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  a, button, input, textarea, select, video { cursor: auto !important; }
  .mobile-despre-btn { display: none !important; }

  .home-btns { flex-direction: column; gap: 0.75rem; }
  .home-btns button { width: 100%; }

  .back-btn { margin-bottom: 1.5rem; }
  .contact-header { margin-bottom: 1.5rem; }
  .page-h1 { font-size: clamp(2rem, 7vw, 3rem) !important; margin-bottom: 1.5rem; }

  .servicii-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; }
  .process-line::before { display: none; }
}


/* BACK BUTTON */
.back-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--white); }
.back-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page:not(#page-home) .back-btn { display: inline-flex; }

html {
  scroll-padding-top: 100px;
}

.serv-card,
.value-card,
.video-card,
.pkg,
.aside-card,
.btn-primary,
.btn-ghost,
.nav-links a,
.nav-cta {
  will-change: transform, opacity;
}

.page::-webkit-scrollbar-thumb:hover {
  background: rgba(59,114,245,0.75);
}


/* REQUIRED FIELD INDICATOR */
.colab-field label::after,
.cnf-field label::after {
  content: ' *';
  color: rgba(255,100,100,0.75);
  font-size: 0.85em;
}

/* FIELD ERROR TIP */
.field-error-tip {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,110,110,0.95);
  margin-top: 0.3rem;
  font-weight: 400;
}

/* ===== CUSTOM PACKAGE CARD ===== */
.pkg.custom {
  background: linear-gradient(145deg, rgba(6,8,22,0.96), rgba(4,6,18,0.99));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(37,99,235,0.32);
  position: relative;
  overflow: hidden;
}
.pkg.custom::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,0.55), rgba(40,80,255,0.15) 40%, rgba(37,99,235,0.05) 60%, rgba(40,80,255,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 5s ease-in-out infinite;
}
@keyframes borderGlow {
  0%,100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.pkg.custom > * { position: relative; z-index: 1; }
.b-custom {
  background: linear-gradient(90deg, rgba(100,70,240,0.2), rgba(60,90,255,0.18));
  color: #93B8F0;
  border: 1px solid rgba(37,99,235,0.4);
}

.pkg-price-custom {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin: 0.2rem 0 0;
}
.cust-price-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: all 0.25s ease;
}
.cust-price-unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}
.cust-price-est {
  font-size: 0.68rem;
  color: rgba(37,99,235,0.8);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  align-self: center;
}
.cust-price-flash {
  animation: priceFlash 0.3s ease;
}
@keyframes priceFlash {
  0% { opacity: 1; transform: scale(1); }
  40% { opacity: 0.5; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

/* Counter */
.cust-block { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.2rem 0 0.4rem; }
.cust-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.cust-label { font-size: 0.75rem; color: var(--muted); font-weight: 400; flex-shrink: 0; letter-spacing: 0.01em; }
.cust-counter {
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 0.18rem 0.5rem;
}
.cust-count-btn {
  background: none; border: none; color: #2563EB;
  font-size: 1.05rem; width: 20px; height: 20px;
  cursor: none; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: background 0.15s;
  font-family: 'DM Sans', sans-serif; font-weight: 600; line-height: 1;
}
.cust-count-btn:hover { background: rgba(59,114,245,0.15); }
.cust-count-val { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--white); min-width: 22px; text-align: center; }

/* Pills */
.cust-pills { display: flex; gap: 0.28rem; flex-wrap: wrap; justify-content: flex-end; }
.cust-pill {
  font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 500;
  padding: 0.2rem 0.52rem; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted); cursor: none; transition: all 0.18s; white-space: nowrap;
}
.cust-pill.active { background: rgba(59,114,245,0.18); border-color: rgba(100,140,255,0.42); color: #93B8F0; }
.cust-pill:hover:not(.active) { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); color: var(--white); }

/* Toggle */
.cust-toggle { width: 38px; height: 21px; border-radius: 100px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); position: relative; cursor: none; transition: all 0.25s; flex-shrink: 0; }
.cust-toggle.on { background: rgba(59,114,245,0.42); border-color: rgba(59,114,245,0.65); }
.cust-toggle-thumb { position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: rgba(168,196,224,0.75); transition: all 0.25s; }
.cust-toggle.on .cust-toggle-thumb { left: 19px; background: var(--white); }

/* Custom CTA */
.pkg-btn-custom {
  display: block; width: 100%; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 0.95rem; border-radius: 12px; cursor: pointer; border: none;
  background: linear-gradient(90deg, #0F2380, #1A3FBF, #1A3FBF, #0F2380);
  background-size: 300% 100%;
  color: var(--white); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  animation: gradientShiftCustom 6s ease infinite;
  letter-spacing: 0.01em;
}
@keyframes gradientShiftCustom {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.pkg-btn-custom:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(70,90,255,0.42); }

.pkg-price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #93B8F0;
  letter-spacing: -0.01em;
  margin: 0.3rem 0 0;
}

/* QUESTIONNAIRE SECTION */
.cq-section {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.cq-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -0.1rem;
}
.cq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cq-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.cq-pills {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALE GLIDE SLIDER ===== */
.testimoniale-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s 1.05s ease forwards;
}
.testimoniale-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimoniale-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-glow);
  animation: pulse 2s infinite;
}
.testi-track-outer {
  position: relative;
}
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition:
    opacity 1.1s cubic-bezier(0.16,1,0.3,1),
    transform 1.1s cubic-bezier(0.16,1,0.3,1),
    border-color 0.3s;
}
.testi-card.testi-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Fallback: dacă observer nu prinde (ex. dupa modal), cardurile raman vizibile */
.page.active .testi-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.page.active .testi-card:not(.testi-visible) {
  transition-delay: 0s !important;
}
.testi-card:nth-child(1) { transition-delay: 0s; }
.testi-card:nth-child(2) { transition-delay: 0.12s; }
.testi-card:nth-child(3) { transition-delay: 0.24s; }
.testi-card:nth-child(4) { transition-delay: 0.08s; }
.testi-card:nth-child(5) { transition-delay: 0.20s; }
.testi-card:hover { border-color: var(--border-blue); transform: translateY(-4px) scale(1); }
.testi-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}
.testi-star {
  color: #2563EB;
  font-size: 0.85rem;
}
.testi-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.testi-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #0F2380);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author-info {}
.testi-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.testi-role {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 1px;
}
.testi-dots { display: none; }
@media (max-width: 768px) {
  .testimoniale-section { padding: 2rem 1.25rem; }
  .testi-track { grid-template-columns: 1fr; }
  .testi-card:nth-child(n) { transition-delay: 0s; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testi-track { grid-template-columns: repeat(2, 1fr); }
}

/* ===== VIDEO PLAY BUTTON & MODAL ===== */
.video-card {
  cursor: pointer;
}
.video-wrap {
  position: relative;
}
.video-wrap video {
  pointer-events: none;
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  border-radius: 12px 12px 0 0;
  transition: background 0.3s;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2563EB, #1A3FBF 60%, #0c1f6e);
  box-shadow: 0 0 0 0 rgba(37,99,235,0.5), 0 8px 32px rgba(37,99,235,0.6);
  animation: playPulse 2.2s ease-in-out infinite;
}
.video-play-btn svg {
  position: relative;
  z-index: 1;
  margin-left: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.45), 0 8px 32px rgba(37,99,235,0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(37,99,235,0.0), 0 8px 40px rgba(37,99,235,0.7); }
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,0.18); }
.video-card:hover .video-play-btn::before {
  background: radial-gradient(circle at 35% 35%, #3B82F6, #2563EB 60%, #1A3FBF);
}

/* UPDATED FULLSCREEN VIDEO MODAL OVERLAY */
/* ─── MODAL VIDEO ─── */
/* Blur situl cand e modalul deschis */
body.modal-open .page-wrapper,
body.modal-open nav,
body.modal-open .orb-1,
body.modal-open .orb-2 {
  filter: blur(14px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

/* Fundal întunecat semi-transparent */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,5,14,0.88);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  -webkit-overflow-scrolling: none;
}
.video-modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.28s ease forwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Inner – centrat, ocupă tot ecranul */
.video-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalZoomIn 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes modalZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Video – rezoluție nativă, centrat */
.video-modal-inner video {
  width: auto;
  height: auto;
  max-width: 96vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  background: #000;
  box-shadow: 0 32px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(37,99,235,0.18);
}

/* Buton close */
.video-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9100;
  transition: background 0.2s, transform 0.2s;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1);
}

/* Titlu */
.video-modal-title {
  position: fixed;
  top: 22px;
  left: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 9100;
}

@media (max-width: 768px) {
  .video-modal-inner video { max-width: 99vw; max-height: 88vh; border-radius: 12px; }
  .video-modal-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .video-modal-title { top: 16px; left: 16px; }
}

/* ─── IMAGE LIGHTBOX (folosește același overlay/blur ca modalul video) ─── */
.img-modal-pic {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  background: #000;
  box-shadow: 0 32px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(37,99,235,0.18);
}
.cert-img { cursor: zoom-in; transition: opacity 0.2s; }
.cert-img:hover { opacity: 0.9; }

.yt-block {
  position: relative;
  width: 100%;
  height: 100%;
}
.yt-block iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.yt-shield {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 20%;
  z-index: 2;
  background: transparent;
}

/* ============================================================
   MOBIL — SCROLL CONTINUU (doar sub 768px)
   Pe desktop site-ul rămâne neschimbat: pagini separate cu
   tranziție animată. Pe telefon, toate secțiunile se pun una
   sub alta și se navighează prin scroll normal al paginii.
   ============================================================ */
@media (max-width: 768px) {
  .page-wrapper {
    position: relative;
    inset: auto;
    overflow: visible;
    padding-top: 84px;
    z-index: 1;
  }
  .page {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
    overflow: visible !important;
    padding-top: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    transition: none !important;
  }
  /* Hero-ul de start umple primul ecran, restul curge natural */
  #page-home .home-hero {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    justify-content: center;
  }
  /* Nu mai are sens tranziția full-screen de "wipe" între pagini */
  .transition-overlay { display: none !important; }
  /* Nu mai e nevoie de buton "Înapoi" — se scrollează liber */
  .back-btn { display: none !important; }
  /* Un singur footer, la finalul întregului site (nu unul per secțiune) */
  .page:not(#page-contact) .page-footer { display: none !important; }

  /* Formularele "Hai să colaborăm" și "Colaborare custom" nu fac parte
     din scroll-ul continuu — se deschid ca fereastră separată, doar
     la click, și au propriul buton "Înapoi". */
  #page-colaboram,
  #page-colaboram-custom {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2000 !important;
    overflow-y: auto !important;
    background: var(--black);
    padding-top: 84px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  #page-colaboram.mobile-form-open,
  #page-colaboram-custom.mobile-form-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }
  #page-colaboram .back-btn,
  #page-colaboram-custom .back-btn {
    display: inline-flex !important;
  }
  body.mobile-form-lock {
    overflow: hidden !important;
  }
}
