:root {
    --mm-blue: #123b7a;
    --mm-blue-dark: #0b2856;
    --mm-blue-soft: #eaf1ff;
    --mm-yellow: #ffd447;
    --mm-yellow-soft: #fff6ce;
    --mm-gray: #f5f7fb;
    --mm-line: #dde5f0;
    --mm-text: #1f2937;
    --mm-muted: #6b7280;
    --mm-white: #ffffff;
    --mm-radius: 20px;
    --mm-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
    color: var(--mm-text);
    background: #fff;
    word-break: keep-all;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(221, 229, 240, 0.9);
}

.site-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.site-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.site-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--mm-blue);
    color: var(--mm-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
}

.site-logo-text {
    font-size: 18px;
    font-weight: 900;
    color: var(--mm-blue-dark);
    letter-spacing: -0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover {
    color: var(--mm-blue);
    border-bottom-color: var(--mm-yellow);
}

.site-header-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header-call span {
    color: var(--mm-blue-dark);
    font-weight: 900;
    font-size: 15px;
}

.site-header-call a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--mm-blue);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.site-main {
    min-height: 60vh;
}

.mm-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.mm-section {
    padding: 78px 0;
}

.mm-section-soft {
    background: var(--mm-gray);
}

.mm-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.mm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--mm-yellow-soft);
    color: #8a6500;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.mm-section-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.22;
    letter-spacing: -0.05em;
    color: #111827;
}

.mm-section-desc {
    margin: 12px 0 0;
    color: var(--mm-muted);
    line-height: 1.75;
    font-size: 16px;
}

.mm-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 999px;
    border: 0;
    background: var(--mm-blue);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(18, 59, 122, 0.18);
}

.mm-btn:hover {
    background: var(--mm-blue-dark);
}

.mm-btn-yellow {
    background: var(--mm-yellow);
    color: #1f2937;
}

.mm-btn-yellow:hover {
    background: #f7c400;
}

.mm-btn-light {
    background: #fff;
    color: var(--mm-blue);
    border: 1px solid var(--mm-line);
    box-shadow: none;
}

.mm-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 212, 71, 0.34), transparent 30%),
        linear-gradient(135deg, #eef4ff 0%, #ffffff 48%, #fff8d9 100%);
}

.mm-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 82px 20px 70px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.mm-hero-title {
    margin: 0;
    font-size: 54px;
    line-height: 1.08;
    letter-spacing: -0.07em;
    color: #0f172a;
}

.mm-hero-title strong {
    color: var(--mm-blue);
}

.mm-hero-desc {
    margin: 22px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.mm-hero-actions {
    margin-top: 28px;
}

.mm-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.mm-hero-badges span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--mm-line);
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.mm-hero-visual {
    position: relative;
}

.mm-hero-image {
    min-height: 380px;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 80px rgba(18, 59, 122, 0.18);
    border: 1px solid rgba(255,255,255,0.9);
}

.mm-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.mm-hero-fallback {
    min-height: 380px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(18, 59, 122, 0.95), rgba(11, 40, 86, 0.96)),
        radial-gradient(circle at top right, rgba(255, 212, 71, 0.55), transparent 35%);
    color: #fff;
    padding: 32px;
    text-align: center;
}

