:root {
  --mk-navy: #0b2b59;
  --mk-blue: #0c58b5;
  --mk-blue-2: #1675dc;
  --mk-sky: #eaf5ff;
  --mk-sky-2: #f5faff;
  --mk-orange: #f47b12;
  --mk-orange-dark: #d95d00;
  --mk-yellow: #fff2a8;
  --mk-green: #138a55;
  --mk-text: #17304d;
  --mk-muted: #5d6d7e;
  --mk-line: #dce7f1;
  --mk-white: #fff;
  --mk-shadow: 0 16px 44px rgba(10, 43, 89, 0.12);
  --mk-radius: 18px;
}

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

body.mk-page {
  margin: 0;
  color: var(--mk-text);
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

.mk-page *,
.mk-page *::before,
.mk-page *::after {
  box-sizing: border-box;
}

.mk-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mk-page a {
  color: inherit;
  text-decoration: none;
}

.mk-page button,
.mk-page input,
.mk-page textarea,
.mk-page select {
  font: inherit;
}

.mk-page em {
  font-style: normal;
}

.mk-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 18px;
  color: #fff !important;
  background: var(--mk-navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.mk-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.mk-container--narrow {
  width: min(940px, calc(100% - 40px));
}

.mk-section {
  position: relative;
  padding: 104px 0;
}

.mk-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.mk-heading > span,
.mk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--mk-blue);
  font-family: Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mk-heading > span::before,
.mk-heading > span::after {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.mk-heading h2 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0.02em;
}

.mk-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--mk-muted);
  font-size: 1.02rem;
}

.mk-heading--light > span,
.mk-heading--light h2,
.mk-heading--light p {
  color: #fff;
}

.mk-heading--light > span {
  color: #8cc6ff;
}

.mk-btn {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  overflow: hidden;
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(14, 55, 100, 0.18);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mk-btn::after {
  margin-left: 5px;
  content: "›";
  font-size: 1.7em;
  line-height: 0;
}

.mk-btn:hover,
.mk-btn:focus-visible {
  box-shadow: 0 14px 28px rgba(14, 55, 100, 0.25);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.mk-btn:focus-visible,
.mk-page button:focus-visible,
.mk-page input:focus-visible,
.mk-page textarea:focus-visible,
.mk-page a:focus-visible {
  outline: 3px solid #ffce32;
  outline-offset: 3px;
}

.mk-btn--orange {
  background: linear-gradient(135deg, #ff921f, var(--mk-orange-dark));
}

.mk-btn--tel {
  background: linear-gradient(135deg, #0a63c7, var(--mk-navy));
}

.mk-btn--large {
  min-width: 270px;
  min-height: 70px;
  flex-direction: column;
  gap: 2px;
  padding: 11px 28px 12px;
  font-size: 1.08rem;
}

.mk-btn--large::after {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.mk-btn small {
  font-size: 0.7rem;
  font-weight: 600;
}

/* Header */
.mk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(12, 88, 181, 0.12);
  box-shadow: 0 4px 18px rgba(11, 43, 89, 0.07);
  backdrop-filter: blur(14px);
}

.mk-header__inner {
  display: flex;
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.mk-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--mk-navy) !important;
  line-height: 1.15;
}

.mk-brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--mk-blue-2), var(--mk-navy));
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 900;
}

.mk-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mk-brand__text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.mk-brand__text small {
  color: var(--mk-muted);
  font-size: 0.62rem;
  font-weight: 600;
}

.mk-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
}

.mk-nav a {
  position: relative;
  color: #29435f;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.mk-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--mk-orange);
  transition: left 0.2s, right 0.2s;
}

.mk-nav a:hover::after {
  right: 0;
  left: 0;
}

.mk-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.mk-header__tel {
  display: flex;
  flex-direction: column;
  color: var(--mk-navy) !important;
  line-height: 1.12;
  text-align: right;
}

.mk-header__tel small {
  color: var(--mk-orange-dark);
  font-size: 0.65rem;
  font-weight: 700;
}

.mk-header__tel strong {
  font-family: Roboto, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.mk-header__mail {
  min-height: 48px;
  padding: 10px 22px;
  font-size: 0.86rem;
}

.mk-menu-button,
.mk-drawer {
  display: none;
}

/* Hero */
.mk-hero {
  position: relative;
  min-height: 704px;
  overflow: hidden;
  isolation: isolate;
  background: #edf7ff;
}

.mk-hero__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../img/monooki-hero-bg.webp") 58% center / cover no-repeat;
}

.mk-hero__backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 37%, rgba(255, 255, 255, 0.64) 56%, rgba(237, 247, 255, 0.12) 80%);
}

.mk-hero__inner {
  position: relative;
  display: grid;
  min-height: 606px;
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  padding-top: 50px;
  padding-bottom: 34px;
}

.mk-hero__content {
  position: relative;
  z-index: 2;
  padding-left: 4px;
}

.mk-hero__area {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 20px;
  color: #fff;
  background: var(--mk-blue);
  border-radius: 4px;
  box-shadow: 6px 6px 0 #a6d3ff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mk-hero__title {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(2.4rem, 4.3vw, 4rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: 0 2px 0 #fff, 0 0 20px #fff;
}

.mk-hero__title span {
  display: inline-block;
  color: var(--mk-orange-dark);
  font-size: 1.28em;
}

.mk-hero__title em {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--mk-blue);
}

.mk-hero__title em::after {
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 2px;
  left: -2px;
  height: 15px;
  content: "";
  background: var(--mk-yellow);
  transform: rotate(-1deg);
}

.mk-hero__lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #29435f;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.mk-hero__lead strong {
  color: var(--mk-navy);
  font-weight: 800;
}

.mk-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.mk-hero__checks li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 9px;
  color: var(--mk-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #b8d8f7;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.mk-hero__checks li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  content: "✓";
  color: #fff;
  background: var(--mk-green);
  border-radius: 50%;
  font-size: 0.7rem;
}

.mk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mk-hero__note {
  margin: 9px 0 0;
  color: var(--mk-muted);
  font-size: 0.72rem;
}

.mk-hero__staff {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 530px;
}

.mk-hero__staff img {
  position: absolute;
  right: -44px;
  bottom: -1px;
  width: min(430px, 100%);
  max-height: 540px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 16px 18px rgba(11, 43, 89, 0.22));
}

.mk-hero__speech {
  position: absolute;
  z-index: 2;
  top: 52px;
  left: -12px;
  padding: 14px 20px;
  color: var(--mk-navy);
  background: #fff;
  border: 3px solid var(--mk-blue);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(11, 43, 89, 0.16);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
  transform: rotate(-2deg);
}

