.pricing-main {
  color: var(--text);
  background: #fff;
}

.pricing-main .container {
  width: min(1240px, calc(100% - 48px));
}

.pricing-main h1,
.pricing-main h2,
.pricing-main h3,
.pricing-main p {
  margin-top: 0;
}

.pricing-main button,
.pricing-main select,
.pricing-main input {
  letter-spacing: 0;
}

.pricing-workspace {
  padding: 28px 0 84px;
}

.pricing-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #758190;
  font-size: 12px;
  font-weight: 600;
}

.pricing-breadcrumb a:hover {
  color: var(--blue);
}

.pricing-breadcrumb strong {
  color: var(--ink);
}

.pricing-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 56px;
  align-items: end;
  margin-bottom: 24px;
}

.pricing-eyebrow,
.pricing-faq-layout > header > span {
  display: block;
  color: var(--blue);
  font-family: "Montserrat", "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.pricing-focus-head h1 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.18;
}

.pricing-focus-head p {
  max-width: 720px;
  margin-bottom: 0;
  color: #647180;
  font-size: 14px;
  line-height: 1.8;
}

.pricing-api-status {
  min-width: 236px;
  min-height: 52px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 11px 9px 14px;
  border: 1px solid #d6dde4;
  border-radius: 4px;
  background: #f8f9fa;
}

.pricing-api-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8a96a2;
}

.pricing-api-status > div {
  display: flex;
  flex-direction: column;
}

.pricing-api-status small {
  color: #8b96a2;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 700;
}

.pricing-api-status strong {
  margin-top: 1px;
  color: #394553;
  font-size: 11px;
}

.pricing-api-status button {
  min-width: 32px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid #d2d9e0;
  border-radius: 3px;
  color: #4f5c69;
  background: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.pricing-api-status button svg {
  width: 13px;
  height: 13px;
}

.pricing-api-status.is-loading .pricing-api-dot {
  background: #d6a83e;
  animation: pricing-status-pulse 1s ease-in-out infinite alternate;
}

.pricing-api-status.is-ready {
  border-color: #acd7cc;
  background: #f3f9f7;
}

.pricing-api-status.is-ready .pricing-api-dot {
  background: var(--teal);
}

.pricing-api-status.is-ready strong {
  color: var(--teal);
}

.pricing-api-status.is-error {
  border-color: #e0bbb4;
  background: #fff7f5;
}

.pricing-api-status.is-error .pricing-api-dot {
  background: #ba5140;
}

.pricing-api-status.is-error strong {
  color: #9a4033;
}

.pricing-api-status.is-error button {
  display: inline-flex;
}

@keyframes pricing-status-pulse {
  from { opacity: 0.38; }
  to { opacity: 1; }
}

.pricing-product-selector {
  border: 1px solid var(--line-strong);
}

.pricing-product-selector-label {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  color: #737e8b;
  background: #f5f6f7;
  font-family: "Montserrat", "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-product-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow-x: auto;
  background: #fff;
  scrollbar-width: none;
}

.pricing-product-tabs::-webkit-scrollbar {
  display: none;
}

.pricing-product-tab {
  position: relative;
  min-width: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #46515e;
  background: #fff;
  cursor: pointer;
}

.pricing-product-tab:last-child {
  border-right: 0;
}

.pricing-product-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  opacity: 0;
}

.pricing-product-tab > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #7a8794;
}

.pricing-product-tab strong {
  color: inherit;
  font-size: 13px;
}

.pricing-product-tab:hover {
  background: #f8faff;
}

.pricing-product-tab.is-active {
  color: var(--blue);
  background: #f1f5ff;
}

.pricing-product-tab.is-active::after {
  opacity: 1;
}

.pricing-product-tab.is-active > svg {
  color: var(--blue);
}

.pricing-product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: center;
  padding: 18px 26px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: #fafbfc;
}

.pricing-product-intro > div:first-child > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.pricing-product-intro h2 {
  margin-bottom: 7px;
  font-size: 24px;
}

