:root {
  --bg-color: #06030c;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --accent-primary: #7c3aed;
  --accent-secondary: #4f46e5;
  --accent-pink: #ec4899;
  --accent-glow: rgba(124, 58, 237, 0.2);
  --purple-light: #c084fc;
  --glass-bg: rgba(10, 10, 25, 0.6);
  --glass-border: rgba(167, 139, 250, 0.2);
  --glass-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: 
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.12), transparent 30%),
    #050510;
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.5);
}

/* TOP ALERT BANNER (STICKY ALWAYS) */
.top-alert-banner {
  background: rgba(74, 10, 20, 0.95); /* deep maroon background */
  border-bottom: 1px solid rgba(250, 204, 21, 0.25); /* yellow-tinted border */
  padding: 12px 40px 12px 20px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  text-align: center;
  font-size: 13px;
  color: #fef08a; /* soft yellow text */
  line-height: 1.5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-alert-banner strong {
  color: #fff;
  font-weight: 700;
}

.top-alert-banner span strong {
  color: #facc15; /* gold/yellow strong text */
}

.alert-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fef08a; /* yellow close icon */
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px 8px;
}

.alert-close:hover {
  opacity: 1;
}

/* GLOW CIRCLES */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.15;
}

.glow-circle-1 {
  top: 15%;
  left: -100px;
  background: var(--accent-primary);
}

.glow-circle-2 {
  bottom: 20%;
  right: -100px;
  background: var(--accent-pink);
}

/* FUNNEL WRAPPER */
.funnel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* OPTION BUYING WARNING CALLOUT */
.option-buying-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(88, 28, 28, 0.35); /* deep maroon background */
  border: 1px solid rgba(250, 204, 21, 0.25); /* yellow-tinted border */
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 24px; /* space below what u get container on desktop */
  margin-bottom: 8px;
  font-size: 13.5px;
  color: #fef08a; /* soft yellow text */
  text-align: left;
}

.option-buying-callout .callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #facc15;
}

.option-buying-callout strong {
  color: #facc15; /* gold/yellow header */
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.option-buying-callout p {
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}

/* MAIN LAYOUT GRID (MOBILE-FIRST) */
.main-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.left-col {
  display: flex;
  flex-direction: column;
}

.right-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* DESKTOP MEDIA EXPANSION */
@media (min-width: 901px) {
  .main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
  }
  .right-col {
    position: sticky;
    top: 96px; /* Offset below sticky top alert */
  }
}

/* BRAND LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.brand-logo {
  font-size: 26px;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 30%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BADGES ROW */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.shield-badge, .warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shield-badge {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #a78bfa;
}

.warning-badge {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* HEADINGS & TYPOGRAPHY */
h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  background: linear-gradient(to right, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 600px) {
  h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }
}

