/* ═══════════════════════════════════════════════════════
   Services Page — Advanced Cyan & Orange Glassmorphism
   ═══════════════════════════════════════════════════════ */

/* ── Background & Ambient Lighting ── */
.hero-bg-wrapper {
  background-image: url('signals bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Rich obsidian overlay with dual cyan and orange light leaks */
.hero-bg-wrapper::after {
  background:
    linear-gradient(165deg,
      rgba(5, 6, 12, 0.98) 0%,
      rgba(8, 14, 32, 0.94) 40%,
      rgba(10, 20, 48, 0.85) 75%,
      rgba(5, 8, 20, 0.95) 100%);
}

/* Floating ambient orbs (Cyan & Orange theme) */
.services-main::before,
.services-main::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.22;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.services-main::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00f0ff, transparent 70%); /* Cyan Orb */
  top: 8%;
  left: -10%;
  animation-delay: 0s;
}

.services-main::after {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #ff7a00, transparent 70%); /* Orange Orb */
  bottom: 12%;
  right: -8%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(-50px) scale(1.08); }
}

/* ── Main layout ── */
.services-main {
  padding: 160px 40px 120px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Header section ── */
.services-header {
  text-align: center;
  margin-bottom: 20px;
  max-width: 820px;
}

.services-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  backdrop-filter: blur(14px);
}

.services-header .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00f0ff; /* Cyan status light */
  box-shadow: 0 0 10px #00f0ff;
}

.services-header .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(120deg, #00f0ff 0%, #ff7a00 50%, #00f0ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header .gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header .section-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Divider line ── */
.services-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5) 30%, rgba(255, 122, 0, 0.5) 70%, transparent);
  margin: 36px auto 0;
  border: none;
}

/* ── Trust strip ── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 44px 0 10px;
  padding: 22px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #00f0ff; /* Cyan icons */
}

.trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

/* ── Glassy Card Templates ── */
.pricing-card {
  background: rgba(8, 14, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 28px;
  padding: 44px 30px 36px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.card-package-icon {
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover .card-package-icon {
  transform: scale(1.22) rotate(6deg);
}

/* Glassy top reflective border */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
  border-radius: 0 0 4px 4px;
  transition: all 0.38s ease;
  opacity: 0.5;
}

/* Ambient glow hover shadow sweep */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
  border-radius: 28px;
}

.pricing-card:hover::after {
  left: 130%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.25); /* Cyan border glow */
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 15px rgba(0, 240, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card:hover::before {
  left: 5%;
  right: 5%;
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.7), transparent);
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.2px;
}

.card-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
  color: var(--text-light);
  font-family: var(--font-heading);
  position: relative;
}

.price-symbol {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  margin-right: 3px;
  opacity: 0.75;
  color: #00f0ff; /* Cyan currency */
}

.price-val {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 40%, rgba(0, 240, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cyan/Orange gradient price separators */
.card-price-sep {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff7a00);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  transition: color 0.2s ease;
  text-align: left;
}

.card-features li:hover {
  color: #ffffff;
}

.check-icon {
  width: 17px;
  height: 17px;
  stroke: #00f0ff; /* Cyan checkmarks */
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.3));
}

/* Glassy Orange/Cyan CTA Button */
.card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: #00f0ff;
  transition: all 0.28s ease;
  box-shadow: 0 2px 12px rgba(0, 240, 255, 0.08);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00f0ff 0%, #ff7a00 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  border-radius: 13px;
}

.card-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 122, 0, 0.7);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.3);
  transform: translateY(-2px);
}

.card-btn:hover::before {
  opacity: 1;
}

.card-btn span {
  position: relative;
  z-index: 1;
}

/* Custom premium animation for Join Free Groups button */
#btnJoinFreeGroups {
  position: relative;
  overflow: hidden;
  animation: btnPulse 3.5s infinite ease-in-out;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Shimmer overlay effect */
