.support-page {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.support-page__hero {
  border: 1px solid #bcd5ff;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #e5f0ff 0%, #ffffff 72%);
  box-shadow: 0 18px 44px rgba(21, 70, 140, 0.12);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.support-page__label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0 0 0.75rem;
  color: #1f5fbf;
  font-size: 0.8125rem;
  font-weight: 800;
}

.support-page__title {
  margin: 0;
  color: #0b3470;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  line-break: strict;
}

.support-page__lead {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: #36577f;
  font-size: 1rem;
  line-height: 1.8;
}

.support-section {
  margin-top: 2rem;
}

.support-section__heading {
  margin-bottom: 1rem;
}

.support-section__heading h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 900;
}

.support-section__heading p {
  margin: 0.375rem 0 0;
  color: #6b6b6b;
  line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #d8e4f7;
  border-top: 4px solid var(--plan-accent, #4285f4);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
  padding: 1.25rem;
}

.plan-card--featured {
  border-color: #9ec1ff;
  box-shadow: 0 18px 44px rgba(66, 133, 244, 0.16);
}

.plan-card__badge {
  align-self: flex-start;
  border-radius: 999px;
  background: #e7f0ff;
  color: #1f5fbf;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.625rem;
}

.plan-card h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.35rem;
  font-weight: 900;
}

.plan-card__price {
  margin: 0;
  color: #0b3470;
  font-size: 1.35rem;
  font-weight: 900;
}

.plan-card__note {
  margin: -0.625rem 0 0;
  color: #6b6b6b;
  font-size: 0.875rem;
  line-height: 1.7;
}

.plan-card__features {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card__features li {
  display: flex;
  gap: 0.5rem;
  color: #313d4f;
  line-height: 1.6;
}

.plan-card__features .material-icons {
  color: var(--plan-accent, #4285f4);
  font-size: 1.125rem;
  line-height: 1.6;
}

.plan-compare {
  overflow-x: auto;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
}

.plan-compare table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
}

.plan-compare th,
.plan-compare td {
  border-bottom: 1px solid #edf2fb;
  padding: 0.875rem 1rem;
  text-align: left;
  vertical-align: top;
}

.plan-compare th {
  background: #f4f8ff;
  color: #0b3470;
  font-size: 0.875rem;
  font-weight: 900;
}

.plan-compare td {
  color: #313d4f;
  line-height: 1.7;
}

.plan-compare tr.is-premium-only th,
.plan-compare tr.is-premium-only td {
  background: #fffaf0;
}

.plan-compare tr.is-premium-only th {
  color: #6f4e00;
}

.support-note {
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  color: #36577f;
  line-height: 1.8;
  padding: 1rem 1.25rem;
}

.support-note p {
  margin: 0;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 999px;
  font-weight: 800;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.support-button--primary {
  background: #1f5fbf;
  color: #fff;
}

.support-button--ghost {
  border: 1px solid #9ec1ff;
  background: #fff;
  color: #1f5fbf;
}

body[data-page-id="plans"] .support-page__hero {
  position: relative;
  display: block;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(1.5rem, 4vw, 3rem) 0 0;
  text-align: center;
}

.plans-hero-copy {
  min-width: 0;
}

.plans-hero-aside {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

body[data-page-id="plans"] .support-page__hero .plans-article-meta {
  margin-top: 0;
}

body[data-page-id="plans"] .support-page__hero .support-actions {
  align-items: stretch;
  flex-direction: column;
  margin-top: 0;
}

body[data-page-id="plans"] .support-page__hero .support-button {
  width: 100%;
}

.plans-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.plans-article-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid #d8e4f7;
  border-radius: 999px;
  background: #f7faff;
  color: #36577f;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.375rem 0.625rem;
}

.plans-article-meta .material-icons {
  color: #1f5fbf;
  font-size: 1rem;
}

.plans-article {
  min-width: 0;
  margin-top: 2rem;
}

.plans-hero-simple .support-page__lead {
  max-width: 36rem;
  margin-inline: auto;
  color: #263f5f;
  font-size: 1.0625rem;
}

.plans-hero-simple .support-page__label {
  justify-content: center;
  margin-bottom: 0.625rem;
}

.plans-hero-simple .support-page__title {
  color: #071f41;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.plans-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
  color: #005fc8;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 900;
}

.plans-hero-kicker::before,
.plans-hero-kicker::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: #005fc8;
  content: "";
}

.plans-tax-pill {
  position: absolute;
  top: 1rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid #d8e4f7;
  border-radius: 999px;
  background: #fff;
  color: #36577f;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
}

.plans-tax-pill .material-icons {
  color: #1f5fbf;
  font-size: 1rem;
}

.plans-section-heading--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.plans-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.plans-section-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid #d8e4f7;
  border-radius: 999px;
  background: #fff;
  color: #36577f;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}

.plans-section-nav a:hover,
.plans-section-nav a:focus-visible {
  border-color: #9ec1ff;
  background: #f4f8ff;
  color: #0b3470;
  outline: none;
}

.plans-section-nav a span {
  color: #1f5fbf;
  font-size: 0.75rem;
  font-weight: 900;
}

.plans-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.plan-choice-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(21, 44, 82, 0.1);
  overflow: hidden;
}

