/* =====================
   RESET & BASE
===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(170deg, #0a1220 0%, #0f172a 30%, #1a2744 65%, #1e3a8a 100%);
  background-attachment: fixed;
  color: #e8ecf4;
}

/* =====================
   STARFIELD — spatiu + stele cazatoare
===================== */
.starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: var(--min-op, 0.35); transform: scale(1); }
  50%       { opacity: 1;                  transform: scale(1.4); }
}

.shooting-star {
  position: absolute;
  width: var(--len, 60px);
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.95) 100%);
  box-shadow: 0 0 4px 1px rgba(255,255,255,0.3);
  transform: rotate(18deg);
  transform-origin: center center;
  animation: shoot var(--shoot-dur, 3s) linear infinite var(--shoot-delay, 0s);
  opacity: 0;
}

@media (max-width: 600px) {
  .shooting-star {
    width: calc(var(--len, 60px) * 0.5);
    height: 1px;
    transform: rotate(30deg);
  }
}

@keyframes shoot {
  0%   { left: -20%; top: var(--top); opacity: 0; }
  5%   { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { left: 120%; top: calc(var(--top) + 40%); opacity: 0; }
}

/* =====================
   NAVBAR — glass effect
===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

/* Logo — stânga (dimensiuni neschimbate) */
.navbar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
  margin-left: -15px;
}

.navbar__logo:hover {
  transform: scale(1.08);
}

.navbar__logo-img {
  max-height: 171px;
  width: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* =====================
   NAV LINKS — dreapta
===================== */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #4fc3f7;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #4fc3f7;
}

.nav-link:hover::after {
  width: 100%;
}

/* =====================
   MAIN
===================== */
main {
  min-height: 100vh;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  text-align: center;
  max-width: 720px;
  padding: 65px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* Radial glow — pulsing subtil in spatele textului */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, rgba(30, 58, 138, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glow-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

/* Blob shapes — floating organic */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero-blob--1 {
  width: 240px;
  height: 240px;
  background: rgba(79, 195, 247, 0.12);
  top: -60px;
  left: -80px;
  animation: blob-float-1 10s ease-in-out infinite;
}

.hero-blob--2 {
  width: 180px;
  height: 180px;
  background: rgba(30, 58, 138, 0.2);
  bottom: -40px;
  right: -50px;
  animation: blob-float-2 8s ease-in-out infinite;
}

.hero-blob--3 {
  width: 140px;
  height: 140px;
  background: rgba(0, 200, 180, 0.1);
  top: 40%;
  right: 5%;
  animation: blob-float-3 12s ease-in-out infinite;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(12px, 8px); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-10px, -6px); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-6px, 10px); }
}

/* =====================
   HERO TEXT — light pe dark
===================== */
.hero__title {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.85;
}

.hero__support {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.85;
  letter-spacing: 0.2px;
}

/* =====================
   PROMO BADGE — bulina galbena
===================== */
.promo-badge {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #FFD700;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow:
    0 0 0 6px rgba(255, 215, 0, 0.2),
    0 0 24px rgba(255, 215, 0, 0.45),
    0 0 48px rgba(255, 215, 0, 0.2);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  position: absolute;
  left: calc(3% - 20px);
  top: calc(38% - 30px);
  z-index: 3;
  animation: promo-pulse 2.8s ease-in-out infinite;
  cursor: default;
  user-select: none;
}

@keyframes promo-pulse {
  0%, 100% { transform: rotate(-15deg) scale(1);    box-shadow: 0 0 0 6px rgba(255,215,0,0.2), 0 0 24px rgba(255,215,0,0.45), 0 0 48px rgba(255,215,0,0.2); }
  50%       { transform: rotate(-15deg) scale(1.07); box-shadow: 0 0 0 10px rgba(255,215,0,0.15), 0 0 36px rgba(255,215,0,0.6), 0 0 64px rgba(255,215,0,0.25); }
}

/* =====================
   BUTON CTA — glowing pe dark
===================== */
.btn-cta {
  margin-top: 20px;
  padding: 14px 38px;
  background: linear-gradient(135deg, #1dadc0 0%, #0f8a9a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(29, 173, 192, 0.35), 0 0 40px rgba(29, 173, 192, 0.15);
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(29, 173, 192, 0.5), 0 0 60px rgba(29, 173, 192, 0.25);
}

/* =====================
   CHARACTERS SECTION (pozitie neschimbata)
===================== */
.characters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0;
  width: 100%;
  position: relative;
  z-index: 2;
  transform: translateY(65px);
}

