:root {
  --primary: #c0392b;          /* Vermelho Carmesim/Sangue */
  --primary-light: #e74c3c;
  --primary-ultra-light: #fdedec;
  --accent: #e67e22;           /* Laranja Fogo */
  --accent-hover: #d35400;
  --bg-warm: #fffaf5;          /* Creme Claro */
  --bg-card: #ffffff;
  --text-main: #1e1e2a;
  --text-muted: #555555;
  --border-color: #f0d8c0;      /* Borda Pêssego */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --border-radius-full: 100px;
  
  --shadow-sm: 0 4px 6px -1px rgba(192, 57, 43, 0.05);
  --shadow-md: 0 10px 20px -3px rgba(192, 57, 43, 0.08), 0 4px 6px -2px rgba(192, 57, 43, 0.03);
  --shadow-lg: 0 25px 45px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(230,126,34,0.15);
  
  --success: #27ae60;           /* Verde de Sucesso para Checks */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #fff8f0 0%, #fff2e6 100%);
  color: var(--text-main);
  line-height: 1.4;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  color: var(--text-main);
  border-left: 8px solid var(--accent);
  padding-left: 1rem;
  margin: 2rem 0 1.5rem 0;
}

h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
}

/* Top Urgency Bar */
.top-urgency-bar {
  background: #ff2e2e;
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 46, 46, 0.2);
}

.top-urgency-bar #countdown {
  font-family: monospace;
  font-size: 1.15rem;
  background: rgba(0,0,0,0.2);
  padding: 0.1rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* Hero Section (Centrada Glassmorphic) */
.hero {
  background: rgba(255, 255, 245, 0.9);
  backdrop-filter: blur(2px);
  border-radius: 64px;
  padding: 3.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(230, 126, 34, 0.15);
  margin-bottom: 4rem;
}

.urgent-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.3rem 1.2rem;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
}

.sub {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e2f;
  margin: 0.5rem 0;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
}

.comparison {
  background: #fef5e6;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  display: inline-block;
  margin: 1rem 0;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(230, 126, 34, 0.1);
}

/* VSL Container Player */
.vsl-container {
  max-width: 360px;
  width: 100%;
  margin: 2rem auto;
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 3px solid var(--accent);
  position: relative;
}

.vsl-ratio {
  position: relative;
  padding-top: 177.78%; /* 9:16 Aspect Ratio */
}

.vsl-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.vsl-container:hover .vsl-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.vsl-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  padding-left: 0.35rem; /* Alinhamento do triângulo de play */
  box-shadow: 0 0 30px rgba(230, 126, 34, 0.6);
  transition: transform 0.3s ease;
  animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(230, 126, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

.vsl-container:hover .vsl-play-button {
  transform: scale(1.08);
}

.vsl-play-text {
  color: #ffffff;
  font-weight: 800;
  margin-top: 1.2rem;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
}

.vsl-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1e293b, #0f172a);
  z-index: 1;
}

/* Buttons */
.btn-blood {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1.4rem;
  padding: 1.1rem 2.2rem;
  background: linear-gradient(95deg, var(--accent), var(--primary));
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(192, 57, 43, 0.5);
  text-align: center;
  margin: 1rem 0;
}

.btn-blood:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px -5px var(--primary);
  background: linear-gradient(95deg, var(--primary), #a82313);
}

