:root {
  --mgh-red: #e3062f;
  --mgh-red-dark: #bd0025;
  --mgh-blue: #009fe3;
  --mgh-blue-dark: #007aae;
  --mgh-yellow: #ffcc00;
  --mgh-yellow-soft: #fff2aa;
  --mgh-ink: #15324b;
  --mgh-ink-2: #244760;
  --mgh-muted: #5d7182;
  --mgh-line: #dce6ec;
  --mgh-paper: #f6f9fb;
  --mgh-warm: #fff8ed;
  --mgh-white: #fff;
  --mgh-green: #29a69a;
  --mgh-shadow-sm: 0 12px 34px rgba(21, 50, 75, 0.09);
  --mgh-shadow-md: 0 24px 70px rgba(21, 50, 75, 0.14);
  --mgh-shadow-lg: 0 35px 100px rgba(10, 35, 54, 0.2);
  --mgh-radius-sm: 14px;
  --mgh-radius: 24px;
  --mgh-radius-lg: 38px;
  --mgh-container: 1180px;
  --mgh-header-height: 84px;
  --mgh-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mgh-header-height) + 28px);
}

body {
  margin: 0;
  color: var(--mgh-ink);
  background: var(--mgh-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.mgh-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

:focus-visible {
  outline: 3px solid var(--mgh-yellow);
  outline-offset: 4px;
}

.mgh-container {
  width: min(calc(100% - 40px), var(--mgh-container));
  margin-inline: auto;
}

.mgh-main {
  overflow: clip;
}

.mgh-section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.mgh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--mgh-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mgh-kicker::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.mgh-kicker--light {
  color: var(--mgh-yellow);
}

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

h1,
h2,
h3 {
  color: var(--mgh-ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.65rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  color: var(--mgh-muted);
}

.mgh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}

.mgh-section-head > div h2,
.mgh-section-head > h2 {
  margin-bottom: 0;
}

.mgh-section-head > p {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.mgh-section-head--center {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.mgh-section-head--center .mgh-kicker {
  justify-content: center;
}

.mgh-section-head--center > p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.mgh-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform var(--mgh-transition), box-shadow var(--mgh-transition), background var(--mgh-transition), border-color var(--mgh-transition), color var(--mgh-transition);
}

.mgh-button svg,
.mgh-text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform var(--mgh-transition);
}

.mgh-button:hover {
  transform: translateY(-2px);
}

.mgh-button:hover svg,
.mgh-text-link:hover svg {
  transform: translateX(4px);
}

.mgh-button--primary {
  color: var(--mgh-white);
  background: var(--mgh-red);
  box-shadow: 0 14px 32px rgba(227, 6, 47, 0.22);
}

.mgh-button--primary:hover {
  color: var(--mgh-white);
  background: var(--mgh-red-dark);
  box-shadow: 0 18px 38px rgba(227, 6, 47, 0.28);
}

.mgh-button--ghost {
  color: var(--mgh-ink);
  border-color: rgba(21, 50, 75, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.mgh-button--ghost:hover {
  border-color: var(--mgh-ink);
  background: var(--mgh-white);
}

.mgh-button--ghost-light {
  color: var(--mgh-white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.mgh-button--ghost-light:hover {
  color: var(--mgh-white);
  border-color: var(--mgh-white);
  background: rgba(255, 255, 255, 0.15);
}

.mgh-button--outline {
  color: var(--mgh-ink);
  border-color: var(--mgh-ink);
  background: transparent;
}

.mgh-button--outline:hover {
  color: var(--mgh-white);
  background: var(--mgh-ink);
}

.mgh-button--dark {
  color: var(--mgh-white);
  background: var(--mgh-ink);
  box-shadow: 0 16px 35px rgba(21, 50, 75, 0.2);
}

.mgh-button--dark:hover {
  color: var(--mgh-white);
  background: #0b253b;
}

.mgh-button--small {
  min-height: 46px;
  padding: 12px 19px;
  font-size: 0.84rem;
}

.mgh-button--full {
  width: 100%;
}

.mgh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mgh-ink);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.mgh-text-link:hover {
  color: var(--mgh-red);
}

.mgh-text-link--light {
  color: var(--mgh-white);
}

.mgh-text-link--light:hover {
  color: var(--mgh-yellow);
}

/* Accessibility and header */
.mgh-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--mgh-white);
  background: var(--mgh-ink);
  transform: translateY(-150%);
}

.mgh-skip-link:focus {
  transform: translateY(0);
}

.mgh-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--mgh-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  transition: height var(--mgh-transition), border-color var(--mgh-transition), box-shadow var(--mgh-transition), background var(--mgh-transition);
}

.admin-bar .mgh-header {
  top: 32px;
}

.mgh-header.is-scrolled {
  height: 72px;
  border-color: rgba(21, 50, 75, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(21, 50, 75, 0.08);
}

.mgh-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mgh-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--mgh-ink);
  text-decoration: none;
}

.mgh-brand__custom .custom-logo-link,
.mgh-brand__custom .custom-logo {
  display: block;
  max-width: 190px;
  max-height: 56px;
  width: auto;
  height: auto;
}

.mgh-brand__mark {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 6px 10px rgba(21, 50, 75, 0.1));
}

.mgh-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.mgh-brand__text strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.mgh-brand__text small {
  margin-top: 6px;
  color: var(--mgh-muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.mgh-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.mgh-nav__list,
.mgh-nav .menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgh-nav__list a,
.mgh-nav .menu a {
  position: relative;
  color: var(--mgh-ink-2);
  font-size: 0.82rem;
  font-weight: 730;
  text-decoration: none;
}

.mgh-nav__list a::after,
.mgh-nav .menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--mgh-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--mgh-transition);
}

.mgh-nav__list a:hover::after,
.mgh-nav .menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mgh-nav-toggle {
  display: none;
  border: 0;
  color: var(--mgh-ink);
  background: transparent;
  cursor: pointer;
}

.mgh-nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mgh-nav-toggle__icon {
  display: grid;
  width: 28px;
  gap: 5px;
}

.mgh-nav-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform var(--mgh-transition), opacity var(--mgh-transition);
}

/* Hero */
.mgh-hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--mgh-header-height) + 78px) 0 96px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 204, 0, 0.18), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(0, 159, 227, 0.13), transparent 31%),
    linear-gradient(145deg, #fffdf8 0%, #fff 47%, #f1f9fd 100%);
}

.mgh-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -14vw;
  width: 42vw;
  height: 42vw;
  border: 2px solid rgba(0, 159, 227, 0.08);
  border-radius: 50%;
  content: "";
}