.mk-hero__speech::after {
  position: absolute;
  right: 28px;
  bottom: -17px;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  border-right: 3px solid var(--mk-blue);
  border-bottom: 3px solid var(--mk-blue);
  transform: rotate(45deg);
}

.mk-hero__trust {
  position: relative;
  z-index: 3;
  min-height: 98px;
  color: #fff;
  background: linear-gradient(90deg, var(--mk-navy), var(--mk-blue));
}

.mk-hero__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mk-hero__trust-grid > div {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mk-hero__trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mk-hero__trust-grid strong {
  color: #82c5ff;
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.mk-hero__trust-grid span {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

/* Supplied responsive main visual */
.mk-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mk-hero--banner {
  min-height: 0;
  background: #eef8ff;
}

.mk-hero-banner {
  position: relative;
  width: min(100%, 1784px);
  margin: 0 auto;
}

.mk-hero-banner picture,
.mk-hero-banner img {
  display: block;
  width: 100%;
}

.mk-hero-banner img {
  height: auto;
}

.mk-hero-banner__tel {
  position: absolute;
  z-index: 2;
  right: 2.5%;
  bottom: 4.5%;
  width: 34.5%;
  height: 20%;
  border-radius: 22px;
}

.mk-hero-banner__tel:focus-visible {
  outline: 4px solid #ffce32;
  outline-offset: -5px;
}

@media (max-width: 767px) {
  .mk-hero-banner {
    width: min(100%, 887px);
  }

  .mk-hero-banner__tel {
    right: auto;
    bottom: 1.4%;
    left: 3.5%;
    width: 93%;
    height: 12.5%;
    border-radius: 18px;
  }
}

/* Quick CTA */
.mk-quick-cta {
  padding: 54px 0;
  background: #fff;
}

.mk-quick-cta__inner {
  display: grid;
  align-items: center;
  gap: 36px;
  grid-template-columns: 1fr auto;
  padding: 32px 38px;
  background: linear-gradient(135deg, #f6fbff, #e4f2ff);
  border: 2px solid #a8d3fa;
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
}

.mk-quick-cta__copy h2 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
}

.mk-quick-cta__copy p {
  margin: 8px 0 0;
  color: var(--mk-muted);
}

.mk-quick-cta__actions {
  display: grid;
  min-width: 260px;
  gap: 10px;
}

/* Worry */
.mk-worry {
  background: var(--mk-sky-2);
}

.mk-worry::before,
.mk-worry::after {
  position: absolute;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
}

.mk-worry::before {
  top: 40px;
  left: -120px;
  background: rgba(34, 133, 225, 0.07);
}

.mk-worry::after {
  right: -120px;
  bottom: 30px;
  background: rgba(244, 123, 18, 0.06);
}

.mk-worry__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.mk-worry__grid li {
  position: relative;
  min-height: 186px;
  padding: 28px 26px 24px 62px;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(11, 43, 89, 0.07);
  grid-column: span 2;
}

.mk-worry__grid li:nth-child(4) {
  grid-column: 2 / span 2;
}

.mk-worry__grid li:nth-child(5) {
  grid-column: 4 / span 2;
}

.mk-worry__grid li > span {
  position: absolute;
  top: 28px;
  left: 23px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--mk-orange);
  border-radius: 50%;
  font-weight: 900;
}

.mk-worry__grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mk-navy);
  font-size: 1.12rem;
}

.mk-worry__grid p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.91rem;
}

/* Answer */
.mk-answer {
  padding: 105px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 56%, #edf7ff 56%, #dbefff 100%);
}

.mk-answer__inner {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: 1.06fr 0.94fr;
}

.mk-answer__copy h2 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.45;
}

.mk-answer__copy h2 em {
  color: var(--mk-orange-dark);
  background: linear-gradient(transparent 68%, var(--mk-yellow) 68%);
}

.mk-answer__copy > p {
  margin: 22px 0 0;
  color: var(--mk-muted);
}

.mk-answer__summary {
  margin: 28px 0 0;
  border-top: 1px solid #cbdce9;
}

.mk-answer__summary > div {
  display: grid;
  padding: 15px 4px;
  border-bottom: 1px solid #cbdce9;
  grid-template-columns: 122px 1fr;
  gap: 20px;
}

.mk-answer__summary dt {
  color: var(--mk-blue);
  font-weight: 900;
}

.mk-answer__summary dd {
  margin: 0;
  color: var(--mk-navy);
  font-weight: 700;
}

.mk-answer__staff {
  position: relative;
  min-height: 500px;
}

.mk-answer__staff img {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 610px;
  max-width: 120%;
  filter: drop-shadow(0 18px 18px rgba(11, 43, 89, 0.16));
}

.mk-answer__staff p {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -18px;
  left: 0;
  margin: 0;
  padding: 20px 26px;
  color: #fff;
  background: var(--mk-navy);
  border-radius: 12px;
  box-shadow: var(--mk-shadow);
  text-align: center;
}

.mk-answer__staff p strong {
  color: #ffdd69;
}

/* Service */
.mk-service {
  background: #fff;
}

.mk-service__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.mk-service-card {
  position: relative;
  min-height: 330px;
  padding: 36px 25px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #bddaf3;
  border-radius: var(--mk-radius);
  box-shadow: 0 12px 30px rgba(11, 43, 89, 0.08);
}

.mk-service-card::after {
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 130px;
  height: 130px;
  content: "";
  background: var(--mk-sky);
  border-radius: 50%;
}

.mk-service-card__number {
  position: absolute;
  top: 14px;
  right: 20px;
  color: #d7ebfc;
  font-family: Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.mk-service-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--mk-blue-2), var(--mk-navy));
  border-radius: 18px 18px 18px 4px;
  box-shadow: 7px 7px 0 #d9ecfc;
  font-size: 1.65rem;
  font-weight: 900;
}

.mk-service-card h3 {
  margin: 0 0 12px;
  color: var(--mk-navy);
  font-size: 1.22rem;
  font-weight: 900;
}

.mk-service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.mk-items {
  margin-top: 38px;
  padding: 34px 38px;
  background: var(--mk-sky-2);
  border: 1px solid #cce3f7;
  border-radius: var(--mk-radius);
}

.mk-items h3 {
  margin: 0 0 18px;
  color: var(--mk-navy);
  font-size: 1.25rem;
  text-align: center;
}

.mk-items ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-items li {
  padding: 7px 16px;
  color: var(--mk-navy);
  background: #fff;
  border: 1px solid #a9cce9;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.mk-items p {
  margin: 18px 0 0;
  color: var(--mk-muted);
  font-size: 0.78rem;
  text-align: center;
}