.highlight-purple {
  background: linear-gradient(135deg, #c084fc 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: left;
}

.description strong {
  color: var(--text-color);
}

/* CAPSULES ROW */
.capsules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.capsule {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.capsule:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.icon-yellow { color: #f59e0b; }
.icon-red { color: #ef4444; }
.icon-green { color: #10b981; }

/* METRIC GRID */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  background: rgba(13, 7, 24, 0.4);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 600px) {
  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  text-align: center;
  padding: 8px;
}

.metric-icon {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--purple-light);
}

.metric-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.metric-card p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trusted-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* COUNTDOWN OFFER */
.countdown-card {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.countdown-header {
  font-size: 11px;
  font-weight: 800;
  color: #f87171; /* soft warning coral */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cd-unit {
  text-align: center;
  min-width: 50px;
}

.cd-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1;
  letter-spacing: -1px;
}

.cd-num.purple {
  color: var(--purple-light);
}

.cd-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

.cd-sep {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  padding-bottom: 12px;
}

.countdown-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

.countdown-sub span {
  color: #f87171;
  font-weight: 600;
}

/* WHAT YOU GET CONTAINER - BOXED DESIGN */
.features-box {
  background: rgba(10, 5, 25, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 24px;
  padding: 32px 24px;
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.05);
  text-align: left;
}

.features-heading {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 0;
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* TRIPLE HIGHLIGHTS CONTAINER - UNIFIED BOX */
.highlights-container {
  background: rgba(10, 5, 25, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 24px;
  padding: 32px 24px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.05);
}

@media (min-width: 768px) {
  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px;
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
}

.hl-icon {
  color: #c084fc;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.hl-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hl-content h3 .highlight-purple {
  background: linear-gradient(135deg, #c084fc 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hl-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* BOTTOM CTA BANNER */
.bottom-cta-banner {
  background: rgba(10, 5, 25, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .bottom-cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 40px 48px;
    gap: 32px;
  }
}

.banner-text {
  text-align: center;
}

@media (min-width: 768px) {
  .banner-text {
    text-align: left;
  }
}

.banner-text h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .banner-text h2 {
    font-size: 28px;
  }
}

.banner-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.banner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .banner-action {
    width: auto;
    min-width: 300px;
  }
}

.banner-action .btn-large {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.banner-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.banner-sub-row svg {
  color: var(--text-muted);
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* URGENCY SUBTEXT ROW */
.urgency-subtext {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px; /* increased from 12px */
  color: var(--text-muted);
  padding: 16px 0;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600; /* bold font */
}

@media (min-width: 600px) {
  .urgency-subtext {
    flex-direction: row;
    gap: 16px;
  }
}

.divider-pipe {
  display: none;
}

@media (min-width: 600px) {
  .divider-pipe {
    display: inline;
    color: rgba(255, 255, 255, 0.1);
  }
}

.urgency-subtext .fire {
  color: #fb923c; /* premium bright orange-gold */
  font-weight: 700;
}

.urgency-subtext .blue-shield {
  margin-right: 4px;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: center;
  padding: 16px 0 0 0;
}

footer .brand {
  opacity: 0.3;
  margin-bottom: 0;
}

/* FLOATING BRAND ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* CHECKOUT CARD IN RIGHT COLUMN */
.checkout-card {
  background: rgba(10, 10, 25, 0.9);
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.15),
    0 0 80px rgba(124, 58, 237, 0.08);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.checkout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-pink));
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.2));
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-val {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.price-val .currency {
  font-size: 46px;
  vertical-align: top;
  font-weight: 600;
  color: var(--text-color);
  margin-right: 2px;
}

.price-val .period {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0;
}

.crossed-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.crossed-price .orig {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.discount-badge {
  font-size: 11px;
  font-weight: 800;
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.trial-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* CHECKOUT FORM CONTROL */
#payment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  height: 56px;
  background: #090914;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input::placeholder {
  color: #4b5563;
}

.form-group input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.tg-wrapper {
  display: flex;
  align-items: center;
  height: 56px;
  background: #090914;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.tg-wrapper:focus-within {
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.tg-at {
  padding: 0 4px 0 16px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}

.tg-wrapper input {
  height: 100% !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 16px 0 4px !important;
  width: 100%;
}

/* BUTTONS */
.btn-checkout {
  height: 62px;
  width: 100%;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6, #6366f1);
  border: none;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.55);
  filter: brightness(1.1);
}

.btn-checkout:active {
  transform: translateY(0);
}

.btn-checkout:disabled {
  background: #1e1b4b;
  color: #4b5563;
  box-shadow: none;
  cursor: not-allowed;
}

.secure-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* TESTIMONIALS DESIGN REBUILD */
.testimonials-card {
  background: rgba(10, 10, 25, 0.6);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.05);
  text-align: center;
}

.test-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.laurel-leaf {
  color: #c084fc;
  flex-shrink: 0;
}

.test-heading {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.test-heading .highlight-purple {
  background: linear-gradient(135deg, #c084fc 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.quote-icon {
  font-size: 36px;
  color: rgba(167, 139, 250, 0.35);
  font-family: Georgia, serif;
  line-height: 1;
  margin-top: -6px;
  user-select: none;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: normal;
}

.test-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.test-author {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

.stars {
  font-size: 12px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.satisfied-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
  justify-content: center;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #06030c;
  margin-left: -8px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatar:first-child {
  margin-left: 0;
}

/* Avatar backgrounds corresponding to reference screenshot */
.av-1 { background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.av-2 { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.av-3 { background: linear-gradient(135deg, #a78bfa, #6366f1); }
.av-4 { background: linear-gradient(135deg, #f472b6, #ec4899); }

/* STICKY BOTTOM MOBILE BANNER */
.sticky-mobile-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(10, 5, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid rgba(124, 58, 237, 0.45);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  opacity: 0;
}

@media (min-width: 992px) {
  .sticky-mobile-banner {
    display: none !important;
  }
}

.sticky-mobile-banner.show-banner {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.sticky-banner-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.sticky-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sticky-price {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.sticky-period {
  font-size: 11px;
  color: var(--text-muted);
}

.sticky-discount {
  font-size: 10px;
  font-weight: 800;
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  align-self: flex-start;
}

.sticky-btn {
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.sticky-btn:active {
  transform: translateY(0);
}

/* BUTTON LARGE IN CTA BANNER */
.btn-large {
  height: 58px;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6, #6366f1);
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-large:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.55);
}
