﻿:root {
  --mk24-bg: #10131c;
  --mk24-panel: #171b26;
  --mk24-panel-2: #1d2330;
  --mk24-line: rgba(255, 255, 255, 0.1);
  --mk24-text: #f4f6fb;
  --mk24-muted: #9aa3b2;
  --mk24-dim: #697284;
  --mk24-amber: #f4a629;
  --mk24-amber-2: #ffd166;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--mk24-bg);
  color: var(--mk24-text);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.mk24-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.mk24-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 19, 28, 0.92);
  border-bottom: 1px solid var(--mk24-line);
  backdrop-filter: blur(14px);
}

.mk24-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mk24-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mk24-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.mk24-brand strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.mk24-brand-rotator {
  position: relative;
  display: block;
  min-width: 138px;
  height: 23px;
  overflow: hidden;
}

.mk24-brand-rotator span {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  white-space: nowrap;
  animation: mk24-brand-fade 6s ease-in-out infinite;
}

.mk24-brand-rotator span:nth-child(2) {
  color: var(--mk24-amber);
  animation-delay: -3s;
}

.mk24-brand small {
  display: block;
  margin-top: 3px;
  color: var(--mk24-muted);
  font-size: 12px;
}

.mk24-main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.mk24-main-nav a:hover {
  color: var(--mk24-amber);
}

.mk24-mobile-menu-toggle,
.mk24-mobile-menu-panel,
.mk24-mobile-bottom-nav,
.mk24-mobile-floating {
  display: none;
}

.mk24-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0d13;
}

.mk24-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0), rgba(10, 12, 18, 0.58), rgba(10, 12, 18, 0.16)),
    linear-gradient(0deg, rgba(16, 19, 28, 1), rgba(16, 19, 28, 0) 38%),
    url("../images/busan-yongdal-hero.webp") center / cover;
  opacity: 0.95;
}

.mk24-hero-content {
  position: relative;
  padding: 110px 0 120px;
}

.mk24-eyebrow {
  margin: 0 0 14px;
  color: var(--mk24-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mk24-hero h1,
.mk24-section h2,
.mk24-page-hero h1,
.mk24-estimate-band h2 {
  margin: 0;
  line-height: 1.12;
  font-weight: 950;
}

.mk24-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
}

.mk24-hero-kicker,
.mk24-hero-trust {
  font-size: calc(1em - 2px);
}

.mk24-hero-brand,
.mk24-section h2 span {
  color: var(--mk24-amber);
}

.mk24-hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.mk24-hero-actions,
.mk24-estimate-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mk24-hero-actions {
  margin-top: 34px;
}

.mk24-btn-primary,
.mk24-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 900;
}

.mk24-btn-primary {
  background: var(--mk24-amber);
  color: #11141d;
}

.mk24-btn-outline {
  border: 2px solid var(--mk24-amber);
  color: var(--mk24-amber);
}

.mk24-trust {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.34);
  border-bottom: 1px solid rgba(245, 158, 11, 0.34);
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 158, 11, 0.11), transparent 32%),
    linear-gradient(180deg, #151a24 0%, #10141d 100%);
}

.mk24-trust::before,
.mk24-trust::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mk24-amber), transparent);
  opacity: 0.96;
}

.mk24-trust::before {
  top: 0;
}

.mk24-trust::after {
  bottom: 0;
}

.mk24-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mk24-trust-grid div {
  min-height: 154px;
  padding: 30px 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mk24-trust-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mk24-trust-grid strong {
  display: block;
  color: var(--mk24-amber);
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.mk24-trust-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.55;
}

.mk24-trust-grid em {
  display: block;
  max-width: 250px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}

.mk24-section {
  padding: 92px 0;
}

.mk24-section:nth-of-type(even) {
  background: #131822;
}

.mk24-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.mk24-section-head-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.mk24-section h2,
.mk24-page-hero h1,
.mk24-estimate-band h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.mk24-section-head p:not(.mk24-eyebrow),
.mk24-page-hero p,
.mk24-estimate-band p {
  color: var(--mk24-muted);
  line-height: 1.75;
}

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

.mk24-service-card,
.mk24-post-card,
.mk24-blog-row {
  background: var(--mk24-panel);
  border: 1px solid var(--mk24-line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.mk24-service-card:hover,
.mk24-post-card:hover,
.mk24-blog-row:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 166, 41, 0.55);
}

.mk24-service-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--mk24-line);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mk24-service-card::before,
.mk24-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mk24-service-card::before {
  background-image: var(--mk24-service-bg);
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: scale(1.04);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mk24-service-card::after {
  background:
    linear-gradient(180deg, rgba(12, 15, 22, 0), rgba(12, 15, 22, 0.48)),
    linear-gradient(90deg, rgba(12, 15, 22, 0.36), rgba(12, 15, 22, 0.04));
}

.mk24-service-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.mk24-service-card:nth-child(1) {
  --mk24-service-bg: url("../images/service-simple-transport.png");
}

.mk24-service-card:nth-child(2) {
  --mk24-service-bg: url("../images/service-personal-trade.png");
}

.mk24-service-card:nth-child(3) {
  --mk24-service-bg: url("../images/service-yongdal-moving.png");
}

.mk24-service-card:nth-child(4) {
  --mk24-service-bg: url("../images/service-furniture-appliance.png");
}

.mk24-service-card:nth-child(5) {
  --mk24-service-bg: url("../images/service-construction-materials.png");
}

.mk24-service-card:nth-child(6) {
  --mk24-service-bg: url("../images/service-waste-transport.png");
}

.mk24-service-card h3,
.mk24-service-card p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.mk24-service-card h3 {
  margin: 0 0 12px;
  color: var(--mk24-text);
  font-size: 22px;
}

.mk24-service-card p {
  margin: 0;
  color: var(--mk24-muted);
  line-height: 1.7;
  font-size: 14px;
}

.mk24-service-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 16px;
  color: var(--mk24-amber);
  font-size: 12px;
  font-weight: 950;
}