.pricing-product-intro p {
  max-width: 680px;
  margin-bottom: 0;
  color: #687483;
  font-size: 13px;
  line-height: 1.7;
}

.pricing-product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  align-items: center;
}

.pricing-product-points span {
  min-width: 135px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #52606d;
  font-size: 11px;
}

.pricing-product-points svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--teal);
}

.pricing-product-notice {
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 16px;
  border-right: 1px solid #d7dee6;
  border-bottom: 1px solid #d7dee6;
  border-left: 3px solid #d09b37;
  background: #fffbf2;
}

.pricing-product-notice > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 2px;
  color: #a87820;
}

.pricing-product-notice p {
  margin-bottom: 0;
  color: #665a43;
  font-size: 12px;
  line-height: 1.65;
}

.pricing-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 374px;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.pricing-config-form {
  border: 1px solid var(--line-strong);
  background: #fff;
}

.pricing-config-form-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: #f5f6f7;
}

.pricing-config-form-head span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.pricing-config-form-head small {
  color: #798591;
  font-size: 10px;
  text-align: right;
}

.pricing-field {
  padding: 25px 30px 29px;
  border-bottom: 1px solid var(--line);
}

.pricing-field.is-billing-field {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.pricing-field.is-billing-field .pricing-field-label {
  margin-bottom: 0;
}

.pricing-field.is-billing-field .pricing-option {
  min-height: 54px;
}

.pricing-field.is-billing-field .pricing-single-value {
  min-height: 54px;
}

.pricing-field-label {
  margin-bottom: 17px;
}

.pricing-field-label h3 {
  margin-bottom: 3px;
  font-size: 15px;
}

.pricing-field-label p {
  margin-bottom: 0;
  color: #7a8592;
  font-size: 11px;
  line-height: 1.55;
}

.pricing-option-grid,
.pricing-tier-grid,
.pricing-duration-grid {
  display: grid;
  gap: 8px;
}

.pricing-option-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-tier-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-duration-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-option {
  position: relative;
  min-width: 0;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 13px;
  overflow: hidden;
  border: 1px solid #d5dce3;
  border-radius: 4px;
  color: #374250;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.pricing-option::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-left: 14px solid transparent;
  content: "";
}

.pricing-option strong {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-option span {
  margin-top: 4px;
  color: #7a8592;
  font-size: 9px;
  line-height: 1.4;
}

.pricing-option:hover {
  border-color: #9fadd7;
  background: #f8faff;
}

.pricing-option.is-active {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
  background: #f1f5ff;
}

.pricing-option.is-active::after {
  border-top-color: var(--blue);
}

.pricing-option.is-active strong {
  color: var(--blue);
}

.pricing-option-grid.is-two .pricing-option {
  min-height: 72px;
}

.pricing-option-grid.is-two .pricing-option span {
  font-size: 10px;
}

.pricing-trial-option {
  min-height: 76px;
  border-color: #8fcdbd;
  background: #f1f9f7;
}

.pricing-trial-option em {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-trial-option strong {
  color: #0b6556;
}

.pricing-trial-option.is-active {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
  background: #eaf7f3;
}

.pricing-trial-option.is-active::after {
  border-top-color: var(--teal);
}

.pricing-trial-option.is-active strong {
  color: #075e50;
}

.pricing-tier-skeleton {
  min-height: 68px;
  border: 1px solid #e1e5e9;
  border-radius: 4px;
  background: #f0f2f4;
  animation: pricing-skeleton-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes pricing-skeleton-pulse {
  from { opacity: 0.48; }
  to { opacity: 1; }
}

.pricing-tier-error {
  min-height: 76px;
  grid-column: span 3;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e0bbb4;
  color: #93483b;
  background: #fff7f5;
  font-size: 11px;
  line-height: 1.6;
}

.pricing-single-value {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: #f6f8f9;
}

.pricing-single-value.is-trial {
  border-color: #b2d8ce;
  background: #f2f9f7;
}

.pricing-single-value > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--teal);
}

.pricing-single-value div {
  display: flex;
  flex-direction: column;
}

.pricing-single-value strong {
  color: var(--ink);
  font-size: 12px;
}

.pricing-single-value span {
  margin-top: 2px;
  color: #73808d;
  font-size: 10px;
}

.pricing-select-field {
  position: relative;
  display: block;
}

.pricing-select-field select {
  width: 100%;
  height: 50px;
  padding: 0 44px 0 14px;
  border: 1px solid #cfd6de;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  appearance: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.pricing-select-field > svg {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 17px;
  height: 17px;
  color: #6e7987;
  pointer-events: none;
}

.pricing-region-codes {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.pricing-region-codes summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.pricing-region-codes summary::-webkit-details-marker {
  display: none;
}

.pricing-region-codes summary svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  transition: transform 0.18s ease;
}

.pricing-region-codes[open] summary svg {
  transform: rotate(180deg);
}

.pricing-region-codes > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.pricing-region-codes > div span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #586574;
  font-size: 10px;
  font-weight: 600;
}

.pricing-region-codes > div span:nth-child(5n) {
  border-right: 0;
}

.pricing-number-field {
  max-width: 280px;
  display: block;
  margin-top: 14px;
}

.pricing-number-field > span {
  display: block;
  margin-bottom: 6px;
  color: #5f6b79;
  font-size: 10px;
  font-weight: 700;
}

.pricing-number-field > div {
  position: relative;
}

.pricing-number-field input {
  width: 100%;
  height: 46px;
  padding: 0 72px 0 13px;
  border: 1px solid #cfd6de;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pricing-number-field em {
  position: absolute;
  top: 12px;
  right: 13px;
  color: #778391;
  font-size: 10px;
  font-style: normal;
}

.pricing-config-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 15px 20px;
  background: #f7f8f9;
}