.plan-choice-card--featured {
  border-color: #ead39a;
  background: #fff;
}

.plan-choice-card__band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 4rem;
  background: linear-gradient(135deg, var(--plan-accent, #0b62c7), #01499d);
  color: #fff;
  padding: 1rem;
}

.plan-choice-card--featured .plan-choice-card__band {
  background: linear-gradient(135deg, #d89400, #efb821);
}

.plan-choice-card__band h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
}

.plan-choice-card__band .material-icons {
  font-size: 2rem;
}

.plan-choice-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.plan-choice-card__visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.75rem, 9vw, 6.5rem);
  height: clamp(4.75rem, 9vw, 6.5rem);
  border-radius: 999px;
  background: #e8f1ff;
  color: var(--plan-accent, #0b62c7);
}

.plan-choice-card--featured .plan-choice-card__visual {
  background: #fff2ce;
}

.plan-choice-card__visual .material-icons {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}

.plan-choice-card__type {
  margin: 0;
  color: var(--plan-accent, #0b62c7);
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.35;
}

.plan-choice-card__price {
  margin: 0;
  color: #0b3470;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.plan-choice-card__price span {
  margin-right: 0.25rem;
  font-size: 0.85em;
}

.plan-choice-card--featured .plan-choice-card__price {
  color: #6f4e00;
}

.plan-choice-card__use {
  margin: 0;
  color: #36577f;
  line-height: 1.75;
}

.plan-choice-card__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.plan-choice-card__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid #c7dcfb;
  border-radius: 999px;
  background: #f8fbff;
  color: #254569;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.4;
  padding: 0.375rem 0.625rem;
}

.plan-choice-card--featured .plan-choice-card__chips li {
  border-color: #efdc9d;
  background: #fffaf0;
}

.plan-choice-card__chips .material-icons {
  color: var(--plan-accent, #4285f4);
  font-size: 1rem;
}

.plan-choice-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 18rem);
  min-height: 3rem;
  margin-top: 0.5rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, var(--plan-accent, #0b62c7), #01499d);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.plan-choice-card--featured .plan-choice-card__action {
  background: linear-gradient(135deg, #d89400, #efb821);
}

.plans-difference-panel {
  display: grid;
  margin-top: 2rem;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(21, 44, 82, 0.08);
  overflow: hidden;
}

.plans-difference-row {
  display: grid;
  grid-template-columns: minmax(11rem, 0.9fr) repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 5.25rem;
  border-bottom: 1px solid #edf2fb;
}

.plans-difference-row:last-child {
  border-bottom: 0;
}

.plans-difference-row h3,
.plans-difference-row div {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 5.25rem;
  margin: 0;
  border-right: 1px solid #edf2fb;
  color: #25364d;
  font-weight: 800;
  line-height: 1.6;
  padding: 1rem 1.25rem;
}

.plans-difference-row h3 {
  color: #0b3470;
  font-size: 1rem;
  font-weight: 900;
}

.plans-difference-row div:last-child {
  border-right: 0;
}

.plans-difference-row .material-icons {
  color: #0b62c7;
  font-size: 1.45rem;
}

.plans-difference-row .is-premium {
  color: #7a5300;
}

.plans-difference-row .is-premium .material-icons {
  color: #d89400;
}

.plans-difference-row .plans-muted-icon {
  color: #8797aa;
}

.plans-detail-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  padding: 1.25rem;
}

