  :root {
      --primary-teal: #004b57;
      --primary-orange: #f28900;
      --body-text: #2d3e50;
      --secondary-blue: #0087a3;
      --teal-light: #e6f4f5;
      --accent-cyan: #40e0d0;
      --dark-bg: #0a1628;
      --card-bg: #ffffff;
      --soft-bg: #f4fbfc;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--body-text);
      line-height: 1.7;
      background: #ffffff;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; }

    /* ── Floating particles background ── */
    #particles-bg {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0; overflow: hidden;
    }
    .particle {
      position: absolute; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,135,163,0.15), transparent);
      animation: floatUp linear infinite;
    }
    @keyframes floatUp {
      0% { transform: translateY(110vh) scale(0.5); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 0.4; }
      100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
    }

    /* ── HEADER ── */
    #header-hero-wrapper {
      background: linear-gradient(135deg, #003242 0%, #004b57 40%, #006d7e 100%);
      position: relative; 
/*      z-index: 2; overflow: hidden;*/
/*      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;*/
    }
    #header-hero-wrapper::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2340e0d0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    #header-hero-wrapper::after {
      content: ''; position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(64,224,208,0.12) 0%, transparent 70%);
      right: -150px; top: -150px; pointer-events: none;
    }
    nav .navbar-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; }
    #header-nav .nav-link { color: rgba(255,255,255,0.85); font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
    #header-nav .nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
    .btn-custom { border-radius: 10px; font-weight: 600; padding: 10px 26px; transition: all 0.25s; font-family: 'Syne', sans-serif; }
    .btn-custom-orange { background: linear-gradient(135deg, #f28900, #e07000); color: white; border: none; box-shadow: 0 4px 14px rgba(242,137,0,0.3); }
    .btn-custom-orange:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(242,137,0,0.4); color: white; }
    .btn-outline-light-custom { color: white; border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
    .btn-outline-light-custom:hover { background: rgba(255,255,255,0.15); color: white; border-color: white; transform: translateY(-2px); }

    /* ── HERO ── */
    #hero { padding: 80px 0 120px; position: relative; z-index: 1; }
    #hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; letter-spacing: -0.02em; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(64,224,208,0.15); border: 1px solid rgba(64,224,208,0.3); border-radius: 40px; padding: 6px 18px; font-size: 0.82rem; color: var(--accent-cyan); font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(4px); }
    .hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-cyan); animation: pulse 1.5s infinite; display: inline-block; }
    @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
    .hero-sub { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 60px; padding: 10px 28px; display: inline-block; font-size: 0.95rem; }
    .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
    .hero-stat { text-align: center; }
    .hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent-cyan); line-height: 1; }
    .hero-stat-label { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; }
    .hero-visual { position: relative; }
    .hero-card-float {
      background: rgba(255,255,255,0.08); backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
      padding: 20px 24px; color: white;
      animation: floatCard 4s ease-in-out infinite;
    }
    @keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    .hero-card-float.delay-1 { animation-delay: 1s; }
    .hero-card-float.delay-2 { animation-delay: 2s; }
    .lead-score-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.15); overflow: hidden; margin-top: 6px; }
    .lead-score-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--accent-cyan), var(--primary-orange)); animation: growBar 2s ease-out forwards; }
    @keyframes growBar { from { width: 0; } }

    /* ── FILTER CARD ── */
    #filter-cards {
      background: white; border-radius: 24px;
      box-shadow: 0 24px 48px -12px rgba(0,0,0,0.18);
      border: 1px solid rgba(0,75,87,0.12);
      padding: 32px 28px; margin-top: -70px;
      z-index: 20; position: relative;
    }
    .filter-search-input { border: 1.5px solid #dce4ec; border-radius: 60px; padding: 12px 22px; font-size: 0.95rem; transition: 0.2s; }
    .filter-search-input:focus { border-color: var(--primary-teal); box-shadow: 0 0 0 3px rgba(0,75,87,0.12); outline: none; }
    .filter-search-btn { background: var(--primary-teal); border: none; padding: 12px 28px; border-radius: 60px; font-weight: 700; font-family: 'Syne', sans-serif; letter-spacing: 0.5px; transition: 0.25s; }
    .filter-search-btn:hover { background: #002f38; transform: scale(1.03); box-shadow: 0 6px 18px rgba(0,75,87,0.25); }
    .filter-dropdown-btn { background: white; border: 1.5px solid #cbd5e1; border-radius: 60px; padding: 9px 20px; font-weight: 500; color: #1e293b; transition: all 0.2s; font-size: 0.88rem; }
    .filter-dropdown-btn:hover { border-color: var(--primary-teal); color: var(--primary-teal); }
    .reset-filter-btn { background: #f1f5f9; border: none; border-radius: 60px; padding: 9px 18px; font-size: 0.85rem; font-weight: 500; transition: 0.2s; }
    .reset-filter-btn:hover { background: #fee2e2; color: #b91c1c; }

    /* ── LEAD CARDS ── */
    .leadx-card {
      background: white; border-radius: 20px; padding: 26px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: all 0.35s cubic-bezier(0.2,0.9,0.4,1.1);
      border: 1px solid #edf2f7; height: 100%; position: relative; overflow: hidden;
    }
    .leadx-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--primary-teal), var(--accent-cyan));
      transform: scaleX(0); transform-origin: left; transition: 0.35s;
    }
    .leadx-card:hover { transform: translateY(-10px); box-shadow: 0 24px 40px -12px rgba(0,75,87,0.2); border-color: rgba(0,75,87,0.2); }
    .leadx-card:hover::before { transform: scaleX(1); }
    .leadx-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: #334155; }
    .leadx-item i { color: var(--primary-teal); width: 22px; }
    .leadx-name { font-weight: 700; color: var(--primary-teal); font-family: 'Syne', sans-serif; font-size: 1rem; }
    .leadx-icons i { font-size: 1.1rem; margin-right: 12px; color: #94a3b8; cursor: pointer; transition: 0.2s; }
    .leadx-icons i:hover { color: var(--primary-orange); transform: scale(1.2); }
    .leadx-btn { width: 100%; background: linear-gradient(135deg, var(--primary-teal), #006d7e); border: none; border-radius: 40px; padding: 11px; font-weight: 700; font-family: 'Syne', sans-serif; font-size: 0.85rem; letter-spacing: 0.5px; transition: 0.25s; }
    .leadx-btn:hover { background: linear-gradient(135deg, var(--primary-orange), #d97700); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,137,0,0.35); }
    .lead-badge { font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

    /* ── SECTION STYLES ── */
    .section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary-blue); margin-bottom: 10px; }
    .section-title { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.2; }

    /* ── HOW IT WORKS ── */
    #how-it-works { background: var(--soft-bg); }
    .step-number { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-teal), var(--secondary-blue)); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: white; margin: 0 auto 16px; box-shadow: 0 8px 20px rgba(0,75,87,0.3); }
    .step-connector { position: absolute; top: 28px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: linear-gradient(90deg, var(--primary-teal), transparent); }
    .step-card { text-align: center; position: relative; padding: 32px 20px; background: white; border-radius: 20px; border: 1px solid #edf2f7; transition: 0.3s; }
    .step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px -8px rgba(0,75,87,0.15); }
    .step-icon-wrap { width: 64px; height: 64px; border-radius: 18px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }

    /* ── STATS TICKER ── */
    #stats-ticker { background: linear-gradient(90deg, var(--primary-teal) 0%, #006d7e 100%); overflow: hidden; padding: 20px 0; }
    .ticker-track { display: flex; gap: 60px; animation: ticker 25s linear infinite; white-space: nowrap; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item { display: flex; align-items: center; gap: 12px; color: white; font-weight: 600; font-family: 'Syne', sans-serif; }
    .ticker-item i { color: var(--accent-cyan); }

    /* ── INDUSTRY GRID ── */
    .industry-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px; border-radius: 40px; font-size: 0.88rem; font-weight: 500;
      background: white; border: 1.5px solid #e2e8f0; cursor: pointer; transition: all 0.2s;
      text-decoration: none; color: var(--body-text);
    }
    .industry-pill:hover { background: var(--primary-teal); color: white; border-color: var(--primary-teal); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,75,87,0.2); }

    /* ── AI INSIGHTS ── */
    .insight-card { background: white; border-radius: 20px; padding: 30px; border: 1px solid #eef2f7; transition: 0.3s; position: relative; overflow: hidden; }
    .insight-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--teal-light); opacity: 0.6; transition: 0.3s; }
    .insight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,75,87,0.15); }
    .insight-card:hover::after { transform: scale(1.5); }
    .insight-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--primary-teal), var(--secondary-blue)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; margin-bottom: 18px; }

    /* ── PRICING ── */
    #pricing { background: linear-gradient(180deg, #f4fbfc 0%, white 100%); }
    .pricing-card { background: white; border-radius: 24px; padding: 36px 30px; border: 2px solid #edf2f7; transition: 0.35s; position: relative; overflow: hidden; }
    .pricing-card.popular { border-color: var(--primary-teal); background: linear-gradient(160deg, #003c47 0%, #006d7e 100%); color: white; transform: scale(1.04); box-shadow: 0 30px 60px -20px rgba(0,75,87,0.4); }
    .pricing-card:not(.popular):hover { border-color: var(--primary-teal); transform: translateY(-8px); box-shadow: 0 20px 40px -12px rgba(0,75,87,0.15); }
    .popular-badge { position: absolute; top: 20px; right: 20px; background: var(--primary-orange); color: white; font-size: 0.7rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; font-family: 'Syne', sans-serif; letter-spacing: 1px; text-transform: uppercase; }
    .price-amount { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; }
    .price-period { font-size: 0.85rem; opacity: 0.7; }
    .pricing-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
    .pricing-feature i { width: 20px; }
    .pricing-card.popular .pricing-feature i { color: var(--accent-cyan); }
    .pricing-card:not(.popular) .pricing-feature i { color: var(--primary-teal); }
    .btn-pricing { width: 100%; border-radius: 40px; padding: 12px; font-weight: 700; font-family: 'Syne', sans-serif; transition: 0.25s; border: none; }
    .btn-pricing-outline { background: transparent; border: 2px solid var(--primary-teal) !important; color: var(--primary-teal); }
    .btn-pricing-outline:hover { background: var(--primary-teal); color: white; transform: translateY(-2px); }
    .btn-pricing-solid { background: linear-gradient(135deg, var(--primary-orange), #d97700); color: white; }
    .btn-pricing-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(242,137,0,0.4); }
    .btn-pricing-white { background: white; color: var(--primary-teal); }
    .btn-pricing-white:hover { background: var(--accent-cyan); transform: translateY(-2px); }

    /* ── CTA BANNER ── */
    #cta-banner {
      background: linear-gradient(135deg, #003242 0%, #006d7e 100%);
      border-radius: 32px; overflow: hidden; position: relative;
    }
    #cta-banner::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2340e0d0' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-orb { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(64,224,208,0.2), transparent); }

    /* ── SERVICES ── */
    .service-card { background: white; border-radius: 20px; padding: 30px; border: 1.5px solid #edf2f7; transition: 0.3s; cursor: pointer; }
    .service-card:hover { transform: translateY(-6px); border-color: var(--primary-teal); box-shadow: 0 20px 35px -10px rgba(0,75,87,0.15); }
    .service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
    .service-card .leadx-btn { margin-top: 16px; background: transparent; border: 2px solid var(--primary-teal) !important; color: var(--primary-teal); font-size: 0.82rem; padding: 9px; }
    .service-card .leadx-btn:hover { background: var(--primary-teal); color: white; }

    /* ── WHY US ── */
    #why-choose-us { background: linear-gradient(160deg, #003242 0%, #006d7e 100%); color: white; }
    .stat-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 24px; text-align: center; backdrop-filter: blur(8px); transition: 0.3s; }
    .stat-box:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
    .stat-number { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--accent-cyan); line-height: 1; }
    .stat-label { font-size: 0.82rem; opacity: 0.8; margin-top: 6px; }
    .why-point { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
    .why-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(64,224,208,0.15); border: 1px solid rgba(64,224,208,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent-cyan); font-size: 1.1rem; flex-shrink: 0; }

    /* ── TESTIMONIALS ── */
    .testimonial-card { background: white; border-radius: 24px; padding: 32px; border: 1px solid #eef2f6; transition: 0.3s; }
    .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px -8px rgba(0,75,87,0.12); }
    .stars i { color: var(--primary-orange); font-size: 0.9rem; }
    .testimonial-quote { font-size: 3rem; color: var(--teal-light); line-height: 1; font-family: 'Syne', sans-serif; }
    .reviewer-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--teal-light); }

    /* ── PARTNERS ── */
    .partner-logo img { filter: grayscale(1); opacity: 0.5; transition: 0.3s; max-height: 40px; }
    .partner-logo:hover img { filter: grayscale(0); opacity: 1; }

    /* ── FAQ ── */
    .faq-item { background: white; border-radius: 16px; border: 1.5px solid #edf2f7; overflow: hidden; margin-bottom: 12px; transition: 0.3s; }
    .faq-item:hover { border-color: rgba(0,75,87,0.3); }
    .faq-question { padding: 18px 22px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Syne', sans-serif; }
    .faq-question .fa-chevron-down { transition: 0.3s; color: var(--primary-teal); }
    .faq-question.open .fa-chevron-down { transform: rotate(180deg); }
    .faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: 0.4s; font-size: 0.9rem; color: #64748b; }
    .faq-answer.open { padding: 0 22px 18px; max-height: 200px; }

    /* ── NEWSLETTER ── */
    #newsletter { background: var(--soft-bg); }
    .newsletter-input { border: 1.5px solid #e2e8f0; border-radius: 60px 0 0 60px; padding: 14px 24px; font-size: 0.95rem; flex: 1; outline: none; border-right: none; transition: 0.2s; }
    .newsletter-input:focus { border-color: var(--primary-teal); }
    .newsletter-btn { background: var(--primary-teal); color: white; border: none; padding: 14px 28px; border-radius: 0 60px 60px 0; font-weight: 700; font-family: 'Syne', sans-serif; transition: 0.2s; }
    .newsletter-btn:hover { background: #002f38; }

    /* ── FOOTER ── */
    footer { background: linear-gradient(160deg, #00212d 0%, #003242 100%); color: white; border-radius: 40px 40px 0 0; }
    .footer-link { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 8px; transition: 0.2s; }
    .footer-link:hover { color: var(--accent-cyan); padding-left: 4px; }
    .social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.2s; }
    .social-btn:hover { background: var(--primary-orange); color: white; transform: translateY(-3px); }
    .footer-bottom { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }

    /* ── ANIMATIONS ── */
    @keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
    .shimmer-text {
      background: linear-gradient(90deg, var(--accent-cyan) 0%, white 40%, var(--accent-cyan) 80%);
      background-size: 400px;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      animation: shimmer 4s linear infinite;
    }
    @keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 768px) {
      #hero { padding: 50px 0 100px; }
      #hero h1 { font-size: 2rem; }
      .hero-stats { gap: 20px; }
      .pricing-card.popular { transform: none; }
    }

/*   MENU */
/* User Controls Container */
.user-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Credits Badge */
.credits-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 137, 0, 0.2);
  border: 1px solid rgba(242, 137, 0, 0.4);
  border-radius: 40px;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.credits-badge:hover {
  background: rgba(242, 137, 0, 0.35);
  transform: translateY(-2px);
}

.credits-badge i {
  color: #f28900;
  font-size: 0.9rem;
}

.credits-amount {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.credits-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* User Dropdown Styles */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.user-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-avatar-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f28900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.9rem;
}

.user-name {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.user-chevron {
  color: white;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.user-dropdown-trigger.active .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.user-dropdown-name {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.user-dropdown-email {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 10px;
}

.user-dropdown-credits {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  margin-top: 8px;
}

.user-dropdown-credits i {
  color: #f28900;
}

.user-dropdown-credits span {
  flex: 1;
  color: #1e293b;
  font-weight: 500;
}

.user-dropdown-credits .btn-buy {
  background: #004b57;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: 0.2s;
}

.user-dropdown-credits .btn-buy:hover {
  background: #003d47;
}

.user-dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #334155;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.user-dropdown-item:hover {
  background: #f8fafc;
  color: #004b57;
  padding-left: 20px;
}

.user-dropdown-item i {
  width: 18px;
  color: #64748b;
  font-size: 0.9rem;
}

.user-dropdown-item:hover i {
  color: #004b57;
}

.user-dropdown-item.text-danger {
  color: #dc2626;
}

.user-dropdown-item.text-danger:hover {
  background: #fef2f2;
  color: #b91c1c;
}

.user-dropdown-item.text-danger:hover i {
  color: #b91c1c;
}

/* Dropdown overlay */
.user-dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}

.user-dropdown-overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .user-controls {
    gap: 10px;
  }
  .credits-badge {
    padding: 4px 12px;
  }
  .credits-amount {
    font-size: 0.8rem;
  }
  .credits-label {
    display: none;
  }
  .user-name {
    display: none;
  }
  .user-dropdown-trigger {
    padding: 4px 8px;
  }
}