.bundles-hero {
  background: radial-gradient(circle at top left, rgba(0, 179, 255, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 179, 255, 0.08), transparent 55%);
}

.bundles-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.bundles-hero__content {
  max-width: 40rem;
}

.bundles-hero__eyebrow {
  margin-bottom: var(--space-2);
}

.bundles-hero__text {
  margin-bottom: var(--space-4);
}

.bundles-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.bundles-hero__note {
  max-width: 32rem;
}

.bundles-hero__media {
  position: relative;
}

.bundles-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color-subtle);
}

.bundles-section-header {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.bundles-section-header--center {
  text-align: center;
}

.bundles-section-header--center p {
  margin-inline: auto;
}

.bundles-card-grid {
  align-items: stretch;
}

.bundles-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bundles-card__header {
  margin-bottom: var(--space-3);
}

.bundles-card__body {
  flex: 1 1 auto;
  margin-bottom: var(--space-4);
}

.bundles-card__list {
  display: grid;
  gap: var(--space-2);
  padding-left: 1.1rem;
  margin-bottom: var(--space-3);
}

.bundles-card__list li {
  position: relative;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.bundles-card__list li::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

.bundles-card__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.bundles-card__meta {
  margin-bottom: var(--space-3);
}

.bundles-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bundles-card__media img {
  width: 100%;
}

.bundles-card--featured {
  border-color: rgba(0, 179, 255, 0.45);
  box-shadow: var(--shadow-md);
}

.bundles-quick__grid {
  align-items: stretch;
}

.bundles-quick__card h3 {
  margin-bottom: var(--space-2);
}

.bundles-quick__item + .bundles-quick__item {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color-subtle);
}

.bundles-quick__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.bundles-protection__layout {
  max-width: var(--layout-max-width);
}

.bundles-protection__content {
  max-width: 52rem;
}

.bundles-protection__item + .bundles-protection__item {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color-subtle);
}

.bundles-protection__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.bundles-compare__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: var(--space-6);
  align-items: center;
}

.bundles-compare__media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-subtle);
  box-shadow: var(--shadow-sm);
}

.bundles-compare__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.bundles-experience__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.bundles-experience__intro {
  max-width: 34rem;
}

.bundles-experience__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.bundles-experience__testimonials {
  display: grid;
  gap: var(--space-4);
}

.bundles-testimonial p {
  margin-bottom: var(--space-2);
}

.bundles-help__layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
}

.bundles-help__content {
  flex: 1 1 320px;
  max-width: 46rem;
}

.bundles-help__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .bundles-hero__layout {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .bundles-hero__media {
    order: -1;
  }

  .bundles-compare__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .bundles-experience__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .bundles-hero__actions,
  .bundles-quick__cta,
  .bundles-protection__cta,
  .bundles-compare__cta,
  .bundles-experience__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .bundles-help__cta-group {
    width: 100%;
  }
}