/* Glow in spatele personajelor */
.characters-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 350px;
  transform: translate(-50%, -45%);
  background: radial-gradient(ellipse, rgba(79, 195, 247, 0.12) 0%, rgba(30, 58, 138, 0.06) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: characters-glow-pulse 8s ease-in-out infinite;
}

@keyframes characters-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -45%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%, -45%) scale(1.05); }
}

.slider-track {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Săgeți — ascunse pe desktop */
.slider-arrow {
  display: none;
}

.character-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Wrapper fix — ribbon + imagine, aliniate la baza */
.character-img-wrap {
  position: relative;
  width: 220px;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
}

.character-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.character-card:hover .character-img {
  transform: translateX(-50%) translateY(-6px);
}

/* Asistenta — ajustare verticală */
.asistenta-img {
  bottom: -25px;
}

/* Receptionista — micșorată */
.receptionista-img {
  max-height: 82%;
  transform-origin: bottom center;
  transform: translateX(-50%) scale(0.85);
}

/* Manager — micșorat */
.manager-img {
  bottom: 0;
  max-height: 86%;
  transform: translateX(-50%) scale(0.86);
  transform-origin: bottom center;
}

/* Imagine estompată pentru Coming Soon */
.coming-soon-img {
  filter: brightness(0.65) saturate(0.5);
}

/* =====================
   ARROW CALLOUT — Asistenta
===================== */
.character-card--asistenta {
  position: relative;
}

.arrow-callout {
  position: absolute;
  right: calc(100% - 20px);
  top: -160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 12;
  pointer-events: none;
}

.arrow-ribbon {
  background: #FFD700;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  text-align: center;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}

.arrow-img {
  width: 143px;
  height: auto;
  margin-top: -8px;
  transform: rotate(15deg) translateX(20px);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
  -webkit-user-drag: none;
  user-select: none;
}

/* =====================
   COMING SOON RIBBON
===================== */
.coming-soon-ribbon {
  position: absolute;
  top: 70px;
  left: -34px;
  width: 160px;
  background: #FFD700;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  letter-spacing: 1px;
  text-align: center;
  padding: 7px 0;
  transform: rotate(-35deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  border: 2px dashed rgba(0,0,0,0.2);
  z-index: 10;
  text-transform: uppercase;
}

/* =====================
   BUTON VEZI DEMO
===================== */
.btn-demo {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  pointer-events: auto;
  position: relative;
  z-index: 5;
  padding: 12px 32px;
  background-color: #2ecc71;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 204, 113, 0.35);
}

.btn-demo:hover:not(:disabled) {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.45);
}

.btn-demo:disabled {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

/* Animație highlight — CTA scroll target */
@keyframes pulse-demo {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7), 0 4px 14px rgba(46, 204, 113, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(46, 204, 113, 0), 0 4px 14px rgba(46, 204, 113, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0), 0 4px 14px rgba(46, 204, 113, 0.35); }
}

.btn-demo--highlight {
  animation: pulse-demo 1s ease-out 3;
  outline: 3px solid #2ecc71;
  outline-offset: 3px;
}

/* =====================
   HAMBURGER — ascuns pe desktop
===================== */
.nav-toggle {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animație X când e deschis */
.nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* =====================
   RESPONSIVE — TABLET
===================== */
@media (max-width: 1024px) {
  .arrow-callout {
    right: calc(100% + 5px);
    top: -10px;
  }

  .arrow-ribbon {
    font-size: 12px;
    max-width: 260px;
    padding: 7px 12px;
    white-space: normal;
  }

  .arrow-img {
    width: 80px;
  }

  .characters {
    gap: 16px;
    padding: 20px 20px 0;
  }

  .character-img-wrap {
    width: 180px;
    height: 230px;
  }

  .characters-glow {
    width: 450px;
    height: 280px;
  }
}

/* =====================
   DESPRE NOI
===================== */
.about {
  width: 100%;
  padding: 80px 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(79, 195, 247, 0.04) 40%, transparent 100%);
}

.about__inner {
  max-width: 780px;
  margin: 0 auto;
}

.about__title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}

.about__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4fc3f7, #7c3aed);
  border-radius: 2px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__body p {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffff;
}

.about__mission {
  background: rgba(79, 195, 247, 0.07);
  border-left: 3px solid #4fc3f7;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  color: #ffffff !important;
}

.about__mission strong {
  color: #4fc3f7;
}

.about__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.about__future {
  color: #ffffff !important;
  font-style: italic;
}

.about__belief {
  font-size: 18px !important;
  font-weight: 600;
  color: #ffffff !important;
  border-top: none;
  padding-top: 4px;
}

/* =====================
   RESPONSIVE — MOBIL
===================== */
@media (max-width: 768px) {

  /* Navbar — glass pe mobil */
  .navbar {
    height: 70px;
    padding: 0 20px;
    overflow: visible;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar__logo-img {
    max-height: 90px;
  }

  /* Afișează hamburger */
  .nav-hamburger {
    display: flex;
  }

  /* Meniu dropdown — dark glass */
  .navbar__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-toggle:checked ~ .navbar__nav {
    display: flex;
  }

  .nav-link {
    font-size: 17px;
  }

  /* Main */
  main {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-top: 70px;
    padding-bottom: 20px;
    justify-content: flex-start;
    gap: 20px;
  }

  /* Hero */
  .hero {
    padding: 16px 20px 0;
    gap: 14px;
  }

  .hero__title {
    font-size: 20px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__support {
    font-size: 12px;
  }

  .btn-cta {
    padding: 12px 30px;
    font-size: 14px;
  }

  .promo-badge {
    width: 100px;
    height: 100px;
    font-size: 9.5px;
    position: absolute;
    top: 70px;
    left: 8px;
    right: auto;
    bottom: auto;
  }

  /* Hero glow + blobs mai mici pe mobil */
  .hero-glow {
    width: 250px;
    height: 250px;
  }

  .hero-blob--1 { width: 140px; height: 140px; }
  .hero-blob--2 { width: 110px; height: 110px; }
  .hero-blob--3 { width: 80px; height: 80px; }

  /* Characters glow mai mic */
  .characters-glow {
    width: 300px;
    height: 200px;
  }

  /* Arrow callout pe mobil — deasupra capului Asistentei */
  .arrow-callout {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    flex-direction: column;
    align-items: center;
  }

  .arrow-ribbon {
    font-size: 13px;
    white-space: normal;
    text-align: center;
    max-width: 200px;
    margin-bottom: 0;
    padding: 8px 14px;
  }

  /* Ascunde sageata .png pe mobil */
  .arrow-img {
    display: none;
  }

  /* Sageata CSS generata — pointeaza in jos spre Asistenta */
  .arrow-callout::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #FFD700;
    margin-top: -2px;
  }

  /* Personaje — slider pe mobil */
  .characters {
    overflow: hidden;
    padding: 10px 0 0;
    transform: none;
  }

  .slider-track {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
    width: 100%;
    transition: transform 0.4s ease;
  }

  .slider-track .character-card {
    min-width: 100%;
    flex-shrink: 0;
  }

  /* Săgeți vizibile pe mobil */
  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 72px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    z-index: 10;
    padding: 0 8px;
    transition: color 0.2s ease;
    user-select: none;
  }

  .slider-arrow:hover {
    color: rgba(255, 255, 255, 0.7);
  }

  .slider-arrow--prev {
    left: 0;
  }

  .slider-arrow--next {
    right: 0;
  }

  .character-img-wrap {
    width: 200px;
    height: 240px;
  }

  .btn-demo {
    padding: 10px 28px;
    font-size: 14px;
  }

  /* Despre noi — mobil */
  .about {
    padding: 50px 20px;
  }

  .about__title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .about__body p {
    font-size: 15px;
  }

  .about__belief {
    font-size: 16px !important;
  }
}

/* =====================
   WHATSAPP WIDGET
===================== */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Buton flotant */
.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.45);
  animation: wa-ring-pulse 2.2s ease-out infinite;
}