.mgh-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 62px;
  align-items: center;
}

.mgh-hero__copy {
  max-width: 690px;
}

.mgh-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(21, 50, 75, 0.1);
  border-radius: 999px;
  color: var(--mgh-ink-2);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: var(--mgh-shadow-sm);
}

.mgh-pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mgh-red);
}

.mgh-pulse-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mgh-red);
  border-radius: 50%;
  content: "";
  animation: mgh-pulse 2.2s infinite;
}

.mgh-hero h1 {
  max-width: 800px;
}

.mgh-hero h1::first-line {
  color: var(--mgh-ink);
}

.mgh-hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

.mgh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.mgh-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgh-hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mgh-ink-2);
  font-size: 0.78rem;
  font-weight: 680;
}

.mgh-hero__trust svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--mgh-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  background: var(--mgh-green);
}

.mgh-hero__visual {
  position: relative;
  min-height: 660px;
}

.mgh-update-pill {
  position: absolute;
  z-index: 7;
  top: 2px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(227, 6, 47, 0.16);
  border-radius: 999px;
  color: var(--mgh-red);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--mgh-shadow-sm);
}

.mgh-update-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mgh-red);
  box-shadow: 0 0 0 5px rgba(227, 6, 47, 0.1);
}

.mgh-phone-stage {
  position: absolute;
  inset: 35px 0 0;
  display: grid;
  place-items: center;
}

.mgh-phone-stage::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.32), rgba(0, 159, 227, 0.18));
  content: "";
  filter: blur(0.1px);
}

.mgh-phone-stage::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 2px dashed rgba(21, 50, 75, 0.14);
  border-radius: 50%;
  content: "";
  animation: mgh-spin 28s linear infinite;
}

.mgh-phone {
  position: relative;
  z-index: 3;
  width: 302px;
  padding: 9px;
  border: 2px solid #28333b;
  border-radius: 48px;
  background: linear-gradient(145deg, #161a1d, #45515a);
  box-shadow: 0 44px 90px rgba(11, 37, 59, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  transform: rotate(2.5deg);
}

.mgh-phone__frame {
  position: relative;
  overflow: hidden;
  border-radius: 39px;
  background: var(--mgh-white);
}

.mgh-phone__speaker {
  position: absolute;
  z-index: 5;
  top: 11px;
  left: 50%;
  width: 78px;
  height: 23px;
  border-radius: 999px;
  background: #121719;
  transform: translateX(-50%);
}

.mgh-phone__screen {
  position: relative;
  min-height: 607px;
  padding-bottom: 62px;
  background: #f6f9fb;
}

.mgh-appbar {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 9px;
  align-items: center;
  min-height: 90px;
  padding: 31px 15px 14px;
  color: var(--mgh-white);
  background: linear-gradient(125deg, var(--mgh-blue), #18abc8);
}

.mgh-appbar__logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--mgh-white);
}

.mgh-appbar__logo img {
  width: 30px;
}

.mgh-appbar strong,
.mgh-appbar small {
  display: block;
  color: var(--mgh-white);
}

.mgh-appbar strong {
  font-size: 0.72rem;
  line-height: 1.2;
}

.mgh-appbar small {
  margin-top: 3px;
  font-size: 0.52rem;
  opacity: 0.82;
}

.mgh-appbar button {
  border: 0;
  color: var(--mgh-white);
  background: transparent;
  letter-spacing: 2px;
}

.mgh-phone__content {
  padding: 15px;
}

.mgh-welcome-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 18px;
  border-radius: 22px;
  color: var(--mgh-white);
  background: linear-gradient(135deg, var(--mgh-red) 0%, #f03c58 58%, #f78373 100%);
  box-shadow: 0 14px 30px rgba(227, 6, 47, 0.18);
}

.mgh-welcome-card::before,
.mgh-welcome-card::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.mgh-welcome-card::before {
  top: -38px;
  right: -34px;
  width: 130px;
  height: 130px;
}

.mgh-welcome-card::after {
  right: 22px;
  bottom: -42px;
  width: 94px;
  height: 94px;
}

.mgh-welcome-card span,
.mgh-welcome-card h2,
.mgh-welcome-card p {
  position: relative;
  z-index: 2;
  color: var(--mgh-white);
}

.mgh-welcome-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mgh-welcome-card h2 {
  max-width: 180px;
  margin-bottom: 8px;
  font-size: 1.34rem;
}

.mgh-welcome-card p {
  max-width: 190px;
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.55;
  opacity: 0.9;
}

.mgh-phone__quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.mgh-phone__quicklinks div {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(21, 50, 75, 0.07);
  border-radius: 16px;
  background: var(--mgh-white);
  box-shadow: 0 6px 16px rgba(21, 50, 75, 0.05);
}

.mgh-phone__quicklinks svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--mgh-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-phone__quicklinks span {
  color: var(--mgh-ink-2);
  font-size: 0.48rem;
  font-weight: 700;
}

.mgh-news-card {
  padding: 14px;
  border: 1px solid rgba(21, 50, 75, 0.07);
  border-radius: 18px;
  background: var(--mgh-white);
  box-shadow: 0 6px 16px rgba(21, 50, 75, 0.05);
}

.mgh-news-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.mgh-news-card__head span {
  color: var(--mgh-blue-dark);
  font-size: 0.48rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mgh-news-card__head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mgh-red);
  box-shadow: 0 0 0 4px rgba(227, 6, 47, 0.09);
}

.mgh-news-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--mgh-ink);
  font-size: 0.67rem;
  line-height: 1.35;
}

.mgh-news-card p {
  margin: 0;
  font-size: 0.52rem;
  line-height: 1.5;
}

.mgh-phone__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 62px;
  padding: 7px 9px 8px;
  border-top: 1px solid rgba(21, 50, 75, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.mgh-phone__nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #8797a3;
}

.mgh-phone__nav span.is-active {
  color: var(--mgh-blue);
}

.mgh-phone__nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mgh-phone__nav small {
  font-size: 0.43rem;
  font-weight: 700;
}

.mgh-float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--mgh-shadow-md);
  backdrop-filter: blur(12px);
}

.mgh-float-card small,
.mgh-float-card strong {
  display: block;
}

.mgh-float-card small {
  margin-bottom: 2px;
  color: var(--mgh-muted);
  font-size: 0.57rem;
  font-weight: 700;
}

.mgh-float-card strong {
  color: var(--mgh-ink);
  font-size: 0.66rem;
  line-height: 1.25;
}

.mgh-float-card--message {
  top: 118px;
  left: -18px;
  max-width: 205px;
  padding: 11px 13px;
  border-radius: 16px;
  animation: mgh-float 5s ease-in-out infinite;
}

