:root {
  --mn-bg: #f6faf9;
  --mn-paper: #ffffff;
  --mn-paper-tint: #eef8f4;
  --mn-ink: #102033;
  --mn-muted: #5c6b79;
  --mn-navy: #0d2846;
  --mn-blue: #255f9f;
  --mn-green: #35b983;
  --mn-green-dark: #14815b;
  --mn-amber: #f1b544;
  --mn-coral: #f26f5a;
  --mn-line: #d9e7e5;
  --mn-shadow: 0 24px 70px rgba(14, 49, 78, 0.12);
  --mn-shadow-soft: 0 12px 34px rgba(14, 49, 78, 0.08);
  --mn-radius: 8px;
  --mn-max: 1160px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.mn-home {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(13, 40, 70, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(53, 185, 131, 0.04) 1px, transparent 1px),
    var(--mn-bg);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--mn-ink);
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

body.mn-home *,
body.mn-home *::before,
body.mn-home *::after {
  box-sizing: border-box;
}

body.mn-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.mn-home a {
  color: inherit;
}

body.mn-home button {
  font: inherit;
}

body.mn-home :focus-visible {
  outline: 3px solid rgba(53, 185, 131, 0.35);
  outline-offset: 4px;
}

.mn-skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--mn-radius);
  background: var(--mn-navy);
  color: #fff;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

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

.mn-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 231, 229, 0.62);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px) saturate(1.18);
  box-shadow: 0 12px 30px rgba(13, 40, 70, 0.06);
}

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

.mn-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1220px, calc(100% - 36px));
  min-height: 78px;
  margin-inline: auto;
}

.mn-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--mn-navy);
  text-decoration: none;
}

.mn-brand__symbol {
  flex: 0 0 auto;
  width: 54px;
  height: auto;
  object-fit: contain;
}

.mn-brand__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  line-height: 1.18;
}

.mn-brand__name {
  color: var(--mn-navy);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.mn-brand__service {
  color: var(--mn-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.mn-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  color: #263d52;
  font-size: 14px;
  font-weight: 800;
}

.mn-nav a {
  min-height: 42px;
  border-radius: var(--mn-radius);
  padding: 9px 11px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mn-nav a:hover {
  background: var(--mn-paper-tint);
  color: var(--mn-green-dark);
}

.mn-nav a[aria-current="page"] {
  background: var(--mn-paper-tint);
  color: var(--mn-green-dark);
}

.mn-nav a.mn-nav__cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--mn-green), var(--mn-green-dark)) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(20, 129, 91, 0.24);
}

.mn-nav a.mn-nav__cta:hover,
.mn-nav a.mn-nav__cta[aria-current="page"] {
  background: linear-gradient(135deg, var(--mn-green), var(--mn-green-dark)) !important;
  color: #fff !important;
}

.mn-nav a.mn-nav__cta:hover {
  transform: translateY(-1px);
}

.mn-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--mn-navy);
  cursor: pointer;
  appearance: none;
  padding: 0;
}

.mn-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.mn-home .mn-nav-toggle:focus-visible {
  outline: none;
  outline-offset: 0;
}

body.mn-home .mn-nav-toggle:focus-visible span {
  background: var(--mn-green-dark);
}

.mn-main {
  overflow: hidden;
}

.mn-eyebrow {
  margin: 0 0 12px;
  color: var(--mn-green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mn-lead {
  color: #34495d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.95;
}

.mn-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.mn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--mn-radius);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.mn-button--primary {
  background: linear-gradient(135deg, var(--mn-green), var(--mn-green-dark));
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(20, 129, 91, 0.24);
}

.mn-button--primary:hover {
  box-shadow: 0 18px 42px rgba(20, 129, 91, 0.3);
}

.mn-button--secondary {
  border-color: rgba(13, 40, 70, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--mn-navy) !important;
  box-shadow: 0 10px 26px rgba(13, 40, 70, 0.08);
}

.mn-button--secondary:hover {
  border-color: rgba(53, 185, 131, 0.36);
  background: #fff;
}

.mn-hero {
  position: relative;
  display: grid;
  align-items: stretch;
  width: 100vw;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--mn-bg);
  isolation: isolate;
}

.mn-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(246, 250, 249, 0.92));
  content: "";
  pointer-events: none;
}

.mn-hero__media,
.mn-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mn-hero__media {
  z-index: -3;
  min-height: 100svh;
  min-height: 100dvh;
}