@keyframes wa-ring-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Popup */
.wa-popup {
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  display: none;
  flex-direction: column;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wa-popup.active {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.wa-popup__header {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-popup__logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  -webkit-user-drag: none;
  user-select: none;
}

.wa-popup__logo-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.wa-popup__status {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  margin-top: -11px;
}

.wa-online-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: wa-online-blink 2.5s ease-in-out infinite;
}

@keyframes wa-online-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.wa-popup__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}

.wa-popup__close:hover {
  color: #ffffff;
}

/* Body — chat bubble */
.wa-popup__body {
  background: #ECE5DD;
  padding: 20px 14px 14px;
}

.wa-bubble {
  background: #ffffff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px 8px;
  max-width: 90%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wa-bubble p {
  font-size: 14px;
  color: #111;
  line-height: 1.55;
  margin-bottom: 4px;
}

.wa-bubble p:first-child {
  font-weight: 700;
}

.wa-bubble__time {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #8696a0;
  margin-top: 4px;
}

/* =====================
   CUM FUNCTIONEAZA
   ===================== */
.how {
  padding: 90px 5% 100px;
  position: relative;
  z-index: 1;
}
.how__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.how__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.how__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 215, 255, 0.7);
  margin-bottom: 60px;
}
.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.how__step {
  flex: 1;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 24px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.how__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(99, 179, 237, 0.15);
}
.how__step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(99, 179, 237, 0.2);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.how__step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.how__step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.how__step-desc {
  font-size: 0.95rem;
  color: rgba(200, 215, 255, 0.75);
  line-height: 1.6;
}
.how__arrow {
  font-size: 2rem;
  color: rgba(99, 179, 237, 0.4);
  padding: 0 16px;
  align-self: center;
  margin-top: -20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .how__steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .how__step {
    max-width: 100%;
    width: 100%;
  }
  .how__arrow {
    transform: rotate(90deg);
    margin: 0;
    padding: 0;
  }
}

