
:root {
  --brand: #52bac5;
  --brand-dark: #3a9faa;
  --brand-light: #7dd4dc;
  --brand-glow: rgba(82, 186, 197, 0.28);
  --brand-glow-lg: rgba(82, 186, 197, 0.42);
  --navy: #2e3e58;
  --dark: #1a2333;
  --dark2: #0f1720;
  --white: #ffffff;
  --off: #f5f8fb;
  --off2: #edf1f7;
  --border: #e2e8f0;
  --text: #1e2d3d;
  --text-2: #4a6078;
  --text-3: #7f96ae;
  --green: #22c55e;
  --amber: #f59e0b;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-h: "Plus Jakarta Sans", "Inter", sans-serif;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --sh: 0 2px 16px rgba(30,45,61,0.07);
  --sh-lg: 0 12px 48px rgba(30,45,61,0.13);
  --sh-xl: 0 24px 80px rgba(30,45,61,0.18);
  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s var(--ease);
}

.mmPageContainer {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.mmHeroSection, .mmModesInner, .mmFeatInner, .mmHiwInner, .mmUcInner,
.mmTplInner, .mmCmpInner, .mmGarInner, .mmProInner, .mmPrsInner, .mmSupInner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

.mmSectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.mmSectionLabel::before {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.mmBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--brand-glow);
  transition: var(--t);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.mmBtnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--brand-glow-lg);
  color: var(--white);
  text-decoration: none;
}
.mmBtnPrimary svg { width: 16px; height: 16px; }

.mmBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.mmBtnGhost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
}
.mmBtnGhost svg { width: 16px; height: 16px; }

/* HERO */
.mmHeroWrapper {
  background: linear-gradient(145deg, var(--dark2) 0%, var(--dark) 45%, #1c2e46 100%);
  position: relative;
  overflow: hidden;
}
/* grid background removed, keeping glow only */
.mmHeroWrapper::after {
  content: "";
  position: absolute;
  top: -180px; right: -120px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.mmHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}
.mmHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82,186,197,0.14);
  border: 1px solid rgba(82,186,197,0.32);
  color: #8fd8e2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.mmHeroBadgeDot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: mmPulse 2s infinite;
}
@keyframes mmPulse {
  0%,100% { box-shadow: 0 0 6px var(--brand); }
  50%      { box-shadow: 0 0 14px var(--brand); }
}
.mmHeroTitle {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.mmHeroTitle span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.mmHeroSubtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}
.mmHeroCtaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.mmHeroRating { display: flex; align-items: center; gap: 12px; }
.mmHeroStars { display: flex; gap: 3px; }
.mmHeroStars svg { width: 16px; height: 16px; fill: var(--amber); }
.mmHeroRatingText { font-size: 13px; color: rgba(255,255,255,0.5); }
.mmHeroRatingText strong { color: rgba(255,255,255,0.8); font-weight: 600; }

.mmHeroRight { position: relative; }
.mmHeroMockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 18px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  animation: mmFloat 6s ease-in-out infinite;
}
@keyframes mmFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.mmMockupBar { display: flex; gap: 6px; align-items: center; margin-bottom: 14px; }
.mmMockupDot { width: 10px; height: 10px; border-radius: 50%; }
.mmMockupDot:nth-child(1) { background: #ff5f57; }
.mmMockupDot:nth-child(2) { background: #febc2e; }
.mmMockupDot:nth-child(3) { background: #28c840; }
.mmMockupCanvas { border-radius: 14px; overflow: hidden; width: 100%; }
.mmMockupCanvas svg { width: 100%; height: auto; display: block; }

.mmHeroTimerPill {
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-lg);
}
.mmHeroTimerIcon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mmHeroTimerIcon svg { width: 18px; height: 18px; color: #fff; }
.mmTimerLabel { font-size: 11px; color: var(--text-3); display: block; margin-bottom: 3px; }
.mmTimerDigits { display: flex; gap: 4px; align-items: center; }
.mmTimerBox {
  background: var(--dark);
  color: var(--brand);
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 800;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.mmTimerSep { font-size: 13px; font-weight: 700; color: var(--text-3); }

.mmHeroStats {
  margin-top: 28px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 16px 24px;
}
.mmHeroStat { flex: 1; text-align: center; }
.mmStatNum { display: block; font-family: var(--font-h); font-size: 22px; font-weight: 800; color: var(--brand); line-height: 1.1; }
.mmStatLabel { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.mmHeroStatDivider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* 3 MODES */
.mmModesSection { background: var(--off); padding: 88px 0; }
.mmModesTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.mmModesSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 640px; line-height: 1.7; }
.mmModesGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mmModeCard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  border: 1.5px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.mmModeCard:hover { border-color: rgba(82,186,197,0.28); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.mmModeCardAccent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  opacity: 0; transition: var(--t);
}
.mmModeCard:hover .mmModeCardAccent { opacity: 1; }
.mmModeCardIcon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(82,186,197,0.15) 0%, rgba(82,186,197,0.08) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); margin-bottom: 20px; transition: var(--t);
}
.mmModeCardIcon svg { width: 32px; height: 32px; }
.mmModeCard:hover .mmModeCardIcon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.mmModeCardNum {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-h); font-size: 48px; font-weight: 900;
  color: rgba(82,186,197,0.07); line-height: 1; pointer-events: none;
}
.mmModeCardTitle { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.mmModeCardDesc { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }
.mmModeCardTag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--brand-dark);
  background: rgba(82,186,197,0.1);
  border-radius: 100px; padding: 4px 12px;
}

