/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Slate-based color palette */
  --color-primary: #0F172A;      /* Slate 900 */
  --color-secondary: #1E293B;    /* Slate 800 */
  --color-text: #020617;         /* Slate 950 */
  --color-muted: #64748B;        /* Slate 500 */
  --color-border: #E2E8F0;       /* Slate 200 */
  --color-border-light: #F1F5F9; /* Slate 100 */
  --color-bg-light: #F8FAFC;     /* Slate 50 */
  --color-background: #FFFFFF;

  /* Accent Colors */
  --color-accent: #14B8A6;       /* Teal 500 */
  --color-accent-dark: #0D9488;  /* Teal 600 */
  --color-accent-light: #EDFDFB; /* Teal 50 */
  --color-cta: #10B981;          /* Emerald 500 */
  --color-cta-hover: #059669;    /* Emerald 600 */

  /* Shadows and Effects */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 50px rgba(20, 184, 166, 0.05);
  --shadow-premium-card: 0 30px 60px -15px rgba(2, 6, 23, 0.35);
  --glow-teal: 0 0 30px rgba(20, 184, 166, 0.15);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   TOP ALERT BANNER
   ========================================================================== */
.top-alert-banner {
  background-color: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.alert-container {
  max-width: 850px;
  margin: 0 auto;
}

.alert-title {
  color: #EF4444; /* Premium bright red warning */
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.alert-text-bold {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.alert-text-muted {
  color: #94A3B8; /* Slate 400 */
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .top-alert-banner {
    padding: 1rem;
  }
  .alert-title {
    font-size: 0.85rem;
  }
  .alert-text-bold {
    font-size: 0.875rem;
  }
  .alert-text-muted {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.04) 0%, rgba(248, 250, 252, 1) 70%);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-align: left;
}

.text-gradient-teal {
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-align: left;
}

.text-highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-subheadline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-cta-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  color: #FFFFFF !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.1rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, var(--color-cta-hover) 0%, #047857 100%);
}

.hero-cta-subtext {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-graphic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 75%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.premium-mockup-wrapper {
  position: relative;
  display: block;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-mockup-wrapper:hover {
  transform: translateY(-4px) scale(1.01);
}

.premium-mockup-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

@media (max-width: 992px) {
  .hero-section {
    padding: 4rem 0 5rem 0;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-text-content {
    align-items: center;
  }
  .hero-title {
    font-size: 2.75rem !important;
    text-align: center !important;
    max-width: 600px;
  }
  .hero-text {
    text-align: center !important;
    max-width: 580px;
  }
  .hero-subheadline {
    text-align: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(20, 184, 166, 0.15);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
    padding: 1rem 0 !important;
    max-width: 500px;
    width: 100%;
  }
  .hero-cta-wrapper {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0 4rem 0;
  }
  .hero-title {
    font-size: 2.25rem !important;
  }
  .hero-text {
    font-size: 1.05rem !important;
  }
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
  }
}

/* ==========================================================================
   FEATURES / DETAILS SECTION
   ========================================================================== */
.features-section {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-heading {
  font-size: 2.75rem;
  color: var(--color-primary);
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.features-subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-card-container {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-container:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.features-card-title {
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Dashboard-style tags grid */
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-tag:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.08);
}

.pill-icon {
  font-size: 1.15rem;
}

/* Premium includes list */
.session-includes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.include-item:hover {
  background-color: var(--color-background);
  border-color: var(--color-accent);
  box-shadow: var(--glow-teal);
  transform: translateX(6px);
}

.include-num {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.include-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.include-text p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.45;
}

@media (max-width: 992px) {
  .features-section {
    padding: 4rem 0;
  }
  .features-heading {
    font-size: 2.25rem;
  }
  .features-subheading {
    font-size: 1.1rem;
  }
  .features-card-container {
    padding: 2.25rem 1.75rem;
  }
  .pills-grid {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .features-heading {
    font-size: 1.85rem;
  }
  .features-card-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .pill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .include-item {
    padding: 1rem;
    gap: 1rem;
  }
  .include-num {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-section {
  background-color: var(--color-background);
  padding: 6rem 0;
  background: radial-gradient(circle at bottom, rgba(20, 184, 166, 0.03) 0%, transparent 60%);
}

.value-prop-header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.25;
  max-width: 850px;
  margin: 0 auto;
  letter-spacing: -0.03em;
}

.premium-offer-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 3.5rem;
  background: linear-gradient(135deg, #0F172A 0%, #020617 100%);
  color: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium-card);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.glow-effect {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.badge-tag {
  background-color: #EF4444;
  color: #FFFFFF;
  font-weight: 800;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.offer-mockup-wrapper {
  margin: 1.5rem auto 2.5rem auto;
  max-width: 360px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.offer-mockup-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
}

/* Glassmorphic Price Card */
.premium-pricing-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.price-disclaimer {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.price-value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.old-price {
  font-size: 1.2rem;
  color: #EF4444; /* Premium red */
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

.new-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #10B981; /* Premium emerald green */
  font-weight: 900;
  white-space: nowrap; /* Prevent any wrapping of R$ and amount */
}

.new-price .currency {
  font-size: 1.75rem;
  color: #10B981; /* Inherit or use green */
  font-weight: 800;
  margin-right: 0.35rem;
}

.new-price .amount {
  font-size: 4.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.payment-terms {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.65rem;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.btn-accept-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  color: #FFFFFF !important;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-accept-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, var(--color-cta-hover) 0%, #047857 100%);
}

.btn-decline-premium {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-decline-premium:hover {
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .offer-section {
    padding: 4rem 0;
  }
  .value-title {
    font-size: 2rem;
    max-width: 650px;
  }
}

@media (max-width: 576px) {
  .premium-offer-card {
    padding: 2.75rem 1.5rem;
    border-radius: 16px;
  }
  .new-price .amount {
    font-size: 3.75rem;
  }
  .new-price .currency {
    font-size: 1.35rem;
  }
  .payment-terms {
    font-size: 0.95rem;
  }
  .premium-pricing-card {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }
  .btn-accept-premium {
    font-size: 1.05rem;
    padding: 1.1rem 1.25rem;
  }
  .btn-decline-premium {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0;
  color: var(--color-muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent-dark);
}

.footer-copyright-container {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   MODAL DE DOWNSELL & LAST CHANCE
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999 !important;
  display: none; /* Managed by JS */
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease;
  padding: 2rem 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.open {
  opacity: 1;
}

.modal-content {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.25);
  border: 1px solid var(--color-border);
  transform: scale(0.95);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  margin: auto; /* Vertically center if content fits */
  position: relative;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

/* Modal Inner Price Box */
.modal-price-box {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.modal-price-old {
  font-size: 1.1rem;
  color: #EF4444;
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.modal-price-new {
  font-size: 3.75rem;
  font-weight: 900;
  color: #10B981;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.modal-price-new span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.35rem;
  margin-right: 0.25rem;
}

.modal-price-details {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-benefits {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 440px;
}

.modal-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  color: #FFFFFF !important;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.modal-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, var(--color-cta-hover) 0%, #047857 100%);
}

.modal-microcopy {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.85rem;
  margin-bottom: 2rem;
}

.modal-microcopy span {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 600;
}

.modal-btn-decline {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.modal-btn-decline:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100;
}

.modal-close-btn:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
  transform: scale(1.05);
}

.benefit-check-icon {
  flex-shrink: 0;
  color: #10B981;
}

/* ==========================================================================
   LAST CHANCE SPECIFIC STYLING
   ========================================================================== */
.last-chance-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
}

.last-chance-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.last-chance-badge {
  display: inline-block;
  background-color: #E6F4EA;
  color: #059669;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.last-chance-prod-title {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.last-chance-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.last-chance-price-new {
  font-size: 3.5rem;
  font-weight: 900;
  color: #10B981;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0.4rem 0;
  letter-spacing: -0.02em;
}

.last-chance-price-new span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
}

.last-chance-micro {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
}

.benefits-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}

.benefits-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.last-chance-btn-accept {
  width: 100%;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-cta-hover) 100%);
  color: #FFFFFF !important;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.last-chance-btn-accept:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--color-cta-hover) 0%, #047857 100%);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 576px) {
  .modal-overlay {
    padding: 1rem 0.5rem;
  }
  .modal-content {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }
  .modal-header h2 {
    font-size: 1.4rem;
  }
  .modal-text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  .modal-price-box {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .modal-price-new {
    font-size: 3rem;
  }
  .modal-benefits {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
  .modal-btn-accept {
    font-size: 1rem;
    padding: 0.95rem 1.5rem;
  }
  .modal-microcopy {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }
  .last-chance-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .last-chance-price-new {
    font-size: 2.75rem;
  }
  .benefits-card {
    padding: 1.1rem 0.85rem;
    margin-bottom: 1.25rem;
  }
  .benefits-list li {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .last-chance-btn-accept {
    height: 50px;
    font-size: 1rem;
  }
}
