/* =========================================================================
   MUSCLECOUPLE - Subscription & Pricing Ecosystem Styles
   Design: Bento Grid Modern SaaS (Option 2 Approved)
   ========================================================================= */

:root {
  --bento-bg-root: #040813;
  --bento-card-bg: rgba(11, 20, 38, 0.78);
  --bento-card-hover: rgba(16, 29, 54, 0.92);
  --bento-border: rgba(148, 163, 184, 0.12);
  --bento-border-glow-cyan: rgba(56, 189, 248, 0.35);
  --bento-border-glow-emerald: rgba(16, 185, 129, 0.35);
  --bento-border-glow-gold: rgba(251, 191, 36, 0.35);
  --bento-cyan: #38bdf8;
  --bento-emerald: #10b981;
  --bento-gold: #fbbf24;
  --bento-text-main: #f8fafc;
  --bento-text-muted: #94a3b8;
  --bento-text-sub: #64748b;
}

body.subscription-page {
  margin: 0;
  padding: 0;
  background-color: var(--bento-bg-root);
  background-image:
    radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.10) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(15, 23, 42, 0.8) 0px, transparent 100%);
  color: var(--bento-text-main);
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.bento-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.bento-nav {
  width: 100%;
  box-sizing: border-box;
  background: rgba(4, 8, 19, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  backdrop-filter: blur(18px);
}

.bento-nav > div {
  min-height: 72px;
  box-sizing: border-box;
}

.subscription-footer {
  width: 100%;
  margin-top: 80px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: #020611;
}

.subscription-footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 38px 0 24px;
}

.subscription-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.subscription-footer-brand {
  color: #f8fafc;
}

.subscription-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.subscription-footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease;
}

.subscription-footer-links a:hover {
  color: #fff;
}

.subscription-footer-copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: #64748b;
  font-size: 11px;
  text-align: center;
}

/* Hero Header */
.bento-hero-head {
  text-align: center;
  margin-bottom: 40px;
}

.bento-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--bento-cyan);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.bento-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-hero-sub {
  color: var(--bento-text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* Role Segment Control */
.bento-role-bar {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--bento-border);
  padding: 6px;
  border-radius: 16px;
  gap: 8px;
  margin-bottom: 24px;
}

.bento-role-btn {
  background: transparent;
  border: none;
  color: var(--bento-text-muted);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  font-family: inherit;
}

.bento-role-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.bento-role-btn.active.student {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 20px var(--bento-border-glow-emerald);
}

.bento-role-btn.active.coach {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #000;
  font-weight: 900;
  box-shadow: 0 4px 20px var(--bento-border-glow-cyan);
}

/* Billing Segmented Switcher */
.bento-billing-segmented-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.bento-billing-segmented {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--bento-border);
  border-radius: 16px;
  padding: 5px;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bento-seg-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--bento-text-muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  min-width: 140px;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), color 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.bento-seg-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.bento-seg-btn.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bento-seg-btn.active.yearly-active {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  color: #fff;
  box-shadow: 0 4px 20px var(--bento-border-glow-emerald);
}

