body {
  overflow-x: hidden;
  font-family: "Inter", "Montserrat", sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  -webkit-font-smoothing: antialiased;
}

:root {
  --brand-blue: #1e3a8a;
  --brand-celeste: #3b82f6;
  --brand-gold: #d97706;
  --brand-gold-dark: #b45309;
  --brand-cream: #f8fafc;
  --brand-text: #111827;
  --brand-muted: #6b7280;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --space-section: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-text);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-accent {
  background: linear-gradient(transparent 55%, rgba(59, 130, 246, 0.2) 55%);
  padding: 0 2px;
}

.text-accent-gold {
  background: linear-gradient(transparent 55%, rgba(217, 119, 6, 0.25) 55%);
  padding: 0 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: var(--brand-blue);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.trust-bar {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

.trust-bar__item svg {
  flex: 0 0 auto;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.hero-bullets li {
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.hero-bullets li::before {
  content: "✓";
  color: #60a5fa;
  font-weight: 700;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.35;
  width: 22px;
  height: 22px;
  background: rgba(96, 165, 250, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.urgency-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.calc-disclaimer {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

.how-it-works {
  padding: var(--space-section) 0;
  background: #f8fafc;
}

.how-it-works__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
}

.how-it-works__sub {
  text-align: center;
  color: var(--brand-muted);
  font-size: 17px;
  margin-bottom: 48px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-card__num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-gold), #f59e0b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-card__desc {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.guarantee {
  padding: var(--space-section) 0;
  background: #fff;
}

.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.guarantee__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
}

.guarantee__seal-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--brand-celeste);
  line-height: 1;
}

.guarantee__seal-num small {
  font-size: 28px;
  vertical-align: super;
}

.guarantee__seal-text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-text);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.guarantee__list-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 18px;
  line-height: 1.15;
}

.guarantee__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.guarantee__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.5;
  color: #1a1a1a;
}

.guarantee__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: #2563eb url("../img/52c55521235a0822fcd9105e8e06638b967c0c36.svg")
    center/14px no-repeat;
}

.faq {
  padding: var(--space-section) 0;
  background: #f8fafc;
}

.faq__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
}

.faq__sub {
  text-align: center;
  color: var(--brand-muted);
  font-size: 17px;
  margin-bottom: 40px;
}

.faq__list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item__btn {
  width: 100%;
  background: transparent;
  padding: 20px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  font-family: "DM Sans", "Inter", sans-serif;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--brand-text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    transform 0.25s ease,
    border-radius 0.25s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  border-radius: 50%;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item__content > div {
  padding: 0 4px 22px;
}

.ps-block {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 22px 26px;
  background: #eff6ff;
  border-left: 5px solid var(--brand-celeste);
  border-radius: 8px;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

.ps-block strong {
  color: var(--brand-blue);
}

.risk-disclaimer {
  background: #0f172a;
  color: #94a3b8;
  padding: 28px 0;
  font-size: 12px;
  line-height: 1.6;
}

.risk-disclaimer p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: justify;
}

.risk-disclaimer strong {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 18px;
}

.footer-meta a {
  color: #fff;
  opacity: 0.85;
  font-size: 14px;
}

.footer-meta a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 4px;
}

.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  transition: background 0.2s;
}

.footer-social__icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-legal-info {
  text-align: center;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
  padding: 10px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.footer-legal-info p {
  margin: 0;
}

.footer-copyright {
  text-align: center;
  color: #93c5fd;
  font-size: 13px;
  padding-bottom: 18px;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
  z-index: 900;
  gap: 10px;
  align-items: center;
}

.sticky-cta__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  color: #1a1a1a;
  font-weight: 600;
}

