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

:root {
  --bg:        #0b0c10;
  --surface:   #111217;
  --card:      #16171e;
  --card-hover:#1c1d26;
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.12);

  --accent:    #6C63FF;
  --accent-2:  #3ECFCF;
  --accent-glow: rgba(108,99,255,0.18);

  --text:      #eeeef2;
  --text-sub:  #a0a0b8;
  --text-muted:#5a5a78;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-card: 0 0 0 1px rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.35);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── SUBTLE GRID BACKGROUND ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-sub {
  margin-top: 0.6rem;
  color: var(--text-sub);
  font-size: 1rem;
  font-weight: 400;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(108,99,255,0.4), 0 4px 16px rgba(108,99,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(108,99,255,0.5), 0 8px 24px rgba(108,99,255,0.35);
  opacity: 0.95;
}
.btn-primary:active { transform: translateY(0); }

/* Button glow effect */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), #fff);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
}
.btn-primary:hover::after {
  opacity: 0.5;
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--border-md);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-md); background: rgba(255,255,255,0.04); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(108,99,255,0.35);
  flex-shrink: 0;
}
.btn-outline:hover { background: var(--accent-glow); border-color: var(--accent); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11,12,16,0.6);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  padding: 0.4rem 0.8rem;
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { margin-left: 0.75rem; }

/* ── HAMBURGER MENU (FIXED & ANIMATED) ───────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  z-index: 201;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger → X Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 198;
}

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

/* ── LIVE NOTIFICATION ───────────────────────────────────── */
.live-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-md);
  max-width: 360px;
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.live-notification.show {
  transform: translateX(0);
}

.live-notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}

.live-notif-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.live-notif-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.35;
  word-break: break-word;
}

.live-notif-text strong {
  color: var(--text);
  font-weight: 600;
}

.live-notif-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.live-notif-verified {
  color: var(--accent-2);
  font-weight: 500;
}

/* Mobile optimized notification */
@media (max-width: 600px) {
  .live-notification {
    bottom: 12px;
    left: 12px;
    right: auto;
    max-width: min(270px, calc(100vw - 24px));
    padding: 0.5rem 0.7rem;
    gap: 0.5rem;
    border-radius: 10px;
  }

  .live-notif-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }

  .live-notif-text {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .live-notif-time {
    font-size: 0.6rem;
  }
}