.plans-detail-preview h2 {
  margin: 0;
  color: #071f41;
  font-size: 1.35rem;
  font-weight: 900;
}

.plans-detail-preview p {
  margin: 0.375rem 0 0;
  color: #36577f;
  line-height: 1.7;
}

.plan-compare--plans thead th:nth-child(3) {
  background: #0b62c7;
  color: #fff;
}

.plan-compare--plans thead th:nth-child(4) {
  background: #d89400;
  color: #fff;
}

.plans-keypoints {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.875rem;
}

.plans-keypoint {
  display: flex;
  gap: 0.75rem;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem;
}

.plans-keypoint > .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #edf4ff;
  color: #1f5fbf;
  font-size: 1.25rem;
}

.plans-keypoint h2 {
  margin: 0;
  color: #0b3470;
  font-size: 0.95rem;
  font-weight: 900;
}

.plans-keypoint p {
  margin: 0.25rem 0 0;
  color: #36577f;
  font-size: 0.875rem;
  line-height: 1.7;
}

.plans-article-list {
  display: grid;
  gap: 0.875rem;
}

.plans-article-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  border: 1px solid #d8e4f7;
  border-left: 4px solid var(--plan-accent, #4285f4);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem;
}

.plans-article-item--featured {
  border-color: #d8e4f7;
  border-left-color: var(--plan-accent, #d4a642);
  background: linear-gradient(90deg, #fffaf0 0%, #fff 40%);
}

.plans-article-item__main h3 {
  margin: 0.625rem 0 0;
  color: #1a1a1a;
  font-size: 1.15rem;
  font-weight: 900;
}

.plans-article-item__main p {
  margin: 0.375rem 0 0;
  color: #36577f;
  line-height: 1.75;
}

.plans-definition-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.plans-definition-list div {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 0.75rem;
  border-bottom: 1px solid #edf2fb;
  padding-bottom: 0.5rem;
}

.plans-definition-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plans-definition-list dt {
  color: #0b3470;
  font-size: 0.8125rem;
  font-weight: 900;
}

.plans-definition-list dd {
  margin: 0;
  color: #313d4f;
  font-size: 0.875rem;
  line-height: 1.6;
}

.plans-rate-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.plans-rate-strip div {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  border: 1px solid #c7dcfb;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
  padding: 1.25rem 1rem;
  text-align: center;
}

.plans-rate-strip div.is-premium-only {
  border-color: #d8c1ff;
  background: #fbf8ff;
}

.plans-rate-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #bcd5ff;
  border-radius: 999px;
  color: #0b62c7;
  font-size: 1.35rem;
}

.plans-rate-strip strong {
  display: block;
  color: #0b3470;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.plans-rate-strip em {
  color: #071f41;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.plans-rate-strip small,
.plans-rate-note {
  color: #36577f;
  font-size: 0.8125rem;
  line-height: 1.3;
}

.plans-rate-note {
  margin: 0 0 1rem;
  text-align: center;
}

.plans-fee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plans-fee-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
  padding: 1.25rem;
}

.plans-fee-card > .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: #edf4ff;
  color: #0b62c7;
  font-size: 2rem;
}

.plans-fee-card h3 {
  margin: 0;
  color: #071f41;
  font-size: 1rem;
  font-weight: 900;
}

.plans-fee-card p {
  margin: 0.375rem 0 0;
  color: #071f41;
  font-weight: 800;
}

.plans-fee-card strong {
  font-size: 1.75rem;
}

.plans-fee-card small {
  display: block;
  margin-top: 0.375rem;
  color: #36577f;
  line-height: 1.6;
}

.support-note--article {
  display: flex;
  gap: 0.75rem;
}

