/* ════════════════════════════════
   PRE-CLOSE + CTA FINAL + FOOTER
════════════════════════════════ */

.preclose { position: relative; z-index: 5; padding: 100px 24px 0; }
.preclose-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.preclose-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.preclose-headline em { font-style: italic; font-weight: 500; color: var(--red-m); }

.preclose-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  max-width: 580px;
  margin: 0 auto 56px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
}
.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 250ms ease-out, background 250ms ease-out, transform 250ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover {
    border-color: rgba(192,18,40,0.22);
    background: rgba(192,18,40,0.04);
    transform: translateY(-2px);
  }
}
.benefit-icon { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(192,18,40,0.25); background: rgba(192,18,40,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 16px; height: 16px; stroke: rgba(200,30,50,0.9); stroke-width: 1.5; fill: none; }
.benefit-title { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,0.92); line-height: 1.4; }
.benefit-desc { font-size: 13px; font-weight: 400; line-height: 1.55; color: rgba(255,255,255,0.58); }

.diff-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--red);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 40px;
  text-align: left;
}
.diff-icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(192,18,40,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.diff-icon svg { width: 15px; height: 15px; stroke: var(--red-m); stroke-width: 1.5; fill: none; }
.diff-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-m); margin-bottom: 5px; }
.diff-body { font-size: 13px; font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.62); }
.diff-body strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.exclusivity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 56px;
}
.excl-text { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.35); }
.excl-text strong { color: rgba(255,255,255,0.65); font-weight: 700; }

.cta-final { position: relative; z-index: 5; padding: 0 24px; }
.cta-final-inner { max-width: 760px; margin: 0 auto; }
.cta-glow-wrap { position: relative; }
.cta-glow-wrap::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 200px; background: radial-gradient(ellipse at center, rgba(192,18,40,0.22) 0%, transparent 70%); pointer-events: none; z-index: 0; }

.cta-final-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 20px 32px;
  cursor: pointer;
  overflow: hidden;
  transition: background 160ms ease-out, transform 160ms var(--ease-snap), box-shadow 200ms ease-out;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 1px rgba(192,18,40,0.38),
    0 6px 28px rgba(192,18,40,0.42);
  margin-bottom: 14px;
}
.cta-final-btn::before { content: ''; position: absolute; top: 0; left: -120%; width: 70%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.09), transparent); transition: left 550ms var(--ease-shine); }
.cta-final-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: ctaHaloFinal 2s var(--ease-out) infinite;
}
.cta-final-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); stroke-width: 2.5; fill: none; transition: transform 200ms var(--ease-snap); }
.cta-final-btn:active { transform: scale(0.985); }
@media (hover: hover) and (pointer: fine) {
  .cta-final-btn:hover { background: #d41430; transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 0 0 1px rgba(192,18,40,0.55), 0 10px 36px rgba(192,18,40,0.52); }
  .cta-final-btn:hover::before { left: 140%; }
  .cta-final-btn:hover::after { animation: none; }
  .cta-final-btn:hover svg { transform: translateX(3px); }
  .cta-final-btn:active { transform: scale(0.985) translateY(0); }
}

@keyframes ctaHaloFinal {
  0%   { box-shadow: 0 0 0 0 rgba(212, 18, 46, 0.6); }
  60%  { box-shadow: 0 0 0 22px rgba(212, 18, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 18, 46, 0); }
}

.final-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
  margin-bottom: 80px;
  text-align: center;
}
.final-scarcity::before,
.final-scarcity::after { content: ''; display: block; height: 1px; width: 32px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

footer { position: relative; z-index: 5; border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 24px; }
.footer-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo-img { display: block; height: 52px; width: auto; opacity: 0.85; }
.footer-logo-text { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center; }
.footer-legal { font-size: 10.5px; font-weight: 400; line-height: 1.6; color: rgba(255,255,255,0.28); text-align: center; max-width: 640px; }
.footer-copy { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.12); text-transform: uppercase; }

@media (max-width: 640px) {
  .preclose { padding: 72px 20px 0; }
  .benefits { grid-template-columns: 1fr; }
  .diff-block { flex-direction: column; gap: 12px; }
  .cta-final { padding: 0 20px; }
  .cta-final-btn { font-size: 13px; padding: 18px 20px; }
  footer { padding: 32px 20px; }
}