.mgh-float-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--mgh-white);
  background: var(--mgh-red);
}

.mgh-float-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-float-card--award {
  right: -12px;
  bottom: 88px;
  max-width: 228px;
  padding: 10px 14px 10px 10px;
  border-radius: 18px;
  animation: mgh-float 5.6s 0.8s ease-in-out infinite;
}

.mgh-float-card--award img {
  width: 56px;
  height: 56px;
}

.mgh-float-card--award strong {
  font-size: 0.85rem;
}

.mgh-float-card--award small {
  max-width: 116px;
  line-height: 1.35;
}

.mgh-visual-note {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  margin: 0;
  color: var(--mgh-muted);
  font-size: 0.65rem;
  font-weight: 650;
  text-align: center;
}

.mgh-hero__shapes i {
  position: absolute;
  z-index: 1;
  display: block;
}

.mgh-hero__shapes i:nth-child(1) {
  top: 150px;
  left: 3vw;
  width: 18px;
  height: 18px;
  border: 4px solid var(--mgh-red);
  border-radius: 50%;
}

.mgh-hero__shapes i:nth-child(2) {
  top: 48%;
  left: 1.5vw;
  width: 40px;
  height: 11px;
  border-radius: 99px;
  background: var(--mgh-blue);
  transform: rotate(-28deg);
}

.mgh-hero__shapes i:nth-child(3) {
  top: 130px;
  right: 3vw;
  width: 28px;
  height: 28px;
  border: 5px solid var(--mgh-yellow);
  transform: rotate(22deg);
}

.mgh-hero__shapes i:nth-child(4) {
  right: 6vw;
  bottom: 11%;
  width: 14px;
  height: 54px;
  border-radius: 99px;
  background: var(--mgh-red);
  transform: rotate(38deg);
}

/* Proof bar */
.mgh-proof {
  position: relative;
  z-index: 5;
  background: var(--mgh-ink);
}

.mgh-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mgh-proof__grid > div {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mgh-proof__grid > div:last-child {
  border-right: 0;
}

.mgh-proof strong {
  display: block;
  margin-bottom: 7px;
  color: var(--mgh-yellow);
  font-size: 1.82rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mgh-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.45;
}

/* Intro values */
.mgh-intro {
  background: var(--mgh-white);
}

.mgh-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mgh-value-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 38px 34px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: var(--mgh-radius);
  background: var(--mgh-white);
  box-shadow: var(--mgh-shadow-sm);
  transition: transform var(--mgh-transition), box-shadow var(--mgh-transition);
}

.mgh-value-card::after {
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 175px;
  height: 175px;
  border: 26px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.mgh-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mgh-shadow-md);
}

.mgh-value-card--yellow {
  background: linear-gradient(150deg, #fff7cc, #fffdf0);
}

.mgh-value-card--red {
  background: linear-gradient(150deg, #ffe9ee, #fff8f9);
}

.mgh-value-card--blue {
  background: linear-gradient(150deg, #e1f6ff, #f4fbff);
}

.mgh-value-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 20px;
  color: var(--mgh-white);
}

.mgh-value-card--yellow .mgh-value-card__icon {
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

.mgh-value-card--red .mgh-value-card__icon {
  background: var(--mgh-red);
}

.mgh-value-card--blue .mgh-value-card__icon {
  background: var(--mgh-blue);
}

.mgh-value-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-value-card h3,
.mgh-value-card p {
  position: relative;
  z-index: 2;
}

.mgh-value-card p {
  margin-bottom: 0;
}

/* Story */
.mgh-story {
  background: var(--mgh-warm);
}

.mgh-story::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 50, 75, 0.12), transparent);
  content: "";
  transform: translateX(-50%);
}

.mgh-story__grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.85fr) minmax(0, 1.15fr);
  gap: 86px;
  align-items: center;
  margin-bottom: 96px;
}

.mgh-story__visual {
  position: relative;
  min-height: 640px;
}

.mgh-story__image-card {
  position: absolute;
  top: 0;
  left: 18px;
  width: 350px;
  padding: 18px 18px 0;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: 34px;
  background: var(--mgh-white);
  box-shadow: var(--mgh-shadow-lg);
  transform: rotate(-3deg);
}

.mgh-story__image-card img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
}

.mgh-story__image-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--mgh-muted);
  font-size: 0.66rem;
  font-weight: 750;
}

.mgh-story__image-label span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--mgh-white);
  background: var(--mgh-red);
}

.mgh-story__stamp {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 26px;
  width: 235px;
  padding: 10px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--mgh-shadow-md);
  transform: rotate(5deg);
}

.mgh-story__stamp img {
  width: 100%;
  border-radius: 16px;
}

.mgh-story__copy h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
}

.mgh-story__copy p {
  font-size: 1.02rem;
}

.mgh-story__lead {
  color: var(--mgh-ink-2);
  font-size: 1.16rem !important;
  font-weight: 600;
}

.mgh-story__copy .mgh-text-link {
  margin-top: 10px;
}

.mgh-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgh-timeline::before {
  position: absolute;
  top: 35px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--mgh-yellow), var(--mgh-red), var(--mgh-blue));
  content: "";
}