#btnJoinFreeGroups::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(0, 240, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  animation: btnShimmer 4s infinite ease-in-out;
}

/* Light Theme shimmer adjustment for better visibility */
body.light-theme #btnJoinFreeGroups::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(0, 151, 167, 0.25) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    transparent 100%
  );
}

/* Shimmer Keyframes */
@keyframes btnShimmer {
  0% {
    left: -150%;
  }
  35% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

/* Pulse Keyframes (Dark Theme) */
@keyframes btnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(0, 240, 255, 0.15), 0 0 0 0 rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.25);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 6px 24px rgba(0, 240, 255, 0.35), 0 0 14px 2px rgba(0, 240, 255, 0.25);
    border-color: rgba(0, 240, 255, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(0, 240, 255, 0.15), 0 0 0 0 rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.25);
  }
}

/* Pulse Keyframes (Light Theme) */
body.light-theme #btnJoinFreeGroups {
  animation: btnPulseLight 3.5s infinite ease-in-out;
}

@keyframes btnPulseLight {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(0, 151, 167, 0.1), 0 0 0 0 rgba(0, 151, 167, 0.05);
    border-color: rgba(0, 151, 167, 0.25);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 6px 24px rgba(0, 151, 167, 0.25), 0 0 14px 2px rgba(0, 151, 167, 0.15);
    border-color: rgba(0, 151, 167, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 12px rgba(0, 151, 167, 0.1), 0 0 0 0 rgba(0, 151, 167, 0.05);
    border-color: rgba(0, 151, 167, 0.25);
  }
}

/* Hover and Focus States */
#btnJoinFreeGroups:hover {
  animation: none; /* Pause pulsing during hover to feel stable */
  transform: translateY(-4px) scale(1.04);
  color: #ffffff;
  border-color: rgba(255, 122, 0, 0.85);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.3);
}

body.light-theme #btnJoinFreeGroups:hover {
  animation: none; /* Pause pulsing during hover to feel stable */
  transform: translateY(-4px) scale(1.04);
  color: #ffffff;
  border-color: rgba(0, 151, 167, 0.7);
  box-shadow: 0 10px 25px rgba(0, 151, 167, 0.35), 0 0 15px rgba(0, 151, 167, 0.2);
}

/* Active State (Click effect) */
#btnJoinFreeGroups:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 4px 10px rgba(0, 240, 255, 0.2);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

body.light-theme #btnJoinFreeGroups:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 4px 10px rgba(0, 151, 167, 0.2);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

/* Featured card: Monthly Signals (Best Seller) */
.pricing-card--featured {
  border: 1.5px solid rgba(255, 122, 0, 0.35); /* Orange border */
  background: rgba(10, 20, 50, 0.5);
  box-shadow:
    0 8px 40px rgba(255, 122, 0, 0.12),
    inset 0 1px 0 rgba(255, 122, 0, 0.12);
}

.pricing-card--featured::before {
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.9), rgba(0, 240, 255, 0.6), transparent);
  opacity: 0.85;
  left: 0;
  right: 0;
}

.pricing-card--featured:hover {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow:
    0 30px 70px rgba(255, 122, 0, 0.22),
    0 0 0 1px rgba(255, 122, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Best Seller Orange badge */
.card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff4500, #ff8c00, #ff007f, #ff4500);
  background-size: 300% 300%;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 10;
  overflow: hidden;
  animation: badgeFloat 3.5s ease-in-out infinite, gradientMove 6s ease infinite;
}

.card-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-25deg);
  animation: badgeShine 4s infinite ease-in-out;
}

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

@keyframes badgeFloat {
  0%, 100% {
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    transform: translate(-50%, -4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5), 0 0 0 3px rgba(255, 87, 34, 0.15);
  }
}

@keyframes badgeShine {
  0% { left: -150%; }
  50%, 100% { left: 150%; }
}

