.billing-choice {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  margin: 0 0 1.4rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(0, 255, 102, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.08), rgba(12, 20, 26, 0.9));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.billing-choice h2 {
  margin: 0.15rem 0 0;
  font-size: 1.25rem;
}

.billing-choice .eyebrow {
  margin: 0;
  font-size: 0.68rem;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.55rem;
  min-width: min(100%, 380px);
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.billing-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 58px;
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.billing-option:hover,
.billing-option.selected {
  border-color: rgba(0, 255, 102, 0.52);
  background: rgba(0, 255, 102, 0.09);
}

.billing-option.selected {
  box-shadow: inset 0 0 0 1px rgba(0, 255, 102, 0.12);
}

.billing-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--wise-green);
}

.billing-option span {
  display: grid;
  gap: 0.18rem;
}

.billing-option strong {
  color: #fff;
  font-size: 0.92rem;
}

.billing-option small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.billing-option.selected small {
  color: var(--wise-green);
}

.plan-comparison {
  max-width: 220px;
  text-align: right;
  line-height: 1.35;
}

.summary-highlight {
  margin: 0.2rem -0.35rem 0;
  padding-right: 0.35rem;
  padding-left: 0.35rem;
  border-radius: 10px;
  background: rgba(0, 255, 102, 0.055);
}

.summary-highlight strong {
  color: var(--wise-green);
}

.legal-release-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.7rem;
  padding: 0.8rem 0.9rem;
  color: rgba(255, 244, 202, 0.86);
  background: rgba(255, 196, 64, 0.065);
  border: 1px solid rgba(255, 196, 64, 0.24);
  border-radius: 10px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.legal-release-note strong {
  color: #ffdf75;
}

.legal-acceptance {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0.8rem;
  padding: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.55;
}

.legal-acceptance:hover {
  border-color: rgba(0, 255, 102, 0.42);
}

.legal-acceptance:focus-within {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.legal-acceptance input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--green);
}

.legal-acceptance a {
  color: var(--green);
  font-weight: 800;
}

.legal-help {
  margin-top: 0.55rem;
}

.checkout-button:disabled {
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

.legal-footer-links a {
  color: var(--muted);
}

.legal-footer-links a:hover,
.legal-footer-links a:focus-visible {
  color: var(--green);
}

@media (max-width: 760px) {
  .billing-choice {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-toggle {
    width: 100%;
    min-width: 0;
  }

  .legal-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .billing-toggle {
    grid-template-columns: 1fr;
  }

  .plan-comparison {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .billing-option {
    transition: none;
  }
}