.mm-hero-fallback .mark {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: var(--mm-yellow);
    color: var(--mm-blue-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.mm-hero-fallback strong {
    display: block;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.mm-hero-fallback p {
    margin: 12px 0 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

.mm-floating-card {
    position: absolute;
    left: -22px;
    bottom: 26px;
    width: 230px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--mm-shadow);
    border: 1px solid var(--mm-line);
    padding: 18px;
}

.mm-floating-card span {
    display: block;
    color: var(--mm-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.mm-floating-card strong {
    display: block;
    color: var(--mm-blue);
    font-size: 24px;
    letter-spacing: -0.05em;
}

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

.mm-service-card {
    background: #fff;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    padding: 22px;
    box-shadow: var(--mm-shadow);
    min-height: 180px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.mm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.mm-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--mm-blue-soft);
    color: var(--mm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 16px;
}

.mm-service-card h3 {
    margin: 0;
    font-size: 19px;
    letter-spacing: -0.04em;
}

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

.mm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mm-feature {
    border-radius: var(--mm-radius);
    background: #fff;
    border: 1px solid var(--mm-line);
    padding: 22px;
}

.mm-feature strong {
    display: block;
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.mm-feature p {
    margin: 0;
    color: var(--mm-muted);
    line-height: 1.65;
    font-size: 14px;
}

.mm-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.mm-process-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    padding: 20px;
    min-height: 150px;
}

.mm-process-step em {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--mm-blue);
    color: #fff;
    font-style: normal;
    font-weight: 900;
    margin-bottom: 14px;
}

.mm-process-step strong {
    display: block;
    font-size: 17px;
    margin-bottom: 7px;
}

.mm-process-step p {
    margin: 0;
    color: var(--mm-muted);
    font-size: 14px;
    line-height: 1.6;
}

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

.mm-price-card {
    background: #fff;
    border: 1px solid var(--mm-line);
    border-radius: var(--mm-radius);
    padding: 22px;
    box-shadow: var(--mm-shadow);
}

.mm-price-card .category {
    color: var(--mm-blue);
    font-weight: 900;
    font-size: 13px;
}

.mm-price-card h3 {
    margin: 8px 0 10px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.mm-price-card .price {
    display: block;
    color: #111827;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
}

.mm-price-card p {
    margin: 0;
    color: var(--mm-muted);
    line-height: 1.65;
    font-size: 14px;
}

.mm-notice-box {
    border-radius: var(--mm-radius);
    background: #fff;
    border: 1px solid var(--mm-line);
    padding: 20px;
    color: #475569;
    line-height: 1.7;
}

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

.mm-portfolio-card {
    overflow: hidden;
    border-radius: var(--mm-radius);
    border: 1px solid var(--mm-line);
    background: #fff;
    box-shadow: var(--mm-shadow);
}

.mm-portfolio-thumb {
    height: 190px;
    background: linear-gradient(135deg, #dbeafe, #fff7cc);
}

.mm-portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mm-portfolio-body {
    padding: 18px;
}

.mm-portfolio-body h3 {
    margin: 0;
    font-size: 18px;
}

.mm-portfolio-body p {
    margin: 8px 0 0;
    color: var(--mm-muted);
    font-size: 14px;
    line-height: 1.6;
}

.mm-cta {
    background:
        linear-gradient(135deg, rgba(18, 59, 122, 0.96), rgba(11, 40, 86, 0.97)),
        radial-gradient(circle at top right, rgba(255, 212, 71, 0.45), transparent 34%);
    color: #fff;
    border-radius: 34px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.mm-cta h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -0.05em;
}

.mm-cta p {
    margin: 12px 0 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.site-footer {
    background: #0b2856;
    color: #fff;
    padding: 44px 0;
}

.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.74);
    font-size: 13px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer-copy {
    margin: 18px 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

.mm-mobile-quick {
    display: none;
}

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

    .mm-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

    .mm-card-grid,
    .mm-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-price-grid,
    .mm-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-floating-card {
        left: 18px;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 70px;
    }

    .site-header-inner {
        padding: 12px 16px;
    }

    .site-logo {
        min-width: 0;
    }

    .site-logo-text {
        font-size: 16px;
    }

    .site-header-call span {
        display: none;
    }

    .site-header-call a {
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .mm-hero-inner {
        padding: 42px 16px 46px;
        gap: 28px;
    }

    .mm-hero-title {
        font-size: 38px;
    }

    .mm-hero-desc {
        font-size: 16px;
    }

    .mm-hero-image,
    .mm-hero-image img,
    .mm-hero-fallback {
        min-height: 280px;
    }

    .mm-floating-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .mm-section {
        padding: 56px 0;
    }

    .mm-section-head {
        display: block;
    }

    .mm-section-title {
        font-size: 28px;
    }

    .mm-card-grid,
    .mm-feature-grid,
    .mm-process,
    .mm-price-grid,
    .mm-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .mm-cta {
        display: block;
        padding: 30px 24px;
        border-radius: 26px;
    }

    .mm-cta h2 {
        font-size: 27px;
    }

    .mm-cta .mm-btn-row {
        margin-top: 20px;
    }

    .mm-mobile-quick {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 200;
        background: #fff;
        border-top: 1px solid var(--mm-line);
        box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
    }

    .mm-mobile-quick a {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
    }

    .mm-mobile-quick a:first-child {
        background: var(--mm-yellow);
        color: #1f2937;
    }

    .mm-mobile-quick a:last-child {
        background: var(--mm-blue);
        color: #fff;
    }
}
