/* label placeholder aria-label */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --border-color: #222222;
  --border-active: #444444;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --accent-bg: #ffffff;
  --accent-text: #000000;
  --accent-hover: #e0e0e0;
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-header: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 16px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Page Container (Mobile focused 560px cap) */
.page-container {
  max-width: 560px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  min-height: 100vh;
  position: relative;
}

/* Urgency Top Banner */
.urgency-banner {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.urgency-banner strong {
  color: var(--text-primary);
  font-family: monospace;
  font-size: 12px;
}

/* Main Header */
.main-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  opacity: 0.6;
  font-weight: 400;
}

.header-badge {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

/* Sections Base */
section {
  padding: 32px 20px;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 40px;
}

.hero h1 {
  font-family: var(--font-header);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-visual {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  border-radius: calc(var(--radius) - 4px);
  margin: 0 auto;
}

.floating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--accent-bg);
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Buttons */
.cta-button {
  display: block;
  width: 100%;
  background-color: var(--accent-bg);
  color: var(--accent-text);
  border: none;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.cta-button:hover {
  background-color: var(--accent-hover);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-sub {
  display: block;
  font-size: 10px;
  font-family: var(--font-primary);
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.trust-microcopy {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Key Features / Benefits */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Proof Block */
.proof-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}

.proof-box p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* Comparison Table */
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
}

.comparison-card.highlight {
  border-color: var(--border-active);
  background-color: var(--bg-tertiary);
}

.comp-header {
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.comp-header.negative {
  color: #ff4444;
}

.comp-header.positive {
  color: #00c853;
}

.comp-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.comp-list li {
  position: relative;
  padding-left: 20px;
}

.comp-list li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}

.comparison-card.highlight .comp-list li::before {
  content: "✓";
  color: #00c853;
}

.comparison-card:not(.highlight) .comp-list li::before {
  content: "✗";
  color: #ff4444;
}

.comp-price-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comp-price-value {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 800;
}

/* Steps Block */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px;
}

.step-number {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.step-info h4 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Bonus Box */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.bonus-img-container {
  background-color: var(--bg-tertiary);
  padding: 16px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.bonus-img-container img {
  max-height: 100%;
  object-fit: contain;
}

.bonus-info {
  padding: 16px;
}

.bonus-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffbb00;
  margin-bottom: 4px;
}

.bonus-info h4 {
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.bonus-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.bonus-value {
  font-size: 11px;
  color: var(--text-tertiary);
}

.bonus-value span {
  text-decoration: line-through;
}

/* Pricing Section */
.pricing-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.premium {
  border-color: var(--border-active);
  background-color: var(--bg-tertiary);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--border-color);
  border: 1px solid var(--border-color);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.price-box {
  margin-bottom: 20px;
}

.price-old {
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-new {
  font-family: var(--font-header);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.price-new span {
  font-size: 20px;
  font-weight: 700;
}

.price-subtext {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* FAQ Collapse Bar Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-header);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-trigger::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

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

.faq-item.active .faq-trigger::after {
  content: "−";
  transform: rotate(180deg);
}

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

.faq-content p {
  padding: 0 20px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Exit Intent Popup */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup-card {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 24px;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--text-primary);
}

.popup-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.exit-popup-card h3 {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.exit-popup-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.exit-popup-card p strong {
  color: var(--text-primary);
}

.popup-sub {
  font-size: 11px !important;
  color: var(--text-tertiary) !important;
  margin-bottom: 16px !important;
}

.popup-cta-btn {
  display: block;
  width: 100%;
  background-color: var(--accent-bg);
  color: var(--accent-text);
  border: none;
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  margin-bottom: 12px;
  transition: background-color 0.2s;
}

.popup-cta-btn:hover {
  background-color: var(--accent-hover);
}

.popup-decline-btn {
  font-size: 11px;
  color: var(--text-tertiary);
  text-decoration: underline;
  cursor: pointer;
}

.popup-decline-btn:hover {
  color: var(--text-primary);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
}

.wa-icon {
  font-size: 18px;
}

/* Footer */
.main-footer {
  padding: 32px 20px;
  text-align: center;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.main-footer p {
  font-size: 11px;
  color: var(--text-tertiary);
}

.footer-terms {
  margin-top: 12px;
  line-height: 1.4;
}