.mn-hero__slide {
  --mn-hero-position: center right;
  --mn-hero-position-mobile: 78% center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.mn-hero__slide.is-active {
  opacity: 1;
}

.mn-hero__slide--wide {
  --mn-hero-position: center right;
  --mn-hero-position-mobile: 82% center;
}

.mn-hero__slide--consulting {
  --mn-hero-position: center right;
  --mn-hero-position-mobile: 78% center;
}

.mn-hero__slide--workflow {
  --mn-hero-position: center right;
  --mn-hero-position-mobile: 76% center;
}

.mn-hero__media img {
  width: 100%;
  min-width: 100vw;
  max-width: none;
  height: 100% !important;
  min-height: 100svh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: var(--mn-hero-position);
}

.mn-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 250, 249, 0.97) 0%, rgba(246, 250, 249, 0.9) 35%, rgba(246, 250, 249, 0.42) 64%, rgba(246, 250, 249, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%);
}

.mn-hero__dots {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.mn-hero__dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 40, 70, 0.24);
  transition: width 0.22s ease, background 0.22s ease;
}

.mn-hero__dots span.is-active {
  width: 22px;
  background: var(--mn-green-dark);
}

.mn-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  min-height: 100svh;
  min-height: 100dvh;
  margin-inline: auto;
  padding: 108px 0 54px;
}

.mn-hero__copy {
  max-width: 620px;
  padding-top: 12px;
}