hr {
  margin: 1.5rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Sections */
.section {
  margin-bottom: 4rem;
}

/* Layout Blocks */
.content-wrapper {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

/* Feature List */
.receiver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.receiver-card {
  background-color: #fff7f0;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #fce8d5;
}

.receiver-card ul {
  list-style: none;
}

.receiver-card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.receiver-card ul li:last-child {
  margin-bottom: 0;
}

.receiver-card ul li i {
  color: var(--success);
  margin-top: 0.2rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-card {
  background: #fff7f0;
  padding: 1.8rem;
  border-radius: var(--border-radius-md);
  border-left: 6px solid var(--accent);
  border-top: 1px solid #fce8d5;
  border-right: 1px solid #fce8d5;
  border-bottom: 1px solid #fce8d5;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-head i.fa-user-circle {
  font-size: 2.2rem;
  color: var(--accent);
}

.testimonial-head strong {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-size: 1rem;
}

.stars {
  color: #ffb800;
  font-size: 0.9rem;
  margin-left: auto;
}

/* FAQ Accordion */
.faq-box {
  margin-top: 1.5rem;
}

.faq-card {
  background: #fff7f0;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #fce8d5;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-head {
  background-color: #fae9d8;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-chevron {
  font-size: 0.95rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-inner {
  padding: 1.2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-card.active {
  border-color: var(--accent);
}

.faq-card.active .faq-chevron {
  transform: rotate(180deg);
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.pricing-card.premium {
  border: 3px solid var(--accent);
  background-color: #fffcf5;
  transform: scale(1.02);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  background-color: var(--accent);
  color: #ffffff;
  padding: 0.3rem 1.2rem;
  font-weight: bold;
  font-size: 0.8rem;
  border-radius: var(--border-radius-full);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.price-slash {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #888;
  display: block;
}

.price-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin: 0.25rem 0 0.5rem 0;
}

.price-big small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
}

.pricing-card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card .btn-blood {
  margin-top: auto;
  width: 100%;
}

/* Guarantee Area */
.guarantee-box {
  background-color: #fff2e6;
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border: 2px solid var(--accent);
}

.guarantee-box i.fa-shield-alt {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.guarantee-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.guarantee-box p {
  max-width: 750px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

/* JOGO SIMULADOR */
.simulator-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 850px;
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.sim-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.sim-step-badge {
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
}

.sim-budget-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff0e0;
  border: 1px solid #fce8d5;
  color: var(--accent-hover);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-full);
}

.sim-screen {
  display: none;
  animation: fadeIn var(--transition-normal);
}

.sim-screen.active {
  display: block;
}

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

/* Sliders */
.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.form-label span.value {
  color: var(--accent-hover);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--border-radius-full);
  outline: none;
  background: var(--border-color);
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.demand-meter {
  background-color: #fff8f0;
  border-radius: var(--border-radius-full);
  height: 14px;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid var(--border-color);
}

.demand-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #c0392b, #e67e22, #27ae60);
  width: 50%;
  transition: width var(--transition-normal);
}

/* Animations Stand */
.sim-animation-container {
  text-align: center;
  padding: 2rem 0;
}

.stand-illustration {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.customer-queue {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  height: 50px;
}

.customer-icon {
  font-size: 2.2rem;
  opacity: 0.25;
  transform: scale(0.8);
  transition: all 0.5s ease;
  color: #bdc3c7;
}

.customer-icon.active {
  opacity: 1;
  transform: scale(1.1);
  color: var(--accent);
  animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

.sim-progress-bar {
  background-color: var(--border-color);
  height: 10px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.sim-progress-fill {
  background: var(--primary);
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

/* Metrics Results */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.result-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  background-color: var(--bg-warm);
}

.result-card.profit {
  border-color: #fce8d5;
  background-color: #fff7f0;
}

.result-card h4 {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
}

.result-card.profit .result-value {
  color: var(--primary);
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.metrics-table tr {
  border-bottom: 1px solid var(--border-color);
}

.metrics-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.metrics-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}

/* Decisions grid styling */
.decisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.decision-card {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: white;
  text-align: center;
  position: relative;
}

.decision-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.decision-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-ultra-light);
}

.decision-card.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--primary);
  font-size: 1.1rem;
}

.decision-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.decision-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.decision-card p {
  font-size: 0.8rem;
}

/* Chart */
.summary-chart-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}

.bar-pill {
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 8px 8px 0 0;
  width: 40px;
  transition: height 1s ease-out;
  min-height: 10px;
}

.bar-col:first-child .bar-pill {
  background: linear-gradient(180deg, #bdc3c7, #95a5a6);
}

.bar-col:last-child .bar-pill {
  background: linear-gradient(180deg, var(--primary), #900c3f);
}

.bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.bar-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: #7f8c8d;
}

footer p {
  margin-bottom: 0.5rem;
  color: #7f8c8d;
}

/* Responsive Queries */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  .pricing-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem 0.75rem;
  }
  .hero {
    padding: 2.5rem 1.2rem;
    border-radius: 36px;
  }
  h1 { font-size: 2.1rem; }
  .sub { font-size: 1.1rem; }
  .btn-blood { font-size: 1.25rem; padding: 1rem 1.8rem; }
  
  .content-wrapper {
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
  }
  
  .simulator-box {
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .decisions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #dec-opt-sign {
    grid-column: span 1 !important;
  }
  .pricing-card.premium {
    transform: none;
  }
  .faq-head {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
  .faq-inner {
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 560px) {
  .top-urgency-bar {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    flex-wrap: wrap;
  }
  .top-urgency-bar #countdown {
    font-size: 1rem;
    padding: 0.05rem 0.4rem;
  }
  h1 { font-size: 1.8rem; }
  .sub { font-size: 1rem; }
  .comparison {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-md);
  }
  .btn-blood {
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
    width: 100%;
  }
  
  /* Simulator Header and Elements */
  .simulator-header {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
  }
  .sim-nav {
    width: 100%;
    justify-content: center;
  }
  .range-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }
  
  .customer-icon {
    font-size: 1.8rem;
  }
  
  /* Chart Mobile scaling */
  .bar-pill {
    width: 28px;
  }
  .bar-val {
    font-size: 0.75rem;
  }
  .bar-label {
    font-size: 0.75rem;
  }
  
  .receiver-card {
    padding: 1rem;
  }
  .receiver-card ul li {
    font-size: 0.85rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .guarantee-box {
    padding: 2rem 1rem;
  }
  .guarantee-box h3 {
    font-size: 1.3rem;
  }
  .guarantee-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 1.6rem; }
  .sub { font-size: 0.9rem; }
  .comparison {
    font-size: 0.8rem;
  }
  .badge-row {
    gap: 0.75rem;
  }
  .badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
}