.pricing-icon-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #d4dae1;
  border-radius: 4px;
  color: #56616f;
  background: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.pricing-icon-action svg {
  width: 13px;
  height: 13px;
}

.pricing-icon-action:hover {
  color: var(--blue);
  border-color: #aebbe8;
}

.pricing-summary {
  position: sticky;
  top: 124px;
  border: 1px solid #bcc6d0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 30, 48, 0.08);
}

.pricing-summary-head {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 21px;
  color: #dce5ee;
  background: #101c28;
}

.pricing-summary-head span {
  color: #85a0b5;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-summary-head strong {
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
}

.pricing-summary-details {
  margin: 0;
  padding: 17px 21px 3px;
}

.pricing-summary-details > div:not(.pricing-summary-divider) {
  min-height: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 12px;
  align-items: start;
}

.pricing-summary-details dt,
.pricing-summary-details dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.pricing-summary-details dt {
  color: #84909c;
}

.pricing-summary-details dd {
  color: #2d3744;
  font-weight: 700;
  text-align: right;
}

.pricing-summary-details .is-saving dd {
  color: var(--teal);
}

.pricing-summary-divider {
  height: 1px;
  margin: 11px 0 14px;
  background: var(--line);
}

.pricing-summary-total {
  margin: 8px 21px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pricing-summary-total > span {
  display: block;
  color: #697583;
  font-size: 10px;
  font-weight: 700;
}

.pricing-summary-total > div {
  min-height: 58px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 4px;
}

.pricing-summary-total small {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.pricing-summary-total strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.pricing-summary-total del {
  margin-left: 7px;
  color: #9ba4ae;
  font-size: 11px;
}

.pricing-summary-total p {
  margin: 0;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
}

.pricing-purchase {
  width: calc(100% - 42px);
  justify-content: center;
  margin: 0 21px;
}

.pricing-summary-note {
  margin: 14px 21px 18px;
  color: #8a949f;
  font-size: 9px;
  line-height: 1.6;
}

.pricing-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 320px;
  padding: 11px 15px;
  border: 1px solid #263949;
  border-radius: 4px;
  color: #fff;
  background: #101c28;
  box-shadow: 0 14px 36px rgba(8, 20, 31, 0.22);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pricing-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-noscript {
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid #d5aa55;
  color: #7b5a1d;
  background: #fff8e8;
  font-size: 11px;
}

.pricing-bandwidth {
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--line);
  background: #f4f6f8;
}

.pricing-bandwidth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 76px;
  align-items: center;
}