.support-note--article .material-icons {
  color: #1f5fbf;
  font-size: 1.25rem;
  line-height: 1.8;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-card {
  display: grid;
  gap: 0.5rem;
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
  padding: 1.25rem;
  text-decoration: none;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: #9ec1ff;
  outline: none;
  box-shadow: 0 16px 36px rgba(66, 133, 244, 0.14);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #6b6b6b;
  font-size: 0.8125rem;
  font-weight: 700;
}

.news-tag {
  border-radius: 999px;
  background: #edf4ff;
  color: #1f5fbf;
  padding: 0.125rem 0.5rem;
}

.news-card h2,
.news-article h1 {
  margin: 0;
  color: #1a1a1a;
  font-weight: 900;
  line-height: 1.35;
}

.news-card h2 {
  font-size: 1.25rem;
}

.news-card p,
.news-article p,
.news-article li {
  color: #36577f;
  line-height: 1.8;
}

.news-card p {
  margin: 0;
}

.news-article {
  border: 1px solid #d8e4f7;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.news-article h2 {
  margin: 2rem 0 0.75rem;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 900;
}

.news-article ul {
  margin: 0;
  padding-left: 1.25rem;
}

.faq-answer a,
.faq-answer a:visited {
  color: #1f5fbf;
  font-weight: 800;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  body[data-page-id="plans"] .support-page__hero {
    display: block;
  }

  .plans-tax-pill {
    position: static;
    margin: 0 auto 1rem;
    width: fit-content;
  }

  .plans-hero-aside {
    margin-top: 1.25rem;
  }

  body[data-page-id="plans"] .support-page__hero .support-actions {
    flex-direction: row;
    margin-top: 1.25rem;
  }

  body[data-page-id="plans"] .support-page__hero .support-button {
    width: auto;
  }

  .plans-choice-grid,
  .plans-fee-grid {
    grid-template-columns: 1fr;
  }

  .plans-difference-row {
    grid-template-columns: 1fr;
  }

  .plans-difference-row h3,
  .plans-difference-row div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #edf2fb;
  }

  .plans-difference-row div:last-child {
    border-bottom: 0;
  }

  .plans-detail-preview {
    align-items: stretch;
    flex-direction: column;
  }

  .plans-keypoints {
    grid-template-columns: 1fr;
  }

  .plans-article-item {
    grid-template-columns: 1fr;
  }

  .plans-rate-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .support-page {
    width: min(100% - 1rem, 72rem);
    padding-top: 1rem;
  }

  .support-page__hero,
  .plan-card,
  .news-card,
  .news-article {
    border-radius: 0.5rem;
  }

  .support-page__hero {
    padding: 1.25rem;
  }

  .support-page__title {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
    line-height: 1.18;
  }

  .support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-button {
    width: 100%;
  }

  body[data-page-id="plans"] .support-page__hero .support-actions {
    flex-direction: column;
  }

  body[data-page-id="plans"] .support-page__hero .support-button {
    width: 100%;
  }

  .plans-choice-card,
  .plans-difference-panel,
  .plans-fee-card {
    border-radius: 0.5rem;
  }

  .plan-choice-card__band {
    min-height: 3.5rem;
  }

  .plan-choice-card__price {
    font-size: 1.5rem;
  }

  .plans-detail-preview .support-button {
    width: 100%;
  }

  .plans-rate-strip {
    grid-template-columns: 1fr;
  }

  .plans-keypoint,
  .plans-article-item,
  .support-note--article {
    border-radius: 0.5rem;
  }

  .plans-definition-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .plans-fee-card {
    align-items: flex-start;
  }

  .support-note--article {
    display: block;
  }

  .support-note--article .material-icons {
    display: block;
    margin-bottom: 0.25rem;
  }

  .plan-compare {
    overflow-x: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .plan-compare table,
  .plan-compare thead,
  .plan-compare tbody,
  .plan-compare tr,
  .plan-compare th,
  .plan-compare td {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-width: 0;
  }

  .plan-compare thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .plan-compare tr {
    border: 1px solid #d8e4f7;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(21, 44, 82, 0.08);
    margin-bottom: 0.875rem;
    overflow: hidden;
  }

  .plan-compare th,
  .plan-compare td {
    border-bottom: 1px solid #edf2fb;
    padding: 0.75rem 0.875rem;
  }

  .plan-compare tbody th {
    background: #f4f8ff;
    font-size: 0.95rem;
  }

  .plan-compare td {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .plan-compare td::before {
    content: attr(data-label);
    display: block;
    color: #0b3470;
    font-weight: 900;
    margin-bottom: 0.25rem;
  }
}