@media (max-width: 380px) {
  .live-notification {
    bottom: 10px;
    left: 10px;
    max-width: min(240px, calc(100vw - 20px));
    padding: 0.45rem 0.6rem;
    gap: 0.45rem;
  }

  .live-notif-avatar {
    width: 26px;
    height: 26px;
    font-size: 0.63rem;
  }

  .live-notif-text {
    font-size: 0.67rem;
  }

  .live-notif-time {
    font-size: 0.57rem;
  }
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-compact {
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Mesh gradient animation for hero-mesh */
.hero-mesh::before {
  background: 
    radial-gradient(at 40% 20%, rgba(108,99,255,0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(62,207,207,0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(108,99,255,0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(62,207,207,0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(108,99,255,0.12) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: meshMove 20s ease infinite;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
}

@keyframes meshMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-inner {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.2);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  animation: fadeUp 0.65s 0.08s ease both;
}

.hero-sub {
  margin-top: 1.5rem;
  color: var(--text-sub);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  animation: fadeUp 0.65s 0.14s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.65s 0.2s ease both;
}

.hero-actions .btn { padding: 0.75rem 1.75rem; font-size: 0.95rem; }

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 520px;
  margin-inline: auto;
  animation: fadeUp 0.65s 0.28s ease both;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
}

.how-compact {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-2px);
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.step-num {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* Responsive steps-grid - 2 pe rând pe mobil */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .step-card {
    padding: 1rem;
  }

  .step-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
  }

  .step-icon svg {
    width: 16px;
    height: 16px;
  }

  .step-num {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .step-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
  }

  .step-card p {
    font-size: 0.7rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    gap: 0.6rem;
  }

  .step-card {
    padding: 0.85rem;
  }

  .step-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.6rem;
  }

  .step-icon svg {
    width: 14px;
    height: 14px;
  }

  .step-num {
    font-size: 0.6rem;
  }

  .step-card h3 {
    font-size: 0.75rem;
  }

  .step-card p {
    font-size: 0.65rem;
  }
}

@media (max-width: 380px) {
  .steps-grid {
    gap: 0.5rem;
  }

  .step-card {
    padding: 0.7rem;
  }

  .step-card h3 {
    font-size: 0.7rem;
  }

  .step-card p {
    font-size: 0.6rem;
  }
}

/* ── PACKAGES ────────────────────────────────────────────── */
.packages-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-md);
  background: var(--card);
  color: var(--text-sub);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.tab:hover { color: var(--text); border-color: rgba(108,99,255,0.3); }
.tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(108,99,255,0.3);
}

.pkg-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.pkg-grid.active { display: grid; }

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transform-style: preserve-3d;
}
.pkg-card:hover {
  border-color: rgba(108,99,255,0.3);
  background: var(--card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pkg-card.selected {
  border-color: var(--accent);
  background: var(--card-hover);
  box-shadow: 0 0 0 1px rgba(108,99,255,0.3), 0 8px 32px rgba(108,99,255,0.15);
}
.pkg-card.popular {
  border-color: rgba(108,99,255,0.3);
}

/* 3D Tilt glow */
.pkg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(108, 99, 255, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.pkg-card:hover::before {
  opacity: 1;
}

.pkg-header {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pkg-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(108,99,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(108,99,255,0.2);
}

.popular-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.pkg-qty {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}

.pkg-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  margin-bottom: 0.75rem;
}

.feat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-sub);
}

.feat svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Price block */
.pkg-price-block {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.pkg-price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pkg-price-old::before {
  content: 'De la';
  font-size: 0.65rem;
  font-style: italic;
  opacity: 0.8;
  text-decoration: none;
}

.pkg-price-old-amount {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 80, 80, 0.7);
  text-decoration-thickness: 1.5px;
}


.pkg-price-main {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.pkg-price-per {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.pkg-price-save {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.15rem 0.5rem;
  background: rgba(62,207,207,0.1);
  border: 1px solid rgba(62,207,207,0.2);
  color: var(--accent-2);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ── DISCOUNT BADGE ──────────────────────────────────────── */
.pkg-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4444, #ff2222);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(255, 60, 60, 0.4);
  margin-left: auto;
}


.btn-select {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(108,99,255,0.25);
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  width: 100%;
  text-align: center;
}
.btn-select:hover, .pkg-card.selected .btn-select {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(108,99,255,0.3);
}

/* Responsive pachete - 2 pe rând ca la testimoniale */
@media (max-width: 768px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .pkg-card {
    padding: 0.85rem;
    gap: 0.35rem;
  }

  .pkg-qty {
    font-size: 1.3rem;
  }

  .pkg-type {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }

  .pkg-features {
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .feat {
    font-size: 0.6rem;
    gap: 0.3rem;
  }

  .feat svg {
    width: 10px;
    height: 10px;
  }

  .pkg-price-block {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .pkg-price-main {
    font-size: 1rem;
  }

  .pkg-price-per {
    font-size: 0.55rem;
  }

  .pkg-price-save {
    font-size: 0.5rem;
    padding: 0.1rem 0.4rem;
    margin-top: 0.2rem;
  }

  .btn-select {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .pkg-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .pkg-grid {
    gap: 0.6rem;
  }

  .pkg-card {
    padding: 0.7rem;
  }

  .pkg-qty {
    font-size: 1.1rem;
  }

  .pkg-type {
    font-size: 0.6rem;
  }

  .feat {
    font-size: 0.55rem;
  }

  .pkg-price-main {
    font-size: 0.9rem;
  }

  .btn-select {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 380px) {
  .pkg-grid {
    gap: 0.5rem;
  }

  .pkg-card {
    padding: 0.6rem;
  }

  .pkg-qty {
    font-size: 1rem;
  }

  .pkg-price-main {
    font-size: 0.85rem;
  }
}

/* ── ORDER SECTION ───────────────────────────────────────── */
.order-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.04), transparent);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.order-left .section-title { text-align: left; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.order-summary {
  margin-bottom: 1.5rem;
  background: rgba(108,99,255,0.06);
  border: 1px solid rgba(108,99,255,0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
}

.summary-label { font-size: 0.83rem; color: var(--text-muted); }
.summary-val { font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.summary-divider { height: 1px; background: rgba(108,99,255,0.15); margin: 0.6rem 0; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.form-hint {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.total-label { font-size: 0.85rem; color: var(--text-sub); font-weight: 500; }
.total-price {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#btnOrder { padding: 0.85rem; font-size: 0.95rem; }
#btnOrder svg, #btnOrder .btn-text { transition: opacity 0.2s; }

.spin {
  animation: spin 0.8s linear infinite;
}

/* ── ALERT ───────────────────────────────────────────────── */
.alert {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.alert.show { display: flex; align-items: flex-start; gap: 0.5rem; }
.alert.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}
.alert.success {
  background: rgba(62,207,207,0.08);
  border: 1px solid rgba(62,207,207,0.2);
  color: var(--accent-2);
}

/* ── TRUST CARD ──────────────────────────────────────────── */
.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 84px;
}

.trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-item:last-child { border-bottom: none; padding-bottom: 0; }

.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(108,99,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.trust-item-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* ── TESTIMONIALS CAROUSEL ───────────────────────────────── */
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(108,99,255,0.03), transparent);
  border-top: 1px solid var(--border);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 300px;
  width: 100%;
}
.testimonial-card:hover {
  border-color: rgba(108,99,255,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonials-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  gap: 1rem;
  min-width: 100%;
  flex-shrink: 0;
  padding: 0.25rem;
  align-items: start;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.testimonial-text {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin-bottom: 0.65rem;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.71rem;
  color: var(--text-muted);
}

/* Navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.testimonials-btn:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.08);
}
.testimonials-btn:active {
  transform: scale(0.95);
}
.testimonials-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  border-color: var(--border);
  color: var(--text-muted);
  background: var(--card);
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.testimonials-dot:hover {
  background: rgba(108,99,255,0.4);
}
.testimonials-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 100px;
}

/* Responsive carousel */
@media (max-width: 640px) {
  .testimonials-page {
    grid-template-columns: 1fr;
    justify-content: center;
    width: 100%;
    gap: 0.65rem;
    padding: 0.1rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 0.8rem 0.7rem;
    gap: 0.2rem;
  }

  .testimonial-stars {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .testimonial-text {
    font-size: 0.72rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    margin-bottom: 0.5rem;
  }

  .testimonial-author { gap: 0.35rem; }
  .testimonial-name   { font-size: 0.74rem; }
  .testimonial-role   { font-size: 0.63rem; }

  .testimonial-avatar {
    width: 24px;
    height: 24px;
    font-size: 0.62rem;
  }

  .testimonials-nav {
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .testimonials-btn   { width: 34px; height: 34px; }
  .testimonials-dot   { width: 6px; height: 6px; }
  .testimonials-dot.active { width: 18px; }
}

@media (max-width: 380px) {
  .testimonials-page {
    gap: 0.4rem;
  }

  .testimonial-card {
    padding: 0.65rem 0.55rem;
  }

  .testimonial-text {
    font-size: 0.68rem;
    -webkit-line-clamp: 2;
  }

  .testimonial-name {
    font-size: 0.7rem;
  }

  .testimonial-role {
    font-size: 0.6rem;
  }
}

/* ── FAQ ─────────────────────────────────────────────────── */
#faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.faq-item:hover {
  border-color: rgba(108,99,255,0.2);
}

.faq-item.open {
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 4px 24px rgba(108,99,255,0.08);
  transform: scale(1.008);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col a::before {
  content: '›';
  color: var(--accent);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s;
}

.footer-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-md);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.modal-msg {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.modal-order {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  color: var(--accent-2);
  background: rgba(62,207,207,0.07);
  border: 1px solid rgba(62,207,207,0.15);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 1.5rem;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 1rem;
  }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(11,12,16,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--border);
    z-index: 199;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links li { list-style: none; }
  .nav-link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
    display: block;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
  }

  .legal-content {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions .btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .platform-tabs { gap: 0.4rem; }
  .tab { font-size: 0.7rem; padding: 0.4rem 0.7rem; gap: 0.3rem; }
  .tab svg { width: 14px; height: 14px; }

  .form-card, .trust-card, .status-card { padding: 1.25rem; }

  .status-input-row { flex-direction: column; align-items: stretch; }
  .btn-outline { width: 100%; }

  .anpc-links {
    flex-direction: column;
  }
  .anpc-button {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
  }
}

/* ── FOOTER MOBILE CENTERING ─────────────────────────────── */
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .footer-col h4 {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-col li {
    margin-bottom: 0;
  }

  .footer-col a {
    justify-content: center;
  }

  .footer-col a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    padding: 3rem 0;
    gap: 2rem;
  }

  .footer-col h4 {
    font-size: 0.85rem;
  }

  .footer-col a {
    font-size: 0.85rem;
  }
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LIVE VIEWERS BAR ────────────────────────────────────── */
.live-viewers-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ── STICKY PLATFORM TABS (MOBILE) ───────────────────────── */
@media (max-width: 700px) {
  .platform-tabs {
    position: sticky;
    top: 58px;
    z-index: 90;
    background: var(--bg);
    padding: 0.6rem 0;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
}

/* ── TESTIMONIAL DATE ─────────────────────────────────────── */
.testimonial-date {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  opacity: 0.75;
}
/* ═══════════════════════════════════════════════════════════
   ÎMBUNĂTĂȚIRI VIZUALE V2
═══════════════════════════════════════════════════════════ */

/* ── 1. SCROLL PROGRESS BAR ─────────────────────────────── */
.scroll-progress {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  transition: width 0.08s linear;
  position: relative;
  z-index: 201;
}

/* ── 2. HERO 2-COL CU PHONE MOCKUP ─────────────────────── */
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 3.5rem;
  max-width: 1100px;
  text-align: left;
}
.hero-2col .hero-badge { justify-content: flex-start; }
.hero-2col .hero-actions { justify-content: flex-start; }
.hero-2col .stats-bar { margin-inline: 0; margin-top: 2rem; }
.hero-2col .live-viewers-bar { display: inline-flex; }

.hero-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.65s 0.35s ease both;
}

/* Phone frame */
.hero-phone-mockup {
  width: 220px;
  background: #16171e;
  border-radius: 28px;
  border: 1.5px solid rgba(108,99,255,0.35);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 40px rgba(108,99,255,0.18),
    0 24px 48px rgba(0,0,0,0.5);
  position: relative;
}
.hpm-notch {
  height: 28px;
  background: #0d0e14;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hpm-notch-pill {
  width: 52px; height: 6px;
  background: #22232e;
  border-radius: 3px;
}
.hpm-screen {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hpm-avatar-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 8px;
}
.hpm-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #22232e;
}
.hpm-username {
  width: 80px; height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
  margin-bottom: 4px;
}
.hpm-handle {
  width: 55px; height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  margin-bottom: 14px;
}
.hpm-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.hpm-stat {
  flex: 1;
  text-align: center;
}
.hpm-stat-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hpm-stat-lbl {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 1px;
}
.hpm-stat-divider {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
.hpm-follow-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.hpm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
}
.hpm-grid-item {
  aspect-ratio: 1;
  border-radius: 3px;
  background: #22232e;
}
.hpm-gi-1 { background: linear-gradient(135deg, rgba(108,99,255,0.25), rgba(62,207,207,0.15)); }
.hpm-gi-2 { background: rgba(108,99,255,0.12); }
.hpm-gi-3 { background: linear-gradient(135deg, rgba(62,207,207,0.2), rgba(108,99,255,0.1)); }
.hpm-gi-4 { background: rgba(62,207,207,0.1); }
.hpm-gi-5 { background: linear-gradient(135deg, rgba(108,99,255,0.18), rgba(62,207,207,0.1)); }
.hpm-gi-6 { background: rgba(108,99,255,0.08); }

/* Floating chip */
.hero-float-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid rgba(62,207,207,0.3);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.hero-float-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* Mobile: ascunde phone */
@media (max-width: 820px) {
  .hero-2col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-2col .hero-badge { justify-content: center; }
  .hero-2col .hero-actions { justify-content: center; }
  .hero-2col .stats-bar { margin-inline: auto; }
  .hero-2col .live-viewers-bar { display: inline-flex; }
  .hero-phone-col { display: none; }
}

/* ── 3. STAT ICON BOX ───────────────────────────────────── */
.stat-icon-box {
  width: 32px; height: 32px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 6px;
}
@media (max-width: 768px) {
  .stat-icon-box { width: 24px; height: 24px; margin-bottom: 4px; }
  .stat-icon-box svg { width: 12px; height: 12px; }
}

/* ── 4. SECTION TITLE ACCENT LINE + GLOW DOT ───────────── */
.section-header::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(108,99,255,0.8), 0 0 22px rgba(108,99,255,0.4);
  margin: 0 auto 14px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  margin: 8px auto 0;
}
.order-left .section-title::after { margin-left: 0; }



/* ── 6. TESTIMONIAL — GOLD TOP BORDER ───────────────────── */
.testimonial-card {
  border-top: 2px solid #fbbf24 !important;
}

/* ── 7. PAYMENT STRIP ───────────────────────────────────── */
.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}
.pay-method.ssl { color: #22c55e; border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.05); }
.pay-method.stripe-badge { color: #7C73FF; }


/* ── 8. FAQ BORDER-LEFT ON OPEN ─────────────────────────── */
.faq-item.open {
  border-left-color: var(--accent);
  border-left-width: 2px;
  background: rgba(108,99,255,0.025);
}

/* ═══════════════════════════════════════════════════════════
   ÎMBUNĂTĂȚIRI VIZUALE V3 — TOAST, SCROLLBAR, CURSOR, SKELETON
═══════════════════════════════════════════════════════════ */

/* ── TOAST NOTIFICATIONS ───────────────────────────────── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  max-width: 360px;
  line-height: 1.5;
}

.toast.show {
  transform: translateX(0);
}

.toast-error {
  border-left: 3px solid #ef4444;
}

.toast-success {
  border-left: 3px solid var(--accent-2);
}

.toast svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .toast-container {
    top: auto;
    bottom: 12px;
    right: 12px;
    left: 12px;
    align-items: stretch;
  }
  .toast {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
  }
}

/* ── CUSTOM SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-2));
  border-radius: 100px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

/* ── CURSOR GLOW ───────────────────────────────────────── */
@media (pointer: fine) {
  .cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }
}

/* ── SKELETON LOADING ─────────────────────────────────── */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.skeleton-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: skeletonPulse 2s ease-in-out infinite;
}

.skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skeleton-badge {
  width: 60px;
  height: 18px;
  background: var(--surface);
  border-radius: 100px;
}

.skeleton-discount {
  width: 36px;
  height: 18px;
  background: var(--surface);
  border-radius: 100px;
}

.skeleton-qty {
  width: 80px;
  height: 32px;
  background: var(--surface);
  border-radius: 6px;
}

.skeleton-type {
  width: 120px;
  height: 14px;
  background: var(--surface);
  border-radius: 4px;
}

.skeleton-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.skeleton-feature {
  width: 100%;
  height: 12px;
  background: var(--surface);
  border-radius: 3px;
}

.skeleton-price {
  width: 70px;
  height: 24px;
  background: var(--surface);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.skeleton-btn {
  width: 100%;
  height: 32px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

@keyframes skeletonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Shimmer variant */
.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    var(--surface) 25%,
    rgba(255,255,255,0.03) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
  .skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .skeleton-card {
    padding: 0.85rem;
  }
}

/* ── PARTICLE CANVAS ────────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── CURSOR GLOW HIDE ON TOUCH ─────────────────────────── */
@media (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }
  #particleCanvas {
    opacity: 0.15;
  }
}
/* ═══════════════════════════════════════════════════════════
   SUCCESS OVERLAY
═══════════════════════════════════════════════════════════ */

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.success-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  animation: overlayFadeIn 0.3s ease;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-overlay-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: overlayCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes overlayCardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-overlay-icon {
  margin-bottom: 1.5rem;
}

.success-overlay-icon svg {
  animation: checkScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes checkScale {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-overlay-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-overlay-text {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.success-overlay-progress {
  height: 4px;
  background: var(--surface);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.success-overlay-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  animation: progressFill 3s ease forwards;
}

@keyframes progressFill {
  to { width: 100%; }
}

/* Show overlay */
.success-overlay.show {
  display: flex !important;
}