/* Reason */
.mk-reason {
  overflow: hidden;
  background: linear-gradient(145deg, #071f42, #0c58b5);
}

.mk-reason::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  content: "";
  border: 100px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.mk-reason__grid {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.mk-reason__grid article {
  min-height: 280px;
  padding: 30px 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  grid-column: span 2;
}

.mk-reason__grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.mk-reason__grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.mk-reason__grid b {
  color: #7ec3ff;
  font-family: Roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.mk-reason__grid h3 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.48;
}

.mk-reason__grid p {
  margin: 0;
  color: #d8e8f7;
  font-size: 0.88rem;
}

/* Before / after */
.mk-before-after {
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 117, 220, 0.1), transparent 26%),
    var(--mk-sky-2);
}

.mk-ba-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5e5f3;
  border-radius: 24px;
  box-shadow: var(--mk-shadow);
}

.mk-ba-card__photos {
  display: grid;
  align-items: center;
  gap: 18px;
  padding: 24px;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
}

.mk-ba-card__photos figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #edf4fa;
  border-radius: 16px;
}

.mk-ba-card__photos img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.mk-ba-card__photos figcaption {
  min-height: 70px;
  padding: 17px 20px;
  color: var(--mk-text);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.mk-ba-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 15px;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(7, 31, 66, 0.2);
  font-family: Roboto, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mk-ba-card__label--before {
  background: var(--mk-navy);
}

.mk-ba-card__label--after {
  background: var(--mk-green);
}

.mk-ba-card__arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--mk-orange);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(244, 123, 18, 0.25);
  font-size: 2.6rem;
  font-style: normal;
  line-height: 1;
}

.mk-ba-card__detail {
  display: grid;
  border-top: 1px solid var(--mk-line);
  background: #fff;
  grid-template-columns: repeat(3, 1fr);
}

.mk-ba-card__detail div {
  min-width: 0;
  padding: 22px 26px;
}

.mk-ba-card__detail div + div {
  border-left: 1px solid var(--mk-line);
}

.mk-ba-card__detail span,
.mk-ba-card__detail strong {
  display: block;
}

.mk-ba-card__detail span {
  margin-bottom: 4px;
  color: var(--mk-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.mk-ba-card__detail strong {
  color: var(--mk-navy);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Collection cases */
.mk-works-gallery {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 117, 220, 0.22), transparent 48%),
    linear-gradient(145deg, #061a38, #0b376e);
}

.mk-works-gallery::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  content: "";
  border: 110px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.mk-works-gallery__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-work-photo-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 12, 31, 0.22);
}

.mk-work-photo-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dce9f5;
}

.mk-work-photo-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(transparent, rgba(4, 22, 47, 0.52));
  pointer-events: none;
}

.mk-work-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mk-work-photo-card:hover img {
  transform: scale(1.035);
}

.mk-work-photo-card figure span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 10px;
  color: #fff;
  background: rgba(7, 31, 66, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}

.mk-work-photo-card > div {
  padding: 20px 19px 22px;
}

.mk-work-photo-card h3 {
  margin: 0 0 9px;
  color: var(--mk-navy);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.5;
}

.mk-work-photo-card p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

/* Dismantling cases */
.mk-dismantling {
  background: #fff;
}

.mk-dismantling__steps {
  display: grid;
  gap: 18px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
  counter-reset: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-dismantling__steps li {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(10, 43, 89, 0.09);
}

.mk-dismantling__steps figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e7eef5;
}

.mk-dismantling__steps img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mk-dismantling__steps figure b {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  color: #fff;
  background: var(--mk-blue);
  border-radius: 999px;
  font-family: Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mk-dismantling__steps li > div {
  padding: 20px 18px 22px;
}

.mk-dismantling__steps h3 {
  margin: 0 0 8px;
  color: var(--mk-navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.mk-dismantling__steps p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.mk-dismantling__gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-dismantling__gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e5edf5;
  border-radius: 14px;
}

.mk-dismantling__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mk-dismantling__gallery figure:hover img {
  transform: scale(1.035);
}

.mk-dismantling__gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 16px 14px;
  color: #fff;
  background: linear-gradient(transparent, rgba(4, 22, 47, 0.88));
}

.mk-dismantling__gallery figcaption strong,
.mk-dismantling__gallery figcaption span {
  display: block;
}

.mk-dismantling__gallery figcaption strong {
  font-size: 0.88rem;
}

.mk-dismantling__gallery figcaption span {
  margin-top: 2px;
  color: #e1edf7;
  font-size: 0.68rem;
}

.mk-dismantling__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #fff8e9, #fff);
  border: 1px solid #f6d59a;
  border-radius: 16px;
}

.mk-dismantling__cta p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.88rem;
}

.mk-dismantling__cta strong {
  color: var(--mk-navy);
  font-size: 1.03rem;
}

.mk-dismantling__cta .mk-btn {
  flex: 0 0 auto;
}

/* Useful guide */
.mk-guide {
  background:
    linear-gradient(180deg, rgba(234, 245, 255, 0.5), transparent 34%),
    var(--mk-sky-2);
}

.mk-guide__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-guide-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e7f3;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(10, 43, 89, 0.09);
}

.mk-guide-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.mk-guide-card:first-child > img {
  object-position: center 35%;
}

.mk-guide-card > div {
  padding: 25px 24px 28px;
}

.mk-guide-card > div > span {
  color: var(--mk-blue);
  font-family: Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mk-guide-card h3 {
  margin: 7px 0 13px;
  color: var(--mk-navy);
  font-size: 1.17rem;
  font-weight: 900;
  line-height: 1.55;
}

.mk-guide-card p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.82rem;
}

.mk-guide-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 16px 17px;
  background: var(--mk-sky-2);
  border-radius: 10px;
  list-style: none;
}

.mk-guide-card li {
  position: relative;
  padding-left: 19px;
  color: var(--mk-text);
  font-size: 0.78rem;
  font-weight: 700;
}

.mk-guide-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--mk-green);
  content: "✓";
  font-weight: 900;
}

/* Cases */
.mk-case {
  background: var(--mk-sky-2);
}

.mk-case__visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--mk-shadow);
}

.mk-case__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-case__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 31, 66, 0.84), rgba(7, 31, 66, 0.05) 65%);
}

.mk-case__visual-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 6%;
  width: min(470px, 50%);
  color: #fff;
  transform: translateY(-50%);
}

