.bundle-hero {
  min-height: calc(100svh - 120px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #f4f9fd;
  padding: clamp(54px, 8vw, 104px) 0;
}

.bundle-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.66fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.bundle-label {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 900;
}

.bundle-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(3rem, 6.8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.bundle-lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.bundle-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.bundle-price-row > strong {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
}

.bundle-price-row > span {
  display: grid;
  gap: 3px;
}

.bundle-price-row s {
  color: var(--muted);
}

.bundle-price-row b {
  color: #287a4b;
}

.bundle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.bundle-trust {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bundle-ledger {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
}

.bundle-ledger-head,
.bundle-ledger-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.bundle-ledger-head {
  border-bottom: 1px solid var(--line);
}

.bundle-ledger-foot {
  border-top: 1px solid var(--line);
}

.bundle-ledger-head strong,
.bundle-ledger-foot strong {
  color: var(--ink);
}

.bundle-ledger section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 24px 20px;
}

.bundle-ledger section + section {
  border-top: 1px solid var(--line);
}

.bundle-ledger small {
  color: var(--blue);
  font-weight: 900;
}

.bundle-ledger h2 {
  margin: 4px 0 0;
  font-family: var(--display-font);
  font-size: 1.45rem;
  line-height: 1.16;
}

.bundle-ledger section > b {
  color: var(--blue-dark);
  white-space: nowrap;
}

.bundle-ledger section > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.bundle-included {
  background: #fff;
}

.bundle-section-head {
  max-width: 760px;
}

.bundle-section-head h2,
.bundle-process h2,
.bundle-decision h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  text-wrap: balance;
}

.bundle-section-head p,
.bundle-process-grid > div > p,
.bundle-decision p {
  max-width: 65ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.68;
}

.bundle-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.bundle-report {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
}

.bundle-report-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.bundle-report-title span {
  color: var(--blue);
  font-weight: 900;
}

.bundle-report h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.bundle-report-purpose {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.bundle-report ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bundle-report li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.5;
}

.bundle-report li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.bundle-process {
  border-block: 1px solid var(--line);
  background: #eef6fb;
}

.bundle-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.66fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}

.bundle-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bundle-step;
}

.bundle-process li {
  counter-increment: bundle-step;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bundle-process li:first-child {
  padding-top: 0;
}

.bundle-process li::before {
  content: counter(bundle-step, decimal-leading-zero);
  grid-row: 1 / 3;
  color: var(--blue);
  font-weight: 900;
}

.bundle-process li b {
  color: var(--ink);
}

.bundle-process li span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.bundle-decision {
  background: var(--blue-dark);
  color: #fff;
}

.bundle-decision-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.bundle-decision h2,
.bundle-decision p {
  color: #fff;
}

.bundle-decision-price {
  display: grid;
  text-align: center;
}

.bundle-decision-price strong {
  font-family: var(--display-font);
  font-size: 3rem;
  line-height: 1;
}

.bundle-decision-price span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.bundle-decision .button {
  background: #fff;
  color: var(--blue-dark);
}

.bundle-faq {
  background: #fff;
}

.bundle-faq .faq {
  margin-top: 28px;
}

.bundle-checkout .checkout-head > div > strong {
  color: var(--blue);
}

.event-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bundle-time-field {
  display: grid;
  gap: 5px;
}

.bundle-time-field > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.bundle-time-field input:disabled {
  background: #edf2f5;
  color: var(--muted);
}

.bundle-unknown-time {
  display: inline-grid;
  grid-template-columns: 18px auto;
  gap: 8px;
  align-items: center;
  justify-content: start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.bundle-unknown-time input {
  width: 16px;
  height: 16px;
}

.event-choice-grid label {
  display: grid;
  gap: 6px;
}

.event-choice-grid label > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.event-choice-grid select {
  width: 100%;
  min-width: 0;
}

.bundle-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.bundle-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.bundle-consent a {
  color: var(--blue-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .bundle-hero-grid,
  .bundle-process-grid,
  .bundle-decision-inner {
    grid-template-columns: 1fr;
  }

  .bundle-hero {
    min-height: 0;
  }

  .bundle-ledger {
    width: min(100%, 620px);
  }

  .bundle-decision-price {
    text-align: left;
  }

  .bundle-decision .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .bundle-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .bundle-report-grid,
  .event-choice-grid {
    grid-template-columns: 1fr;
  }

  .bundle-actions .button,
  .bundle-decision .button {
    width: 100%;
    justify-content: center;
  }

  .bundle-ledger section {
    grid-template-columns: 1fr;
  }

  .bundle-ledger section > b {
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
