@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

/* ==========================================================================
   MeetAlgo Membership Page Shortcodes v2
   Folder: membership-page-design
   Shortcodes: [ma_membership_*]
   ========================================================================== */

.ma-m2 {
  --ma-m2-bg: #f4f5fa;
  --ma-m2-panel: #ffffff;
  --ma-m2-panel-2: #eceef6;
  --ma-m2-border: #e2e5ef;
  --ma-m2-border-strong: #c9cddc;
  --ma-m2-fg: #444445;
  --ma-m2-muted: #8a8b95;
  --ma-m2-accent: #546dff;
  --ma-m2-down: #d24545;
  --ma-m2-gold: #c99a3b;
  width: 100%;
  color: var(--ma-m2-fg);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-m2 * {
  box-sizing: border-box;
}

.ma-m2-wrap {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) clamp(20px, 4vw, 40px);
}

.ma-m2-narrow {
  width: min(980px, 100%);
}

.ma-m2-panel {
  /*border-top: 1px solid var(--ma-m2-border);
  border-bottom: 1px solid var(--ma-m2-border);*/
}

.ma-m2 h1,
.ma-m2 h2,
.ma-m2 h3,
.ma-m2 p {
  margin-top: 0;
}

.ma-m2 h1
{
  color: var(--ma-m2-fg);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.ma-m2 h2 {
  color: var(--ma-m2-fg);
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.03;
  letter-spacing: 0;
}



.ma-m2 h2 span,
.ma-m2 h1 span {
  color: var(--ma-m2-muted);
}

.ma-m2 p {
  color: var(--ma-m2-muted);
}

.ma-m2-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--ma-m2-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ma-m2-section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
  color: var(--ma-m2-accent);
  background: color-mix(in srgb, var(--ma-m2-accent) 12%, transparent);
  border-radius: 6px;
}

.ma-m2-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.ma-m2-heading p,
.ma-m2-heading-row p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
}

.ma-m2-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.ma-m2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ma-m2-btn,
.ma-m2-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.ma-m2-btn:hover,
.ma-m2-inline-link:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.ma-m2-btn-primary {
  color: #fff;
  background: var(--ma-m2-accent);
}

.ma-m2-btn-primary:hover {
  color: #fff;
  background: #4058f2;
}

.ma-m2-btn-light,
.ma-m2-inline-link {
  color: var(--ma-m2-fg);
  background: var(--ma-m2-panel);
  border-color: var(--ma-m2-border);
}

.ma-m2-inline-link {
  color: var(--ma-m2-accent);
  background: transparent;
}

.ma-m2-hero {
  position: relative;
  overflow: hidden;
  background: var(--ma-m2-bg);
}

.ma-m2-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ma-m2-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--ma-m2-border) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.ma-m2-hero .ma-m2-wrap {
  padding-top: clamp(78px, 9vw, 132px);
}

.ma-m2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--ma-m2-muted);
  background: var(--ma-m2-panel);
  border: 1px solid var(--ma-m2-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ma-m2-kicker span {
  color: var(--ma-m2-fg);
}

.ma-m2-kicker em {
  font-style: normal;
}

.ma-m2-lead {
  max-width: 740px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.ma-m2-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border: 1px solid var(--ma-m2-border);
  background: var(--ma-m2-panel);
}

.ma-m2-stat-row div {
  padding: 24px 28px;
  border-right: 1px solid var(--ma-m2-border);
}

.ma-m2-stat-row div:last-child {
  border-right: 0;
}

.ma-m2-stat-row span,
.ma-m2-stat-row small {
  display: block;
  color: var(--ma-m2-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ma-m2-stat-row strong {
  display: block;
  margin: 8px 0;
  color: var(--ma-m2-fg);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
}

.ma-m2-hero-v2 {
  background: var(--ma-m2-bg);
}

.ma-m2-hero-v2 .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(88px, 8vw, 136px) clamp(22px, 4vw, 72px) clamp(78px, 7vw, 116px);
}

.ma-m2-hero-pill {
  gap: 12px;
  margin-bottom: 44px;
  padding: 8px 14px;
  border-color: #dbe0ed;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .02em;
}

.ma-m2-hero-pill::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--ma-m2-accent);
  box-shadow: 0 0 0 4px rgba(84, 109, 255, .14);
}