.mk-case__visual-copy > span,
.mk-people__lead div > span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  color: #fff;
  background: var(--mk-orange);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mk-case__visual-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.48;
}

.mk-case__visual-copy p {
  margin: 16px 0 0;
  color: #e8f4ff;
}

.mk-case__grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.mk-case__grid article {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 9px 24px rgba(11, 43, 89, 0.08);
}

.mk-case__tag {
  display: inline-block;
  padding: 5px 12px;
  color: var(--mk-blue);
  background: var(--mk-sky);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mk-case__grid h3 {
  margin: 13px 0 16px;
  color: var(--mk-navy);
  font-size: 1.14rem;
}

.mk-case__grid dl {
  margin: 0;
}

.mk-case__grid dl > div {
  padding: 11px 0;
  border-top: 1px solid var(--mk-line);
}

.mk-case__grid dt {
  color: var(--mk-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.mk-case__grid dd {
  margin: 3px 0 0;
  color: var(--mk-text);
  font-size: 0.85rem;
  font-weight: 600;
}

.mk-price-promise {
  display: grid;
  align-items: center;
  gap: 30px;
  margin-top: 28px;
  padding: 28px 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-navy), var(--mk-blue));
  border-radius: 18px;
  box-shadow: var(--mk-shadow);
  grid-template-columns: auto 1fr auto;
}

.mk-price-promise > div {
  display: grid;
  min-width: 190px;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 8px;
}

.mk-price-promise > div span {
  font-weight: 800;
}

.mk-price-promise > div strong {
  color: #ffda57;
  font-family: Roboto, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.mk-price-promise > div small {
  grid-column: 1 / -1;
  color: #cfe6fb;
  font-size: 0.7rem;
}

.mk-price-promise > p {
  margin: 0;
  color: #e5f2ff;
  font-size: 0.9rem;
}

.mk-price-promise > p strong {
  color: #fff;
  font-size: 1.08rem;
}

/* People */
.mk-people {
  background: #fff;
}

.mk-people__lead {
  display: grid;
  min-height: 400px;
  overflow: hidden;
  background: var(--mk-sky-2);
  border: 1px solid var(--mk-line);
  border-radius: 22px;
  box-shadow: var(--mk-shadow);
  grid-template-columns: 1.08fr 0.92fr;
}

.mk-people__lead > img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

.mk-people__lead > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 46px;
}

.mk-people__lead h3 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.55;
}

.mk-people__lead p {
  margin: 18px 0 0;
  color: var(--mk-muted);
}

.mk-staff-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  grid-template-columns: repeat(7, 1fr);
}

.mk-staff-list figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 12px;
}

.mk-staff-list img {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
}

.mk-staff-list figcaption {
  min-height: 76px;
  padding: 12px 7px;
  color: var(--mk-navy);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* Flow */
.mk-flow {
  background: linear-gradient(#f4faff, #fff);
}

.mk-flow__list {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.mk-flow__list::before {
  position: absolute;
  z-index: 0;
  top: 43px;
  right: 9%;
  left: 9%;
  height: 3px;
  content: "";
  background: #aacfed;
}

.mk-flow__list li {
  position: relative;
  z-index: 1;
  padding: 0 9px 26px;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(11, 43, 89, 0.07);
}

.mk-flow__list b {
  display: grid;
  width: 68px;
  height: 68px;
  margin: -1px auto 18px;
  place-items: center;
  color: #fff;
  background: var(--mk-blue);
  border: 7px solid var(--mk-sky);
  border-radius: 50%;
  font-family: Roboto, sans-serif;
  font-size: 1.3rem;
  transform: translateY(-1px);
}

.mk-flow__list li > div > span {
  color: var(--mk-orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.mk-flow__list h3 {
  min-height: 52px;
  margin: 5px 0 8px;
  color: var(--mk-navy);
  font-size: 1rem;
  line-height: 1.5;
}

.mk-flow__list p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 0.78rem;
  text-align: left;
}

/* Area */
.mk-area {
  overflow: hidden;
  background: #fff;
}

.mk-area::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  content: "";
  background: var(--mk-sky-2);
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}

.mk-area__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1fr 0.75fr;
}

.mk-area__copy h2 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.45;
}

.mk-area__copy > p {
  margin: 20px 0 0;
  color: var(--mk-muted);
}

.mk-area__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mk-area__copy li {
  padding: 6px 14px;
  color: var(--mk-blue);
  background: var(--mk-sky);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.mk-area__copy .mk-area__note {
  margin-top: 18px;
  font-size: 0.75rem;
}

.mk-area__visual {
  position: relative;
}

.mk-area__visual img {
  width: 100%;
  filter: drop-shadow(0 18px 25px rgba(11, 43, 89, 0.12));
}

.mk-area__visual p {
  position: absolute;
  right: -15px;
  bottom: 10px;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  margin: 0;
  color: #fff;
  background: var(--mk-orange);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: var(--mk-shadow);
  text-align: center;
}

.mk-area__visual p strong,
.mk-area__visual p span {
  display: block;
}

.mk-area__visual p strong {
  font-size: 1.15rem;
}

.mk-area__visual p span {
  font-size: 0.72rem;
  line-height: 1.5;
}

/* FAQ */
.mk-faq {
  background: var(--mk-sky-2);
}

.mk-faq__list {
  display: grid;
  gap: 12px;
}

.mk-faq__item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cddfeb;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(11, 43, 89, 0.05);
}

.mk-faq__question {
  display: grid;
  width: 100%;
  min-height: 82px;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  color: var(--mk-navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  grid-template-columns: 42px 1fr 28px;
  text-align: left;
}

.mk-faq__question > span,
.mk-faq__answer span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--mk-blue);
  border-radius: 50%;
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.mk-faq__question strong {
  font-size: 1rem;
  font-weight: 800;
}

.mk-faq__question i {
  position: relative;
  width: 24px;
  height: 24px;
}

.mk-faq__question i::before,
.mk-faq__question i::after {
  position: absolute;
  top: 11px;
  left: 3px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--mk-blue);
  transition: transform 0.25s;
}

.mk-faq__question i::after {
  transform: rotate(90deg);
}

.mk-faq__item.is-open .mk-faq__question i::after {
  transform: rotate(0);
}

.mk-faq__answer {
  transition: height 0.3s ease, opacity 0.25s ease;
}

.mk-faq__answer p {
  display: grid;
  align-items: start;
  gap: 16px;
  margin: 0;
  padding: 20px 24px 26px;
  color: var(--mk-muted);
  background: #f2f8fd;
  border-top: 1px solid var(--mk-line);
  grid-template-columns: 42px 1fr;
}