.pricing-bandwidth-copy > span {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.pricing-bandwidth-copy h2 {
  max-width: 520px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.24;
}

.pricing-bandwidth-copy > p {
  max-width: 580px;
  margin: 0;
  color: #667483;
  font-size: 13px;
  line-height: 1.85;
}

.pricing-bandwidth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pricing-bandwidth-actions .btn {
  min-height: 44px;
}

.pricing-bandwidth-actions .btn:not(.btn-primary) {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.pricing-bandwidth-detail {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.pricing-bandwidth-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-bandwidth-facts > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-bandwidth-facts > div:nth-child(2n) {
  border-right: 0;
}

.pricing-bandwidth-facts > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pricing-bandwidth-facts strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.pricing-bandwidth-facts span {
  color: #7a8794;
  font-size: 10px;
  line-height: 1.5;
}

.pricing-bandwidth-detail > p {
  margin: 0;
  padding: 17px 24px;
  border-top: 1px solid var(--line);
  color: #657383;
  font-size: 11px;
  line-height: 1.75;
}

.pricing-comparison {
  padding: 82px 0 88px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.pricing-comparison-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 34px;
}

.pricing-comparison-head span {
  display: block;
  margin-bottom: 11px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-comparison-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
}

.pricing-comparison-head p {
  max-width: 540px;
  margin: 0;
  color: #697583;
  font-size: 13px;
  line-height: 1.8;
}

.pricing-comparison-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  scrollbar-width: thin;
}

.pricing-comparison table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-comparison th,
.pricing-comparison td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-comparison th:last-child,
.pricing-comparison td:last-child {
  border-right: 0;
}

.pricing-comparison tbody tr:last-child th,
.pricing-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-comparison thead th {
  height: 82px;
  padding: 18px 16px;
  color: var(--ink);
  background: #f7f9fb;
}

.pricing-comparison thead th:first-child,
.pricing-comparison tbody th {
  width: 132px;
  position: sticky;
  left: 0;
  z-index: 2;
}

.pricing-comparison thead th:first-child {
  z-index: 3;
}

.pricing-comparison thead a {
  min-height: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.pricing-comparison thead a:hover {
  color: var(--blue);
}

.pricing-comparison thead a strong {
  max-width: 142px;
  font-size: 13px;
  line-height: 1.45;
}

.pricing-comparison thead a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--blue);
}

.pricing-comparison tbody th {
  padding: 17px 15px;
  color: var(--ink);
  background: #f7f9fb;
  font-size: 11px;
  line-height: 1.55;
}

.pricing-comparison tbody td {
  padding: 17px 16px;
  color: #586574;
  font-size: 11px;
  line-height: 1.65;
}

.pricing-comparison tbody tr:hover td {
  background: #fbfcff;
}

.pricing-comparison-note {
  margin: 14px 0 0;
  color: #82909e;
  font-size: 10px;
  line-height: 1.6;
}

.pricing-compliance {
  padding: 34px 0;
  border-top: 1px solid #2c3e4d;
  border-bottom: 1px solid #2c3e4d;
  color: #d5dfe7;
  background: #101c28;
}

.pricing-compliance > .container {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pricing-compliance > .container > span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c28a39;
  color: #e3ad5a;
}

.pricing-compliance svg {
  width: 18px;
  height: 18px;
}

.pricing-compliance strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.pricing-compliance p {
  max-width: 980px;
  margin-bottom: 0;
  color: #aab9c6;
  font-size: 12px;
  line-height: 1.75;
}

.pricing-faq-section {
  padding: 84px 0 96px;
  background: #f4f6f8;
}

.pricing-faq-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 76px;
}

.pricing-faq-layout > header > span {
  margin-bottom: 12px;
}

.pricing-faq-layout h2 {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.28;
}

.pricing-faq-list {
  border-top: 1px solid var(--line-strong);
}

.pricing-faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.pricing-faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.pricing-faq-list summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-list summary svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--blue);
  transition: transform 0.18s ease;
}

