/* ── Pricing Hero ────────────────────────────────────── */
.pricing-hero { background: linear-gradient(135deg, #0d1b3e 0%, #1a237e 100%); color: white; padding: 120px 0 48px; margin-top: -80px; padding-top: calc(80px + 48px); }
.pricing-hero .tvg-container { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 20px; }
.pricing-hero h1 { color: white; margin-bottom: 12px; }
.pricing-hero p { opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* ── Two Models ─────────────────────────────────────── */
.tvg-pricing-models {
  padding: 48px 0;
  background: #fff;
}

.tvg-pricing-models .tvg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tvg-pricing-models__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Pricing card */
.tvg-pricing-card {
  position: relative;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.tvg-pricing-card--featured {
  border-top: 4px solid #c2185b;
}

.tvg-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: #c2185b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tvg-pricing-card__title {
  font-weight: 700;
  color: var(--tvg-headings-color);
  margin: 0 0 8px;
}

.tvg-pricing-card__subtitle {
  font-weight: 600;
  color: var(--tvg-color-text);
  margin: 0 0 16px;
}

.tvg-pricing-card__desc {
  color: var(--tvg-color-text);
  margin: 0 0 24px;
}

.tvg-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.tvg-pricing-card__features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--tvg-headings-color);
}

.tvg-pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4CAF50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.6 14.6L15.65 7.55L14.25 6.15L8.6 11.8L5.75 8.95L4.35 10.35L8.6 14.6Z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.tvg-pricing-card__cta {
  align-self: flex-start;
}

/* ── Wizard Section ─────────────────────────────────── */
.tvg-pricing-wizard-section {
  padding: 48px 0 56px;
  background: #f8f9fa;
}

.tvg-pricing-wizard-section .tvg-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.tvg-pricing-wizard-section__heading {
  color: var(--tvg-headings-color);
  text-align: center;
  margin: 0 0 8px;
}

.tvg-pricing-wizard-section__sub {
  color: var(--tvg-color-text);
  text-align: center;
  margin: 0 0 32px;
}

/* Wizard card */
.tvg-pricing__wizard {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.tvg-pricing__step {
  display: none;
}

.tvg-pricing__step.active {
  display: block;
}

.tvg-pricing__step-indicator {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c2185b;
  margin-bottom: 8px;
}

.tvg-pricing__step-title {
  color: var(--tvg-headings-color);
  margin-bottom: 20px;
}

.tvg-pricing__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tvg-pricing__option {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  color: var(--tvg-headings-color);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s;
}

.tvg-pricing__option:hover {
  border-color: #c2185b;
  background: rgba(194, 24, 91, 0.04);
}

.tvg-pricing__option.selected {
  border-color: #c2185b;
  background: rgba(194, 24, 91, 0.08);
  box-shadow: 0 0 0 1px #c2185b;
}

/* Form */
.tvg-pricing__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tvg-pricing__form input[type="text"],
.tvg-pricing__form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.tvg-pricing__form input:focus {
  outline: none;
  border-color: #c2185b;
}

.tvg-pricing__submit {
  margin-top: 6px;
  width: 100%;
  cursor: pointer;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 767px) {
  .tvg-pricing-models__grid {
    grid-template-columns: 1fr;
  }

  .tvg-pricing-card {
    padding: 32px 24px;
  }

  .tvg-pricing__wizard {
    padding: 28px 20px;
  }
}