.mk-faq__answer span {
  color: var(--mk-orange-dark);
  background: #fff;
  border: 2px solid var(--mk-orange);
}

/* Company */
.mk-company {
  background: #fff;
}

.mk-company__grid {
  display: grid;
  align-items: stretch;
  gap: 28px;
  grid-template-columns: 0.8fr 1.2fr;
}

.mk-company__message {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(160deg, #ecf7ff, #cce8ff);
  border-radius: 20px;
}

.mk-company__message > img {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 390px;
  max-height: 470px;
  object-fit: contain;
  object-position: bottom right;
}

.mk-company__message > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  color: #fff;
  background: rgba(7, 31, 66, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.mk-company__message span {
  color: #8bc9ff;
  font-size: 0.74rem;
  font-weight: 800;
}

.mk-company__message h3 {
  margin: 2px 0 8px;
  color: #fff;
  font-size: 1.6rem;
}

.mk-company__message p {
  margin: 0;
  color: #e1eef9;
  font-size: 0.82rem;
}

.mk-company__table-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(11, 43, 89, 0.07);
}

.mk-company table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}

.mk-company th,
.mk-company td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--mk-line);
  text-align: left;
  vertical-align: top;
}

.mk-company tr:last-child th,
.mk-company tr:last-child td {
  border-bottom: 0;
}

.mk-company th {
  width: 142px;
  color: var(--mk-navy);
  background: #f0f7fd;
  font-size: 0.83rem;
  font-weight: 800;
}

.mk-company td {
  color: var(--mk-text);
  font-size: 0.86rem;
}

.mk-company td a {
  color: var(--mk-blue);
  font-weight: 800;
}

/* Contact */
.mk-contact {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  color: #fff;
  background: var(--mk-navy);
  isolation: isolate;
}

.mk-contact__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(rgba(6, 29, 61, 0.91), rgba(7, 48, 98, 0.94)), url("../img/monooki-hero-bg.webp") center / cover no-repeat;
}

.mk-contact__steps {
  display: grid;
  max-width: 700px;
  margin: 0 auto 22px;
  color: #cfe8ff;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.mk-contact__steps span {
  position: relative;
  padding: 9px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
}

.mk-contact__steps span:first-child {
  color: var(--mk-navy);
  background: #fff;
  border-radius: 8px 0 0 8px;
}

.mk-contact__steps span:last-child {
  border-radius: 0 8px 8px 0;
}

.mk-form {
  position: relative;
  margin: 0;
  padding: 48px 52px;
  color: var(--mk-text);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.mk-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mk-form__field {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--mk-line);
}

.mk-form__field--row {
  display: grid;
  align-items: start;
  gap: 26px;
  grid-template-columns: 210px 1fr;
}

.mk-form__field > label,
.mk-form__field > legend {
  color: var(--mk-navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.mk-form__field > legend {
  width: 100%;
  margin-bottom: 16px;
}

.mk-form__required,
.mk-form__optional {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.64rem;
  vertical-align: 2px;
}

.mk-form__required {
  color: #fff;
  background: #d44d30;
}

.mk-form__optional {
  color: var(--mk-muted);
  background: #e9eef2;
}

.mk-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mk-form__choices label {
  cursor: pointer;
}

.mk-form__choices input {
  position: absolute;
  opacity: 0;
}

.mk-form__choices span {
  display: block;
  padding: 9px 15px;
  color: var(--mk-navy);
  background: #f2f7fb;
  border: 1px solid #bfd3e4;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: 0.2s;
}

.mk-form__choices input:checked + span {
  color: #fff;
  background: var(--mk-blue);
  border-color: var(--mk-blue);
  box-shadow: 0 5px 12px rgba(12, 88, 181, 0.2);
}

.mk-form__choices input:focus-visible + span {
  outline: 3px solid #ffce32;
  outline-offset: 2px;
}

.mk-form__input,
.mk-form__textarea {
  width: 100%;
  color: var(--mk-text);
  background: #fbfdff;
  border: 1px solid #b8cad9;
  border-radius: 8px;
  transition: border 0.2s, box-shadow 0.2s;
}

.mk-form__input {
  min-height: 52px;
  padding: 10px 14px;
}

.mk-form__textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.mk-form__input:focus,
.mk-form__textarea:focus {
  border-color: var(--mk-blue);
  box-shadow: 0 0 0 4px rgba(12, 88, 181, 0.12);
  outline: 0;
}

.mk-form__field small {
  display: block;
  margin-top: 7px;
  color: var(--mk-muted);
  font-size: 0.7rem;
}

.mk-form__privacy {
  padding: 28px 0 10px;
}

.mk-form__privacy > label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: var(--mk-text);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 500;
}

.mk-form__privacy input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--mk-blue);
}

.mk-form .c-contact-form__error-text {
  display: none;
  margin: 7px 0 0;
  color: #c63d2d;
  font-size: 0.75rem;
  font-weight: 700;
}

.mk-form .c-contact-form__field.is-error .c-contact-form__error-text {
  display: block;
}

.mk-form .c-contact-form__field.is-error .mk-form__input,
.mk-form .c-contact-form__field.is-error .mk-form__textarea {
  border-color: #c63d2d;
  background: #fff7f5;
}

.mk-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.mk-form__submit {
  display: flex;
  width: min(480px, 100%);
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  color: #fff;
  background: linear-gradient(135deg, #ff921f, var(--mk-orange-dark));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(217, 93, 0, 0.28);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  transition: 0.2s;
}

.mk-form__submit:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.mk-form__submit span {
  font-size: 0.68rem;
  font-weight: 500;
}

.mk-contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  text-align: center;
}

.mk-contact__phone > span {
  color: #cde7ff;
  font-size: 0.86rem;
}

.mk-contact__phone a {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
}

.mk-contact__phone small {
  color: #a8c8e5;
  font-size: 0.72rem;
}

/* Fixed CTA */
.mk-fixed {
  position: fixed !important;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.mk-fixed.is-show {
  opacity: 1;
  pointer-events: auto;
}

.mk-fixed--pc {
  right: 24px;
  bottom: 24px;
  display: grid !important;
  width: 330px;
  gap: 10px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 31, 66, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(18px);
  backdrop-filter: blur(8px);
}

.mk-fixed--pc.is-show {
  transform: translateY(0);
}

.mk-fixed--pc p {
  margin: 0;
  text-align: center;
}

.mk-fixed--pc p strong,
.mk-fixed--pc p span {
  display: block;
}

.mk-fixed--pc p strong {
  color: #ffdd69;
}

.mk-fixed--pc p span {
  color: #cde3f5;
  font-size: 0.72rem;
}

.mk-fixed__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff !important;
  font-family: Roboto, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.mk-fixed__tel small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.65rem;
}