.mgh-timeline li {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.mgh-timeline__year {
  position: relative;
  z-index: 2;
  display: inline-grid;
  min-width: 76px;
  height: 70px;
  place-items: center;
  margin-bottom: 24px;
  border: 6px solid var(--mgh-warm);
  border-radius: 22px;
  color: var(--mgh-ink);
  background: var(--mgh-white);
  font-size: 0.72rem;
  font-weight: 850;
  box-shadow: var(--mgh-shadow-sm);
}

.mgh-timeline li.is-current .mgh-timeline__year {
  color: var(--mgh-white);
  background: var(--mgh-red);
}

.mgh-timeline h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.mgh-timeline p {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Quote */
.mgh-quote-band {
  padding: 54px 0;
  background: var(--mgh-yellow);
}

.mgh-quote-band__inner {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 970px;
}

.mgh-quote-band__icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 26px;
  color: var(--mgh-white);
  background: var(--mgh-red);
  box-shadow: 0 14px 30px rgba(227, 6, 47, 0.22);
  transform: rotate(-5deg);
}

.mgh-quote-band__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-quote-band blockquote {
  margin: 0;
}

.mgh-quote-band p {
  margin: 0;
  color: var(--mgh-ink);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

/* Features */
.mgh-features {
  background: var(--mgh-white);
}

.mgh-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mgh-feature-card {
  position: relative;
  min-height: 315px;
  padding: 28px 25px 26px;
  border: 1px solid var(--mgh-line);
  border-radius: 22px;
  background: var(--mgh-white);
  transition: transform var(--mgh-transition), border-color var(--mgh-transition), box-shadow var(--mgh-transition);
}

.mgh-feature-card:hover {
  z-index: 2;
  border-color: rgba(0, 159, 227, 0.28);
  box-shadow: var(--mgh-shadow-md);
  transform: translateY(-8px);
}

.mgh-feature-card:nth-child(4n + 1) .mgh-feature-card__icon {
  color: var(--mgh-red);
  background: #ffe8ee;
}

.mgh-feature-card:nth-child(4n + 2) .mgh-feature-card__icon {
  color: var(--mgh-blue-dark);
  background: #e3f6fe;
}

.mgh-feature-card:nth-child(4n + 3) .mgh-feature-card__icon {
  color: #8a6a00;
  background: #fff4b9;
}

.mgh-feature-card:nth-child(4n + 4) .mgh-feature-card__icon {
  color: var(--mgh-green);
  background: #e2f6f4;
}

.mgh-feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mgh-feature-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
}

.mgh-feature-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mgh-feature-card__number {
  color: #bdc9d1;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.mgh-feature-card h3 {
  font-size: 1.18rem;
}

.mgh-feature-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.62;
}

.mgh-feature-highlight {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
  margin-top: 24px;
  padding: 58px 64px;
  border-radius: var(--mgh-radius-lg);
  background: var(--mgh-paper);
}

.mgh-feature-highlight h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.mgh-feature-highlight p {
  font-size: 1rem;
}

.mgh-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border: 2px dashed rgba(21, 50, 75, 0.16);
  border-radius: 50%;
  animation: mgh-spin 30s linear infinite;
}

.mgh-orbit::before,
.mgh-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.mgh-orbit::before {
  inset: 37px;
  border: 1px solid rgba(0, 159, 227, 0.2);
}

.mgh-orbit::after {
  inset: 76px;
  background: var(--mgh-white);
  box-shadow: var(--mgh-shadow-md);
}

.mgh-orbit > span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  padding: 10px;
  border-radius: 28px;
  background: var(--mgh-white);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: mgh-counter-spin 30s linear infinite;
}

.mgh-orbit i {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 7px solid var(--mgh-white);
  border-radius: 50%;
  box-shadow: var(--mgh-shadow-sm);
}

.mgh-orbit i:nth-child(1) {
  top: 13px;
  left: 34px;
  background: var(--mgh-red);
}

.mgh-orbit i:nth-child(2) {
  top: 100px;
  right: -17px;
  background: var(--mgh-blue);
}

.mgh-orbit i:nth-child(3) {
  bottom: -9px;
  left: 92px;
  background: var(--mgh-yellow);
}

.mgh-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mgh-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mgh-ink-2);
  font-size: 0.9rem;
  font-weight: 650;
}

.mgh-check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 1px;
  padding: 4px;
  border-radius: 50%;
  fill: none;
  stroke: var(--mgh-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  background: var(--mgh-green);
}

/* Audiences */
.mgh-audiences {
  background: var(--mgh-warm);
}

.mgh-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mgh-audience-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 164px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform var(--mgh-transition), background var(--mgh-transition), box-shadow var(--mgh-transition);
}

.mgh-audience-grid article:hover {
  background: var(--mgh-white);
  box-shadow: var(--mgh-shadow-sm);
  transform: translateY(-5px);
}

.mgh-audience-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: var(--mgh-white);
  background: var(--mgh-ink);
  font-size: 0.7rem;
  font-weight: 850;
}

.mgh-audience-grid article:nth-child(3n + 1) > span {
  background: var(--mgh-red);
}

.mgh-audience-grid article:nth-child(3n + 2) > span {
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

.mgh-audience-grid article:nth-child(3n + 3) > span {
  background: var(--mgh-blue);
}

.mgh-audience-grid h3 {
  margin: 3px 0 8px;
  font-size: 1rem;
}

.mgh-audience-grid p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Security */
.mgh-security {
  overflow: hidden;
  color: var(--mgh-white);
  background: linear-gradient(145deg, #102c43 0%, #153b57 62%, #0b6f87 100%);
}

.mgh-security__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(255, 204, 0, 0.75) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px);
  background-size: 120px 120px, 95px 95px;
}

.mgh-security::after {
  position: absolute;
  top: -170px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(0, 159, 227, 0.15);
  border-radius: 50%;
  content: "";
}

.mgh-security__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 74px;
  align-items: center;
}

.mgh-security h2,
.mgh-security h3,
.mgh-security p {
  color: var(--mgh-white);
}

.mgh-security__copy > p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.mgh-security__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mgh-security__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
}

.mgh-security__badges svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--mgh-yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mgh-security__panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(3, 26, 44, 0.28);
  backdrop-filter: blur(18px);
}

.mgh-security__panel-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.mgh-security__panel-head > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

.mgh-security__panel-head svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-security__panel-head small,
.mgh-security__panel-head strong {
  display: block;
}

.mgh-security__panel-head small {
  margin-bottom: 3px;
  color: var(--mgh-yellow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mgh-security__panel-head strong {
  color: var(--mgh-white);
  font-size: 1rem;
  line-height: 1.35;
}

.mgh-security__panel > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.mgh-security__panel ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mgh-security__panel li {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mgh-security__panel li > span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border: 3px solid var(--mgh-yellow);
  border-radius: 50%;
}

.mgh-security__panel li strong,
.mgh-security__panel li small {
  display: block;
}

.mgh-security__panel li strong {
  color: var(--mgh-white);
  font-size: 0.82rem;
}

.mgh-security__panel li small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  line-height: 1.45;
}

/* Next level */
.mgh-next-level {
  background: var(--mgh-white);
}

.mgh-next-level__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 80px;
  align-items: center;
}

.mgh-next-level__copy p {
  max-width: 650px;
  font-size: 1.06rem;
}

.mgh-next-level__copy .mgh-button {
  margin-top: 12px;
}

.mgh-next-level__visual {
  position: relative;
  min-height: 430px;
  padding: 35px;
  border-radius: var(--mgh-radius-lg);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 204, 0, 0.28), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(0, 159, 227, 0.2), transparent 34%),
    var(--mgh-paper);
}

.mgh-stack-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 26px;
  box-shadow: var(--mgh-shadow-md);
}

