/* Step 5 - Final Offer (Sales Page) */
.step5-section {
  width: 100%;
  max-width: 480px;
  padding-top: clamp(32px, 8vh, 64px);
  padding-bottom: clamp(32px, 8vh, 48px);
}

/* ===== HEADLINE ===== */
.step5-headline {
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 12px;
  text-align: center;
  max-width: 420px;
}

.step5-headline .highlight {
  color: var(--color-accent);
}

.step5-subheadline {
  font-size: clamp(13px, 3.5vw, 15px);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: center;
  max-width: 400px;
}

/* ===== OFFER CARD ===== */
.step5-offer-card {
  width: 100%;
  background: linear-gradient(145deg, #4CAF8B 0%, #3D9A7A 50%, #2E8B6A 100%);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(76, 175, 139, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.step5-offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: step5Shimmer 4s ease-in-out infinite;
}

@keyframes step5Shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.step5-offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step5-offer-title {
  font-size: clamp(18px, 4.8vw, 22px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step5-price-old {
  font-size: clamp(16px, 4vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step5-price-new {
  font-size: clamp(48px, 13vw, 64px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.step5-price-new span {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
}

.step5-price-note {
  font-size: clamp(11px, 2.8vw, 13px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step5-offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 40px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.step5-offer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 139, 0.1), transparent);
  transition: left 0.5s ease;
}

.step5-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.step5-offer-btn:hover::before {
  left: 100%;
}

.step5-offer-btn:active {
  transform: translateY(0) scale(0.98);
}

.step5-offer-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== OFFER INCLUDES (inside card) ===== */
.step5-offer-includes {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step5-offer-includes-title {
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step5-offer-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step5-offer-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 3.4vw, 14px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  margin-bottom: 8px;
}

.step5-offer-includes-list li:last-child {
  margin-bottom: 0;
}

.step5-offer-check {
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== TRUST BADGES (below offer, independent) ===== */
.step5-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0 16px;
}

.step5-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step5-trust-icon {
  font-size: 14px;
  line-height: 1;
}

.step5-trust-text {
  font-size: clamp(11px, 2.8vw, 12px);
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* ===== GUARANTEE ===== */
.step5-guarantee {
  width: 100%;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 40px;
  text-align: center;
}

.step5-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: clamp(11px, 2.8vw, 12px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.step5-guarantee-badge svg {
  width: 16px;
  height: 16px;
}

.step5-guarantee-title {
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.step5-guarantee-text {
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

/* ===== FAQ ===== */
.step5-faq {
  width: 100%;
  margin-bottom: 40px;
}

.step5-faq-title {
  font-size: clamp(18px, 4.8vw, 22px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}

.step5-faq-item {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

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

.step5-faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: clamp(14px, 3.5vw, 15px);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.step5-faq-question:hover {
  color: var(--color-accent);
}

.step5-faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.step5-faq-item.active .step5-faq-icon {
  transform: rotate(180deg);
}

.step5-faq-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-light);
}

.step5-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step5-faq-answer-content {
  padding: 0 20px 16px;
  font-size: clamp(13px, 3.2vw, 14px);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== REPEAT OFFER ===== */
.step5-repeat {
  width: 100%;
  background: var(--color-accent-light);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 40px;
  text-align: center;
}

.step5-repeat-price-old {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.step5-repeat-price-new {
  font-size: clamp(42px, 11vw, 56px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step5-repeat-price-new span {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
}

.step5-repeat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 40px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(76, 175, 139, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  margin-bottom: 16px;
}

.step5-repeat-btn:hover {
  background: var(--color-accent-hover);
  box-shadow:
    0 6px 20px rgba(76, 175, 139, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.step5-repeat-btn:active {
  transform: translateY(0) scale(0.98);
}

.step5-repeat-btn svg {
  width: 20px;
  height: 20px;
}

.step5-repeat-trust {
  font-size: clamp(11px, 2.8vw, 12px);
  color: var(--color-text-light);
}

/* ===== CLOSING ===== */
.step5-closing {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.step5-closing-text {
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.step5-closing-text .highlight {
  color: var(--color-accent);
}

.step5-closing-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 40px;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(76, 175, 139, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.step5-closing-btn:hover {
  background: var(--color-accent-hover);
  box-shadow:
    0 6px 20px rgba(76, 175, 139, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.step5-closing-btn:active {
  transform: translateY(0) scale(0.98);
}

.step5-closing-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
.step5-footer {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.step5-footer-brand {
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.step5-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step5-footer-links a {
  font-size: clamp(11px, 2.8vw, 12px);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.step5-footer-info {
  font-size: clamp(10px, 2.5vw, 11px);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
.step5-anim {
  opacity: 0;
  transform: translateY(14px);
}

.step5-anim.step5-visible {
  animation: step5FadeIn 0.6s ease forwards;
}

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

.step5-delay-1 { animation-delay: 0.1s !important; }
.step5-delay-2 { animation-delay: 0.2s !important; }
.step5-delay-3 { animation-delay: 0.3s !important; }
.step5-delay-4 { animation-delay: 0.4s !important; }
.step5-delay-5 { animation-delay: 0.5s !important; }
.step5-delay-6 { animation-delay: 0.6s !important; }
.step5-delay-7 { animation-delay: 0.7s !important; }
.step5-delay-8 { animation-delay: 0.8s !important; }
.step5-delay-9 { animation-delay: 0.9s !important; }
.step5-delay-10 { animation-delay: 1.0s !important; }

/* Price Pulse */
@keyframes pricePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.step5-price-new {
  animation: pricePulse 3s ease-in-out infinite;
}

/* Button Shine */
@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .step5-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .step5-trust-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}