/* =====================
   FAQ
   ===================== */
.faq {
  padding: 90px 5% 100px;
  position: relative;
  z-index: 1;
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.faq__subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: rgba(10, 18, 35, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq__item.open {
  border-color: rgba(29,173,192,0.4);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  padding: 26px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq__icon {
  font-size: 1.6rem;
  color: #1dadc0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 32px;
}

.faq__item.open .faq__a {
  max-height: 200px;
  padding: 0 32px 26px;
}

.faq__a p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.faq__a strong {
  color: #1dadc0;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 4% 70px;
  }
  .faq__q {
    font-size: 0.92rem;
    padding: 16px 18px;
  }
  .faq__a {
    padding: 0 18px;
  }
  .faq__item.open .faq__a {
    padding: 0 18px 16px;
  }
}

/* =====================
   CONTACT MODAL
   ===================== */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.contact-modal {
  background: rgba(10, 18, 35, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid #1dadc0;
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.contact-overlay.active .contact-modal {
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.contact-modal__close:hover { color: #fff; }

.contact-modal__title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.contact-modal__sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin: 0 0 28px;
}

.contact-modal__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-option span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-option strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-option small {
  font-size: 0.82rem;
  opacity: 0.7;
}

.contact-option--wa {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.contact-option--phone {
  background: rgba(29, 173, 192, 0.12);
  border-color: rgba(29, 173, 192, 0.25);
  color: #1dadc0;
}

.contact-option--email {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: #a855f7;
}

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0; right: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 5%;
  transition: bottom 0.4s ease;
}
.cookie-banner.visible {
  bottom: 0;
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: rgba(200, 215, 255, 0.8);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: #63b3ed;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--accept {
  background: #63b3ed;
  color: #0a1220;
}
.cookie-btn--decline {
  background: rgba(255,255,255,0.1);
  color: #e8ecf4;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
}

/* =====================
   SITE FOOTER
   ===================== */
.site-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-footer__inner {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 24px 5% 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-footer__col {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 12px;
}

.site-footer__col + .site-footer__col {
  border-left: 1px solid rgba(255,255,255,0.05);
}

.site-footer__bottom {
  text-align: center;
  padding: 12px 5%;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.35); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.2); }
  60%       { transform: scale(1); }
}

.footer-heart {
  display: inline-block;
  color: #e74c3c;
  font-size: 16px;
  animation: heartbeat 1.8s ease-in-out infinite;
}

.ro-flag {
  display: inline-flex;
  width: 14px;
  height: 10px;
  border-radius: 1px;
  overflow: hidden;
  vertical-align: middle;
  margin-bottom: 2px;
}

.ro-flag span {
  flex: 1;
  height: 100%;
}

.ro-flag span:nth-child(1) { background: #002B7F; }
.ro-flag span:nth-child(2) { background: #FCD116; }
.ro-flag span:nth-child(3) { background: #CE1126; }

.site-footer__heading {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.site-footer__links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #1dadc0;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 20px 16px;
  }

  .site-footer__col {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .site-footer__col + .site-footer__col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
  }

  .site-footer__bottom {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* Footer — buton WhatsApp */
.wa-popup__footer {
  padding: 12px 14px;
  background: #ffffff;
}

.wa-btn-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
}

.wa-btn-chat:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* Mobil */
@media (max-width: 768px) {
  .wa-widget {
    bottom: 20px;
    right: 16px;
  }

  .wa-popup {
    width: calc(100vw - 32px);
    max-width: 320px;
  }
}

/* =====================
   SERVICII — Pricing Cards
===================== */
.services {
  padding: 90px 5% 110px;
  position: relative;
  z-index: 1;
  scroll-margin-top: 70px;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.services__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* INFO BUTTON */
.card-info {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.card-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29,173,192,0.15);
  border: 1.5px solid #1dadc0;
  color: #1dadc0;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  cursor: default;
  animation: info-glow 2.5s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s;
}

.card-info__icon--gold {
  background: rgba(251,191,36,0.15);
  border-color: #fbbf24;
  color: #fbbf24;
  animation: info-glow-gold 2.5s ease-in-out infinite;
}

@keyframes info-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(29,173,192,0.4), 0 0 14px rgba(29,173,192,0.2); }
  50%       { box-shadow: 0 0 12px rgba(29,173,192,0.8), 0 0 24px rgba(29,173,192,0.4); }
}

@keyframes info-glow-gold {
  0%, 100% { box-shadow: 0 0 6px rgba(251,191,36,0.4), 0 0 14px rgba(251,191,36,0.2); }
  50%       { box-shadow: 0 0 12px rgba(251,191,36,0.8), 0 0 24px rgba(251,191,36,0.4); }
}

.card-info__tooltip {
  position: absolute;
  top: 30px;
  right: 0;
  width: 220px;
  background: rgba(8, 15, 30, 0.97);
  border: 1px solid rgba(29,173,192,0.35);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(29,173,192,0.15);
}

.card-info__tooltip--left {
  right: auto;
  left: 0;
}

.card-info__tooltip strong {
  display: block;
  color: #1dadc0;
  font-size: 13px;
  margin-bottom: 6px;
}

.card-info:hover .card-info__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.card-info:hover .card-info__icon {
  background: rgba(29,173,192,0.3);
  transform: scale(1.15);
}

/* BASE CARD */
.service-card {
  background: rgba(10, 18, 35, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #1dadc0;
  border-radius: 18px;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

/* BADGE */
.service-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #1dadc0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-card__badge--gold {
  background: linear-gradient(90deg, #d97706, #fbbf24);
  color: #1a0e00;
}

/* PACKAGE LABEL */
.service-card__pkg {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1dadc0;
}

.service-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-top: -4px;
}

.service-card__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -8px;
}

/* FEATURES LIST */
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.45;
}

.service-card__features li::before {
  content: '✓';
  color: #1dadc0;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* TAGLINE (Pachet D) */
.service-card__tagline {
  font-size: 0.82rem;
  color: rgba(251, 191, 36, 0.85);
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid #fbbf24;
  padding-left: 10px;
}

/* PRICE */
.service-card__price {
  margin-top: 4px;
}

.service-card__amount {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.service-card__amount--custom {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.service-card__period {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 3px;
}

/* CTA BUTTON */
.service-card__cta {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  background: #1dadc0;
  color: #fff;
  margin-top: 4px;
}

.service-card__cta:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.service-card__cta--gold {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  color: #1a0e00;
}

/* PER-CARD OVERRIDES */
.service-card--b {
  border-top-color: #1dadc0;
}

.service-card--b .service-card__pkg       { color: #1dadc0; }
.service-card--b .service-card__features li::before { color: #1dadc0; }
.service-card--b .service-card__cta       { background: #1dadc0; }

.service-card--c {
  border-top-color: #1dadc0;
}

.service-card--c .service-card__pkg       { color: #1dadc0; }
.service-card--c .service-card__features li::before { color: #1dadc0; }

.service-card__note {
  font-size: 0.82rem;
  color: #1dadc0;
  font-style: italic;
  line-height: 1.55;
  border-top: 1px solid rgba(24, 132, 142, 0.25);
  padding-top: 12px;
}
.service-card--c .service-card__cta       {
  background: #1dadc0;
  color: #fff;
}

.service-card--d {
  border-top-color: #d97706;
  background: rgba(20, 13, 3, 0.8);
}

.service-card--d .service-card__pkg       { color: #fbbf24; }
.service-card--d .service-card__features li::before { color: #fbbf24; }

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

@media (max-width: 580px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 60px 4% 80px;
  }
}