.bento-discount-box {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-save-pill {
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: discountFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes discountFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bento Grid Master Layout */
.bento-master-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.bento-card {
  background: var(--bento-card-bg);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--bento-border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .bento-col-4, .bento-col-6, .bento-col-8 { grid-column: span 12; }
}

.tier-featured-hero {
  border: 1.5px solid var(--bento-emerald);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.18);
  background: linear-gradient(180deg, rgba(6, 40, 30, 0.75) 0%, rgba(11, 20, 38, 0.85) 100%);
}

.tier-featured-coach-hero {
  border: 1.5px solid var(--bento-cyan);
  box-shadow: 0 10px 40px rgba(56, 189, 248, 0.18);
  background: linear-gradient(180deg, rgba(8, 32, 54, 0.75) 0%, rgba(11, 20, 38, 0.85) 100%);
}

.bento-badge-top {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 99px;
}

.bento-badge-top.green {
  background: var(--bento-emerald);
  color: #000;
}

.bento-badge-top.cyan {
  background: var(--bento-cyan);
  color: #000;
}

.bento-badge-top.gold {
  background: var(--bento-gold);
  color: #000;
}

.tier-name {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 6px;
}

.tier-tagline {
  font-size: 13px;
  color: var(--bento-text-muted);
  margin: 0 0 20px;
  min-height: 38px;
}

.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.tier-price-num {
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -1px;
}

.tier-price-unit {
  font-size: 13px;
  color: var(--bento-text-muted);
  font-weight: 700;
}

.tier-save-note {
  font-size: 11px;
  color: #34d399;
  font-weight: 800;
  margin-bottom: 24px;
}

.bento-feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bento-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.bento-feat-list li .check-icon {
  color: #34d399;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.bento-feat-list li .cross-icon {
  color: #64748b;
  font-size: 14px;
  flex-shrink: 0;
}

.bento-feat-list li.disabled {
  color: var(--bento-text-sub);
  text-decoration: line-through;
}

.bento-btn {
  width: 100%;
  min-height: 44px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  text-decoration: none;
  box-sizing: border-box;
}

.bento-btn.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bento-border);
  color: #fff;
}

.bento-btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.bento-btn.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 20px var(--bento-border-glow-emerald);
}

.bento-btn.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.bento-btn.btn-cyan {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #000;
  box-shadow: 0 4px 20px var(--bento-border-glow-cyan);
}

.bento-btn.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
}

.bento-btn.btn-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  box-shadow: 0 4px 20px var(--bento-border-glow-gold);
}

/* Spotlight & Feature Bento Widgets */
.bento-spotlight-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bento-spotlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.icon-emerald-box { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-cyan-box { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.icon-gold-box { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }

/* =========================================================================
   Comparison Matrix Table - Concept 3 Luxury Glass & Floating Pillars
   ========================================================================= */
.bento-matrix-container {
  background: rgba(8, 15, 30, 0.78);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 32px 28px 24px;
  margin-top: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.matrix-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.matrix-title-row h3 {
  font-size: 22px;
  font-weight: 950;
  margin: 0 0 6px;
  color: #fff;
}

.matrix-title-row p {
  margin: 0;
  font-size: 13px;
  color: var(--bento-text-muted);
}

.bento-matrix-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
}

.bento-matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  font-size: 13px;
  min-width: 680px;
}

/* Header Columns as Floating Glass Cards */
.bento-matrix-table th {
  padding: 20px 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-matrix-table th.col-feature-title {
  text-align: right;
  width: 38%;
  color: #e2e8f0;
  font-weight: 700;
  vertical-align: middle;
}

.lux-th-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.lux-th-card.card-featured-emerald {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.14) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.7);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.22);
  transform: translateY(-4px);
}

.lux-th-card.card-featured-cyan {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.14) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.22);
  transform: translateY(-4px);
}

.lux-th-card.card-featured-gold {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.14) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1.5px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.22);
  transform: translateY(-4px);
}

.lux-badge-top-tag {
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tag-emerald { background: #10b981; color: #fff; }
.tag-cyan { background: #38bdf8; color: #000; }
.tag-gold { background: #fbbf24; color: #000; }

.lux-th-title {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.lux-th-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.lux-th-price .price-val {
  font-size: 22px;
  font-weight: 950;
  color: #fff;
}

.lux-th-price .price-unit {
  font-size: 11px;
  color: var(--bento-text-muted);
  font-weight: 700;
}

.lux-th-btn {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1), background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  margin-top: 4px;
  font-family: inherit;
}

.btn-lux-muted {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  cursor: default;
}

.btn-lux-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.btn-lux-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-lux-cyan {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #000;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}
.btn-lux-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.6);
}

.btn-lux-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #000;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}
.btn-lux-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

/* Table Body Rows */
.bento-matrix-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  vertical-align: middle;
  transition: background 0.2s ease;
}

.bento-matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.bento-matrix-table td.col-feature-title {
  text-align: right;
  font-weight: 700;
  color: #e2e8f0;
}

.feat-tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bento-text-muted);
  font-size: 10px;
  margin-right: 6px;
  cursor: help;
  position: relative;
  transition: all 0.2s;
}