/* ── SMC Vector Chart Monitor Widget ── */
.chart-monitor-wrapper {
  display: flex;
  justify-content: center;
  margin: 50px auto 70px auto;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.chart-monitor-card {
  background: rgba(8, 14, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 14px;
}

.chart-status-blinker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 10px #00f0ff;
  animation: statusPulse 1.5s infinite ease-in-out;
}

.chart-title-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.smc-svg-chart {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FAQ Section ── */
.pricing-faq-section {
  max-width: 850px;
  margin: 60px auto 40px auto;
  width: 100%;
}

.faq-section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.02);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.faq-trigger:hover {
  color: #00f0ff;
}

.faq-trigger .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
  color: #00f0ff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Checkout Popup Modal ── */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.checkout-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.checkout-card-outer {
  background: rgba(8, 14, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: var(--glass-blur);
}

.btn-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.btn-modal-close:hover {
  color: #fff;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: left;
}

.checkout-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: left;
}

.checkout-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkout-price-bold {
  font-size: 1.25rem;
  font-weight: 800;
  color: #00f0ff;
  font-family: var(--font-heading);
}

.checkout-billing-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: left;
}

.form-group input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 11px;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-checkout-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00f0ff 0%, #ff7a00 100%);
  border: none;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-checkout-submit:hover {
  background: linear-gradient(135deg, #02d5e3 0%, #e06c00 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.secure-checkout-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
}

/* Spinner */
.process-spinner-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(0, 240, 255, 0.1);
  border-top-color: #00f0ff;
  animation: spin 1s linear infinite;
  margin: 30px auto 20px auto;
  position: relative;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* ── PROFESSIONAL LOADING ANIMATIONS ── */
.anim-load-ticker {
  animation: slideDown 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.anim-load-1 {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.1s;
}

.anim-load-2 {
  animation: scaleReveal 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both, shiftGradient 6s linear infinite;
  animation-delay: 0.25s, 0.25s;
}

.anim-load-3 {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.4s;
}

.anim-load-4 {
  animation: dividerGrow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.5s;
}

.anim-load-5 {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.6s;
}

.anim-load-6 {
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 1.1s;
}

/* Pricing Card stagger entrance delays */
.pricing-card.anim-card-1 {
  animation: cardReveal 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.65s;
}

.pricing-card.anim-card-2 {
  animation: cardReveal 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.78s;
}

.pricing-card.anim-card-3 {
  animation: cardReveal 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 0.92s;
}

.pricing-card.anim-card-4 {
  animation: cardReveal 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: 1.05s;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes dividerGrow {
  from { width: 0%; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}

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

/* ── Responsive adjustments ── */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }
  
  .chart-monitor-wrapper {
    max-width: 800px;
    margin: 30px auto 50px auto;
  }
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 380px;
  }
  
  .services-main {
    padding: 140px 20px 100px;
  }
  
  .trust-strip {
    gap: 20px;
    padding: 16px;
  }
  
  .trust-sep {
    display: none;
  }
  
  .chart-monitor-wrapper {
    display: none; /* Hide interactive chart on small mobile screens for spacing sanity */
  }
}

/* ── Light Theme Overrides for Services Page ── */
body.light-theme .hero-bg-wrapper::after {
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(240, 243, 248, 0.92) 100%);
}

body.light-theme .services-header .section-tag {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
  color: #1e293b;
}

body.light-theme .services-header .section-title {
  background: linear-gradient(120deg, #007791 0%, #e65100 50%, #007791 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-theme .services-header .section-subtitle {
  color: #4b5563;
}

body.light-theme .services-divider {
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3) 30%, rgba(255, 122, 0, 0.3) 70%, transparent);
}

body.light-theme .trust-strip {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

body.light-theme .trust-item {
  color: #334155;
}

body.light-theme .trust-item svg {
  stroke: #007791; /* Darker cyan for light mode contrast */
}

body.light-theme .trust-sep {
  background: rgba(0, 0, 0, 0.08);
}

body.light-theme .pricing-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body.light-theme .pricing-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(0, 240, 255, 0.05);
}