.mk-fixed--sp {
  display: none !important;
}

.mk-page-top {
  position: fixed;
  z-index: 850;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(11, 43, 89, 0.2);
}

/* Footer */
.mk-footer {
  color: #c5d7e7;
  background: #06172f;
}

.mk-footer__grid {
  display: grid;
  gap: 50px;
  padding-top: 58px;
  padding-bottom: 50px;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.mk-brand--footer {
  color: #fff !important;
}

.mk-brand--footer .mk-brand__text small {
  color: #9ab4ca;
}

.mk-footer__grid > div > p {
  margin: 16px 0 0;
  font-size: 0.82rem;
}

.mk-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.86rem;
}

.mk-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-footer__bottom > div {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.mk-footer__bottom a,
.mk-footer__bottom small {
  color: #93adc4;
  font-size: 0.7rem;
}

@media (max-width: 1180px) {
  .mk-nav {
    display: none;
  }

  .mk-header__inner {
    gap: 18px;
  }

  .mk-header__actions {
    margin-left: auto;
  }

  .mk-hero__inner {
    grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  }

  .mk-hero__title {
    font-size: clamp(2.35rem, 5vw, 3.6rem);
  }

  .mk-hero__staff img {
    right: -70px;
  }

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

  .mk-service-card {
    min-height: 280px;
  }

  .mk-staff-list {
    gap: 10px;
  }

  .mk-staff-list figcaption {
    font-size: 0.64rem;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 72px;
  }

  body.mk-page.is-open {
    overflow: hidden;
  }

  .mk-header__inner {
    min-height: 70px;
  }

  .mk-header__actions {
    display: none;
  }

  .mk-menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 11px;
    place-content: center;
    gap: 5px;
    background: var(--mk-navy);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
  }

  .mk-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
  }

  .mk-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mk-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mk-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mk-drawer {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88vw);
    flex-direction: column;
    gap: 0;
    padding: 22px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.28s;
  }

  .mk-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mk-drawer > a:not(.mk-btn):not(.mk-drawer__tel) {
    padding: 15px 6px;
    color: var(--mk-navy);
    border-bottom: 1px solid var(--mk-line);
    font-weight: 700;
  }

  .mk-drawer .mk-btn {
    margin-top: 22px;
  }

  .mk-drawer__tel {
    padding: 18px 0;
    color: var(--mk-blue) !important;
    font-family: Roboto, sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    text-align: center;
  }

  .mk-hero {
    min-height: 0;
  }

  .mk-hero__backdrop {
    background-position: 62% center;
  }

  .mk-hero__backdrop::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.36) 78%);
  }

  .mk-hero__inner {
    min-height: 650px;
    grid-template-columns: 1fr 270px;
  }

  .mk-hero__title {
    font-size: clamp(2.1rem, 5.7vw, 3.2rem);
  }

  .mk-hero__lead {
    font-size: 0.94rem;
  }

  .mk-hero__staff {
    min-height: 480px;
  }

  .mk-hero__staff img {
    right: -78px;
    width: 350px;
  }

  .mk-hero__speech {
    top: 45px;
    left: -45px;
    font-size: 0.78rem;
  }

  .mk-quick-cta__inner {
    grid-template-columns: 1fr;
  }

  .mk-quick-cta__actions {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mk-worry__grid li,
  .mk-worry__grid li:nth-child(4),
  .mk-worry__grid li:nth-child(5) {
    grid-column: auto;
  }

  .mk-worry__grid li:last-child {
    grid-column: 1 / -1;
  }

  .mk-answer__inner {
    gap: 32px;
    grid-template-columns: 1fr 0.8fr;
  }

  .mk-answer__staff {
    min-height: 430px;
  }

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

  .mk-reason__grid article,
  .mk-reason__grid article:nth-child(4),
  .mk-reason__grid article:nth-child(5) {
    grid-column: auto;
  }

  .mk-reason__grid article:last-child {
    grid-column: 1 / -1;
  }

  .mk-case__grid {
    grid-template-columns: 1fr;
  }

  .mk-price-promise {
    grid-template-columns: auto 1fr;
  }

  .mk-price-promise .mk-btn {
    grid-column: 1 / -1;
  }

  .mk-people__lead {
    grid-template-columns: 1fr 1fr;
  }

  .mk-people__lead > div {
    padding: 32px;
  }

  .mk-staff-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .mk-staff-list figure {
    min-width: 150px;
    scroll-snap-align: start;
  }

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

  .mk-flow__list::before {
    display: none;
  }

  .mk-flow__list li:last-child {
    grid-column: 1 / -1;
  }

  .mk-flow__list h3 {
    min-height: 0;
  }

  .mk-area__inner {
    gap: 30px;
    grid-template-columns: 1fr 0.7fr;
  }

  .mk-company__grid {
    grid-template-columns: 1fr;
  }

  .mk-company__message {
    min-height: 480px;
  }

  .mk-fixed--pc {
    display: none !important;
  }

  .mk-fixed--sp {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--mk-line);
    box-shadow: 0 -8px 22px rgba(11, 43, 89, 0.12);
    transform: translateY(100%);
  }

  .mk-fixed--sp.is-show {
    transform: translateY(0);
  }

  .mk-fixed--sp .mk-fixed__tel {
    flex-direction: column;
    gap: 0;
    color: var(--mk-navy) !important;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .mk-fixed--sp .mk-fixed__tel strong {
    font-size: 1.1rem;
  }

  .mk-fixed--sp .mk-btn {
    min-height: 50px;
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .mk-page-top {
    right: 12px;
    bottom: 78px;
  }

  .mk-footer {
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  body.mk-page {
    font-size: 15px;
    line-height: 1.72;
  }

  .mk-container,
  .mk-container--narrow {
    width: min(100% - 28px, 640px);
  }

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

  .mk-heading {
    margin-bottom: 36px;
  }

  .mk-heading h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.35rem);
  }

  .mk-heading p {
    font-size: 0.9rem;
    text-align: left;
  }

  .mk-brand__mark {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .mk-brand__text strong {
    font-size: 0.92rem;
  }

  .mk-brand__text small {
    font-size: 0.55rem;
  }

  .mk-hero__backdrop {
    background-position: 68% center;
  }

  .mk-hero__backdrop::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 49%, rgba(255, 255, 255, 0.22) 78%, rgba(237, 247, 255, 0.72) 100%);
  }

  .mk-hero__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-top: 36px;
    padding-bottom: 0;
  }

  .mk-hero__content {
    max-width: 590px;
  }

  .mk-hero__area {
    margin-bottom: 15px;
    padding: 6px 14px;
    box-shadow: 4px 4px 0 #a6d3ff;
    font-size: 0.74rem;
  }

  .mk-hero__title {
    font-size: clamp(1.9rem, 8.8vw, 3.2rem);
    line-height: 1.25;
  }

  .mk-hero__title em {
    display: inline;
  }

  .mk-hero__title em::after {
    height: 10px;
  }

  .mk-hero__lead {
    width: 92%;
    margin-top: 14px;
    font-size: 0.86rem;
  }

  .mk-hero__checks {
    margin: 13px 0 17px;
  }

  .mk-hero__checks li {
    padding: 5px 10px 5px 7px;
    font-size: 0.72rem;
  }

  .mk-hero__actions {
    position: relative;
    z-index: 4;
    display: grid;
    width: min(100%, 520px);
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-btn--large {
    min-width: 0;
    min-height: 64px;
    padding: 9px 22px 10px 12px;
    font-size: 0.82rem;
  }

  .mk-btn--large::after {
    right: 12px;
  }

  .mk-btn--large small {
    font-size: 0.58rem;
  }

  .mk-hero__note {
    margin-bottom: 0;
    text-align: center;
  }

  .mk-hero__staff {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin-top: 18px;
    overflow: hidden;
    pointer-events: none;
  }

  .mk-hero__staff img {
    right: 50%;
    bottom: -1px;
    width: min(365px, 92vw);
    max-height: 400px;
    transform: translateX(50%);
  }

  .mk-hero__speech {
    top: 54px;
    left: max(4px, calc(50% - 190px));
    padding: 10px 13px;
    font-size: 0.68rem;
  }

  .mk-hero__trust {
    min-height: 86px;
  }

  .mk-hero__trust-grid {
    width: 100%;
  }

  .mk-hero__trust-grid > div {
    min-height: 86px;
    flex-direction: column;
    gap: 0;
    padding: 8px 5px;
    text-align: center;
  }

  .mk-hero__trust-grid strong {
    font-size: 1.35rem;
    line-height: 1;
  }

  .mk-hero__trust-grid span {
    margin-top: 5px;
    font-size: 0.66rem;
  }

  .mk-quick-cta {
    padding: 36px 0;
  }

  .mk-quick-cta__inner {
    gap: 24px;
    padding: 28px 20px;
  }

  .mk-quick-cta__actions {
    grid-template-columns: 1fr;
  }

  .mk-worry__grid,
  .mk-service__grid,
  .mk-reason__grid,
  .mk-case__grid,
  .mk-flow__list {
    grid-template-columns: 1fr;
  }

  .mk-worry__grid li,
  .mk-worry__grid li:last-child,
  .mk-reason__grid article,
  .mk-reason__grid article:last-child,
  .mk-flow__list li,
  .mk-flow__list li:last-child {
    grid-column: auto;
  }

  .mk-worry__grid li {
    min-height: 0;
    padding: 22px 20px 20px 56px;
  }

  .mk-worry__grid li > span {
    top: 22px;
    left: 18px;
  }

  .mk-answer {
    padding: 78px 0 0;
    background: linear-gradient(160deg, #fff 0%, #fff 55%, #dbefff 55%);
  }

  .mk-answer__inner {
    display: block;
  }

  .mk-answer__copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .mk-answer__summary > div {
    display: block;
  }

  .mk-answer__summary dd {
    margin-top: 4px;
    font-size: 0.85rem;
  }

  .mk-answer__staff {
    min-height: 390px;
    margin-top: 28px;
  }

  .mk-answer__staff img {
    right: 50%;
    width: 520px;
    max-width: 118%;
    transform: translateX(50%);
  }

  .mk-answer__staff p {
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 0.78rem;
  }

  .mk-service-card {
    min-height: 0;
  }

  .mk-items {
    padding: 26px 18px;
  }

  .mk-items li {
    padding: 6px 11px;
    font-size: 0.74rem;
  }

  .mk-reason__grid article {
    min-height: 0;
  }

  .mk-case__visual {
    height: 470px;
  }

  .mk-case__visual::after {
    background: linear-gradient(0deg, rgba(7, 31, 66, 0.94) 0%, rgba(7, 31, 66, 0.16) 82%);
  }

  .mk-case__visual-copy {
    top: auto;
    right: 22px;
    bottom: 24px;
    left: 22px;
    width: auto;
    transform: none;
  }

  .mk-case__visual-copy h3 {
    font-size: 1.55rem;
  }

  .mk-price-promise {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 26px 20px;
    text-align: center;
  }

  .mk-price-promise > p {
    text-align: left;
  }

  .mk-price-promise .mk-btn {
    width: 100%;
  }

  .mk-people__lead {
    display: block;
  }

  .mk-people__lead > img {
    height: 260px;
    min-height: 0;
    object-position: center;
  }

  .mk-people__lead > div {
    padding: 28px 22px 32px;
  }

  .mk-flow__list {
    gap: 22px;
  }

  .mk-flow__list li {
    display: grid;
    align-items: start;
    gap: 15px;
    padding: 18px;
    grid-template-columns: 56px 1fr;
    text-align: left;
  }

  .mk-flow__list b {
    width: 54px;
    height: 54px;
    margin: 0;
    border-width: 5px;
    font-size: 1.05rem;
  }

  .mk-flow__list h3 {
    margin-top: 2px;
  }

  .mk-area::before {
    top: auto;
    width: 100%;
    height: 43%;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }

  .mk-area__inner {
    display: block;
  }

  .mk-area__copy h2 {
    font-size: clamp(1.8rem, 7.7vw, 2.4rem);
  }

  .mk-area__visual {
    width: min(420px, 96%);
    margin: 38px auto 0;
  }

  .mk-area__visual p {
    right: 0;
    width: 120px;
    height: 120px;
    border-width: 5px;
  }

  .mk-faq__question {
    gap: 12px;
    padding: 16px 15px;
    grid-template-columns: 34px 1fr 22px;
  }

  .mk-faq__question > span,
  .mk-faq__answer span {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .mk-faq__question strong {
    font-size: 0.86rem;
  }

  .mk-faq__answer p {
    gap: 12px;
    padding: 18px 15px 22px;
    grid-template-columns: 34px 1fr;
    font-size: 0.84rem;
  }

  .mk-company__message {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
  }

  .mk-company__message > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 22px 12px 0;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
  }

  .mk-company__message > div {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0 14px 14px;
    padding: 20px;
    backdrop-filter: none;
  }

  .mk-company__table-wrap {
    overflow-x: auto;
  }

  .mk-company th,
  .mk-company td {
    padding: 12px 13px;
  }

  .mk-company th {
    width: 105px;
    font-size: 0.74rem;
  }

  .mk-company td {
    font-size: 0.78rem;
  }

  .mk-contact {
    padding: 78px 0 90px;
  }

  .mk-contact__steps span {
    padding: 7px 3px;
    font-size: 0.62rem;
  }

  .mk-form {
    padding: 30px 18px;
    border-radius: 16px;
  }

  .mk-form__field {
    padding: 20px 0;
  }

  .mk-form__field--row {
    display: block;
  }

  .mk-form__field--row > label {
    display: block;
    margin-bottom: 9px;
  }

  .mk-form__choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-form__choices span {
    height: 100%;
    padding: 9px 8px;
    font-size: 0.72rem;
    text-align: center;
  }

  .mk-form__privacy > label {
    font-size: 0.74rem;
  }

  .mk-contact__phone a {
    font-size: 2.45rem;
  }

  .mk-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .mk-footer__bottom > div {
    display: block;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mk-footer__bottom nav {
    margin-bottom: 12px;
  }
}

@media (max-width: 420px) {
  .mk-hero__inner {
    min-height: 0;
  }

  .mk-hero__title {
    font-size: clamp(1.78rem, 8.45vw, 2rem);
  }

  .mk-hero__lead {
    width: 100%;
  }

  .mk-hero__checks {
    gap: 6px;
  }

  .mk-hero__checks li {
    font-size: 0.65rem;
  }

  .mk-hero__actions {
    gap: 7px;
  }

  .mk-btn--large {
    font-size: 0.75rem;
  }

  .mk-hero__staff img {
    right: 50%;
    width: min(340px, 92vw);
    transform: translateX(50%);
  }

  .mk-hero__speech {
    top: 52px;
    font-size: 0.61rem;
  }

  .mk-people__lead > img {
    height: 230px;
  }

  .mk-contact__phone a {
    font-size: 2.1rem;
  }
}

@media (max-width: 991px) {
  .mk-works-gallery__grid,
  .mk-dismantling__steps,
  .mk-dismantling__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-ba-card__photos {
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  }

  .mk-ba-card__photos img {
    height: 320px;
  }

  .mk-ba-card__arrow {
    width: 46px;
    height: 46px;
  }

  .mk-guide__grid {
    gap: 16px;
  }

  .mk-guide-card > img {
    height: 250px;
  }

  .mk-guide-card > div {
    padding: 22px 19px 24px;
  }
}

@media (max-width: 767px) {
  .mk-ba-card__photos {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .mk-ba-card__photos img {
    height: 270px;
  }

  .mk-ba-card__photos figcaption {
    min-height: auto;
    padding: 14px 16px;
  }

  .mk-ba-card__arrow {
    margin: -4px auto;
    transform: rotate(90deg);
  }

  .mk-ba-card__detail {
    grid-template-columns: 1fr;
  }

  .mk-ba-card__detail div {
    padding: 16px 19px;
  }

  .mk-ba-card__detail div + div {
    border-top: 1px solid var(--mk-line);
    border-left: 0;
  }

  .mk-works-gallery__grid,
  .mk-dismantling__steps,
  .mk-guide__grid {
    grid-template-columns: 1fr;
  }

  .mk-work-photo-card img {
    height: 250px;
  }

  .mk-dismantling__steps {
    margin-bottom: 34px;
  }

  .mk-dismantling__steps img {
    height: 260px;
  }

  .mk-dismantling__cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 20px;
  }

  .mk-dismantling__cta .mk-btn {
    width: 100%;
  }

  .mk-guide-card > img {
    height: 280px;
  }
}

@media (max-width: 520px) {
  .mk-dismantling__gallery {
    grid-template-columns: 1fr;
  }

  .mk-dismantling__gallery img {
    aspect-ratio: 4 / 3;
  }
}

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

  .mk-page *,
  .mk-page *::before,
  .mk-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Thanks page */
.mk-thanks-page {
  background: linear-gradient(160deg, #f7fbff, #e6f3ff);
}

.mk-thanks {
  min-height: calc(100vh - 148px);
  padding: 80px 0;
}

.mk-thanks__card {
  padding: 56px;
  background: #fff;
  border: 1px solid #d2e4f3;
  border-radius: 24px;
  box-shadow: var(--mk-shadow);
  text-align: center;
}

.mk-thanks__icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  place-items: center;
  color: #fff;
  background: var(--mk-green);
  border: 8px solid #d8f1e7;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.mk-thanks__card h1 {
  margin: 0;
  color: var(--mk-navy);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.4;
}

.mk-thanks__lead {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--mk-muted);
}

.mk-thanks__next {
  max-width: 700px;
  margin: 34px auto;
  padding: 28px;
  background: var(--mk-sky-2);
  border-radius: 16px;
  text-align: left;
}

.mk-thanks__next h2 {
  margin: 0 0 18px;
  color: var(--mk-navy);
  font-size: 1.2rem;
  text-align: center;
}

.mk-thanks__next ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mk-thanks__next li {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: 38px 1fr;
}

.mk-thanks__next li b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--mk-blue);
  border-radius: 50%;
}

.mk-thanks__next li span {
  color: var(--mk-muted);
  font-size: 0.85rem;
}

.mk-thanks__next li strong {
  display: block;
  color: var(--mk-navy);
  font-size: 0.93rem;
}

.mk-thanks__note {
  max-width: 660px;
  margin: 0 auto 26px;
  color: var(--mk-muted);
  font-size: 0.78rem;
}

.mk-thanks__urgent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  color: #fff;
  text-align: center;
}

.mk-thanks__urgent p {
  margin: 0;
  color: var(--mk-navy);
  font-weight: 800;
}

.mk-thanks__urgent a {
  color: var(--mk-blue);
  font-family: Roboto, sans-serif;
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
}

.mk-thanks__urgent small {
  color: var(--mk-muted);
  font-size: 0.7rem;
}

.mk-thanks__sp {
  display: none;
}

@media (max-width: 767px) {
  .mk-thanks {
    padding: 48px 0;
  }

  .mk-thanks__card {
    padding: 36px 18px;
  }

  .mk-thanks__icon {
    width: 68px;
    height: 68px;
    border-width: 6px;
    font-size: 1.6rem;
  }

  .mk-thanks__next {
    padding: 22px 16px;
  }

  .mk-thanks__sp {
    display: block;
  }
}