.mgh-stack-card span {
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.mgh-stack-card strong {
  line-height: 1.25;
}

.mgh-stack-card--old {
  top: 54px;
  left: 33px;
  width: 225px;
  min-height: 190px;
  padding: 30px;
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
  transform: rotate(-6deg);
}

.mgh-stack-card--old strong {
  font-size: 1.35rem;
}

.mgh-stack-card--new {
  right: 30px;
  bottom: 42px;
  width: 310px;
  min-height: 245px;
  padding: 34px;
  color: var(--mgh-white);
  background: linear-gradient(145deg, var(--mgh-red), #bc0630);
  transform: rotate(3deg);
}

.mgh-stack-card--new span,
.mgh-stack-card--new strong,
.mgh-stack-card--new small {
  color: var(--mgh-white);
}

.mgh-stack-card--new strong {
  margin-bottom: 16px;
  font-size: 1.62rem;
}

.mgh-stack-card--new small {
  font-size: 0.72rem;
  line-height: 1.55;
  opacity: 0.8;
}

.mgh-stack-arrow {
  position: absolute;
  z-index: 3;
  top: 180px;
  left: 48%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 8px solid var(--mgh-paper);
  border-radius: 50%;
  color: var(--mgh-white);
  background: var(--mgh-blue);
  box-shadow: var(--mgh-shadow-sm);
  transform: translate(-50%, -50%) rotate(14deg);
}

.mgh-stack-arrow svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Onboarding */
.mgh-onboarding {
  background: var(--mgh-paper);
}

.mgh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgh-steps li {
  position: relative;
  min-height: 315px;
  padding: 30px 26px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: 22px;
  background: var(--mgh-white);
  box-shadow: 0 10px 28px rgba(21, 50, 75, 0.05);
}

.mgh-steps li > span {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #c6d2d9;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.mgh-steps__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 20px;
  color: var(--mgh-white);
  background: var(--mgh-ink);
}

.mgh-steps li:nth-child(1) .mgh-steps__icon {
  background: var(--mgh-red);
}

.mgh-steps li:nth-child(2) .mgh-steps__icon {
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

.mgh-steps li:nth-child(3) .mgh-steps__icon {
  background: var(--mgh-blue);
}

.mgh-steps li:nth-child(4) .mgh-steps__icon {
  background: var(--mgh-green);
}

.mgh-steps__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-steps h3 {
  font-size: 1.12rem;
}

.mgh-steps p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.6;
}

.mgh-onboarding__note {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 910px;
  margin: 28px auto 0;
  padding: 20px 26px;
  border-radius: 18px;
  color: var(--mgh-ink);
  background: var(--mgh-yellow-soft);
}

.mgh-onboarding__note > svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--mgh-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-onboarding__note p {
  margin: 0;
  color: var(--mgh-ink-2);
  font-size: 0.84rem;
}

/* Download */
.mgh-app-download {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: var(--mgh-white);
  background: var(--mgh-red);
}

.mgh-app-download::before {
  position: absolute;
  top: -180px;
  right: 8%;
  width: 480px;
  height: 480px;
  border: 78px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.mgh-app-download__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 74px;
  align-items: center;
}

.mgh-app-download h2,
.mgh-app-download p {
  color: var(--mgh-white);
}

.mgh-app-download h2 {
  max-width: 740px;
}

.mgh-app-download p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.mgh-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mgh-store-links a {
  display: inline-flex;
  min-width: 151px;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  color: var(--mgh-white);
  background: #071018;
  text-decoration: none;
  transition: transform var(--mgh-transition), background var(--mgh-transition);
}

.mgh-store-links a:hover {
  color: var(--mgh-white);
  background: #111f2a;
  transform: translateY(-3px);
}

.mgh-store-links__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.mgh-store-links__play {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--mgh-white);
  background: linear-gradient(135deg, #4ad395, #009fe3);
  font-size: 0.72rem;
}

.mgh-store-links small,
.mgh-store-links strong {
  display: block;
  color: var(--mgh-white);
  line-height: 1.05;
}

.mgh-store-links small {
  margin-bottom: 3px;
  font-size: 0.51rem;
}

.mgh-store-links strong {
  font-size: 0.82rem;
}

.mgh-store-links--large a {
  min-width: 172px;
  padding: 12px 16px;
}

.mgh-store-links--large small {
  font-size: 0.58rem;
}

.mgh-store-links--large strong {
  font-size: 0.93rem;
}

.mgh-app-download__art {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}

.mgh-app-download__art > img {
  position: relative;
  z-index: 2;
  width: 170px;
  padding: 19px;
  border-radius: 42px;
  background: var(--mgh-white);
  box-shadow: 0 30px 70px rgba(96, 0, 20, 0.3);
  transform: rotate(5deg);
}

.mgh-download-code {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 10px;
  display: flex;
  width: 165px;
  min-height: 142px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
  box-shadow: var(--mgh-shadow-md);
  transform: rotate(-8deg);
}

.mgh-download-code > span svg {
  width: 34px;
  height: 34px;
  margin-bottom: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mgh-download-code strong,
.mgh-download-code small {
  display: block;
}

.mgh-download-code strong {
  font-size: 0.82rem;
}

.mgh-download-code small {
  margin-top: 4px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Contact */
.mgh-contact {
  background: var(--mgh-white);
}

.mgh-contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  padding: 66px;
  border: 1px solid rgba(21, 50, 75, 0.08);
  border-radius: var(--mgh-radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(255, 204, 0, 0.24), transparent 28%),
    linear-gradient(145deg, #fffdf8, #f6fbfd);
  box-shadow: var(--mgh-shadow-md);
}

.mgh-contact__intro h2 {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.mgh-contact__intro > p {
  font-size: 1rem;
}

.mgh-contact__direct {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.mgh-contact__direct a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  max-width: 390px;
  padding: 11px 13px;
  border: 1px solid rgba(21, 50, 75, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: transform var(--mgh-transition), border-color var(--mgh-transition), background var(--mgh-transition);
}

.mgh-contact__direct a:hover {
  border-color: var(--mgh-blue);
  background: var(--mgh-white);
  transform: translateX(4px);
}

.mgh-contact__direct > a > svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 14px;
  fill: none;
  stroke: var(--mgh-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  background: var(--mgh-blue);
}

.mgh-contact__direct a:nth-child(2) > svg {
  background: var(--mgh-red);
}

.mgh-contact__direct small,
.mgh-contact__direct strong {
  display: block;
}

.mgh-contact__direct small {
  color: var(--mgh-muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.mgh-contact__direct strong {
  color: var(--mgh-ink);
  font-size: 0.82rem;
}

.mgh-contact__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mgh-contact-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: 24px;
}

.mgh-contact-card--test {
  color: var(--mgh-white);
  background: var(--mgh-ink);
}

.mgh-contact-card--advice {
  border: 1px solid rgba(21, 50, 75, 0.12);
  background: var(--mgh-white);
}

.mgh-contact-card__number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 850;
}

.mgh-contact-card--advice .mgh-contact-card__number {
  color: #b7c4cc;
}

.mgh-contact-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 20px;
  color: var(--mgh-ink);
  background: var(--mgh-yellow);
}

.mgh-contact-card--advice .mgh-contact-card__icon {
  color: var(--mgh-white);
  background: var(--mgh-blue);
}

.mgh-contact-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-contact-card h3 {
  font-size: 1.32rem;
}

.mgh-contact-card--test h3,
.mgh-contact-card--test p {
  color: var(--mgh-white);
}

.mgh-contact-card p {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.62;
}

.mgh-contact-card--test p {
  color: rgba(255, 255, 255, 0.7);
}

.mgh-alert {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 26px;
  padding: 17px 20px;
  border-radius: 17px;
}

.mgh-alert--success {
  color: #125d48;
  background: #e0f7ed;
}

.mgh-alert--error {
  color: #8b1e32;
  background: #ffebef;
}

.mgh-alert > svg {
  width: 39px;
  height: 39px;
  padding: 9px;
  border-radius: 50%;
  fill: none;
  stroke: var(--mgh-white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  background: var(--mgh-green);
}

.mgh-alert strong,
.mgh-alert span {
  display: block;
}

.mgh-alert strong {
  font-size: 0.86rem;
}

.mgh-alert span {
  margin-top: 2px;
  font-size: 0.73rem;
}

/* FAQ */
.mgh-faq {
  background: var(--mgh-paper);
}

.mgh-faq__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: 82px;
  align-items: start;
}

.mgh-faq__intro {
  position: sticky;
  top: 120px;
}

.mgh-faq__intro h2 {
  font-size: clamp(2.2rem, 3.7vw, 3.55rem);
}

.mgh-faq__items {
  display: grid;
  gap: 10px;
}

.mgh-faq details {
  border: 1px solid rgba(21, 50, 75, 0.1);
  border-radius: 17px;
  background: var(--mgh-white);
  box-shadow: 0 6px 18px rgba(21, 50, 75, 0.04);
}

.mgh-faq summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 58px 22px 24px;
  color: var(--mgh-ink);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.mgh-faq summary span,
.mgh-faq summary span::after {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--mgh-red);
  content: "";
}

.mgh-faq summary span {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.mgh-faq summary span::after {
  transform: rotate(90deg);
  transition: transform var(--mgh-transition);
}

.mgh-faq details[open] summary span::after {
  transform: rotate(0deg);
}

.mgh-faq details[open] summary {
  color: var(--mgh-red);
}

.mgh-faq details p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 0.84rem;
  line-height: 1.66;
}

/* Final CTA */
.mgh-final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0 112px;
  text-align: center;
  background: var(--mgh-ink);
}

.mgh-final-cta::before {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 700px;
  height: 700px;
  border: 100px solid rgba(0, 159, 227, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.mgh-final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 870px;
}

.mgh-final-cta__inner > img {
  width: 90px;
  margin: 0 auto 28px;
  padding: 10px;
  border-radius: 27px;
  background: var(--mgh-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.mgh-final-cta .mgh-kicker {
  color: var(--mgh-yellow);
}

.mgh-final-cta h2,
.mgh-final-cta p {
  color: var(--mgh-white);
}

.mgh-final-cta p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.mgh-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 30px;
}

.mgh-final-cta__shapes i {
  position: absolute;
  z-index: 1;
}

.mgh-final-cta__shapes i:nth-child(1) {
  top: 20%;
  left: 7%;
  width: 28px;
  height: 28px;
  border: 5px solid var(--mgh-red);
  border-radius: 50%;
}

.mgh-final-cta__shapes i:nth-child(2) {
  right: 8%;
  bottom: 24%;
  width: 50px;
  height: 12px;
  border-radius: 99px;
  background: var(--mgh-yellow);
  transform: rotate(-30deg);
}

.mgh-final-cta__shapes i:nth-child(3) {
  top: 17%;
  right: 14%;
  width: 20px;
  height: 65px;
  border-radius: 99px;
  background: var(--mgh-blue);
  transform: rotate(35deg);
}

/* Footer */
.mgh-footer {
  padding: 74px 0 0;
  color: rgba(255, 255, 255, 0.75);
  background: #0c2234;
}

.mgh-footer__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) 0.55fr minmax(280px, 0.85fr);
  gap: 70px;
  padding-bottom: 60px;
}

.mgh-brand--footer {
  color: var(--mgh-white);
}

.mgh-brand--footer .mgh-brand__mark {
  width: 58px;
  height: 58px;
  padding: 5px;
  border-radius: 18px;
  background: var(--mgh-white);
}

.mgh-brand--footer .mgh-brand__text strong,
.mgh-brand--footer .mgh-brand__text small {
  color: var(--mgh-white);
}

.mgh-brand--footer .mgh-brand__text small {
  opacity: 0.65;
}

.mgh-footer__brand > p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.mgh-footer__title {
  margin: 4px 0 22px;
  color: var(--mgh-white);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.mgh-footer__links,
.mgh-footer__contact {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgh-footer__links a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
  text-decoration: none;
}

.mgh-footer__links a:hover {
  color: var(--mgh-yellow);
}

.mgh-footer__address {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
  line-height: 1.7;
}

.mgh-footer__address strong {
  color: var(--mgh-white);
}

.mgh-footer__contact {
  margin: 22px 0;
}

.mgh-footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  text-decoration: none;
}

.mgh-footer__contact svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mgh-yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mgh-footer .mgh-store-links {
  margin-top: 22px;
}

.mgh-footer__bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mgh-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
}

.mgh-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mgh-footer__bottom a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  text-decoration: none;
}

.mgh-footer__bottom a:hover {
  color: var(--mgh-white);
}

/* Modal and form */
.mgh-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: none;
  overflow-y: auto;
  padding: 28px;
  align-items: flex-start;
  justify-content: center;
}