body.light-theme .card-title {
  color: #0d1117;
}

body.light-theme .price-symbol {
  color: #007791;
}

body.light-theme .price-val {
  background: linear-gradient(135deg, #0d1117 40%, #007791 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-theme .card-features li {
  color: #334155;
}

body.light-theme .card-features li:hover {
  color: #0d1117;
}

body.light-theme .check-icon {
  stroke: #0097a7; /* Darker cyan checkmarks */
  filter: drop-shadow(0 0 3px rgba(0, 151, 167, 0.2));
}

body.light-theme .card-btn {
  background: rgba(0, 151, 167, 0.06);
  border-color: rgba(0, 151, 167, 0.25);
  color: #007791;
  box-shadow: 0 2px 12px rgba(0, 151, 167, 0.04);
}

body.light-theme .card-btn:hover {
  color: #ffffff;
}

body.light-theme .pricing-card--featured {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow:
    0 15px 40px rgba(255, 122, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.light-theme .pricing-card--featured:hover {
  border-color: rgba(255, 122, 0, 0.6);
  box-shadow:
    0 30px 60px rgba(255, 122, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.light-theme .chart-monitor-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

body.light-theme .chart-title-text {
  color: #0d1117;
}

body.light-theme .smc-svg-chart line {
  stroke: rgba(0, 0, 0, 0.04);
}

body.light-theme .faq-section-title {
  color: #0d1117;
}

body.light-theme .faq-item {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .faq-item.active {
  border-color: rgba(0, 151, 167, 0.35);
  background: rgba(0, 151, 167, 0.03);
}

body.light-theme .faq-trigger {
  color: #0d1117;
}

body.light-theme .faq-trigger:hover {
  color: #007791;
}

body.light-theme .faq-item.active .chevron {
  color: #007791;
}

body.light-theme .faq-content-inner {
  color: #4b5563;
}

/* Modal Popups in light theme */
body.light-theme .checkout-card-outer {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}

body.light-theme .checkout-title {
  color: #0d1117;
}

body.light-theme .checkout-sub {
  color: #4b5563;
}

body.light-theme .checkout-price-box {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
  color: #0d1117;
}

body.light-theme .checkout-price-bold {
  color: #007791;
}

body.light-theme .form-group label {
  color: #4b5563;
}

body.light-theme .form-group input {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  color: #0d1117;
}

body.light-theme .form-group input:focus {
  border-color: #007791;
}

body.light-theme .btn-modal-close {
  color: #9ca3af;
}

body.light-theme .btn-modal-close:hover {
  color: #0d1117;
}

/* ── Join Free Groups Popup Modal ── */
.groups-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.groups-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.groups-card-outer {
  background: radial-gradient(circle at top left, rgba(16, 24, 48, 0.96) 0%, rgba(8, 12, 22, 0.98) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 28px;
  padding: 44px 32px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.05);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.groups-modal-overlay.show .groups-card-outer {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: borderGlowPulse 6s ease-in-out infinite;
}

/* Floating animation inside the outer card */
.groups-card-inner {
  animation: modalFloat 6s ease-in-out infinite alternate;
}

@keyframes modalFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@keyframes borderGlowPulse {
  0% { border-color: rgba(0, 240, 255, 0.15); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.05); }
  50% { border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 136, 0.12); }
  100% { border-color: rgba(0, 240, 255, 0.15); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.05); }
}

.btn-groups-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 5;
}

.btn-groups-modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.groups-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #00f0ff, #00ff88, #ffaa00, #00ff88, #00f0ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shiftGradient 4s linear infinite;
}

.groups-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

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

/* Group Link Buttons */
.group-link-btn {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  text-align: left;
  gap: 16px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.groups-modal-overlay.show .group-link-btn {
  animation: groupsLinkReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--delay, 0s);
}

@keyframes groupsLinkReveal {
  0% { transform: translateY(20px) scale(0.97); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.group-link-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.group-link-btn:hover::after {
  left: 150%;
  transition: left 0.85s ease-in-out;
}

/* Icon badge setups */
.social-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.group-link-btn .social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 10px;
  box-sizing: content-box;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.group-link-btn.whatsapp-btn .social-icon {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #25d366;
}

/* Small Link Badge Overlay */
.small-link-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #00f0ff;
  border: 2px solid rgba(15, 20, 32, 0.98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 240, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

body.light-theme .small-link-badge {
  border-color: #ffffff;
  background: #007791;
  box-shadow: 0 2px 8px rgba(0, 119, 145, 0.25);
}

.small-link-badge svg {
  width: 10px;
  height: 10px;
  color: #0c101b;
  stroke: currentColor;
}

body.light-theme .small-link-badge svg {
  color: #ffffff;
}

/* Hover scales small badge */
.group-link-btn:hover .small-link-badge {
  transform: scale(1.2) rotate(15deg);
  background: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

body.light-theme .group-link-btn:hover .small-link-badge {
  background: #00a86b;
  box-shadow: 0 0 12px rgba(0, 168, 107, 0.4);
}

.group-link-btn.telegram-btn .social-icon {
  background: rgba(36, 161, 222, 0.12);
  border: 1px solid rgba(36, 161, 222, 0.22);
  color: #24a1de;
}

.group-link-btn .group-btn-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.group-link-btn .group-btn-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.group-link-btn .group-btn-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.group-link-btn .arrow-right-icon {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  opacity: 0.4;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease, color 0.2s ease;
}

/* Hover effects */
.group-link-btn:hover {
  transform: translateY(-4px) scale(1.015);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.group-link-btn.whatsapp-btn:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
}

.group-link-btn.telegram-btn:hover {
  box-shadow: 0 10px 25px rgba(36, 161, 222, 0.12);
  border-color: rgba(36, 161, 222, 0.35);
}

.group-link-btn:hover .social-icon {
  transform: scale(1.15) rotate(8deg);
}

.group-link-btn.whatsapp-btn:hover .social-icon {
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.group-link-btn.telegram-btn:hover .social-icon {
  background: rgba(36, 161, 222, 0.22);
  box-shadow: 0 0 15px rgba(36, 161, 222, 0.3);
}

.group-link-btn:hover .arrow-right-icon {
  transform: translateX(4px);
  opacity: 0.9;
  color: var(--text-light);
}

.group-link-btn:active {
  transform: translateY(-1px) scale(0.995);
}

/* Light Theme Overrides */
body.light-theme .groups-card-outer {
  background: radial-gradient(circle at top left, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 70px rgba(13, 17, 23, 0.12);
  animation: borderGlowPulseLight 6s ease-in-out infinite;
}

@keyframes borderGlowPulseLight {
  0% { border-color: rgba(0, 119, 145, 0.12); box-shadow: 0 30px 70px rgba(13, 17, 23, 0.08), 0 0 20px rgba(0, 119, 145, 0.03); }
  50% { border-color: rgba(0, 168, 107, 0.22); box-shadow: 0 30px 70px rgba(13, 17, 23, 0.08), 0 0 30px rgba(0, 168, 107, 0.08); }
  100% { border-color: rgba(0, 119, 145, 0.12); box-shadow: 0 30px 70px rgba(13, 17, 23, 0.08), 0 0 20px rgba(0, 119, 145, 0.03); }
}

body.light-theme .btn-groups-modal-close {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
}

body.light-theme .btn-groups-modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

body.light-theme .group-link-btn {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.02) 0%, rgba(13, 17, 23, 0.005) 100%);
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .group-link-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .group-link-btn .group-btn-title {
  color: #0d1117;
}

body.light-theme .group-link-btn .group-btn-desc {
  color: #475569;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
}

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

/* ===================== Premium Purchase Prompt Modal ===================== */
@keyframes premiumIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 162, 54, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(240, 162, 54, 0); }
}

@keyframes socialPopIn {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.premium-prompt-card {
  background: var(--modal-bg, #0f121a);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 48px 40px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(240, 162, 54, 0.08);
}

.modal-overlay.active .premium-prompt-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Reset inner elements to prepare for staggered entry */
.premium-prompt-card .premium-prompt-icon,
.premium-prompt-card .premium-prompt-tag,
.premium-prompt-card .premium-prompt-title,
.premium-prompt-card .premium-prompt-body,
.premium-prompt-card .premium-prompt-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Staggered slide up when active */
.modal-overlay.active .premium-prompt-card .premium-prompt-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.modal-overlay.active .premium-prompt-card .premium-prompt-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.modal-overlay.active .premium-prompt-card .premium-prompt-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.modal-overlay.active .premium-prompt-card .premium-prompt-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.modal-overlay.active .premium-prompt-card .premium-prompt-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Lock Icon */
.premium-prompt-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(240, 162, 54, 0.1);
  border: 1px solid rgba(240, 162, 54, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: premiumIconPulse 2.4s ease-in-out infinite;
  color: var(--accent-red);
}

.premium-prompt-icon svg {
  width: 34px;
  height: 34px;
}

/* Tag / eyebrow text */
.premium-prompt-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Title */
.premium-prompt-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

/* Body text */
.premium-prompt-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.premium-highlight {
  color: var(--accent-red);
  font-weight: 700;
}

/* Action Buttons Row */
.premium-prompt-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-premium-no {
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-premium-no:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Socials panel */
.premium-socials {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.premium-socials-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 22px;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: socialLabelFade 0.4s ease 0.1s forwards;
}

@keyframes socialLabelFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.premium-socials-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual social icon buttons */
.social-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 16px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.2s ease, box-shadow 0.25s ease;
  opacity: 0;
  animation: socialPopIn 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) var(--delay, 0s) forwards;
  min-width: 72px;
}

.social-icon-btn svg {
  width: 36px;
  height: 36px;
}

.social-icon-btn span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.social-icon-btn:hover {
  transform: translateY(-5px) scale(1.06);
}

/* Platform-specific colours */
.social-whatsapp { color: #25D366; }
.social-whatsapp:hover { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.3); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }
.social-whatsapp:hover span { color: #25D366; }

.social-telegram { color: #2AABEE; }
.social-telegram:hover { background: rgba(42, 171, 238, 0.12); border-color: rgba(42, 171, 238, 0.3); box-shadow: 0 8px 24px rgba(42, 171, 238, 0.25); }
.social-telegram:hover span { color: #2AABEE; }

.social-tiktok { color: #fff; }
.social-tiktok:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12); }
.social-tiktok:hover span { color: #fff; }

.social-instagram { color: #E1306C; }
.social-instagram:hover { background: rgba(225, 48, 108, 0.12); border-color: rgba(225, 48, 108, 0.3); box-shadow: 0 8px 24px rgba(225, 48, 108, 0.25); }
.social-instagram:hover span { color: #E1306C; }

.social-youtube { color: #FF0000; }
.social-youtube:hover { background: rgba(255, 0, 0, 0.12); border-color: rgba(255, 0, 0, 0.3); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25); }
.social-youtube:hover span { color: #FF0000; }

.social-email { color: var(--accent-red); }
.social-email:hover { background: rgba(240, 162, 54, 0.12); border-color: rgba(240, 162, 54, 0.3); box-shadow: 0 8px 24px rgba(240, 162, 54, 0.25); }
.social-email:hover span { color: var(--accent-red); }

/* Light theme override */
body.light-theme .premium-prompt-card {
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

body.light-theme .premium-prompt-title {
  color: #0a0c10;
}

body.light-theme .btn-premium-no {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.55);
}

body.light-theme .social-icon-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* 🛡️ Account Management WhatsApp Panel Styles 🛡️ */
.account-mgmt-section {
  margin-top: 80px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mgmt-premium-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mgmt-panel-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mgmt-panel-header {
  margin-bottom: 36px;
  max-width: 720px;
}

.mgmt-premium-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
  text-transform: uppercase;
}

.mgmt-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff 0%, #f0a236 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: spyyfx-text-shine 4s linear infinite;
}

@keyframes spyyfx-text-shine {
  to {
    background-position: 200% center;
  }
}

.mgmt-panel-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mgmt-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 780px;
  margin-bottom: 40px;
}

.mgmt-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 750;
  color: var(--text-light);
}

.mgmt-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  width: 100%;
  text-align: left;
  margin-bottom: 44px;
  padding: 0;
}

.mgmt-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mgmt-check-list li svg {
  width: 18px;
  height: 18px;
  color: #00ff88;
  flex-shrink: 0;
  margin-top: 3px;
}

.mgmt-check-list li span {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mgmt-check-list li strong {
  color: var(--text-light);
}

.mgmt-action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.mgmt-checkbox-container {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.real-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkmark {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
  margin-top: 2px;
}

.real-checkbox:checked ~ .custom-checkmark {
  background: #3fa9f5;
  border-color: #3fa9f5;
  box-shadow: 0 0 10px rgba(63, 169, 245, 0.4);
}

.custom-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0b0d10;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.real-checkbox:checked ~ .custom-checkmark::after {
  display: block;
}

.checkbox-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.terms-anchor {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.terms-anchor:hover {
  color: #00ff88;
}

.mgmt-wa-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.mgmt-wa-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.mgmt-wa-btn:disabled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  cursor: not-allowed;
  box-shadow: none;
}

.wa-btn-icon {
  width: 20px;
  height: 20px;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .mgmt-premium-panel {
    padding: 40px 24px;
  }
  .mgmt-stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mgmt-stat-box {
    padding: 16px;
  }
}

/* ── Light Theme Overrides ── */
body.light-theme .mgmt-premium-panel {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .mgmt-panel-glow {
  background: radial-gradient(circle, rgba(12, 84, 148, 0.05) 0%, transparent 70%);
}

body.light-theme .mgmt-panel-title {
  background: linear-gradient(90deg, #0d1117 0%, #e28f24 50%, #0d1117 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme .mgmt-stat-box {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.05);
}

body.light-theme .stat-value {
  color: #0d1117;
}

body.light-theme .mgmt-check-list li strong {
  color: #0d1117;
}

body.light-theme .mgmt-check-list li svg {
  color: #00796b;
}

body.light-theme .custom-checkmark {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
}

body.light-theme .real-checkbox:checked ~ .custom-checkmark {
  background: #0c5494;
  border-color: #0c5494;
}

body.light-theme .custom-checkmark::after {
  border-color: #ffffff;
}

body.light-theme .mgmt-wa-btn:disabled {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.35);
}

/* 📜 Terms & Conditions Modal Overlay Styles 📜 */
.terms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.terms-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.terms-card-outer {
  background: radial-gradient(circle at top left, rgba(16, 24, 48, 0.96) 0%, rgba(8, 12, 22, 0.98) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 28px;
  padding: 44px 36px 36px;
  max-width: 680px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.05);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  text-align: center;
}

.terms-modal-overlay.show .terms-card-outer {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: termsBorderGlowPulse 6s ease-in-out infinite;
}

@keyframes termsBorderGlowPulse {
  0% { border-color: rgba(0, 240, 255, 0.15); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.05); }
  50% { border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 136, 0.12); }
  100% { border-color: rgba(0, 240, 255, 0.15); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.05); }
}

.terms-card-inner {
  animation: termsModalFloat 6s ease-in-out infinite alternate;
}

@keyframes termsModalFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.btn-terms-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  line-height: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-terms-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: rotate(90deg);
}

.terms-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}

.terms-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 24px;
}

.terms-scroll-body {
  max-height: 340px;
  overflow-y: auto;
  text-align: left;
  padding-right: 16px;
  margin-bottom: 28px;
}

/* Premium scrollbar for terms modal */
.terms-scroll-body::-webkit-scrollbar {
  width: 6px;
}
.terms-scroll-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.terms-scroll-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.terms-scroll-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.terms-scroll-body h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 8px;
}

.terms-scroll-body h4:first-of-type {
  margin-top: 0;
}

.terms-scroll-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.btn-terms-close-action {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 36px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-terms-close-action:hover {
  background: var(--text-light);
  color: #0b0d10;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ── Light Theme Overrides ── */
body.light-theme .terms-card-outer {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}

body.light-theme .terms-title {
  color: #0d1117;
}

body.light-theme .terms-scroll-body h4 {
  color: #0d1117;
}

body.light-theme .terms-scroll-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}

body.light-theme .terms-scroll-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

body.light-theme .btn-terms-modal-close {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.55);
}

body.light-theme .btn-terms-modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #0d1117;
}

body.light-theme .btn-terms-close-action {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #0d1117;
}

body.light-theme .btn-terms-close-action:hover {
  background: #0d1117;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* DBot Image Preview Modal styles */
.feature-text-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.45;
}

.view-bot-link {
  color: #ff7a00;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.35);
  padding: 1px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(255, 122, 0, 0.1);
}
.view-bot-link:hover {
  background: rgba(255, 122, 0, 0.22);
  border-color: rgba(255, 122, 0, 0.7);
  color: #ffaa55;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
}
body.light-theme .view-bot-link {
  color: #d35400;
  background: rgba(211, 84, 0, 0.08);
  border-color: rgba(211, 84, 0, 0.28);
  box-shadow: 0 2px 6px rgba(211, 84, 0, 0.05);
}
body.light-theme .view-bot-link:hover {
  background: rgba(211, 84, 0, 0.15);
  border-color: rgba(211, 84, 0, 0.55);
  color: #a04000;
  box-shadow: 0 4px 10px rgba(211, 84, 0, 0.15);
}

.dbot-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.dbot-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.dbot-modal-card {
  position: relative;
  background: rgba(15, 18, 28, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  max-width: 90%;
  max-height: 85%;
  padding: 40px 30px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dbot-modal-overlay.active .dbot-modal-card {
  transform: translateY(0) scale(1);
}
.dbot-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.dbot-modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4a4a;
}
.dbot-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.dbot-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dbot-ctrl-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dbot-ctrl-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  transform: translateY(-1px);
}

.dbot-download-btn {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2) 0%, rgba(255, 74, 0, 0.2) 100%);
  border-color: rgba(255, 122, 0, 0.4);
  color: #ff9d42;
}

.dbot-download-btn:hover {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.3) 0%, rgba(255, 74, 0, 0.3) 100%);
  border-color: rgba(255, 122, 0, 0.7);
  color: #ffaa55;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.dbot-img-container {
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.dbot-modal-img {
  max-height: 60vh;
  max-width: 100%;
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

/* Light Theme overrides for DBot Modal */
body.light-theme .dbot-modal-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
body.light-theme .dbot-modal-title {
  color: #0d1117;
}
body.light-theme .dbot-modal-close {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.55);
}
body.light-theme .dbot-modal-close:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff3a3a;
}
body.light-theme .dbot-ctrl-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #334155;
}
body.light-theme .dbot-ctrl-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  color: #2563eb;
}
body.light-theme .dbot-download-btn {
  background: rgba(211, 84, 0, 0.08);
  border-color: rgba(211, 84, 0, 0.25);
  color: #d35400;
}
body.light-theme .dbot-download-btn:hover {
  background: rgba(211, 84, 0, 0.15);
  border-color: rgba(211, 84, 0, 0.5);
  color: #a04000;
}
body.light-theme .dbot-img-container {
  border-color: rgba(0, 0, 0, 0.08);
}