.sticky-cta__btn {
  display: inline-block;
  background: var(--brand-gold);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
  }

  .guarantee__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .how-it-works__title,
  .faq__title,
  .guarantee__list-title {
    font-size: 28px;
  }

  .banner_content {
    flex-direction: column !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    gap: 24px !important;
  }

  .banner_info {
    max-width: 100% !important;
    width: 100% !important;
  }

  .banner_info h1 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }

  .banner_info h2.pre-headline {
    font-size: 12px !important;
  }

  .banner_info p {
    font-size: 15px !important;
    line-height: 1.4;
  }

  .urgency-pill {
    font-size: 11px;
    padding: 5px 10px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .banner_link {
    width: 100% !important;
    font-size: 16px !important;
    padding: 14px 16px !important;
    height: auto !important;
    text-align: center;
  }

  .lander-form-wrapper {
    max-width: 100% !important;
  }

  .lander-form-header {
    font-size: 22px !important;
    padding: 20px 14px !important;
  }

  .container {
    padding: 0 16px !important;
  }

  .trust-bar__inner {
    gap: 14px;
    font-size: 12px;
  }

  .header-nav__logo {
    font-size: 16px;
    gap: 8px;
  }

  .header-nav__logo img {
    width: 32px;
    height: 32px;
  }

  .header-nav__logo div {
    word-break: break-word;
  }

  .form-widget {
    padding: 0 8px;
  }

  .info {
    padding: 40px 0 !important;
  }

  .info_calc {
    gap: 24px !important;
  }

  .left_calc {
    padding: 16px 20px !important;
  }

  .rigth_info {
    max-width: 100% !important;
  }

  .rigth_info p {
    font-size: 15px !important;
  }

  .info_header h2 {
    font-size: 20px !important;
  }

  .info_header h3 {
    font-size: 13px !important;
  }

  .footer-meta {
    gap: 10px;
  }

  .footer-meta a {
    font-size: 12px;
  }

  .footer-legal-info {
    font-size: 11px;
    padding: 8px 4px;
  }

  .footer-social {
    gap: 12px;
  }

  .risk-disclaimer {
    padding: 20px 0;
    font-size: 11px;
  }

  .ps-block {
    padding: 16px 18px;
    font-size: 14px;
  }

  .exit-popup__box {
    padding: 28px 20px;
  }

  .exit-popup__box h2 {
    font-size: 20px;
  }

  .exit-popup__box p {
    font-size: 14px;
  }

  .exit-popup__btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .banner_info h1 {
    font-size: 20px !important;
  }

  .urgency-pill {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .countdown-inline {
    font-size: 11px;
    padding: 1px 6px;
  }

  .hero-bullets li {
    font-size: 14px;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 8px;
  }

  .trust-bar__item {
    font-size: 12px;
  }

  .banner_content {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .lander-form-header {
    font-size: 18px !important;
    padding: 16px 10px !important;
  }
}

.review__stars {
  letter-spacing: 2px;
}

.calc_title {
  margin-bottom: 20px;
}

.banner_info h1 {
  letter-spacing: 0.3px;
}

.banner_link {
  width: auto;
  max-width: 100%;
  padding: 16px 28px;
  height: auto;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--brand-gold) 0%,
    #f59e0b 100%
  ) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.banner_link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

.pre-headline {
  display: inline-block;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #93c5fd !important;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px !important;
  font-family: "Inter", sans-serif;
}

.form-disclaimer {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--brand-blue);
  text-decoration: underline;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px 10px 14px;
  border-radius: var(--radius-full);
  margin: 8px 0 20px;
  max-width: 100%;
}

.social-proof__avatars {
  display: inline-flex;
  align-items: center;
}

.social-proof__avatar-circle,
.social-proof__avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  background: #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-proof__avatar-circle + .social-proof__avatar-circle,
.social-proof__avatars img + img {
  margin-left: -14px;
}

.social-proof__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.social-proof__stars {
  color: #ffc83d;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.social-proof__count {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.social-proof__count b {
  color: #93c5fd;
  font-weight: 800;
}