.mgh-modal:target,
.mgh-modal.is-open {
  display: flex;
}

.mgh-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 38, 0.78);
  backdrop-filter: blur(10px);
}

.mgh-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: auto;
  padding: 44px;
  border-radius: 30px;
  background: var(--mgh-white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  animation: mgh-modal-in 260ms ease both;
}

.mgh-modal__close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--mgh-ink);
  background: var(--mgh-paper);
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
}

.mgh-modal__close:hover {
  color: var(--mgh-white);
  background: var(--mgh-red);
}

.mgh-modal__intro {
  max-width: 620px;
  margin-bottom: 28px;
}

.mgh-modal__intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.mgh-modal__intro p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.mgh-form__type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border-radius: 16px;
  background: var(--mgh-paper);
}

.mgh-form__type label {
  cursor: pointer;
}

.mgh-form__type input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.mgh-form__type span {
  display: block;
  padding: 12px 16px;
  border-radius: 11px;
  color: var(--mgh-muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
  transition: color var(--mgh-transition), background var(--mgh-transition), box-shadow var(--mgh-transition);
}

.mgh-form__type input:checked + span {
  color: var(--mgh-white);
  background: var(--mgh-ink);
  box-shadow: 0 8px 18px rgba(21, 50, 75, 0.15);
}

.mgh-form__type input:focus-visible + span {
  outline: 3px solid var(--mgh-yellow);
  outline-offset: 2px;
}

.mgh-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mgh-field {
  display: grid;
  gap: 7px;
}

.mgh-field--wide {
  grid-column: 1 / -1;
}

.mgh-field > span {
  color: var(--mgh-ink-2);
  font-size: 0.69rem;
  font-weight: 750;
}

.mgh-field input,
.mgh-field select,
.mgh-field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #cfdce3;
  border-radius: 12px;
  color: var(--mgh-ink);
  background: var(--mgh-white);
  font-size: 0.85rem;
  transition: border-color var(--mgh-transition), box-shadow var(--mgh-transition);
}

