/*
 * FormVault Site Bundle — [fv_site_bundle]
 * Full-width horizontal hero banner, matching the category hero design.
 */

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

/* ── Banner wrapper ───────────────────────────────────────────────────────── */
.fv-sb {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 60%, #6366f1 100%);
  border-radius: 20px;
  box-shadow: 0 20px 50px -15px rgba(30, 58, 138, .45);
  overflow: hidden;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0 0 28px;
}

/* Decorative glows */
.fv-sb::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.fv-sb::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -100px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(99,102,241,.4) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Inner layout ─────────────────────────────────────────────────────────── */
.fv-sb__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
}

/* ── Left content ─────────────────────────────────────────────────────────── */
.fv-sb__content {
  flex: 1;
  min-width: 0;
}

.fv-sb__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 10px;
}

.fv-sb__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.3);
  flex-shrink: 0;
}

.fv-sb__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 10px;
}

.fv-sb__desc {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 0 14px;
}

/* Stats row */
.fv-sb__stats {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fv-sb__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fv-sb__stat-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.fv-sb__stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
}

.fv-sb__stat-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Pill notes row */
.fv-sb__notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.fv-sb__note-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.fv-sb__note-pill--cta {
  background: #fff;
  border-color: #fff;
  color: #2563eb;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  transition: background .15s, transform .15s, box-shadow .15s;
  font-family: inherit;
}

.fv-sb__note-pill--cta:hover {
  background: #f0f6ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ── Right pricing card ───────────────────────────────────────────────────── */
.fv-sb__card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.98);
  border-radius: 14px;
  padding: 18px 20px;
  min-width: 230px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.fv-sb__card-badge {
  display: inline-block;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 2px;
}

/* Pricing row: was $X  $Y */
.fv-sb__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fv-sb__orig-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.fv-sb__orig-label {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: #94a3b8;
}

.fv-sb__orig-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
}

.fv-sb__price {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}

.fv-sb__price-currency {
  font-size: 18px;
  color: #0f172a;
  font-weight: 800;
  margin-top: 6px;
}

.fv-sb__price-val {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1;
}

/* Save badge */
.fv-sb__save {
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #15803d);
  padding: 7px 18px;
  border-radius: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(22,163,74,.5);
  animation: fvsb-pulse 2s ease-in-out infinite;
}

@keyframes fvsb-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 16px rgba(22,163,74,.5); }
  50%       { transform: scale(1.05); box-shadow: 0 6px 22px rgba(22,163,74,.7); }
}

/* CTA button */
.fv-sb__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  transition: opacity .15s, transform .15s;
  font-family: inherit;
  margin-top: 2px;
}

.fv-sb__btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* Features */
.fv-sb__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  margin-top: 2px;
}

.fv-sb__features span {
  font-size: 11px;
  color: #475569;
  white-space: nowrap;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .fv-sb__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 20px;
  }

  .fv-sb__card {
    max-width: 100%;
    min-width: 0;
  }

  .fv-sb__title {
    font-size: 22px;
  }

  .fv-sb__content {
    text-align: center;
  }

  .fv-sb__eyebrow {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
  }

  .fv-sb__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .fv-sb__stats {
    justify-content: center;
  }

  .fv-sb__notes {
    justify-content: center;
  }
}