/* KEY FEATURES */
.mmFeatSection { background: var(--white); padding: 88px 0; }
.mmFeatLead {
  font-size: 17px; color: var(--text-2); line-height: 1.7;
  border-left: 3px solid var(--brand);
  padding-left: 18px; margin-bottom: 52px; max-width: 820px;
}
.mmFeatTitle {
  font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px;
}
.mmFeatSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 680px; line-height: 1.7; }
.mmFeatGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mmFeatCard {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.mmFeatCard:hover { border-color: rgba(82,186,197,0.25); background: var(--white); box-shadow: var(--sh-lg); transform: translateY(-3px); }
.mmFeatCardIcon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(82,186,197,0.15) 0%, rgba(82,186,197,0.08) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); margin-bottom: 18px; transition: var(--t);
}
.mmFeatCardIcon svg { width: 30px; height: 30px; }
.mmFeatCard:hover .mmFeatCardIcon { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.mmFeatCardBadge {
  display: inline-flex; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-bottom: 12px;
}
.mmFeatCardTitle { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mmFeatCardDesc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* HOW IT WORKS */
.mmHiwSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.mmHiwSection::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(82,186,197,0.1) 0%, transparent 70%);
}
.mmHiwTitle {
  font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.mmHiwSubtitle { font-size: 16px; color: rgba(255,255,255,0.58); max-width: 600px; margin-bottom: 52px; position: relative; z-index: 1; }
.mmHiwCols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 1; }
.mmHiwCol {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: 30px 22px; transition: var(--t);
}
.mmHiwCol:hover { background: rgba(82,186,197,0.1); border-color: rgba(82,186,197,0.3); transform: translateY(-3px); }
.mmHiwStep {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  font-size: 14px; font-weight: 800; color: var(--white);
  margin-bottom: 18px; box-shadow: 0 4px 12px var(--brand-glow);
}
.mmHiwColIcon { width: 40px; height: 40px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.mmHiwColIcon svg { width: 40px; height: 40px; }
.mmHiwColTitle { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mmHiwColSubtitle { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* TEMPLATES */
.mmTplSection { background: var(--off); padding: 88px 0; }
.mmTplTitle { font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
.mmTplSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 620px; }
.mmTplGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mmTplCard {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); border: 1.5px solid transparent; transition: var(--t);
}
.mmTplCard:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); border-color: rgba(82,186,197,0.25); }
.mmTplCardPreview { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mmTplCardBody { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.mmTplCardName { font-size: 14px; font-weight: 700; color: var(--navy); }
.mmTplCardLink { font-size: 13px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 4px; text-decoration: none; transition: var(--t); }
.mmTplCardLink:hover { color: var(--brand-dark); gap: 7px; }
.mmTplViewAll { text-align: center; margin-top: 36px; }
.mmTplViewAllLink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--brand);
  border: 1.5px solid rgba(82,186,197,0.35); border-radius: 100px;
  padding: 11px 28px; transition: var(--t); text-decoration: none;
}
.mmTplViewAllLink:hover { background: rgba(82,186,197,0.08); border-color: var(--brand); color: var(--brand-dark); }

