.final-cta {
  padding: var(--sp-9) var(--sp-5);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.cta-final-card {
  position: relative;
  padding: var(--sp-9) var(--sp-7) var(--sp-8);
  background: linear-gradient(180deg, rgba(255, 104, 171, 0.85) 0%, rgba(255, 211, 193, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(250, 58, 127, 0.25), 0 0 80px 16px rgba(250, 58, 127, 0.18);
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: footerReveal 0.8s 0.2s var(--ease) forwards;
  text-wrap: balance;
}

.cta-final-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.cta-final-hearts span {
  position: absolute;
  bottom: -40px;
  font-size: 18px;
  opacity: 0;
  animation: heartFloat linear infinite;
  z-index: 0;
}
.cta-final-hearts span:nth-child(1) { left: 8%; font-size: 14px; animation-duration: 6s; animation-delay: 0s; }
.cta-final-hearts span:nth-child(2) { left: 18%; font-size: 20px; animation-duration: 7s; animation-delay: 1.2s; }
.cta-final-hearts span:nth-child(3) { left: 30%; font-size: 16px; animation-duration: 5.5s; animation-delay: 0.5s; }
.cta-final-hearts span:nth-child(4) { left: 42%; font-size: 22px; animation-duration: 8s; animation-delay: 2s; }
.cta-final-hearts span:nth-child(5) { left: 55%; font-size: 13px; animation-duration: 6.5s; animation-delay: 0.8s; }
.cta-final-hearts span:nth-child(6) { left: 65%; font-size: 18px; animation-duration: 7.5s; animation-delay: 1.5s; }
.cta-final-hearts span:nth-child(7) { left: 78%; font-size: 15px; animation-duration: 5s; animation-delay: 2.5s; }
.cta-final-hearts span:nth-child(8) { left: 88%; font-size: 20px; animation-duration: 6.8s; animation-delay: 0.3s; }

.cta-final-card > *:not(.cta-final-hearts) {
  position: relative;
  z-index: 2;
}

.cta-final-card h2 {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}

.cta-final-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 56ch;
  margin: 0 auto var(--sp-6);
}

.cta-final-cta-group {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}
.cta-final-store-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--primary);
  color: var(--text-white);
  border: 0;
  padding: 14px 24px;
  border-radius: var(--r-input);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
  box-shadow: 0 4px 20px rgba(250, 58, 127, 0.40);
  will-change: transform;
}
.cta-final-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(250, 58, 127, 0.50);
  background: #FB5291;
}
.cta-final-store-btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}
.cta-final-store-btn svg { width: 22px; height: 22px; fill: currentColor; }
.cta-final-store-btn-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.cta-final-micro {
  color: rgba(255, 255, 255, 0.90);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}
