/* v6 */
*, *::before, *::after { box-sizing: border-box; }

/* ── Progress Steps ── */
.feu-step-done {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background-color: #22c55e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 15px rgba(34,197,94,0.4);
  flex-shrink: 0;
}
.feu-step-active {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background-color: #ef4444;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 15px rgba(239,68,68,0.4);
  flex-shrink: 0;
}
.feu-step-locked {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background-color: #27272a;
  display: flex; align-items: center; justify-content: center;
  color: #71717a; font-weight: 700; font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.feu-connector-red  { width: 3rem; height: 0.25rem; background-color: #ef4444; border-radius: 9999px; flex-shrink: 0; }
.feu-connector-dark { width: 3rem; height: 0.25rem; background-color: #27272a; border-radius: 9999px; flex-shrink: 0; }

/* ── Success Badge ── */
.feu-success-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; margin-bottom: 1rem;
  border-radius: 9999px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e; font-size: 0.875rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ── Headline ── */
.feu-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700; color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}
.feu-subtext { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin: 0; font-family: 'Inter', sans-serif; }

/* ── Urgency Banner ── */
.feu-urgency {
  background: linear-gradient(to right, #dc2626, #ef4444);
  border-radius: 0.75rem; padding: 1rem;
  text-align: center;
  box-shadow: 0 0 30px -5px rgba(220,38,38,0.5);
}
.feu-urgency-label { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9375rem; font-family: 'Inter', sans-serif; }
.feu-urgency-sub { color: rgba(255,255,255,0.9); font-size: 0.875rem; margin: 0.25rem 0 0; font-family: 'Inter', sans-serif; }

/* ── Bundle Card ── */
.feu-bundle-card {
  background: rgba(24,24,27,0.8);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 1rem; overflow: hidden;
}

/* ── Card Header ── */
.feu-card-header {
  background: rgba(39,39,42,0.8);
  padding: 1.5rem; text-align: center;
  border-bottom: 1px solid rgba(63,63,70,0.5);
}
.feu-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 700;
  color: #fff; letter-spacing: -0.025em; margin: 0 0 0.5rem;
}
.feu-card-subtitle { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin: 0; font-family: 'Inter', sans-serif; }

/* ── Product Grid ── */
.feu-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .feu-product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Product Item ── */
.feu-product-item {
  display: flex; gap: 1rem; padding: 1rem;
  background: rgba(39,39,42,0.6);
  border-radius: 0.75rem;
  border: 1px solid rgba(63,63,70,0.6);
  transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.feu-product-item:hover {
  border-color: rgba(239,68,68,0.3);
  background: rgba(39,39,42,0.8);
}
.feu-product-img {
  width: 4rem; height: 5rem;
  object-fit: cover; border-radius: 0.5rem; flex-shrink: 0;
}
.feu-product-title {
  color: #fff; font-weight: 600; font-size: 0.875rem;
  margin: 0 0 0.25rem; line-height: 1.3;
  font-family: 'Inter', sans-serif;
}
.feu-product-benefit {
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  margin: 0 0 0.5rem; line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.feu-product-value { color: #ef4444; font-weight: 700; font-size: 0.875rem; font-family: 'Inter', sans-serif; }

/* ── Pricing ── */
.feu-price-original {
  color: #71717a; text-decoration: line-through;
  font-size: 1.5rem; font-weight: 700; font-family: 'Inter', sans-serif;
}
.feu-price-current {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff; font-weight: 700;
  font-size: clamp(3rem, 8vw, 3.75rem); line-height: 1;
}
.feu-save-badge {
  display: inline-block;
  background: rgba(34,197,94,0.2); color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 9999px; font-size: 1rem; font-weight: 700;
  padding: 0.375rem 1.25rem; font-family: 'Inter', sans-serif;
}

/* ── CTA Button ── */
.feu-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  width: 100%; height: 4rem;
  background: #dc2626; border: none; border-radius: 9999px;
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.125rem;
  text-decoration: none; cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.feu-cta-btn:hover {
  background: #b91c1c;
  transform: scale(1.02);
  box-shadow: 0 0 30px -5px rgba(220,38,38,0.5);
}

/* ── Decline Link ── */
.feu-decline {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem; color: #71717a; font-size: 0.875rem;
  text-decoration: none; font-family: 'Inter', sans-serif;
  transition: color 0.2s; width: 100%;
}
.feu-decline:hover { color: #a1a1aa; }

/* ── Guarantee Row ── */
.feu-guarantee {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem; text-align: center;
}
@media (min-width: 640px) { .feu-guarantee { flex-direction: row; gap: 2rem; } }
.feu-guarantee-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: #a1a1aa; font-size: 0.875rem; font-family: 'Inter', sans-serif;
}