.mk24-modal-open {
  overflow: hidden;
}

.mk24-service-modal[hidden] {
  display: none;
}

.mk24-service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mk24-service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.mk24-service-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(900px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #131722;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.mk24-service-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mk24-service-dialog-image {
  position: relative;
  min-height: 420px;
}

.mk24-service-dialog-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.mk24-service-dialog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #131722 96%);
}

.mk24-service-dialog-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--mk24-amber);
  color: #11141d;
  font-size: 12px;
  font-weight: 950;
}

.mk24-service-dialog-body {
  padding: 36px;
}

.mk24-service-dialog-body h3 {
  margin: 8px 0 18px;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
}

.mk24-service-dialog-body p:not(.mk24-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.mk24-service-dialog-body ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mk24-service-dialog-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 850;
}

.mk24-service-dialog-body li span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(244, 166, 41, 0.16);
  color: var(--mk24-amber);
  font-size: 13px;
}

.mk24-service-dialog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mk24-review-section {
  position: relative;
  overflow: hidden;
  background: #111622;
}

.mk24-review-number {
  position: absolute;
  top: 10%;
  left: -32px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(120px, 16vw, 230px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.mk24-review-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(244, 166, 41, 0.28);
  border-radius: 999px;
  background: rgba(244, 166, 41, 0.1);
  color: var(--mk24-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.mk24-review-side-copy {
  max-width: 390px;
  margin: 0;
  color: var(--mk24-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mk24-review-viewport {
  --review-gap: 16px;
  --review-visible: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.mk24-review-track {
  display: flex;
  width: max-content;
  gap: var(--review-gap);
  animation: mk24-review-slide 40s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mk24-review-viewport:hover .mk24-review-track {
  animation-play-state: paused;
}

.mk24-review-track.is-js-marquee {
  animation: none !important;
}

.mk24-review-loading {
  min-height: clamp(420px, 52vw, 560px);
}

.mk24-review-slide {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: calc((min(100vw - 2rem, 1200px) - (var(--review-gap) * (var(--review-visible) - 1))) / var(--review-visible));
  aspect-ratio: 3 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #191f2b;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  color: var(--mk24-text);
}

.mk24-review-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mk24-review-slide:hover img {
  transform: scale(1.06);
}

.mk24-review-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 12, 18, 0.98) 0%, rgba(9, 12, 18, 0.84) 28%, rgba(9, 12, 18, 0.58) 54%, transparent 84%),
    linear-gradient(to bottom, rgba(9, 12, 18, 0.46), transparent 36%);
}

.mk24-review-effect-soft .mk24-review-gradient {
  background:
    linear-gradient(to top, rgba(9, 12, 18, 0.9) 0%, rgba(9, 12, 18, 0.62) 42%, transparent 80%),
    linear-gradient(to bottom, rgba(9, 12, 18, 0.28), transparent 34%);
}

.mk24-review-effect-box .mk24-review-gradient {
  background:
    linear-gradient(to top, rgba(9, 12, 18, 0.44), transparent 56%);
}

.mk24-review-effect-shadow .mk24-review-gradient,
.mk24-review-effect-none .mk24-review-gradient {
  background: transparent;
}

.mk24-review-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  justify-content: flex-end;
  padding: 9px 7px;
}

.mk24-review-effect-box .mk24-review-content {
  min-height: auto;
  margin-top: auto;
  margin-right: 7px;
  margin-bottom: 7px;
  margin-left: 7px;
  padding: 9px 7px;
  border-radius: 8px;
  background: rgba(9, 12, 18, 0.62);
  backdrop-filter: blur(4px);
}

.mk24-review-stars {
  display: none;
}

.mk24-review-content h3 {
  margin: 0 0 6px;
  color: var(--mk24-review-text-color, var(--mk24-text));
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82), 0 1px 2px rgba(0, 0, 0, 0.82);
}

.mk24-review-author {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 1px;
  margin: 0 0 8px;
  color: var(--mk24-review-author-color, #ffd27a);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.78);
}

.mk24-review-author-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  color: currentColor;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.mk24-review-author-icon[data-icon="text"] {
  width: 19px;
  min-width: 19px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mk24-review-author-icon[data-icon="text"]::before,
.mk24-review-author-icon[data-icon="text"]::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.mk24-review-author-icon[data-icon="text"]::before {
  left: 1px;
  transform: rotate(31deg);
}

.mk24-review-author-icon[data-icon="text"]::after {
  right: 1px;
  transform: rotate(-31deg);
}

.mk24-review-author-icon[data-icon="naver"] {
  top: -1px;
  justify-content: flex-start;
  width: 14px;
  min-width: 14px;
  font-size: 17px;
  font-weight: 1000;
  text-transform: uppercase;
}

.mk24-review-author-icon[data-icon="blog"] {
  width: auto;
  min-width: 24px;
  font-size: 15px;
  font-weight: 950;
}

.mk24-review-author.is-meta {
  margin: 0;
}

.mk24-review-author.is-heading {
  margin: 0 0 7px;
}

.mk24-review-content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--mk24-review-text-color, rgba(255, 255, 255, 0.82));
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.78), 0 1px 2px rgba(0, 0, 0, 0.82);
  width: 100%;
  max-width: none;
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
}

.mk24-review-effect-soft .mk24-review-content h3,
.mk24-review-effect-soft .mk24-review-content p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.58);
}