.pricing-faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.pricing-faq-list p {
  max-width: 800px;
  margin: -3px 40px 22px 0;
  color: #697583;
  font-size: 12px;
  line-height: 1.85;
}

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

@media (max-width: 1080px) {
  .pricing-product-tabs {
    display: flex;
  }

  .pricing-product-tab {
    min-width: 205px;
  }

  .pricing-tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-duration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .pricing-focus-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .pricing-api-status {
    width: 100%;
  }

  .pricing-product-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-config-grid {
    grid-template-columns: 1fr;
  }

  .pricing-summary {
    position: static;
  }

  .pricing-bandwidth-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
  }

  .pricing-comparison-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .pricing-faq-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 720px) {
  .pricing-main .container {
    width: min(100% - 32px, 1240px);
  }

  .pricing-workspace {
    padding: 28px 0 64px;
  }

  .pricing-breadcrumb {
    margin-bottom: 20px;
  }

  .pricing-focus-head {
    margin-bottom: 24px;
  }

  .pricing-focus-head h1 {
    font-size: 34px;
  }

  .pricing-focus-head p {
    font-size: 13px;
  }

  .pricing-product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .pricing-product-tab {
    min-width: 0;
    min-height: 66px;
    border-bottom: 1px solid var(--line);
  }

  .pricing-product-tab:nth-child(2n) {
    border-right: 0;
  }

  .pricing-product-tab:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .pricing-product-intro {
    padding: 23px 20px;
  }

  .pricing-product-intro h2 {
    font-size: 22px;
  }

  .pricing-product-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pricing-product-notice {
    padding: 14px 15px;
  }

  .pricing-config-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 12px 18px;
  }

  .pricing-config-form-head small {
    text-align: left;
  }

  .pricing-field {
    padding: 22px 19px 25px;
  }

  .pricing-field.is-billing-field {
    display: block;
    padding-top: 22px;
    padding-bottom: 25px;
  }

  .pricing-field.is-billing-field .pricing-field-label {
    margin-bottom: 17px;
  }

  .pricing-option-grid.is-two {
    grid-template-columns: 1fr;
  }

  .pricing-region-codes > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-region-codes > div span:nth-child(5n) {
    border-right: 1px solid var(--line);
  }

  .pricing-region-codes > div span:nth-child(3n) {
    border-right: 0;
  }

  .pricing-tier-grid,
  .pricing-duration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-tier-error {
    grid-column: span 1;
  }

  .pricing-config-actions {
    justify-content: stretch;
    padding: 14px 18px;
  }

  .pricing-icon-action {
    flex: 1;
    justify-content: center;
  }

  .pricing-summary {
    box-shadow: none;
  }

  .pricing-compliance > .container {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
  }

  .pricing-compliance > .container > span {
    width: 32px;
    height: 32px;
  }

  .pricing-bandwidth {
    padding: 58px 0 64px;
  }

  .pricing-bandwidth-copy h2 {
    font-size: 29px;
  }

  .pricing-bandwidth-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-bandwidth-actions .btn {
    width: 100%;
  }

  .pricing-bandwidth-facts > div {
    min-height: 96px;
    padding: 17px;
  }

  .pricing-comparison {
    padding: 62px 0 68px;
  }

  .pricing-comparison-head {
    margin-bottom: 25px;
  }

  .pricing-comparison-head h2 {
    font-size: 28px;
  }

  .pricing-comparison-scroll {
    margin-right: -16px;
  }

  .pricing-faq-section {
    padding: 66px 0 76px;
  }

  .pricing-faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-faq-layout h2 {
    max-width: none;
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .pricing-focus-head h1 {
    font-size: 32px;
  }

  .pricing-api-status {
    min-width: 0;
  }

  .pricing-product-tab {
    min-width: 0;
  }

  .pricing-option {
    min-height: 60px;
    padding: 9px 10px;
  }

  .pricing-option strong {
    font-size: 11px;
  }

  .pricing-summary-total strong {
    font-size: 41px;
  }
}

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