.mgh-field textarea {
  min-height: 116px;
  resize: vertical;
}

.mgh-field input:focus,
.mgh-field select:focus,
.mgh-field textarea:focus {
  border-color: var(--mgh-blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(0, 159, 227, 0.1);
}

.mgh-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 20px 0;
  color: var(--mgh-muted);
  font-size: 0.67rem;
  line-height: 1.5;
}

.mgh-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--mgh-red);
}

.mgh-consent a {
  color: var(--mgh-ink);
  font-weight: 700;
}

.mgh-form__note {
  margin: 10px 0 0;
  color: var(--mgh-muted);
  font-size: 0.65rem;
  text-align: center;
}

.mgh-form__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Mobile CTA */
.mgh-mobile-cta {
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(21, 50, 75, 0.95);
  box-shadow: 0 18px 50px rgba(7, 24, 38, 0.3);
  backdrop-filter: blur(16px);
}

.mgh-mobile-cta a {
  padding: 14px 12px;
  color: var(--mgh-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.mgh-mobile-cta a:first-child {
  background: var(--mgh-red);
}

/* Standard content pages */
.mgh-page-hero {
  padding: calc(var(--mgh-header-height) + 80px) 0 70px;
  background: var(--mgh-warm);
}

.mgh-page-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.mgh-content-page {
  min-height: 50vh;
}

.mgh-content-page__inner {
  max-width: 840px;
}

.mgh-entry h1,
.mgh-entry h2,
.mgh-entry h3,
.mgh-entry h4 {
  margin-top: 1.6em;
}

.mgh-entry h1:first-child,
.mgh-entry h2:first-child {
  margin-top: 0;
}

.mgh-entry__content > * {
  max-width: 100%;
}

.mgh-entry__content a {
  color: var(--mgh-red);
}

.mgh-entry__content img {
  height: auto;
  border-radius: 18px;
}

.mgh-error-page__inner {
  max-width: 760px;
  text-align: center;
}

.mgh-error-page__inner img {
  margin: 0 auto 24px;
}

.mgh-error-page__inner p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--mgh-reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mgh-pulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes mgh-spin {
  to { transform: rotate(360deg); }
}

@keyframes mgh-counter-spin {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes mgh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes mgh-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 1120px) {
  .mgh-nav__list,
  .mgh-nav .menu {
    gap: 18px;
  }

  .mgh-nav {
    gap: 17px;
  }

  .mgh-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgh-feature-card {
    min-height: 270px;
  }

  .mgh-story__grid {
    gap: 50px;
  }

  .mgh-contact__shell {
    padding: 46px;
  }

  .mgh-contact__options {
    grid-template-columns: 1fr;
  }

  .mgh-contact-card {
    min-height: 330px;
  }
}

@media (max-width: 980px) {
  :root {
    --mgh-header-height: 76px;
  }

  .mgh-nav-toggle {
    display: block;
  }

  .mgh-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid rgba(21, 50, 75, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--mgh-shadow-md);
  }

  .mgh-nav.is-open {
    display: flex;
  }

  .mgh-nav__list,
  .mgh-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .mgh-nav__list a,
  .mgh-nav .menu a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--mgh-line);
    font-size: 0.92rem;
  }

  .mgh-nav__list a::after,
  .mgh-nav .menu a::after {
    display: none;
  }

  .mgh-nav__cta {
    margin-top: 5px;
  }

  .mgh-nav-toggle[aria-expanded="true"] .mgh-nav-toggle__icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mgh-nav-toggle[aria-expanded="true"] .mgh-nav-toggle__icon i:nth-child(2) {
    opacity: 0;
  }

  .mgh-nav-toggle[aria-expanded="true"] .mgh-nav-toggle__icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mgh-hero {
    padding-top: calc(var(--mgh-header-height) + 62px);
  }

  .mgh-hero__grid {
    grid-template-columns: 1fr;
  }

  .mgh-hero__copy {
    max-width: 780px;
    text-align: center;
  }

  .mgh-hero__eyebrow,
  .mgh-hero__actions,
  .mgh-hero__trust {
    justify-content: center;
  }

  .mgh-hero__lead {
    margin-right: auto;
    margin-left: auto;
  }

  .mgh-hero__visual {
    min-height: 660px;
  }

  .mgh-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgh-proof__grid > div:nth-child(2) {
    border-right: 0;
  }

  .mgh-proof__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mgh-value-grid {
    grid-template-columns: 1fr;
  }

  .mgh-value-card {
    min-height: 260px;
  }

  .mgh-story__grid {
    grid-template-columns: 1fr;
  }

  .mgh-story__visual {
    width: min(100%, 510px);
    margin: 0 auto;
  }

  .mgh-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .mgh-timeline::before {
    display: none;
  }

  .mgh-feature-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mgh-check-list {
    max-width: 580px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .mgh-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgh-security__grid,
  .mgh-next-level__grid,
  .mgh-app-download__grid,
  .mgh-contact__shell,
  .mgh-faq__grid {
    grid-template-columns: 1fr;
  }

  .mgh-security__copy {
    max-width: 760px;
  }

  .mgh-security__panel {
    max-width: 720px;
  }

  .mgh-next-level__visual {
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
  }

  .mgh-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mgh-app-download__art {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .mgh-contact__shell {
    padding: 50px;
  }

  .mgh-contact__options {
    grid-template-columns: 1fr 1fr;
  }

  .mgh-contact-card {
    min-height: 390px;
  }

  .mgh-faq__intro {
    position: static;
    max-width: 720px;
  }

  .mgh-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mgh-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  .admin-bar .mgh-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  body.mgh-landing-page {
    padding-bottom: 74px;
  }

  body {
    font-size: 16px;
  }

  .mgh-container {
    width: min(calc(100% - 28px), var(--mgh-container));
  }

  .mgh-section {
    padding: 76px 0;
  }

  .mgh-brand__text small {
    display: none;
  }

  .mgh-brand__mark {
    width: 46px;
    height: 46px;
  }

  .mgh-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .mgh-hero__grid {
    gap: 36px;
  }

  .mgh-hero__eyebrow {
    max-width: 100%;
    padding: 8px 11px;
    font-size: 0.63rem;
    line-height: 1.4;
  }

  .mgh-hero__actions {
    display: grid;
  }

  .mgh-hero__actions .mgh-button {
    width: 100%;
  }

  .mgh-hero__trust {
    display: grid;
    justify-content: start;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }

  .mgh-hero__visual {
    min-height: 610px;
  }

  .mgh-phone-stage::before {
    width: 380px;
    height: 380px;
  }

  .mgh-phone-stage::after {
    width: 330px;
    height: 330px;
  }

  .mgh-phone {
    width: 270px;
  }

  .mgh-phone__screen {
    min-height: 541px;
  }

  .mgh-float-card--message {
    top: 100px;
    left: -8px;
    max-width: 175px;
  }

  .mgh-float-card--award {
    right: -8px;
    bottom: 64px;
    max-width: 190px;
  }

  .mgh-update-pill {
    right: 0;
  }

  .mgh-proof__grid {
    grid-template-columns: 1fr;
  }

  .mgh-proof__grid > div {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .mgh-proof__grid > div:last-child {
    border-bottom: 0;
  }

  .mgh-section-head {
    display: block;
    margin-bottom: 38px;
  }

  .mgh-section-head > p {
    margin-top: 18px;
  }

  .mgh-value-card {
    padding: 30px 26px;
  }

  .mgh-story__visual {
    min-height: 550px;
  }

  .mgh-story__image-card {
    left: 50%;
    width: min(330px, 85vw);
    transform: translateX(-50%) rotate(-3deg);
  }

  .mgh-story__stamp {
    right: 0;
    width: 190px;
  }

  .mgh-timeline {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mgh-timeline li {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    align-items: start;
    padding: 0;
    text-align: left;
  }

  .mgh-timeline__year {
    margin: 0;
  }

  .mgh-timeline h3 {
    margin-top: 4px;
  }

  .mgh-quote-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mgh-quote-band__icon {
    margin: 0 auto;
  }

  .mgh-feature-grid {
    grid-template-columns: 1fr;
  }

  .mgh-feature-card {
    min-height: auto;
  }

  .mgh-feature-highlight {
    gap: 38px;
    padding: 44px 24px;
  }

  .mgh-orbit {
    width: 230px;
    height: 230px;
  }

  .mgh-audience-grid {
    grid-template-columns: 1fr;
  }

  .mgh-security__grid {
    gap: 42px;
  }

  .mgh-security__panel {
    padding: 25px;
  }

  .mgh-security__badges {
    display: grid;
  }

  .mgh-next-level__visual {
    min-height: 500px;
    padding: 20px;
  }

  .mgh-stack-card--old {
    top: 34px;
    left: 18px;
    width: 195px;
  }

  .mgh-stack-card--new {
    right: 16px;
    bottom: 34px;
    width: min(290px, calc(100% - 32px));
  }

  .mgh-stack-arrow {
    top: 215px;
  }

  .mgh-steps {
    grid-template-columns: 1fr;
  }

  .mgh-steps li {
    min-height: 260px;
  }

  .mgh-onboarding__note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mgh-onboarding__note > svg {
    margin: 0 auto;
  }

  .mgh-app-download {
    padding: 74px 0;
  }

  .mgh-app-download__grid {
    gap: 32px;
  }

  .mgh-contact__shell {
    gap: 42px;
    padding: 30px 22px;
    border-radius: 28px;
  }

  .mgh-contact__options {
    grid-template-columns: 1fr;
  }

  .mgh-contact-card {
    min-height: 340px;
  }

  .mgh-faq__grid {
    gap: 42px;
  }

  .mgh-faq summary {
    padding-left: 18px;
    font-size: 0.84rem;
  }

  .mgh-final-cta {
    padding: 84px 0 92px;
  }

  .mgh-final-cta__actions {
    display: grid;
  }

  .mgh-final-cta__actions .mgh-button {
    width: 100%;
  }

  .mgh-footer {
    padding-bottom: 78px;
  }

  .mgh-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mgh-footer__brand {
    grid-column: auto;
  }

  .mgh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
  }

  .mgh-modal {
    padding: 12px;
  }

  .mgh-modal__dialog {
    padding: 34px 18px 24px;
    border-radius: 24px;
  }

  .mgh-modal__close {
    top: 12px;
    right: 12px;
  }

  .mgh-form__grid {
    grid-template-columns: 1fr;
  }

  .mgh-field--wide {
    grid-column: auto;
  }

  .mgh-mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .mgh-phone {
    width: 250px;
  }

  .mgh-phone__screen {
    min-height: 500px;
  }

  .mgh-phone-stage::before {
    width: 320px;
    height: 320px;
  }

  .mgh-phone-stage::after {
    width: 285px;
    height: 285px;
  }

  .mgh-float-card--message {
    left: -22px;
    transform: scale(0.88);
  }

  .mgh-float-card--award {
    right: -21px;
    transform: scale(0.86);
  }

  .mgh-store-links,
  .mgh-store-links a {
    width: 100%;
  }

  .mgh-store-links a {
    justify-content: center;
  }

  .mgh-form__type {
    grid-template-columns: 1fr;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .mgh-header,
  .mgh-mobile-cta,
  .mgh-modal,
  .mgh-final-cta,
  .mgh-footer,
  .mgh-hero__actions,
  .mgh-contact {
    display: none !important;
  }

  .mgh-section,
  .mgh-hero {
    min-height: auto;
    padding: 30px 0;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