@media (max-width: 480px) {
  .social-proof {
    gap: 10px;
    padding: 8px 14px 8px 10px;
  }

  .social-proof__avatar-circle,
  .social-proof__avatars img {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .social-proof__stars {
    font-size: 15px;
  }

  .social-proof__count {
    font-size: 12px;
  }
}

.countdown-inline {
  font-variant-numeric: tabular-nums;
  background: rgba(245, 158, 11, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.user-story {
  padding: var(--space-section) 0;
  background: #fff;
}

.user-story__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.user-story__badge {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.user-story__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 36px;
}

.user-story__body {
  text-align: left;
  display: grid;
  gap: 24px;
}

.user-story__phase {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  position: relative;
}

.user-story__phase p {
  font-size: 17px;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0;
}

.user-story__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.user-story__label--before {
  background: #fee2e2;
  color: #b91c1c;
}

.user-story__label--turning {
  background: #fef3c7;
  color: #92400e;
}

.user-story__label--after {
  background: #dbeafe;
  color: #1e40af;
}

.user-story__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
  font-size: 15px;
  color: #444;
}

.user-story__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.user-story__cta {
  display: inline-block;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--brand-gold), #f59e0b);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  font-family: "DM Sans", "Inter", sans-serif;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.user-story__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

@media (max-width: 768px) {
  .user-story__title {
    font-size: 24px;
  }
  .user-story__phase {
    padding: 18px 20px;
  }
}

.offer-stack {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}

.offer-stack__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 8px;
}

.offer-stack__sub {
  text-align: center;
  color: var(--brand-muted);
  font-size: 17px;
  margin-bottom: 40px;
}

.offer-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-stack__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.offer-stack__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offer-stack__card--highlight {
  border-color: var(--brand-celeste);
  background: linear-gradient(180deg, #eff6ff, #fff);
  position: relative;
  box-shadow: var(--shadow-md);
}

.offer-stack__card--highlight::before {
  content: "MÁS POPULAR";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-celeste));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.offer-stack__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-celeste);
}

.offer-stack__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.offer-stack__card p {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 14px;
}

.offer-stack__value {
  display: inline-block;
  font-size: 13px;
  color: var(--brand-muted);
  padding: 6px 12px;
  background: #f8fafc;
  border-radius: 8px;
}

.offer-stack__value b {
  color: var(--brand-celeste);
  font-weight: 800;
}

@media (max-width: 768px) {
  .offer-stack__grid {
    grid-template-columns: 1fr;
  }
  .offer-stack__title {
    font-size: 26px;
  }
}

.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.exit-popup.active {
  display: flex;
}

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.exit-popup__box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  font-size: 28px;
  color: #999;
  line-height: 1;
  cursor: pointer;
}

.exit-popup__close:hover {
  color: #333;
}

.exit-popup__emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

.exit-popup__box h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.exit-popup__box p {
  font-size: 16px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 22px;
}

.exit-popup__btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-gold), #f59e0b);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  font-family: "DM Sans", "Inter", sans-serif;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.exit-popup__btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

.exit-popup__sub {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}

.live-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
  border-radius: 6px 6px 0 0;
}

.live-counter .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-dot 1.4s infinite;
  flex-shrink: 0;
}

.live-counter b {
  color: #2563eb;
}

.deposit-timeline {
  padding: 64px 0;
  background: #fff;
}

.deposit-timeline__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}

.deposit-timeline__sub {
  text-align: center;
  color: var(--brand-muted);
  font-size: 16px;
  margin-bottom: 44px;
}

.deposit-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.deposit-timeline__grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-celeste));
}

.deposit-timeline__step {
  text-align: center;
  position: relative;
}

.deposit-timeline__time {
  font-family: "DM Sans", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.deposit-timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-celeste);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.deposit-timeline__step:first-child .deposit-timeline__dot {
  background: var(--brand-celeste);
}

.deposit-timeline__step p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .deposit-timeline__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 36px;
  }
  .deposit-timeline__grid::before {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .deposit-timeline__step {
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .deposit-timeline__dot {
    margin: 4px 0 0;
    flex-shrink: 0;
    position: absolute;
    left: -36px;
  }
  .deposit-timeline__time {
    margin-bottom: 4px;
  }
  .deposit-timeline__step p {
    padding: 0;
  }
  .deposit-timeline__title {
    font-size: 26px;
  }
}

.skeptics {
  padding: 48px 0;
  background: #f8fafc;
}

.skeptics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skeptics__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.skeptics__quote {
  font-size: 16px;
  font-style: italic;
  color: var(--brand-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.skeptics__author {
  font-size: 13px;
  color: var(--brand-muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .skeptics__grid {
    grid-template-columns: 1fr;
  }
  .skeptics {
    padding: 36px 0;
  }
}

.deposit-safe {
  padding: 48px 0;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

.deposit-safe__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.deposit-safe__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dbeafe;
  color: var(--brand-celeste);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.deposit-safe__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.deposit-safe__points {
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.deposit-safe__point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.deposit-safe__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sticky-fomo {
  overflow: hidden;
  min-width: 0;
}

.sticky-fomo__item {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