/* VSL Floating Badge */
.vsl-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--border-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@media (max-width: 480px) {
  .vsl-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
    top: 10px;
    right: 10px;
  }
}

/* Stock Urgency Banner */
.stock-urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #fff8f8;
  border: 1px dashed #ffb3b3;
  border-radius: var(--border-radius-md);
  padding: 1rem 1.5rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 600px;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.05);
}

.stock-circle {
  width: 55px;
  height: 55px;
  background: #ff2e2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(255, 46, 46, 0.4);
  animation: pulseCircle 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseCircle {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 46, 46, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 46, 46, 0); }
}

.stock-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stock-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1e1e2a;
}

.stock-title .highlight-red {
  color: #ff2e2e;
}

.stock-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Live Social Proof */
.live-proof-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem auto;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(230, 126, 34, 0.15);
  border-radius: var(--border-radius-full);
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: #27ae60;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.live-pulse::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #27ae60;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
  animation: pulseDot 1.5s infinite;
  opacity: 0.8;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}

.proof-divider {
  width: 1px;
  height: 15px;
  background-color: var(--border-color);
}

/* Bonus Expiry Alert */
.bonus-expiry-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff5f5;
  border: 1px solid #ffe3e3;
  border-radius: var(--border-radius-md);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0 0 0;
  color: #c0392b;
  text-align: left;
}

.bonus-expiry-icon {
  font-size: 1.8rem;
  animation: shakeBell 2s infinite;
}

@keyframes shakeBell {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(10deg); }
  20%, 40%, 60%, 80% { transform: rotate(-10deg); }
}

.bonus-expiry-content {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2c3e2f;
}

.bonus-expiry-content strong {
  color: #c0392b;
}

#bonus-timer {
  font-family: monospace;
  font-weight: 800;
  color: #ff2e2e;
  background: rgba(255, 46, 46, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* Mobile Responsiveness additions */
@media (max-width: 580px) {
  .stock-urgency-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  .stock-info {
    text-align: center;
  }
  .live-proof-box {
    border-radius: var(--border-radius-md);
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
  }
  .proof-divider {
    display: none;
  }
  .bonus-expiry-box {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Pop-up Modals Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: #ffffff;
  max-width: 500px;
  width: 90%;
  border-radius: var(--border-radius-md);
  border: 4px solid #e67e22;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  color: #888888;
  line-height: 1;
  transition: color 0.2s ease;
}

.popup-close-btn:hover {
  color: #c0392b;
}

.popup-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulseEmoji 1.5s infinite;
}

@keyframes pulseEmoji {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #1e1e2a;
  border: none; /* remove border-left from standard h2 */
  padding-left: 0;
  margin-bottom: 1rem;
}

.popup-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.popup-highlight {
  background: #fff0e0;
  border: 1px dashed #e67e22;
  color: #c0392b;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 2rem;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  padding: 1rem 1.5rem;
  background: linear-gradient(95deg, var(--accent), var(--primary));
  color: #ffffff;
  box-shadow: 0 6px 15px -3px rgba(192, 57, 43, 0.4);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.popup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -3px rgba(192, 57, 43, 0.6);
}

.popup-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  padding: 0.8rem 1.5rem;
  background: #e0e0e0;
  color: #333333;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.popup-btn-secondary:hover {
  background: #d0d0d0;
  color: #111111;
}

@media (max-width: 480px) {
  .popup-box {
    padding: 2rem 1.5rem;
  }
  .popup-title {
    font-size: 1.4rem;
  }
  .popup-highlight {
    font-size: 1rem;
  }
}