.mk24-review-effect-shadow .mk24-review-content h3,
.mk24-review-effect-shadow .mk24-review-content p {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.mk24-review-effect-none .mk24-review-content h3,
.mk24-review-effect-none .mk24-review-content p {
  text-shadow: none;
}

.mk24-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--mk24-amber);
  font-size: 12px;
  font-weight: 800;
}

.mk24-review-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mk24-naver-services {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.mk24-naver-service-link {
  display: inline-flex;
  width: 38px;
  min-width: 38px;
  height: 38px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #eaf2ee;
  text-decoration: none;
  transition: width 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.mk24-naver-service-link:hover,
.mk24-naver-service-link:focus-visible {
  width: 188px;
  opacity: 0.94;
  transform: translateY(-1px);
}

.mk24-naver-service-link img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  object-fit: cover;
}

.mk24-naver-service-copy {
  display: grid;
  min-width: 138px;
  gap: 2px;
  white-space: nowrap;
}

.mk24-naver-service-copy strong {
  color: #42d985;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.mk24-naver-service-copy small {
  color: var(--mk24-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.mk24-desktop-floating {
  position: fixed;
  right: max(18px, calc((100vw - var(--mk24-content-width, 1180px)) / 2 + 18px));
  bottom: 28px;
  z-index: 48;
  display: none;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}

.mk24-desktop-floating-link {
  display: inline-flex;
  width: 46px;
  min-width: 46px;
  height: 46px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #eaf2ee;
  text-decoration: none;
  transition: width 340ms ease, opacity 220ms ease, transform 220ms ease;
}

.mk24-desktop-floating-link:hover,
.mk24-desktop-floating-link:focus-visible {
  width: 188px;
  opacity: 0.94;
  transform: translateY(-1px);
}

.mk24-desktop-floating-link img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 8px;
  object-fit: cover;
}

.mk24-desktop-floating-link img.is-trimmed {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  margin: 4px;
  border-radius: 8px;
}

.mk24-desktop-floating-copy {
  display: grid;
  min-width: 138px;
  gap: 2px;
  white-space: nowrap;
}

.mk24-desktop-floating-copy strong {
  color: #42d985;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.mk24-desktop-floating-copy small {
  color: var(--mk24-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.mk24-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.mk24-review-link-blog {
  border: 1px solid rgba(42, 189, 95, 0.32);
  background: rgba(42, 189, 95, 0.12);
  color: #7ee2a0;
}

.mk24-review-link-place {
  border: 1px solid rgba(244, 166, 41, 0.32);
  background: rgba(244, 166, 41, 0.12);
  color: #ffd166;
}

.mk24-quick-estimate {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 166, 41, 0.13), transparent 34%),
    linear-gradient(180deg, #121722 0%, #151a24 100%);
}

.mk24-quick-estimate-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.mk24-quick-estimate-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
}

.mk24-quick-estimate-copy p:not(.mk24-eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--mk24-muted);
  font-size: 15px;
  line-height: 1.85;
}

.mk24-quick-estimate-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mk24-quick-estimate-copy li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.mk24-quick-estimate-copy li::before {
  content: "✓";
  display: inline-flex;
  margin-right: 9px;
  color: var(--mk24-amber);
}

.mk24-quick-estimate-copy .mk24-estimate-delay-note {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--mk24-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.mk24-estimate-emergency-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 0 15px;
  border: 1px solid rgba(244, 166, 41, 0.32);
  border-radius: 999px;
  background: rgba(244, 166, 41, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mk24-estimate-emergency-link span {
  color: var(--mk24-amber);
}

.mk24-estimate-emergency-link:hover {
  border-color: rgba(244, 166, 41, 0.62);
  background: rgba(244, 166, 41, 0.14);
  transform: translateY(-1px);
}

.mk24-kakao-estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(244, 166, 41, 0.22);
  border-radius: 14px;
  background: rgba(16, 19, 28, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.mk24-estimate-form {
  grid-template-columns: 1fr;
  gap: 14px;
}

.mk24-estimate-field,
.mk24-estimate-group,
.mk24-estimate-pair-row,
.mk24-estimate-helper,
.mk24-estimate-actions,
.mk24-estimate-photo-note,
.mk24-estimate-alert,
.mk24-estimate-panel {
  min-width: 0;
}

.mk24-estimate-top-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mk24-estimate-panel {
  display: grid;
  gap: 14px;
}

.mk24-estimate-panel[hidden] {
  display: none !important;
}

.mk24-estimate-field {
  display: grid;
  gap: 8px;
}

.mk24-estimate-field label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.mk24-estimate-field input,
.mk24-date-display,
.mk24-estimate-field select,
.mk24-estimate-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mk24-estimate-field input,
.mk24-date-display,
.mk24-estimate-field select {
  height: 44px;
  padding: 0 13px;
}

.mk24-estimate-field input,
.mk24-date-display {
  line-height: 44px;
}

.mk24-date-shell {
  position: relative;
  width: 100%;
}

.mk24-date-display {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  text-align: left;
  pointer-events: none;
}

.mk24-date-display span:first-child {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk24-date-display span:last-child {
  flex: 0 0 auto;
  color: var(--mk24-amber);
  font-size: 13px;
}

.mk24-date-native {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.01;
  cursor: pointer;
}

.mk24-estimate-field select {
  appearance: none;
  box-sizing: border-box;
  line-height: normal;
  padding: 0 13px !important;
  -webkit-text-fill-color: #fff;
  background-image: none !important;
}

.mk24-estimate-field textarea {
  min-height: 112px;
  padding: 12px 13px;
  line-height: 1.55;
  resize: vertical;
}

.mk24-cargo-items-textarea {
  min-height: 64px !important;
}

.mk24-special-items-textarea {
  min-height: 76px !important;
}

.mk24-quick-estimate .mk24-kakao-estimate-form.mk24-estimate-form {
  border-color: rgba(244, 166, 41, 0.22) !important;
  background: rgba(16, 19, 28, 0.82) !important;
  color: #fff !important;
}

.mk24-quick-estimate .mk24-estimate-field label {
  color: rgba(255, 255, 255, 0.86) !important;
}

.mk24-quick-estimate .mk24-estimate-field input,
.mk24-quick-estimate .mk24-date-display,
.mk24-quick-estimate .mk24-estimate-field select,
.mk24-quick-estimate .mk24-estimate-field textarea {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: none;
}

.mk24-quick-estimate .mk24-estimate-field input::placeholder,
.mk24-quick-estimate .mk24-estimate-field textarea::placeholder {
  color: rgba(154, 163, 178, 0.68) !important;
  -webkit-text-fill-color: rgba(154, 163, 178, 0.68) !important;
  opacity: 1;
}

.mk24-quick-estimate .mk24-estimate-field select option {
  background: #151a24;
  color: #fff;
}

.mk24-estimate-field input:focus,
.mk24-estimate-field select:focus,
.mk24-estimate-field textarea:focus {
  border-color: rgba(244, 166, 41, 0.68);
  box-shadow: 0 0 0 3px rgba(244, 166, 41, 0.14);
}

.mk24-estimate-field input::placeholder,
.mk24-estimate-field textarea::placeholder {
  color: rgba(154, 163, 178, 0.68);
  -webkit-text-fill-color: rgba(154, 163, 178, 0.68);
  opacity: 1;
}

.mk24-estimate-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
}

.mk24-estimate-field-full,
.mk24-estimate-photo-note,
.mk24-estimate-helper {
  grid-column: 1 / -1;
}

.mk24-estimate-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mk24-estimate-location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 10px;
  align-items: end;
}

.mk24-estimate-location-row .mk24-estimate-group {
  display: grid;
  gap: 8px;
}

.mk24-estimate-location-row .mk24-estimate-group-title {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
}

.mk24-estimate-field-compact {
  gap: 5px;
}

.mk24-estimate-field-compact label {
  font-size: 12px;
}

.mk24-estimate-field-compact select {
  display: block;
  padding: 0 8px !important;
  background-image: none !important;
  text-align: center;
  text-align-last: center;
}

.mk24-estimate-pair-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mk24-estimate-helper {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.55;
}

.mk24-estimate-photo-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid rgba(244, 166, 41, 0.18);
  border-radius: 8px;
  background: rgba(244, 166, 41, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.mk24-estimate-photo-note strong {
  color: var(--mk24-amber);
  font-weight: 600;
}

.mk24-estimate-caution-note {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.08);
}

.mk24-form-field {
  display: grid;
  gap: 8px;
}

.mk24-form-field-full,
.mk24-quick-estimate-actions,
.mk24-kakao-estimate-note {
  grid-column: 1 / -1;
}

.mk24-form-field label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.mk24-form-field input,
.mk24-form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.mk24-form-field input {
  min-height: 48px;
  padding: 0 14px;
}

.mk24-form-field textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.mk24-form-field input:focus,
.mk24-form-field textarea:focus {
  border-color: rgba(244, 166, 41, 0.68);
  box-shadow: 0 0 0 3px rgba(244, 166, 41, 0.14);
}

.mk24-form-field input::placeholder,
.mk24-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.mk24-form-field input[type="date"]::-webkit-calendar-picker-indicator,
.mk24-form-field input[type="time"]::-webkit-calendar-picker-indicator,
.mk24-form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
}

.mk24-quick-estimate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mk24-mail-submit,
.mk24-kakao-submit {
  min-height: 52px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.mk24-mail-submit {
  border: 0;
  background: var(--mk24-amber);
  color: #11141d;
}

.mk24-kakao-submit {
  border: 2px solid var(--mk24-amber);
  background: transparent;
  color: var(--mk24-amber);
}

.mk24-quick-estimate-alert {
  grid-column: 1 / -1;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.mk24-quick-estimate-alert-success {
  border: 1px solid rgba(42, 189, 95, 0.32);
  background: rgba(42, 189, 95, 0.12);
  color: #7ee2a0;
}

.mk24-quick-estimate-alert-error {
  border: 1px solid rgba(239, 68, 68, 0.36);
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.mk24-kakao-estimate-note {
  margin: 0;
  color: var(--mk24-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.mk24-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mk24-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mk24-blog-section .mk24-section-head-row > div > p:not(.mk24-eyebrow) {
  display: none;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card {
  display: flex;
  flex-direction: row-reverse !important;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  height: auto;
  min-height: 0;
  padding: 0;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card > a {
  flex: 0 0 40%;
  width: 40% !important;
  min-width: 160px;
  max-width: 220px;
  align-self: stretch;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card div {
  min-width: 0;
  height: auto;
  overflow: hidden;
  flex: 1 1 auto;
  width: auto;
  padding: 10px 12px 10px;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card h3 {
  display: -webkit-box;
  margin: 4px 0 6px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: keep-all;
}

.mk24-blog-section .mk24-blog-card-grid .mk24-post-card span {
  display: block;
  margin: 0 0 3px;
  line-height: 1.2;
}

.mk24-case-slider {
  --case-gap: 18px;
  --case-visible: 3;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 4px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.mk24-case-track {
  display: flex;
  width: max-content;
  gap: var(--case-gap);
  animation: mk24-case-slide 32s linear infinite;
}

.mk24-case-slider:hover .mk24-case-track {
  animation-play-state: paused;
}

.mk24-case-track .mk24-post-card {
  flex: 0 0 auto;
  width: calc((min(100vw - 32px, 1200px) - (var(--case-gap) * (var(--case-visible) - 1))) / var(--case-visible));
}

.mk24-post-card {
  overflow: hidden;
}

.mk24-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mk24-case-track .mk24-post-card:hover img {
  transform: scale(1.06);
}

.mk24-post-card div {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.mk24-case-track .mk24-post-card div {
  flex: 1;
  padding: 13px;
}

.mk24-post-card span,
.mk24-blog-row span {
  color: var(--mk24-amber);
  font-size: 12px;
  font-weight: 900;
}

.mk24-post-card h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.45;
}

.mk24-case-track .mk24-post-card h3 {
  display: block;
  margin: 0 0 7px;
  overflow: hidden;
  font-size: 0.84rem;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mk24-post-card p,
.mk24-blog-row p {
  color: var(--mk24-muted);
  line-height: 1.65;
  font-size: 14px;
}

.mk24-case-track .mk24-post-card p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 100%;
  font-size: 0.7rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mk24-case-track .mk24-post-card img {
  aspect-ratio: 4 / 3;
}

.mk24-section-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.mk24-section-pagination button {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(244, 166, 41, 0.28);
  border-radius: 6px;
  background: rgba(12, 15, 22, 0.92);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.mk24-section-pagination button[aria-current="page"] {
  border-color: var(--mk24-amber);
  background: var(--mk24-amber);
  color: #11141d;
}

.mk24-case-tags {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: auto;
  padding: 9px 0 0 !important;
}

.mk24-case-tags span {
  color: var(--mk24-amber);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

.mk24-case-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.mk24-case-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.45rem;
  border: 1px solid rgba(244, 166, 41, 0.68);
  border-radius: 4px;
  color: var(--mk24-amber);
  background: var(--mk24-bg);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mk24-case-more-link::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.86em;
}

.mk24-case-more-link:hover {
  transform: translateY(-1px);
  border-color: var(--mk24-amber);
  color: #ffd28a;
  background: rgba(244, 166, 41, 0.08);
}

.mk24-text-link {
  color: var(--mk24-amber);
  font-size: 14px;
  font-weight: 900;
}

.mk24-blog-list {
  display: grid;
  gap: 12px;
}

.mk24-blog-row {
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr 1.4fr;
  gap: 18px;
  align-items: center;
}

.mk24-blog-row a {
  color: var(--mk24-text);
  font-weight: 900;
}

.mk24-blog-row p {
  margin: 0;
}

.mk24-estimate-band {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(244, 166, 41, 0.18), rgba(244, 166, 41, 0.05));
  border-top: 1px solid rgba(244, 166, 41, 0.25);
}

.mk24-estimate-inner {
  justify-content: space-between;
}

.mk24-page-hero {
  padding: 86px 0 54px;
  background: linear-gradient(135deg, #121722, #1b2230);
  border-bottom: 1px solid var(--mk24-line);
}

.mk24-single {
  padding: 72px 0;
}

.mk24-single-inner {
  max-width: 860px;
}

.mk24-single h1 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 52px);
}

.mk24-single-image {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 10px;
}

.mk24-single-image img,
.mk24-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.mk24-content figure {
  max-width: 100%;
}

.mk24-content figure img {
  height: auto;
}

.mk24-content {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.mk24-content a {
  color: var(--mk24-amber);
}

.mk24-footer {
  padding: 42px 0;
  color: var(--mk24-muted);
  border-top: 1px solid var(--mk24-line);
  background: #0b0e15;
  font-size: 13px;
}

.mk24-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.mk24-footer strong {
  color: var(--mk24-text);
}

.mk24-footer p {
  margin: 6px 0;
}

.mk24-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mk24-footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mk24-footer-brand p,
.mk24-footer-center p,
.mk24-footer-contact p {
  color: rgba(154, 163, 178, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.mk24-footer-center {
  text-align: center;
}

.mk24-footer-center p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px;
}

.mk24-footer-center span:nth-child(even) {
  color: rgba(255, 255, 255, 0.18);
}

.mk24-footer-contact {
  justify-self: end;
}

.mk24-footer-contact p {
  margin: 3px 0;
}

.mk24-footer-owner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mk24-admin-login-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 50%;
  color: rgba(245, 158, 11, 0.78);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.mk24-admin-login-icon:hover {
  color: #0b0e15;
  border-color: var(--mk24-amber);
  background: var(--mk24-amber);
}

.mk24-mobile-menu-lock {
  overflow: hidden;
}

.mk24-empty {
  color: var(--mk24-muted);
}

@keyframes mk24-review-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--review-gap) / 2)));
  }
}

@keyframes mk24-case-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--case-gap) / 2)));
  }
}

@keyframes mk24-brand-fade {
  0%,
  38% {
    opacity: 1;
    transform: translateY(0);
  }

  48%,
  88% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .mk24-header-inner,
  .mk24-section-head-row,
  .mk24-estimate-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mk24-main-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .mk24-hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .mk24-hero-content {
    padding-top: 170px;
    padding-bottom: 86px;
  }

  .mk24-trust-grid,
  .mk24-service-grid,
  .mk24-card-grid,
  .mk24-blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk24-trust-grid div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mk24-case-slider {
    --case-visible: 2;
  }

  .mk24-blog-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mk24-quick-estimate-inner {
    grid-template-columns: 1fr;
  }

  .mk24-footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 14px;
  }

  .mk24-footer-center {
    grid-column: 1 / -1;
    order: 3;
    text-align: center;
  }

  .mk24-footer-center p {
    justify-content: center;
  }

  .mk24-footer-contact {
    order: 2;
    justify-self: end;
    text-align: left;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .mk24-site-header {
    z-index: 60;
  }

  .mk24-header-inner {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .mk24-brand {
    min-width: 0;
    gap: 10px;
  }

  .mk24-brand img {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .mk24-brand strong {
    font-size: 16px;
  }

  .mk24-brand-rotator {
    min-width: 132px;
    height: 22px;
  }

  .mk24-brand small {
    font-size: 11px;
  }

  .mk24-main-nav {
    display: none;
  }

  .mk24-mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    cursor: pointer;
  }

  .mk24-mobile-menu-toggle svg,
  .mk24-mobile-floating-toggle svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .mk24-mobile-menu-toggle [data-mobile-menu-open],
  .mk24-mobile-floating-toggle [data-mobile-quick-open] {
    display: block;
  }

  .mk24-mobile-menu-toggle [data-mobile-menu-close],
  .mk24-mobile-floating-toggle [data-mobile-quick-close],
  .mk24-site-header.is-menu-open .mk24-mobile-menu-toggle [data-mobile-menu-open],
  .mk24-mobile-floating.is-open .mk24-mobile-floating-toggle [data-mobile-quick-open] {
    display: none !important;
  }

  .mk24-site-header.is-menu-open .mk24-mobile-menu-toggle [data-mobile-menu-close],
  .mk24-mobile-floating.is-open .mk24-mobile-floating-toggle [data-mobile-quick-close] {
    display: block !important;
  }

  .mk24-mobile-menu-toggle:active {
    transform: scale(0.96);
  }

  .mk24-mobile-menu-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(16, 19, 28, 0.98);
    transition: max-height 240ms ease, border-color 240ms ease;
    border-top: 1px solid transparent;
  }

  .mk24-site-header.is-menu-open .mk24-mobile-menu-panel {
    max-height: calc(100vh - 64px);
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .mk24-mobile-menu-inner {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .mk24-mobile-menu-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }

  .mk24-mobile-menu-head p {
    margin: 0 0 4px;
    color: var(--mk24-amber);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .mk24-mobile-menu-head strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
  }

  .mk24-mobile-menu-head span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 800;
  }

  .mk24-mobile-nav {
    display: grid;
    gap: 8px;
  }

  .mk24-mobile-nav a {
    display: block;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mk24-mobile-nav strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
  }

  .mk24-mobile-nav span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
  }

  .mk24-mobile-bottom-nav {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0 !important;
    z-index: 55;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #11141d;
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.35);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .mk24-mobile-bottom-nav nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .mk24-mobile-bottom-nav a {
    display: flex;
    height: 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    transition: color 160ms ease;
  }

  .mk24-mobile-bottom-nav a:hover,
  .mk24-mobile-bottom-nav a:focus {
    color: var(--mk24-amber);
  }

  .mk24-mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
  }

  .mk24-mobile-floating {
    position: fixed;
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    z-index: 56;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .mk24-mobile-floating-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mk24-mobile-floating.is-open .mk24-mobile-floating-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mk24-mobile-floating-panel a {
    display: inline-flex;
    min-width: 108px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: #fff;
    color: #11141d;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  }

  .mk24-mobile-floating-toggle {
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transition: transform 120ms ease;
  }

  .mk24-mobile-floating-toggle img {
    width: 68px;
    height: 68px;
    display: block;
    object-fit: contain;
  }

  .mk24-mobile-floating-toggle [data-mobile-quick-close] {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    background: rgba(17, 20, 29, 0.94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  }

  .mk24-mobile-floating-toggle:active {
    transform: scale(0.95);
  }
}

@media (min-width: 768px) {
  .mk24-desktop-floating {
    display: flex;
  }

  .mk24-mobile-floating {
    display: none;
  }

  .mk24-review-viewport {
    --review-gap: 24px;
    --review-visible: 3;
  }
}

@media (min-width: 1180px) {
  .mk24-review-viewport {
    --review-visible: 4;
  }
}

@media (min-width: 1440px) {
  .mk24-review-viewport {
    --review-visible: 4;
  }
}

@media (max-width: 560px) {
  .mk24-container {
    width: min(100% - 24px, 1200px);
  }

  .mk24-naver-services {
    gap: 15px;
    margin-top: 30px;
  }

  .mk24-naver-service-link:hover,
  .mk24-naver-service-link:focus-visible {
    width: 170px;
  }

  .mk24-brand img {
    width: 46px;
    height: 46px;
  }

  .mk24-hero-content {
    padding: 172px 0 72px;
  }

  .mk24-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .mk24-hero-copy {
    font-size: 15px;
  }

  .mk24-card-grid {
    grid-template-columns: 1fr;
  }

  .mk24-blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card {
    flex-direction: column !important;
    height: auto;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card > a {
    flex: none;
    width: 100% !important;
    min-width: 0;
    max-width: none;
    align-self: auto;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card div {
    height: auto;
    min-height: 0;
    width: 100%;
    padding: 10px 12px 9px;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card h3 {
    font-size: 14px;
    margin: 3px 0 5px;
  }

  .mk24-blog-section .mk24-blog-card-grid .mk24-post-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: keep-all;
  }

  .mk24-case-slider {
    --case-gap: 14px;
    --case-visible: 1.6;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }

  .mk24-case-track {
    animation-duration: 26s;
  }

  .mk24-trust-grid,
  .mk24-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk24-service-grid {
    gap: 10px;
  }

  .mk24-service-card {
    min-height: 154px;
    padding: 18px 14px;
  }

  .mk24-service-card h3 {
    font-size: 18px;
  }

  .mk24-service-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .mk24-kakao-estimate-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mk24-estimate-top-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .mk24-estimate-top-row .mk24-estimate-field {
    gap: 5px;
  }

  .mk24-estimate-top-row .mk24-estimate-field label {
    font-size: 11px;
  }

  .mk24-estimate-top-row .mk24-estimate-field input,
  .mk24-estimate-top-row .mk24-date-display,
  .mk24-estimate-top-row .mk24-estimate-field select {
    height: 40px;
    padding: 0 6px;
    font-size: 12px;
  }

  .mk24-estimate-top-row .mk24-estimate-field input,
  .mk24-estimate-top-row .mk24-date-display {
    line-height: 40px;
  }

  .mk24-estimate-top-row .mk24-estimate-field select {
    line-height: normal;
    padding: 0 6px !important;
  }

  .mk24-estimate-top-row .mk24-estimate-field select {
    background-image: none !important;
  }

  .mk24-estimate-location-row {
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: end;
    gap: 5px;
  }

  .mk24-estimate-location-row .mk24-estimate-condition-grid {
    grid-template-columns: 42px 46px 46px;
    justify-content: end;
    gap: 4px;
  }

  .mk24-estimate-location-row .mk24-estimate-field-compact {
    gap: 4px;
  }

  .mk24-estimate-location-row .mk24-estimate-field-compact label {
    font-size: 9px;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
  }

  .mk24-estimate-location-row .mk24-estimate-field-compact select {
    height: 34px;
    padding: 0 1px !important;
    font-size: 10px;
    background-image: none;
    line-height: normal;
    text-align: center;
    text-align-last: center;
  }

  .mk24-estimate-pair-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mk24-estimate-pair-row .mk24-estimate-field-compact select {
    height: 40px;
    padding: 0 8px !important;
    font-size: 12px;
    line-height: normal;
  }

  .mk24-quick-estimate-actions {
    grid-template-columns: 1fr;
  }

  .mk24-service-more {
    margin-top: 12px;
  }

  .mk24-service-modal {
    padding: 14px;
  }

  .mk24-service-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }

  .mk24-service-dialog-image {
    min-height: 210px;
  }

  .mk24-service-dialog-image::after {
    background: linear-gradient(0deg, #131722, transparent 78%);
  }

  .mk24-service-dialog-body {
    padding: 24px;
  }

  .mk24-service-dialog-actions {
    flex-direction: column;
  }

  .mk24-trust-grid div {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mk24-section {
    padding: 68px 0;
  }
}

.mk24-lower-sections {
  display: flex;
  flex-direction: column;
}

.mk24-lower-sections .mk24-review-section { order: 1; }
.mk24-lower-sections .mk24-blog-section { order: 2; }
.mk24-lower-sections .mk24-gallery-section { order: 3; }
.mk24-lower-sections .mk24-quick-estimate { order: 4; }

.mk24-required-label {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
  line-height: 1.2;
}

.mk24-required-label::before {
  content: none;
}

.mk24-required-check {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 10px;
  height: 10px;
  margin-right: 0;
  color: #ff0000;
  font-weight: 700;
  font-size: 0;
  line-height: 1;
  flex: 0 0 auto;
}

.mk24-required-check::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  position: static;
  transform: rotate(-45deg);
  transform-origin: center;
}

.mk24-estimate-location-row.mk24-furniture-location {
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.55fr);
}

.mk24-estimate-location-row.mk24-furniture-location .mk24-estimate-condition-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 720px) {
  .mk24-estimate-location-row.mk24-furniture-location {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.58fr);
  }
}

.mk24-review-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 10px;
  color: var(--mk24-amber);
  font-size: 13px;
  font-weight: 900;
  text-underline-offset: 4px;
}

.mk24-review-gallery-link:hover {
  text-decoration: underline;
}

@media (min-width: 901px) {
  .mk24-quick-estimate-inner {
    gap: 26px;
  }

  .mk24-quick-estimate .mk24-kakao-estimate-form {
    gap: 10px;
    padding: 18px;
  }

  .mk24-quick-estimate .mk24-estimate-panel {
    gap: 10px;
  }

  .mk24-quick-estimate .mk24-estimate-field {
    gap: 6px;
  }

  .mk24-quick-estimate .mk24-estimate-photo-note {
    padding: 9px 11px;
    line-height: 1.5;
  }

  .mk24-quick-estimate .mk24-cargo-items-textarea {
    min-height: 54px !important;
  }

  .mk24-quick-estimate .mk24-special-items-textarea {
    min-height: 64px !important;
  }
}

@media (max-width: 767px) {
  .mk24-review-viewport {
    --review-visible: 1.85;
  }

  .mk24-review-content p {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .mk24-quick-estimate-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mk24-mail-submit,
  .mk24-kakao-submit {
    min-width: 0;
    min-height: 48px;
    padding: 0 8px;
    font-size: 13px;
    white-space: nowrap;
  }
}


/* Install package color overrides */
:root {
  --mk24-bg: #10131c;
  --mk24-panel: #171b26;
  --mk24-text: #f4f6fb;
  --mk24-muted: #9aa3b2;
  --mk24-amber: #f4a629;
  --mk24-amber-2: #ffd166;
}
.mk24-kakao-estimate-note{display:block;width:100%;height:122px;min-height:122px;margin:12px 0 0;background:url("/images/kakao-guide-steps.png") center center/contain no-repeat;font-size:0;line-height:0;color:transparent;text-indent:-9999px;overflow:hidden}@media (max-width:767px){.mk24-kakao-estimate-note{height:78px;min-height:78px;margin-top:10px;background-size:cover;background-position:top center}}
.mk24-kakao-estimate-note,
.mk24-estimate-note-live {
  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;
  background: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

.mk24-kakao-guide {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 14px !important;
  grid-column: 1 / -1 !important;
  align-items: stretch !important;
}

.mk24-kakao-guide-step {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) 12px !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 86px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(244, 166, 41, 0.22) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

.mk24-kakao-guide-step:last-child {
  grid-template-columns: 24px minmax(0, 1fr) !important;
}

.mk24-kakao-guide-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 999px !important;
  background: #1ecb5f !important;
  color: #08110b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.mk24-kakao-guide-text {
  display: grid !important;
  gap: 4px !important;
  min-width: 0 !important;
}

.mk24-kakao-guide-title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

.mk24-kakao-guide-desc {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.mk24-kakao-guide-arrow {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

@media (max-width: 767px) {
  .mk24-kakao-guide {
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .mk24-kakao-guide-step {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 6px !important;
    min-height: 68px !important;
    padding: 10px 8px !important;
  }

  .mk24-kakao-guide-step:last-child {
    grid-template-columns: 20px minmax(0, 1fr) !important;
  }

  .mk24-kakao-guide-badge {
    width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
  }

  .mk24-kakao-guide-title {
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  .mk24-kakao-guide-desc,
  .mk24-kakao-guide-arrow {
    display: none !important;
  }
}
.mk24-kakao-guide{display:none!important}.mk24-kakao-estimate-note,.mk24-estimate-note-live{position:static!important;display:block!important;width:100%!important;padding:0!important;margin:12px 0 0!important;overflow:hidden!important;clip:auto!important;white-space:normal!important;border:0!important;font-size:0!important;line-height:0!important;color:transparent!important;text-indent:-9999px!important;background-repeat:no-repeat!important;background-position:center center!important;background-size:contain!important}.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:112px!important;min-height:112px!important;background-image:url("/images/kakao-guide-desktop.png")!important}@media (max-width:767px){.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:74px!important;min-height:74px!important;margin-top:10px!important;background-image:url("/images/kakao-guide-mobile.png")!important;background-size:contain!important;background-position:center center!important}}
.mk24-kakao-estimate-note,.mk24-estimate-note-live{margin:6px 0 4px!important}.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:104px!important;min-height:104px!important;background-image:url("/images/kakao-guide-desktop.png")!important;background-size:cover!important;background-position:center center!important}@media (max-width:767px){.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:66px!important;min-height:66px!important;margin:6px 0 2px!important;background-image:url("/images/kakao-guide-mobile.png")!important;background-size:cover!important;background-position:center center!important}}
.mk24-kakao-estimate-note,.mk24-estimate-note-live{background-size:contain!important;background-position:center center!important;background-repeat:no-repeat!important;overflow:hidden!important}.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:92px!important;min-height:92px!important;margin:6px 0 4px!important}@media (max-width:767px){.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:56px!important;min-height:56px!important;margin:6px 0 2px!important;background-size:contain!important;background-position:center center!important}}
.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:82px!important;min-height:82px!important;margin:2px 0 0!important}@media (max-width:767px){.mk24-kakao-estimate-note,.mk24-estimate-note-live{height:52px!important;min-height:52px!important;margin:4px 0 0!important}}