.ma-m2-hero-pill span,
.ma-m2-hero-pill em {
  color: #25262b;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}

.ma-m2-hero-pill em {
  color: #7f8494;
}

.ma-m2-hero-pill em::before {
  content: "·";
  margin-right: 12px;
  color: #7f8494;
}

.ma-m2-hero-v2 h1 {
  max-width: 1180px;
  margin: 0 0 42px;
  color: var(--ma-m2-fg);
  line-height: .94;
  letter-spacing: 0;
}

.ma-m2-hero-v2 h1 .ma-m2-count {
  color: var(--ma-m2-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 500;
  letter-spacing: -.06em;
}

.ma-m2-hero-v2 h1 em {
  color: #8f929d;
  font-style: normal;
}

.ma-m2-hero-v2 .ma-m2-lead {
  max-width: 850px;
  margin: 0;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.45;
}

.ma-m2-hero-actions {
  gap: 14px;
  margin-top: 60px;
}

.ma-m2-lifetime-btn,
.ma-m2-include-btn {
  min-height: 0;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.ma-m2-lifetime-btn {
  min-width: 0;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 0 0 1px var(--ma-m2-accent), 0 8px 32px -8px color-mix(in srgb, var(--ma-m2-accent) 60%, transparent);
}

.ma-m2-lifetime-btn strong {
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, .18);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
}

.ma-m2-lifetime-btn i,
.ma-m2-include-btn i {
  font-style: normal;
}

.ma-m2-include-btn {
  min-width: 0;
  color: #25262b;
  background: transparent;
  border-color: #c9cddc;
}

.ma-m2-include-btn i {
  color: var(--ma-m2-accent);
  font-size: 24px;
}

.ma-m2-hero-stats {
  overflow: hidden;
  margin-top: clamp(70px, 8vw, 96px);
  border-color: #dbe0ed;
  border-radius: 16px;
  background: #ffffff;
}

.ma-m2-hero-stats div {
  padding: 34px 38px;
}

.ma-m2-hero-stats span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: .08em;
}

.ma-m2-hero-stats strong {
  margin: 14px 0 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
}

.ma-m2-hero-stats small {
  color: #7f8494;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}

.ma-m2-product-grid,
.ma-m2-platform-grid,
.ma-m2-plan-grid {
  display: grid;
  gap: 16px;
}

.ma-m2-product-grid div,
.ma-m2-platform-grid div,
.ma-m2-plan,
.ma-m2-faq details,
.ma-m2-testimonial-list blockquote {
  background: var(--ma-m2-bg);
  border: 1px solid var(--ma-m2-border);
  border-radius: 14px;
}

.ma-m2-cache-section {
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-m2-cache-section .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(64px, 6vw, 96px) clamp(22px, 3vw, 48px) 40px;
}

.ma-m2-rule-label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  width: min(520px, 100%);
  gap: 14px;
  margin-bottom: 24px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .16em;
}

.ma-m2-rule-label::after {
  content: "";
  height: 1px;
  background: var(--ma-m2-border-strong);
}

.ma-m2-rule-label span,
.ma-m2-rule-label strong {
  color: var(--ma-m2-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.ma-m2-rule-label span {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--ma-m2-accent);
  border-radius: 0;
}

.ma-m2-cache-intro {
  max-width: 920px;
}

.ma-m2-cache-intro h2 {
  max-width: 860px;
  margin: 0 0 42px;
  color: var(--ma-m2-fg);
  line-height: .98;
  letter-spacing: 0;
}

.ma-m2-cache-intro h2 span {
  color: var(--ma-m2-accent);
}

.ma-m2-cache-intro p {
  max-width: 880px;
  margin: 0 0 22px;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.55;
}

.ma-m2-cache-access {
  display: flex;
  justify-content: flex-end;
  margin: -22px 0 40px;
}

.ma-m2-cache-access a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 7px 16px;
  color: var(--ma-m2-accent);
  border: 1px solid #bec7ff;
  border-radius: 999px;
  background: rgba(84, 109, 255, .05);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.ma-m2-cache-access a::before {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8h-1V6a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v10h14V10a2 2 0 0 0-2-2Zm-7-2a2 2 0 1 1 4 0v2h-4V6Zm7 12H7v-8h10v8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ma-m2-cache-summary {
  display: grid;
  grid-template-columns: .75fr 1fr .75fr 1.05fr 1.05fr 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 32px;
  padding: 32px 36px;
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-cache-summary span {
  display: block;
  margin-bottom: 10px;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ma-m2-cache-summary strong {
  display: block;
  color: var(--ma-m2-fg);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(23px, 1.8vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.ma-m2-cache-summary .ma-m2-blue {
  color: var(--ma-m2-accent);
}

.ma-m2-cache-summary a {
  justify-self: end;
  color: var(--ma-m2-accent);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.ma-m2-data-table {
  overflow: hidden;
  background: var(--ma-m2-table-bg, var(--ma-m2-panel-2));
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-data-table > div {
  display: grid;
  grid-template-columns: var(--ma-m2-table-columns);
  align-items: center;
  gap: var(--ma-m2-table-gap, 14px);
  min-height: var(--ma-m2-table-row-height, 58px);
  padding: var(--ma-m2-table-row-padding, 0 24px);
  border-bottom: 1px solid #dfe3ee;
  color: var(--ma-m2-fg);
}

.ma-m2-data-table > div:last-child {
  border-bottom: 0;
}

.ma-m2-data-table > div:not(.ma-m2-data-table-head):not(.ma-m2-data-table-total) {
  font-size: var(--ma-m2-table-body-size, clamp(13px, 1.05vw, 15px));
}

.ma-m2-data-table-head {
  min-height: var(--ma-m2-table-head-height, 56px);
  background: #e4e7f0;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: var(--ma-m2-table-head-size, clamp(9px, .78vw, 12px));
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ma-m2-data-table span,
.ma-m2-data-table b,
.ma-m2-data-table > div > strong:last-child {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.ma-m2-data-table span {
  color: #7f8494;
}

.ma-m2-data-table > div > strong {
  color: #25262b;
  font-weight: 500;
}

.ma-m2-data-table > div > strong:last-child,
.ma-m2-data-table b {
  justify-self: end;
  font-size: var(--ma-m2-table-number-size, clamp(13px, 1.05vw, 15px));
  white-space: nowrap;
}

.ma-m2-cache-table {
  --ma-m2-table-columns: 72px minmax(150px, 1.45fr) 82px 116px minmax(130px, .85fr) 82px;
}

.ma-m2-cache-table i {
  display: block;
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eaf2;
}

.ma-m2-cache-table i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: var(--ma-m2-accent);
}

.ma-m2-cache-table-total {
  grid-template-columns: 72px 1fr 92px !important;
  min-height: 72px !important;
  background: #e4e7f0;
  border-top: 2px solid #c4cad8;
  border-bottom: 0 !important;
}

.ma-m2-cache-table-total span {
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ma-m2-cache-table-total strong:last-child {
  color: var(--ma-m2-accent);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
}

.ma-m2-cache-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
}

.ma-m2-cache-foot span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7f8494;
}

.ma-m2-cache-foot span::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8h-1V6a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v10h14V10a2 2 0 0 0-2-2Zm-7-2a2 2 0 1 1 4 0v2h-4V6Zm7 12H7v-8h10v8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ma-m2-cache-foot a {
  color: #25262b;
  text-decoration: none;
}

.ma-m2-feature-head {
  max-width: 980px;
  margin-bottom: 44px;
}

.ma-m2-feature-head h2 {
  max-width: 980px;
  margin: 0 0 26px;
  color: var(--ma-m2-fg);
  line-height: .98;
  letter-spacing: 0;
}

.ma-m2-feature-head h2 span {
  color: var(--ma-m2-accent);
}

.ma-m2-feature-head p {
  max-width: 880px;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.55;
}

.ma-m2-setting-section,
.ma-m2-pricing-section {
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-m2-setting-section .ma-m2-wrap,
.ma-m2-products-section .ma-m2-wrap,
.ma-m2-pricing-section .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(64px, 6vw, 96px) clamp(22px, 3vw, 48px);
}

.ma-m2-setting-stats,
.ma-m2-product-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-bottom: 34px;
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-setting-stats div,
.ma-m2-product-summary div {
  padding: 26px 30px;
  border-right: 1px solid #dbe0ed;
}

.ma-m2-setting-stats div:last-child,
.ma-m2-product-summary div:last-child {
  border-right: 0;
}

.ma-m2-setting-stats span,
.ma-m2-product-summary span {
  display: block;
  margin-bottom: 12px;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ma-m2-setting-stats strong,
.ma-m2-product-summary strong {
  display: block;
  color: var(--ma-m2-fg);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
  line-height: 1.1;
}

.ma-m2-setting-layout {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ma-m2-setting-layout aside {
  position: sticky;
  top: 24px;
  padding: 30px;
  background: var(--ma-m2-panel);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-setting-layout aside h3 {
  margin: 22px 0 18px;
  color: var(--ma-m2-fg);
  font-size: 28px;
}

.ma-m2-setting-layout aside ul,
.ma-m2-pricing-grid .ma-m2-plan ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ma-m2-setting-layout aside li,
.ma-m2-pricing-grid .ma-m2-plan li {
  position: relative;
  padding-left: 24px;
  color: #7f8494;
  font-size: 16px;
  line-height: 1.45;
}

.ma-m2-setting-layout aside li::before,
.ma-m2-pricing-grid .ma-m2-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ma-m2-accent);
}

.ma-m2-setting-table {
  --ma-m2-table-bg: #ffffff;
  --ma-m2-table-columns: minmax(180px, 1.55fr) minmax(74px, .55fr) minmax(96px, .74fr) minmax(130px, 1fr) minmax(82px, .66fr) minmax(76px, .58fr);
}

.ma-m2-setting-table > div > span:nth-child(5),
.ma-m2-setting-table-head span:nth-child(4),
.ma-m2-setting-table-head span:nth-child(5),
.ma-m2-setting-table-head span:nth-child(6) {
  justify-self: end;
}

.ma-m2-setting-head {
  max-width: 1120px;
}

.ma-m2-setting-head h2 {
  margin: 0 0 34px;
  color: var(--ma-m2-fg);
  line-height: 1.03;
  letter-spacing: 0;
}

.ma-m2-setting-head h2 span {
  color: var(--ma-m2-accent);
}

.ma-m2-setting-head h2 em {
  color: #8f929d;
  font-style: normal;
}

.ma-m2-setting-head p {
  max-width: 1050px;
  margin: 0;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.5;
}

.ma-m2-setting-access {
  display: flex;
  justify-content: flex-end;
  margin: -28px 0 58px;
}

.ma-m2-setting-access a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 7px 16px;
  color: var(--ma-m2-accent);
  border: 1px solid #bec7ff;
  border-radius: 999px;
  background: rgba(84, 109, 255, .05);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.ma-m2-setting-access a::before {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8h-1V6a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v10h14V10a2 2 0 0 0-2-2Zm-7-2a2 2 0 1 1 4 0v2h-4V6Zm7 12H7v-8h10v8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ma-m2-setting-risk {
  margin: 28px 0 24px;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.55;
}

.ma-m2-setting-risk a {
  color: #25262b;
  text-decoration: underline;
}

.ma-m2-setting-link {
  display: inline-flex;
  color: #25262b;
  font-size: 17px;
  text-decoration: none;
}

.ma-m2-products-section {
  background: var(--ma-m2-panel);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-m2-product-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ma-m2-product-catalog article {
  min-height: 260px;
  padding: 28px;
  background: var(--ma-m2-bg);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-product-catalog article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 30px;
  color: var(--ma-m2-accent);
  background: rgba(84, 109, 255, .08);
  border-radius: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
}

.ma-m2-product-catalog h3 {
  margin: 0 0 16px;
  color: var(--ma-m2-fg);
  font-size: 25px;
}

.ma-m2-product-catalog p {
  margin: 0;
  color: #7f8494;
  font-size: 17px;
  line-height: 1.6;
}

.ma-m2-product-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-product-strip span,
.ma-m2-product-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ma-m2-product-strip span {
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ma-m2-product-strip strong {
  color: var(--ma-m2-fg);
  background: var(--ma-m2-panel);
  border: 1px solid #dbe0ed;
}

.ma-m2-product-list-section {
}

.ma-m2-product-list-section .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(54px, 5.5vw, 86px) clamp(22px, 3vw, 48px);
}

.ma-m2-product-list-head {
  margin-bottom: 64px;
}

.ma-m2-product-list-head h2 {
  max-width: 1100px;
  margin: 0 0 28px;
  color: var(--ma-m2-fg);
  line-height: .98;
  letter-spacing: 0;
}

.ma-m2-product-list-head h2 span {
  color: #8f929d;
}

.ma-m2-product-list-head p {
  margin: 0;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
}

.ma-m2-product-list-head p strong {
  color: #25262b;
  font-weight: 500;
}

.ma-m2-product-list-head p a {
  color: var(--ma-m2-accent);
  text-decoration: none;
}

.ma-m2-product-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ma-m2-product-box {
  overflow: hidden;
  min-height: 260px;
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 15px;
}

.ma-m2-product-box header,
.ma-m2-product-box div {
  display: grid;
  grid-template-columns: 1fr 76px 24px;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 26px;
  border-bottom: 1px solid #dfe3ee;
}

.ma-m2-product-box header {
  min-height: 56px;
  background: #e4e7f0;
}

.ma-m2-product-box header strong {
  color: #25262b;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ma-m2-product-box header span {
  grid-column: 2 / 4;
  justify-self: end;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
}

.ma-m2-product-box div:last-child {
  border-bottom: 0;
}

.ma-m2-product-box div span {
  color: #25262b;
  font-size: 17px;
}

.ma-m2-product-box div b {
  justify-self: end;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 500;
}

.ma-m2-product-box div i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ma-m2-accent);
  font-style: normal;
}

.ma-m2-product-box div i::before {
  content: "✓";
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.ma-m2-product-total {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 34px;
  padding: 32px 36px;
  background: var(--ma-m2-panel-2);
  border: 1px solid var(--ma-m2-accent);
  border-radius: 15px;
}

.ma-m2-product-total span {
  display: block;
  margin-bottom: 16px;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ma-m2-product-total strong {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ma-m2-fg);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.ma-m2-product-total div:first-child strong {
  color: #7f8494;
  text-decoration: line-through;
}

.ma-m2-product-total div:last-child span {
  color: var(--ma-m2-accent);
}

.ma-m2-product-total small {
  color: #7f8494;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.ma-m2-product-total em {
  color: var(--ma-m2-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 34px;
  font-style: normal;
}

.ma-m2-product-plus {
  margin: 28px 0 0;
  color: #7f8494;
  text-align: center;
  font-size: 17px;
}

.ma-m2-product-plus strong {
  color: #25262b;
  font-weight: 600;
}

.ma-m2-platform-section {
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-m2-platform-section .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(64px, 6vw, 96px) clamp(22px, 3vw, 48px);
}

.ma-m2-platform-head {
  margin-bottom: 70px;
}

.ma-m2-platform-head h2 {
  max-width: 1260px;
  margin: 0 0 30px;
  color: var(--ma-m2-fg);
  line-height: 1;
  letter-spacing: 0;
}

.ma-m2-platform-head h2 span {
  color: #8f929d;
}

.ma-m2-platform-head p {
  max-width: 720px;
  margin: 0;
  color: #7f8494;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.5;
}

.ma-m2-platform-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-platform-matrix article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 126px;
  padding: 28px 32px;
  border-right: 1px solid #dbe0ed;
  border-bottom: 1px solid #dbe0ed;
}

.ma-m2-platform-matrix article:nth-child(4n) {
  border-right: 0;
}

.ma-m2-platform-matrix article:nth-child(n+5) {
  border-bottom: 0;
}

.ma-m2-platform-matrix b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--ma-m2-accent);
  background: #e8ebf5;
  border: 1px solid #d9deec;
  border-radius: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 500;
}

.ma-m2-platform-matrix strong {
  display: block;
  margin-bottom: 5px;
  color: #25262b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.ma-m2-platform-matrix span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ma-m2-accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ma-m2-platform-matrix span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.ma-m2-platform-matrix .is-soon {
  background: rgba(228, 231, 240, .7);
}

.ma-m2-platform-matrix .is-soon b,
.ma-m2-platform-matrix .is-soon strong,
.ma-m2-platform-matrix .is-soon span {
  color: #9a9da8;
}

.ma-m2-platform-matrix .is-soon span::before {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid currentColor;
}

.ma-m2-pricing-grid {
  gap: 18px;
}

.ma-m2-pricing-grid .ma-m2-plan {
  min-height: 620px;
  padding: 32px;
  border-color: #dbe0ed;
  border-radius: 16px;
}

.ma-m2-plan-top span {
  display: block;
  margin-bottom: 12px;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ma-m2-pricing-grid .ma-m2-plan h3 {
  font-size: 30px;
}

.ma-m2-pricing-grid .ma-m2-plan p {
  color: #7f8494;
  font-size: 17px;
  line-height: 1.55;
}

.ma-m2-pricing-grid .ma-m2-plan-featured p,
.ma-m2-pricing-grid .ma-m2-plan-featured li,
.ma-m2-pricing-grid .ma-m2-plan-featured .ma-m2-plan-top span {
  color: rgba(244, 245, 250, .72);
}

.ma-m2-pricing-grid .ma-m2-plan-featured li::before {
  background: var(--ma-m2-accent);
}

.ma-m2-pricing-grid .ma-m2-plan li.ma-m2-plan-unavailable {
  color: #9a9da8;
}

.ma-m2-pricing-grid .ma-m2-plan li.ma-m2-plan-unavailable::before {
  content: "X";
  top: .12em;
  width: auto;
  height: auto;
  color: #d24545;
  background: transparent;
  border-radius: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
}

.ma-m2-pricing-grid .ma-m2-plan li.ma-m2-plan-included::before {
  background: #22b573;
}

.ma-m2-pricing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.ma-m2-pricing-options article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  padding: 22px 26px;
  background: var(--ma-m2-panel);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-pricing-options span {
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ma-m2-pricing-options h3 {
  margin: 0;
  color: var(--ma-m2-fg);
  font-size: 23px;
  line-height: 1.1;
}

.ma-m2-pricing-options p {
  margin: 0;
  color: #7f8494;
  font-size: 14px;
  line-height: 1.5;
}

.ma-m2-pricing-options .ma-m2-btn {
  align-self: flex-start;
  margin-top: auto;
}

.ma-m2-pricing-note {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 22px 24px;
  color: #7f8494;
  background: var(--ma-m2-panel);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
  font-size: 17px;
}

.ma-m2-pricing-note strong {
  color: var(--ma-m2-fg);
}

.ma-m2-badge,
.ma-m2-best {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  color: #fff;
  background: var(--ma-m2-accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.ma-m2-table {
  overflow: hidden;
  border: 1px solid var(--ma-m2-border);
  border-radius: 14px;
  background: var(--ma-m2-panel);
}

.ma-m2-table > div {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr .7fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ma-m2-border);
}

.ma-m2-table > div:last-child {
  border-bottom: 0;
}

.ma-m2-table-head {
  color: var(--ma-m2-muted);
  background: var(--ma-m2-panel-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ma-m2-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ma-m2-product-grid div {
  padding: 22px;
}

.ma-m2-product-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.ma-m2-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.ma-m2-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--ma-m2-panel);
}

.ma-m2-plan-featured {
  color: var(--ma-m2-bg);
  background: var(--ma-m2-fg);
  border: 2px solid var(--ma-m2-accent);
}

.ma-m2-plan h3 {
  margin: 0;
  color: inherit;
  font-size: 25px;
}

.ma-m2-price {
  color: inherit;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.ma-m2-price span {
  color: var(--ma-m2-muted);
  font-size: 16px;
}

.ma-m2-plan ul {
  display: grid;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.ma-m2-plan li {
  color: inherit;
}

.ma-m2-plan .ma-m2-btn {
  margin-top: auto;
}

.ma-m2-platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ma-m2-platform-grid div {
  position: relative;
  min-height: 150px;
  padding: 24px;
  background: var(--ma-m2-panel);
}

.ma-m2-platform-grid strong {
  display: block;
  color: var(--ma-m2-accent);
  font-size: 36px;
}

.ma-m2-platform-grid span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
}

.ma-m2-platform-grid em {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--ma-m2-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.ma-m2-faq {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--ma-m2-border);
}

.ma-m2-faq details {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

.ma-m2-faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ma-m2-fg);
  font-size: 20px;
  font-weight: 700;
}

.ma-m2-faq p {
  max-width: 820px;
  padding-bottom: 22px;
  line-height: 1.65;
}

.ma-m2-testimonials-section .ma-m2-wrap {
  width: min(100%, 1720px);
  padding: clamp(64px, 6vw, 96px) clamp(22px, 3vw, 48px);
}

.ma-m2-testimonials-head h2 {
  max-width: 1050px;
  margin: 0 0 70px;
  color: var(--ma-m2-fg);
  line-height: .98;
  letter-spacing: 0;
}

.ma-m2-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ma-m2-testimonial-card {
  margin: 0;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ma-m2-panel-2);
  border: 1px solid #dbe0ed;
  border-radius: 16px;
}

.ma-m2-stars {
  margin: 0 0 30px;
  color: var(--ma-m2-gold);
  font-size: 16px;
  line-height: 1;
  letter-spacing: .12em;
}

.ma-m2-testimonial-card p {
  margin: 0 0 28px;
  color: #25262b;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.55;
}

.ma-m2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid #dbe0ed;
  color: var(--ma-m2-muted);
  font-style: normal;
}

.ma-m2-testimonial-author b {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--ma-m2-accent);
  background: #e9ecf6;
  border: 1px solid #dbe0ed;
  border-radius: 50%;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  font-weight: 500;
}

.ma-m2-testimonial-author span {
  display: block;
  color: #7f8494;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.45;
}

.ma-m2-testimonial-author strong {
  display: block;
  color: #25262b;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.ma-m2-final {
  overflow: hidden;
  text-align: center;
  background: var(--ma-m2-fg);
}

.ma-m2-final h2 {
  color: var(--ma-m2-bg);
}

.ma-m2-final h2 span {
  color: var(--ma-m2-accent);
}

.ma-m2-final p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: rgba(244,245,250,.72);
  font-size: 19px;
}

@media (max-width: 1024px) {
  .ma-m2-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-m2-plan-grid,
  .ma-m2-stat-row {
    grid-template-columns: 1fr;
  }

  .ma-m2-stat-row div {
    border-right: 0;
    border-bottom: 1px solid var(--ma-m2-border);
  }

  .ma-m2-lifetime-btn,
  .ma-m2-include-btn {
    min-width: 0;
  }

  .ma-m2-cache-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-m2-setting-stats,
  .ma-m2-product-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-m2-setting-stats div:nth-child(2),
  .ma-m2-product-summary div:nth-child(2) {
    border-right: 0;
  }

  .ma-m2-setting-layout,
  .ma-m2-product-catalog,
  .ma-m2-product-list-grid,
  .ma-m2-pricing-options {
    grid-template-columns: 1fr;
  }

  .ma-m2-platform-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ma-m2-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .ma-m2-platform-matrix article:nth-child(4n) {
    border-right: 1px solid #dbe0ed;
  }

  .ma-m2-platform-matrix article:nth-child(2n) {
    border-right: 0;
  }

  .ma-m2-platform-matrix article:nth-child(n+5) {
    border-bottom: 1px solid #dbe0ed;
  }

  .ma-m2-platform-matrix article:nth-child(n+7) {
    border-bottom: 0;
  }

  .ma-m2-setting-layout aside {
    position: static;
  }

  .ma-m2-cache-summary a {
    justify-self: start;
  }

  .ma-m2-data-table {
    overflow-x: auto;
  }

  .ma-m2-cache-table > div {
    min-width: 760px;
  }

  .ma-m2-setting-table > div {
    min-width: 760px;
  }
}

@media (max-width: 767px) {
  .ma-m2-wrap {
    padding: 64px 18px;
  }

  .ma-m2-heading-row,
  .ma-m2-actions {
    display: grid;
  }

  .ma-m2-hero-v2 .ma-m2-wrap {
    padding: 72px 18px;
  }

  .ma-m2-hero-v2 h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .ma-m2-lifetime-btn,
  .ma-m2-include-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  .ma-m2-hero-stats div {
    padding: 28px 24px;
  }

  .ma-m2-product-grid,
  .ma-m2-platform-grid,
  .ma-m2-table > div {
    grid-template-columns: 1fr;
  }

  .ma-m2-table-head {
    display: none !important;
  }

  .ma-m2-rule-label {
    grid-template-columns: auto 1fr;
  }

  .ma-m2-rule-label::after {
    display: none;
  }

  .ma-m2-cache-intro h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .ma-m2-cache-access {
    justify-content: flex-start;
    margin: 8px 0 28px;
  }

  .ma-m2-setting-access {
    justify-content: flex-start;
    margin: 28px 0 36px;
  }

  .ma-m2-setting-head h2 {
    font-size: clamp(42px, 11vw, 60px);
  }

  .ma-m2-cache-summary {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ma-m2-setting-stats,
  .ma-m2-product-summary {
    grid-template-columns: 1fr;
  }

  .ma-m2-setting-stats div,
  .ma-m2-product-summary div {
    border-right: 0;
    border-bottom: 1px solid #dbe0ed;
  }

  .ma-m2-setting-stats div:last-child,
  .ma-m2-product-summary div:last-child {
    border-bottom: 0;
  }

  .ma-m2-product-catalog article {
    min-height: 0;
  }

  .ma-m2-product-box {
    min-height: 0;
  }

  .ma-m2-platform-head {
    margin-bottom: 40px;
  }

  .ma-m2-testimonials-head h2 {
    margin-bottom: 42px;
    font-size: clamp(42px, 11vw, 60px);
  }

  .ma-m2-platform-matrix {
    grid-template-columns: 1fr;
  }

  .ma-m2-platform-matrix article,
  .ma-m2-platform-matrix article:nth-child(2n),
  .ma-m2-platform-matrix article:nth-child(4n),
  .ma-m2-platform-matrix article:nth-child(n+5),
  .ma-m2-platform-matrix article:nth-child(n+7) {
    border-right: 0;
    border-bottom: 1px solid #dbe0ed;
  }

  .ma-m2-platform-matrix article:last-child {
    border-bottom: 0;
  }

  .ma-m2-product-box header,
  .ma-m2-product-box div {
    grid-template-columns: 1fr 62px 20px;
    padding: 0 16px;
  }

  .ma-m2-product-total {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
  }

  .ma-m2-product-total em {
    transform: rotate(90deg);
  }

  .ma-m2-pricing-grid .ma-m2-plan {
    min-height: 0;
  }

  .ma-m2-pricing-note {
    display: grid;
  }

  .ma-m2-cache-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}