/* USE CASES */
.mmUcSection { background: var(--white); padding: 88px 0; }
.mmUcTitle { font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
.mmUcSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 44px; max-width: 620px; }
.mmUcGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mmUcCard { background: var(--off); border-radius: var(--r-lg); padding: 28px 24px; border: 1.5px solid transparent; transition: var(--t); display: flex; flex-direction: column; gap: 12px; }
.mmUcCard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(82,186,197,0.22); background: var(--white); }
.mmUcCardFeat:hover { background: linear-gradient(160deg, #1a2f48 0%, #1a2333 100%); }
.mmUcCardFeat { grid-column: 1 / 3; background: linear-gradient(160deg, #1a2f48 0%, #1a2333 100%); border-color: rgba(82,186,197,0.18); position: relative; overflow: hidden; }
.mmUcCardFeat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-dark)); }
.mmUcCardFeat .mmUcCardTitle { color: var(--white); font-size: 20px; }
.mmUcCardFeat .mmUcCardText { color: rgba(255,255,255,0.6); font-size: 15px; }
.mmUcCardIcon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.mmUcCardIcon svg { width: 32px; height: 32px; }
.mmUcCardIconSm { width: 52px; height: 52px; background: rgba(82,186,197,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.mmUcCardIconSm svg { width: 26px; height: 26px; }
.mmUcCardTitle { font-size: 16px; font-weight: 700; color: var(--navy); }
.mmUcCardText { font-size: 14px; color: var(--text-2); line-height: 1.65; flex: 1; }

/* COMPARISON */
.mmCmpSection { background: var(--off); padding: 88px 0; }
.mmCmpTitle { font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -0.022em; margin-bottom: 10px; line-height: 1.25; }
.mmCmpSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 44px; max-width: 620px; }
.mmCmpTable { width: 100%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); border: 1.5px solid var(--border); }
.mmCmpRow { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.mmCmpRow:last-child { border-bottom: none; }
.mmCmpCell { padding: 18px 24px; font-size: 14.5px; line-height: 1.55; display: flex; align-items: center; gap: 8px; }
.mmCmpHeader { background: var(--navy); }
.mmCmpHeader .mmCmpCell { padding: 22px 24px; align-items: flex-start; flex-direction: column; gap: 4px; }
.mmCmpPlanName { font-size: 17px; font-weight: 700; color: var(--white); }
.mmCmpPlanSub { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; }
.mmCmpBadge { display: inline-flex; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 6px; }
.mmCmpHighlight { background: linear-gradient(160deg, #1a2f48 0%, #1e3a50 100%); position: relative; }
.mmCmpHighlight::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-dark)); }
.mmCmpFeatCol { background: var(--off); font-weight: 600; color: var(--navy); font-size: 14px; border-right: 1px solid var(--border); }
.mmCmpIcon { font-size: 16px; flex-shrink: 0; }
.mmCmpOld { color: var(--text-3); background: var(--white); border-right: 1px solid var(--border); }
.mmCmpRow:nth-child(even) .mmCmpOld { background: #fafbfc; }
.mmCmpNew { background: rgba(82,186,197,0.04); color: var(--text); font-weight: 500; position: relative; }
.mmCmpNew::before { content: "✓"; color: var(--brand); font-weight: 800; font-size: 14px; flex-shrink: 0; }
.mmCmpRow:nth-child(even) .mmCmpNew { background: rgba(82,186,197,0.07); }
.mmCmpFooter { background: var(--off); border-bottom: none; }
.mmCmpOldFoot { color: var(--text-3); font-size: 13px; border-right: 1px solid var(--border); justify-content: center; }
.mmCmpCross { color: #f87171; font-weight: 700; margin-right: 4px; }
.mmCmpNewFoot { background: rgba(82,186,197,0.06); justify-content: center; }
.mmCmpNewFoot .mmBtnPrimary { font-size: 14px; padding: 11px 24px; }

/* GUARANTEE */
.mmGarSection { background: var(--white); padding: 80px 0; }
.mmGarTitle { font-family: var(--font-h); font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.mmGarWave { max-width: 320px; margin-bottom: 20px; }
.mmGarWave svg { width: 100%; height: 16px; }
.mmGarSub1 { font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.mmGarSub2 { font-size: 16px; color: var(--text-2); margin-bottom: 40px; max-width: 600px; }
.mmGarBox { display: grid; grid-template-columns: auto 1fr; gap: 40px; background: var(--off); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh-lg); border: 1.5px solid var(--border); align-items: start; }
.mmGarBoxLeft { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.mmGarBadge { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, rgba(82,186,197,0.1) 0%, rgba(82,186,197,0.05) 100%); border: 1.5px solid rgba(82,186,197,0.25); border-radius: var(--r-lg); padding: 16px 20px; }
.mmGarBadgeIcon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mmGarBadgeIcon svg { width: 30px; height: 30px; color: #fff; }
.mmGarBadge strong { display: block; font-size: 18px; font-weight: 800; color: var(--navy); }
.mmGarBadge span { font-size: 12px; color: var(--text-3); }
.mmGarPayments { display: flex; gap: 8px; }
.mmGarPayments svg { height: 26px; width: auto; border-radius: 4px; }
.mmGarBoxRight p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.mmGarBoxRight p:last-child { margin-bottom: 0; }

/* PRO FEATURES */
.mmProSection { background: var(--off); padding: 88px 0; }
.mmProTitle { font-family: var(--font-h); font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
.mmProSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 660px; }
.mmProGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mmProCard { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border-radius: var(--r-lg); padding: 26px 24px; border: 1.5px solid transparent; transition: var(--t); }
.mmProCard:hover { border-color: rgba(82,186,197,0.22); box-shadow: var(--sh); }
.mmProCardIcon { width: 58px; height: 58px; background: linear-gradient(135deg, rgba(82,186,197,0.15) 0%, rgba(82,186,197,0.08) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; transition: var(--t); }
.mmProCardIcon svg { width: 28px; height: 28px; }
.mmProCard:hover .mmProCardIcon { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.mmProCardBadge { display: inline-flex; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; margin-bottom: 6px; }
.mmProCardTitle { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mmProCardSubtitle { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.mmProPhilosophy { margin-top: 52px; padding: 28px 32px; background: var(--white); border-radius: var(--r-lg); border-left: 4px solid var(--brand); }
.mmProPhilTitle { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mmProPhilText { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* PRICING */
.mmPrsSection { background: var(--white); padding: 88px 0; }
.mmPrsSection .mmSectionLabel { display: block; margin-bottom: 10px; }
.mmPrsTitle { font-family: var(--font-h); font-size: clamp(26px, 3.2vw, 44px); font-weight: 800; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 10px; line-height: 1.15; }
.mmPrsSubtitle { font-size: 16px; color: var(--text-2); margin-bottom: 48px; max-width: 560px; line-height: 1.65; }
.mmPrsNote { font-size: 14px; color: var(--text-3); text-align: center; margin-top: 20px; }

/* SUPPORT CTA */
.mmSupSection { background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%); padding: 88px 0; position: relative; overflow: hidden; }
.mmSupSection::before { content: ""; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(82,186,197,0.12) 0%, transparent 70%); }
.mmSupContainer { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; position: relative; z-index: 1; }
.mmSupTitle { font-family: var(--font-h); font-size: clamp(22px, 2.8vw, 36px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px; }
.mmSupSubtitle { font-size: 15.5px; color: rgba(255,255,255,0.58); margin-bottom: 28px; line-height: 1.7; max-width: 560px; }
.mmSupSubtitle p { margin-bottom: 10px; }
.mmSupSubtitle p:last-child { margin-bottom: 0; }
.mmSupTitle2 { font-size: 18px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.mmSupSubtitle2 { font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.mmSupSubtitle2 p { margin-bottom: 8px; }
.mmSupIllustration { width: 220px; height: 220px; }
.mmSupCtaRow { margin-top: 48px; position: relative; z-index: 1; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.mmSupCtaBtn { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: var(--white); font-size: 17px; font-weight: 700; padding: 18px 40px; border-radius: 100px; box-shadow: 0 8px 32px rgba(82,186,197,0.38), 0 2px 8px rgba(0,0,0,0.15); transition: var(--t); position: relative; overflow: hidden; text-decoration: none; }
.mmSupCtaBtn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%); border-radius: inherit; }
.mmSupCtaBtn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(82,186,197,0.5), 0 4px 12px rgba(0,0,0,0.18); color: var(--white); }
.mmSupCtaBtn svg { width: 18px; height: 18px; transition: transform var(--t); }
.mmSupCtaBtn:hover svg { transform: translateX(4px); }
.mmSupFreeBtn { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 600; padding: 17px 32px; border-radius: 100px; transition: var(--t); text-decoration: none; }
.mmSupFreeBtn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); color: var(--white); }
.mmSupFreeBtn svg { width: 16px; height: 16px; }

.mmDynamicSection { background: var(--white); }

.mmPrsSection .supPricingTop { display: none !important; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mmFeatGrid { grid-template-columns: repeat(2, 1fr); }
  .mmHiwCols { grid-template-columns: repeat(2, 1fr); }
  .mmProGrid { grid-template-columns: 1fr; }
  .mmUcGrid { grid-template-columns: repeat(2, 1fr); }
  .mmUcCardFeat { grid-column: auto; }
  .mmModesGrid { grid-template-columns: 1fr 1fr; }
  .mmTplGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .mmHeroSection { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .mmHeroRight { display: none; }
  .mmSupContainer { grid-template-columns: 1fr; }
  .mmSupRight { display: none; }
  .mmGarBox { grid-template-columns: 1fr; }
  .mmCmpRow { grid-template-columns: 1fr 1fr; }
  .mmCmpFeatCol { display: none; }
}
@media (max-width: 640px) {
  .mmFeatGrid { grid-template-columns: 1fr; }
  .mmHiwCols { grid-template-columns: 1fr 1fr; }
  .mmUcGrid { grid-template-columns: 1fr; }
  .mmModesGrid { grid-template-columns: 1fr; }
  .mmTplGrid { grid-template-columns: 1fr; }
  .mmHeroCtaRow { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .mmHiwCols { grid-template-columns: 1fr; }
  .mmCmpRow { grid-template-columns: 1fr; }
  .mmCmpOld { border-right: none; border-bottom: 1px solid var(--border); }
  :root { --r-xl: 20px; }
}