.mn-hero h1 {
  margin: 0;
  color: var(--mn-navy);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.mn-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.mn-hero__badges li {
  border: 1px solid rgba(53, 185, 131, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #214257;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
}

.mn-section {
  padding: 86px 0;
}

.mn-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.mn-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 40px;
  max-width: none;
}

.mn-section-head h2,
.mn-consult h2,
.mn-final-cta h2,
.mn-faq-layout h2 {
  margin: 0;
  color: var(--mn-navy);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.mn-section-head p:not(.mn-eyebrow),
.mn-consult p,
.mn-final-cta p,
.mn-faq-layout > div > p {
  margin: 14px 0 0;
  color: var(--mn-muted);
  font-weight: 600;
}

.mn-section--problems {
  padding-top: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
}

.mn-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mn-problem-grid article {
  min-height: 174px;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--mn-shadow-soft);
  padding: 22px;
}

.mn-problem-grid span,
.mn-reason-list span,
.mn-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  background: var(--mn-paper-tint);
  color: var(--mn-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.mn-problem-grid h3,
.mn-service-card h3,
.mn-reason-list h3,
.mn-flow h3,
.mn-case-grid h3 {
  margin: 16px 0 0;
  color: var(--mn-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.mn-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mn-service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: #fff;
  box-shadow: var(--mn-shadow-soft);
  padding: 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mn-service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  background: linear-gradient(135deg, rgba(238, 248, 244, 0.95), rgba(255, 250, 237, 0.7));
  content: "";
}

.mn-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mn-shadow);
}

.mn-service-card img {
  position: relative;
  width: 164px;
  height: 164px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.mn-service-card span {
  position: relative;
  color: var(--mn-green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mn-service-card p {
  position: relative;
  margin: 12px 0 0;
  color: var(--mn-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.mn-center-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.mn-section--reason {
  background: var(--mn-navy);
  color: #fff;
}

.mn-section--reason .mn-eyebrow {
  color: #7ee2b6;
}

.mn-section--reason .mn-section-head h2,
.mn-section--reason .mn-section-head p:not(.mn-eyebrow) {
  color: #fff;
}

.mn-section--reason .mn-section-head--reason {
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.9fr);
  align-items: center;
  max-width: none;
  margin-bottom: 0;
}

.mn-reason-copy {
  min-width: 0;
}

.mn-reason-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--mn-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.mn-reason-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.mn-reason-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mn-reason-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mn-radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.mn-reason-list article > div {
  min-width: 0;
}

.mn-reason-list span {
  min-width: 48px;
  height: 48px;
  background: rgba(126, 226, 182, 0.12);
  color: #7ee2b6;
}

.mn-reason-list h3 {
  margin-top: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.mn-section--reason .mn-section-head .mn-reason-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.mn-consult {
  padding: 82px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 244, 0.82)),
    #fff;
}

.mn-consult__inner {
  display: grid;
  gap: 26px;
  max-width: 900px;
}

.mn-consult__head {
  max-width: 720px;
}

.mn-consult__steps {
  display: grid;
  gap: 14px;
}

.mn-consult__steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 20px;
  align-items: start;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--mn-shadow-soft);
  padding: 22px 24px;
}

.mn-consult__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  grid-row: span 2;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 185, 131, 0.16), rgba(255, 255, 255, 0.86));
  color: var(--mn-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.mn-consult__steps h3 {
  margin: 0;
  color: var(--mn-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.mn-consult__steps p {
  margin: 0;
  color: var(--mn-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.mn-consult__action {
  display: flex;
  justify-content: center;
}

.mn-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mn-flow article {
  position: relative;
  min-height: 238px;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--mn-shadow-soft);
  padding: 26px;
}

.mn-flow article::after {
  position: absolute;
  top: 38px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: var(--mn-green);
  content: "";
}

.mn-flow article:last-child::after {
  display: none;
}

.mn-flow p {
  margin: 12px 0 0;
  color: var(--mn-muted);
  font-weight: 600;
}

.mn-section--case {
  background: linear-gradient(180deg, rgba(238, 248, 244, 0.78), rgba(255, 255, 255, 0.88));
}

.mn-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mn-case-grid article {
  min-height: 284px;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: #fff;
  box-shadow: var(--mn-shadow-soft);
  padding: 26px;
}

.mn-case-grid span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff7e3;
  color: #9a6a13;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.mn-case-grid p {
  margin: 12px 0 0;
  color: var(--mn-muted);
  font-weight: 600;
}

.mn-case-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mn-case-grid li {
  border-radius: 999px;
  background: var(--mn-paper-tint);
  color: var(--mn-green-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 9px;
}

.mn-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.mn-faq-layout .mn-button {
  margin-top: 24px;
}

.mn-faq-list {
  display: grid;
  gap: 12px;
}

.mn-faq-list details {
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(13, 40, 70, 0.05);
  padding: 0;
}

.mn-faq-list summary {
  cursor: pointer;
  color: var(--mn-navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
  padding: 20px 24px;
}

.mn-faq-list p {
  margin: 0;
  border-top: 1px solid var(--mn-line);
  color: var(--mn-muted);
  font-weight: 600;
  padding: 0 24px 20px;
}

.mn-section--news {
  padding-top: 66px;
  background: #fff;
}

.mn-news-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 231, 229, 0.92);
  border-radius: var(--mn-radius);
  background: var(--mn-line);
  box-shadow: var(--mn-shadow-soft);
}

.mn-news-list a {
  display: grid;
  grid-template-columns: 116px 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 80px;
  background: #fff;
  padding: 18px 22px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mn-news-list a:hover {
  background: var(--mn-paper-tint);
}

.mn-news-list time {
  color: var(--mn-muted);
  font-size: 13px;
  font-weight: 800;
}

.mn-news-list span {
  border-radius: 999px;
  background: var(--mn-paper-tint);
  color: var(--mn-green-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 10px;
  text-align: center;
}

.mn-news-list strong {
  color: var(--mn-navy);
  font-size: 16px;
  line-height: 1.6;
}

.mn-final-cta {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(13, 40, 70, 0.96), rgba(22, 78, 92, 0.92)),
    var(--mn-navy);
  color: #fff;
  text-align: center;
}

.mn-final-cta .mn-container {
  max-width: 820px;
}

.mn-final-cta .mn-eyebrow {
  color: #7ee2b6;
}

.mn-final-cta h2 {
  color: #fff;
  font-size: 42px;
}

.mn-final-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.mn-final-cta .mn-button-row {
  justify-content: center;
  margin-top: 28px;
}

.mn-footer {
  background: #081c31;
  color: rgba(255, 255, 255, 0.78);
  padding: 32px 0;
  text-align: center;
}

.mn-footer a {
  display: inline-flex;
  width: fit-content;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.mn-footer__simple {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.mn-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.mn-mobile-cta {
  display: none;
}

.mn-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1080px) {
  .mn-hero__inner {
    width: min(1040px, calc(100% - 40px));
  }

  .mn-hero__copy {
    max-width: 760px;
  }

  .mn-service-grid,
  .mn-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mn-nav-open .mn-header {
    z-index: 1000;
  }

  .mn-header__inner {
    min-height: 68px;
  }

  .mn-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .mn-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    z-index: 120;
    display: grid;
    justify-content: stretch;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border: 1px solid var(--mn-line);
    border-radius: var(--mn-radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--mn-shadow);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .admin-bar .mn-nav {
    top: 114px;
  }

  .mn-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px;
  }

  .mn-nav__cta {
    margin-left: 0;
    justify-content: center;
  }

  .mn-nav-open .mn-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mn-nav-open .mn-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mn-nav-open .mn-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mn-nav-open .mn-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mn-hero__inner {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .mn-hero__shade {
    background:
      linear-gradient(90deg, rgba(246, 250, 249, 0.98) 0%, rgba(246, 250, 249, 0.92) 46%, rgba(246, 250, 249, 0.5) 76%, rgba(246, 250, 249, 0.22) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 42%);
  }

  .mn-hero h1 {
    font-size: 44px;
  }

  .mn-section-head--split,
  .mn-faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mn-section--reason .mn-section-head--reason {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mn-flow,
  .mn-case-grid {
    grid-template-columns: 1fr;
  }

  .mn-flow article::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 36px;
    width: 2px;
    height: 36px;
  }

  .mn-news-list a {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .mn-news-list strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.mn-home {
    max-width: 100vw;
    padding-bottom: 74px;
    font-size: 15px;
  }

  .mn-header,
  .mn-main,
  .mn-hero,
  .mn-section,
  .mn-consult,
  .mn-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mn-nav-open .mn-header {
    overflow: visible;
  }

  .mn-container,
  .mn-hero__inner {
    width: calc(100vw - 44px);
    max-width: var(--mn-max);
  }

  .mn-header__inner {
    position: relative;
    justify-content: flex-start;
    width: 100%;
    max-width: 100vw;
    padding-inline: 14px;
  }

  .mn-hero__copy,
  .mn-section-head,
  .mn-section-head > *,
  .mn-consult__inner,
  .mn-faq-layout,
  .mn-final-cta .mn-container {
    min-width: 0;
  }

  .mn-hero__copy,
  .mn-lead,
  .mn-section-head p,
  .mn-section-head h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .mn-hero__copy,
  .mn-hero__badges,
  .mn-button-row {
    width: 100%;
    max-width: calc(100vw - 44px);
  }

  .mn-brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 9px;
  }

  .mn-brand__symbol {
    width: 42px;
  }

  .mn-brand__copy {
    max-width: calc(100vw - 128px);
  }

  .mn-brand__name {
    font-size: 17px;
  }

  .mn-brand__service {
    font-size: 10px;
    line-height: 1.25;
    white-space: normal;
  }

  .mn-nav-toggle {
    position: static;
    z-index: 130;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 0 44px;
    margin-left: 8px;
    box-shadow: none;
  }

  .mn-nav-toggle span {
    margin: 0;
  }

  .mn-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .mn-hero__media img {
    object-position: var(--mn-hero-position-mobile);
  }

  .mn-hero__shade {
    background:
      linear-gradient(90deg, rgba(246, 250, 249, 0.99) 0%, rgba(246, 250, 249, 0.94) 64%, rgba(246, 250, 249, 0.62) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.06) 48%);
  }

  .mn-hero__inner {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 98px 0 82px;
  }

  .mn-hero__dots {
    bottom: 34px;
    gap: 7px;
  }

  .mn-hero__dots span {
    width: 7px;
    height: 7px;
  }

  .mn-hero__dots span.is-active {
    width: 20px;
  }

  .mn-hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .mn-lead {
    font-size: 16px;
    line-height: 1.9;
    max-width: 350px;
  }

  .mn-hero .mn-lead {
    margin: 0 0 30px;
  }

  .mn-hero__copy,
  .mn-hero__copy * {
    white-space: normal !important;
  }

  .mn-button-row,
  .mn-center-action {
    align-items: stretch;
  }

  .mn-hero .mn-button-row {
    gap: 14px;
  }

  .mn-button {
    width: 100%;
    min-height: 50px;
  }

  .mn-hero__badges li {
    max-width: 100%;
    font-size: 12px;
  }

  .mn-hero__badges {
    display: none;
  }

  .mn-hero__badges li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    text-align: center;
  }

  .mn-hero__badges li:nth-child(3) {
    grid-column: auto;
  }

  .mn-service-grid,
  .mn-problem-grid {
    grid-template-columns: 1fr;
  }

  .mn-section {
    padding: 62px 0;
  }

  .mn-section-head h2,
  .mn-consult h2,
  .mn-faq-layout h2 {
    font-size: 29px;
  }

  .mn-final-cta h2 {
    font-size: 34px;
  }

  .mn-problem-grid article {
    min-height: auto;
  }

  .mn-service-card {
    min-height: auto;
  }

  .mn-service-card img {
    width: 142px;
    height: 142px;
  }

  .mn-reason-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mn-consult__inner {
    gap: 22px;
  }

  .mn-consult__steps article {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .mn-consult__steps span {
    grid-row: auto;
  }

  .mn-news-list a {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mn-news-list span {
    width: fit-content;
  }

  .mn-mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: var(--mn-radius);
    background: linear-gradient(135deg, var(--mn-green), var(--mn-green-dark));
    color: #fff !important;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(20, 129, 91, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mn-scrolled .mn-mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.mn-home *,
  body.mn-home *::before,
  body.mn-home *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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