.feat-tooltip-icon:hover {
  background: var(--bento-cyan);
  color: #000;
}

/* Pillar Ambient Vertical Columns */
.bento-matrix-table td.col-pillar-emerald {
  background: rgba(16, 185, 129, 0.04);
  border-left: 1px solid rgba(16, 185, 129, 0.2);
  border-right: 1px solid rgba(16, 185, 129, 0.2);
  color: #fff;
}

.bento-matrix-table td.col-pillar-cyan {
  background: rgba(56, 189, 248, 0.04);
  border-left: 1px solid rgba(56, 189, 248, 0.2);
  border-right: 1px solid rgba(56, 189, 248, 0.2);
  color: #fff;
}

.bento-matrix-table td.col-pillar-gold {
  background: rgba(251, 191, 36, 0.04);
  border-left: 1px solid rgba(251, 191, 36, 0.2);
  border-right: 1px solid rgba(251, 191, 36, 0.2);
  color: #fff;
}

.bento-matrix-table tr:last-child td.col-pillar-emerald {
  border-bottom: 2px solid #10b981;
  border-radius: 0 0 16px 16px;
}

.bento-matrix-table tr:last-child td.col-pillar-cyan {
  border-bottom: 2px solid #38bdf8;
  border-radius: 0 0 16px 16px;
}

.bento-matrix-table tr:last-child td.col-pillar-gold {
  border-bottom: 2px solid #fbbf24;
  border-radius: 0 0 16px 16px;
}

/* Checkmark Pills */
.lux-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

.lux-check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.circle-emerald { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.5); }
.circle-cyan { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.5); }
.circle-gold { background: rgba(251, 191, 36, 0.2); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.5); }

.matrix-cross {
  color: #475569;
  font-size: 16px;
  font-weight: 900;
}

.matrix-bottom-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.matrix-more-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--bento-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.matrix-more-link:hover {
  text-decoration: underline;
}

.matrix-btns-group {
  display: flex;
  gap: 12px;
}

/* FAQ Bento */
.bento-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .bento-faq-grid { grid-template-columns: 1fr; }
}

.bento-faq-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--bento-border);
  border-radius: 16px;
  padding: 18px 20px;
}

.bento-faq-q {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-faq-a {
  font-size: 12px;
  color: var(--bento-text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .bento-container {
    padding: 24px 12px 56px;
  }

  .bento-nav > div {
    padding-inline: 14px;
  }

  .mc-brand-wordmark {
    display: none;
  }

  .bento-hero-head {
    margin-bottom: 28px;
  }

  .bento-hero-title {
    font-size: 28px;
    line-height: 1.35;
  }

  .bento-hero-sub {
    font-size: 13px;
    line-height: 1.8;
  }

  .bento-role-bar,
  .bento-billing-segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    box-sizing: border-box;
  }

  .bento-role-btn,
  .bento-seg-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    font-size: 11px;
    line-height: 1.5;
    justify-content: center;
  }

  .bento-master-grid {
    gap: 14px;
  }

  .bento-card,
  .bento-matrix-container {
    padding: 20px 16px;
  }

  .tier-price-num {
    font-size: 32px;
  }

  .matrix-title-row h3 {
    font-size: 18px;
  }

  .matrix-bottom-actions,
  .matrix-btns-group {
    width: 100%;
  }

  .matrix-btns-group {
    flex-direction: column;
  }

  .subscription-footer {
    margin-top: 52px;
  }

  .subscription-footer-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 30px;
  }

  .subscription-footer-main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .subscription-footer-links {
    justify-content: center;
    gap: 10px 18px;
  }
}
