* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-primary: #6A7EC8;
    --color-primary-dark: #4E5FA8;
    --color-primary-darker: #3D4678;
    --color-accent: #8A9ED8;
    --color-bg-tint: #EEF1FA;
    --color-glow-strong: rgba(130, 155, 225, 0.95);
    --color-glow-mid: rgba(130, 155, 225, 0.55);
    --color-glow-soft: rgba(130, 155, 225, 0.18);
    --color-ring: rgba(165, 180, 235, 0.55);
    --color-shadow: rgba(78, 95, 168, 0.12);
    --ms-fs-tag: 16px;
    --ms-fs-title: clamp(32px, 3.5vw, 44px);
    --ms-fs-title-lg: clamp(34px, 3.8vw, 48px);
    --ms-fs-desc: 18px;
    --ms-fs-body: 17px;
    --ms-fs-sm: 16px;
    --ms-fs-xs: 15px;
    --ms-py: 100px;
    --ms-py-sm: 80px;
    --ms-px: 40px;
    --ms-radius: 12px;
    --ms-radius-pill: 999px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: #111;
    word-break: keep-all;
}

/* header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}
.logo-img {
    width: auto;
    height: 44px;
    display: block;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.gnb {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: center;
}
.gnb a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
.gnb a:hover { color: var(--color-primary-dark); }
.btn-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--color-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-inquiry-text--short { display: none; }
.btn-kakao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    background: #FEE500;
    color: #391B1B;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(254, 229, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-kakao i { font-size: 16px; }
.btn-kakao:hover {
    background: #FCDA00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 229, 0, 0.45);
}
.btn-kakao:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
}
.btn-kakao-text--short { display: none; }
.btn-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 103;
    -webkit-tap-highlight-color: transparent;
}
.btn-menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
    transform-origin: center;
}
.btn-menu-toggle[aria-expanded="true"] .btn-menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.btn-menu-toggle[aria-expanded="true"] .btn-menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.btn-menu-toggle[aria-expanded="true"] .btn-menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.mobile-menu-backdrop {
    display: none;
}
body.is-menu-open {
    overflow: hidden;
}
.btn-inquiry:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 95, 168, 0.28);
}
.btn-inquiry:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px var(--color-shadow);
}

/* hero */
.hero {
    position: relative;

    display: flex;
    align-items: center;
    background: url('../images/sian2_main1.png') center right / cover no-repeat;
    padding: 150px 0px 100px;
}
.hero-inner {
    max-width: 1480px;
    margin: 0 auto;
    width: 100%;
}
.hero-content {
    max-width: 620px;
}
.hero-tag {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-title span {
    color: var(--color-primary-dark);
}
.hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 36px;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 20px var(--color-shadow);
}
.hero-btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(78, 95, 168, 0.25);
}
.hero-btn--outline {
    background: #fff;
    color: var(--color-primary-dark);
    border: 1px solid #d8deef;
}
.hero-btn--outline:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-tint);
}
.hero-social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-avatars {
    display: flex;
    align-items: center;
}
.hero-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.hero-avatars img:first-child {
    margin-left: 0;
}
.hero-social-text {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

/* section02 - platform (좌우 2블록) */
.platform-section {
    background: #fff;
    padding: 80px 40px 100px;
}
.platform-row {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 60px 0;
}
.platform-content {
    flex: 1;
    max-width: 520px;
}
.platform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.platform-visual--orbit{
    flex: 1;
}
.platform-visual--dashboard .platform-visual-glow{
    position: relative;
    width: 100%;
}
.platform-visual--dashboard .platform-visual-glow::before{
    content: "";
    position: absolute;
    left: 53%;
    top: 48%;
    width: 107%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 50% 50%,
        var(--color-glow-strong) 0%,
        var(--color-glow-mid) 28%,
        var(--color-glow-soft) 48%,
        rgba(130, 155, 225, 0) 68%);
    filter: blur(28px);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.7;
    animation: platformGlowDrift 5.5s linear infinite;
}
.platform-visual--dashboard .platform-visual-glow > img{
    position: relative;
    z-index: 1;
}
.platform-visual--dashboard img {
    width: 100%;
    height: auto;
    display: block;
}
.platform-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.3;
}
.platform-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 32px;
}
.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 14px;
    border-left: 3px solid var(--color-accent);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}
.platform-link:hover {
    color: var(--color-primary-dark);
    border-left-color: var(--color-primary-dark);
}
.platform-link span {
    font-size: 18px;
    transition: transform 0.2s;
}
.platform-link:hover span {
    transform: translateX(4px);
}

/* dashboard visual glow (scoped) - keep animation stable */
.platform-visual--dashboard .platform-visual-glow::before{
    will-change: transform, filter;
}

@keyframes platformGlowDrift{
    0%{
        transform: translate(-50%, -50%) rotate(0deg) translateX(70px) rotate(0deg) scale(1.02);
        filter: blur(24px);
        opacity: 0.9;
    }
    50%{
        transform: translate(-50%, -50%) rotate(180deg) translateX(70px) rotate(-180deg) scale(0.96);
        filter: blur(34px);
        opacity: 0.7;
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg) translateX(70px) rotate(-360deg) scale(1.02);
        filter: blur(24px);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce){
    .platform-visual--dashboard .platform-visual-glow::before{
        animation: none;
    }
}

/* orbit diagram - Connected Healthcare */
.orbit-diagram {
    position: relative;
    width: min(100%, 640px);
    aspect-ratio: 1;
    margin: 0 auto;
}
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px dashed var(--color-ring);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.orbit-ring--inner {
    width: 62%;
    height: 62%;
}
.orbit-ring--outer {
    width: 96%;
    height: 96%;
}
.orbit-track {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.orbit-track--inner {
    width: 62%;
    height: 62%;
    animation: orbit-spin 22s linear infinite;
}
.orbit-track--outer {
    width: 96%;
    height: 96%;
    animation: orbit-spin-reverse 32s linear infinite;
}
.orbit-dot {
    position: absolute;
    inset: 0;
    transform: rotate(var(--angle));
    pointer-events: none;
}
.orbit-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    background: var(--dot-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.orbit-dot--green  { --dot-color: #22c55e; }
.orbit-dot--blue   { --dot-color: #9DB0F0; }
.orbit-dot--orange { --dot-color: #f59e0b; }
.orbit-dot--yellow { --dot-color: #eab308; }
.orbit-dot--red    { --dot-color: #ef4444; }
.orbit-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.orbit-shield img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbit-spin-reverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* section03 - trust banner */
.trust-banner {
    position: relative;
    background: url('../images/section03_img.png') center center / cover no-repeat;
    padding: 100px 40px;
    min-height: 495px;
    display: flex;
    align-items: center;
}
.trust-banner-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}
.trust-banner-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.trust-banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}
.trust-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.trust-btn--primary {
    background: #fff;
    color: var(--color-primary-darker);
}
.trust-btn--primary:hover {
    background: var(--color-bg-tint);
}
.trust-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.85);
}
.trust-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}
/* section05 - cta banner */
.cta-banner-section {
    padding: 0 var(--ms-px) var(--ms-py-sm);
    background: #fff;
}
.cta-banner-wrap {
    max-width: 1480px;
    margin: 0 auto;
}
.cta-banner {
    background: url('../images/section05_img.png') center center / cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    padding: 72px 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-banner-title {
    font-size: var(--ms-fs-title-lg);
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.cta-banner-desc {
    font-size: var(--ms-fs-desc);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    margin-bottom: 36px;
}

/* section04 - marketing grid */
.marketing-section {
    background: #fff;
    padding: 100px 40px 120px;
}
.marketing-inner {
    max-width: 1480px;
    margin: 0 auto;
}
.marketing-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}
.marketing-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.marketing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) {
    .marketing-card:hover {
        transform: translateY(-6px);
        border-color: rgba(130, 155, 225, 0.35);
        box-shadow: 0 12px 36px var(--color-shadow);
    }
    .marketing-card:hover .marketing-card-icon {
        background: var(--color-bg-tint);
        border-color: rgba(130, 155, 225, 0.45);
    }
    .marketing-card:hover .marketing-card-icon i {
        transform: scale(1.08);
    }
    .marketing-card:hover .marketing-card-title {
        color: var(--color-primary-dark);
    }
    .marketing-card:hover .marketing-card-desc {
        color: #444;
    }
}
.marketing-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f7fa;
    border: 1px solid #e8ecf0;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.marketing-card-icon i {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}
.marketing-card-icon--search i { color: #38bdf8; }
.marketing-card-icon--content i { color: #f472b6; }
.marketing-card-icon--press i { color: var(--color-primary); }
.marketing-card-icon--ai i { color: #818cf8; }
.marketing-card-icon--report i { color: #34d399; }
.marketing-card-icon--shield i { color: var(--color-primary-dark); }
.marketing-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    transition: color 0.25s ease;
}
.marketing-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    transition: color 0.25s ease;
}

/* section06 - AI & partners */
.ai-section {
    background: #fff;
    padding: var(--ms-py) var(--ms-px) 120px;
}
.ai-section-inner {
    max-width: 1480px;
    margin: 0 auto;
}
.ai-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(130, 155, 225, 0.2);
}
.ai-title {
    font-size: var(--ms-fs-title-lg);
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}
.ai-desc {
    font-size: var(--ms-fs-desc);
    color: #555;
    margin-bottom: 32px;
}
.ai-link,
.ms-why .ms-btn,
.cta-banner .ms-btn {
    font-size: var(--ms-fs-body);
}
.ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ai-visual img {
    width: 100%;
    height: auto;
    display: block;
}
.partners-block {
    padding-top: 72px;
    text-align: center;
}
.partners-title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}
.partners-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.partners-list li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-list img {
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: opacity 0.25s ease, filter 0.25s ease;
    height: 60px;
}
@media (hover: hover) {
    .partners-list img:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
}

/* footer */
.site-footer {
    background: linear-gradient(180deg, var(--color-primary-darker) 0%, #2f3658 100%);
    color: #fff;
    padding: 72px 40px 32px;
}
.footer-inner {
    max-width: 1480px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}
.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}
.footer-brand-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}
.footer-col-title,
.footer-cta-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.footer-cta-title {
    font-size: 22px;
    margin-bottom: 12px;
}
.footer-links {
    list-style: none;
}
.footer-links li + li {
    margin-top: 12px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-cta-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s, transform 0.25s;
}
.footer-cta-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-top: 28px;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* section07 - apps integration banner */
.apps-banner {
    position: relative;
    background: url('../images/section07_bg.png') center center / cover no-repeat;
    padding: 80px 0px;
    overflow: hidden;
}
.apps-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.apps-banner-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.apps-banner-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}
.apps-banner-content {
    flex: 1;
}
.apps-banner-title {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.apps-banner-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

/* section08 - review slider */
.review-section {
    padding: var(--ms-py) 0 120px;
    overflow: hidden;
}
.review-inner {
    max-width: 1480px;
    margin: 0 auto;
}
.review-title {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: 56px;
}
.review-swiper {
    width: 100%;
    padding: 10px 0 50px !important;
    overflow: unset !important;
}
.review-swiper .swiper-wrapper {
    align-items: stretch;
}
.review-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.review-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.review-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.45s ease, transform 0.55s ease;
    z-index: 0;
}
.review-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 30, 60, 0.55) 0%, rgba(20, 30, 60, 0.72) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
}
.review-card-content {
    position: relative;
    z-index: 1;
    padding: 36px 32px 28px;
    transition: color 0.35s ease;
}
.review-swiper .swiper-slide:hover .review-card,
.review-swiper .swiper-slide-active .review-card {
    border-color: rgba(130, 155, 225, 0.35);
    box-shadow: 0 8px 32px var(--color-shadow);
    transform: scale(1.02);
}
.review-swiper .swiper-slide:hover .review-card-bg,
.review-swiper .swiper-slide-active .review-card-bg {
    opacity: 1;
    transform: scale(1);
}
.review-swiper .swiper-slide:hover .review-card-bg::after,
.review-swiper .swiper-slide-active .review-card-bg::after {
    opacity: 1;
}
.review-swiper .swiper-slide:hover .review-text,
.review-swiper .swiper-slide-active .review-text,
.review-swiper .swiper-slide:hover .review-meta strong,
.review-swiper .swiper-slide-active .review-meta strong {
    color: #fff;
}
.review-swiper .swiper-slide:hover .review-meta span,
.review-swiper .swiper-slide-active .review-meta span {
    color: rgba(255, 255, 255, 0.82);
}
.review-swiper .swiper-slide:hover .review-divider,
.review-swiper .swiper-slide-active .review-divider {
    background: rgba(255, 255, 255, 0.25);
}
.review-swiper .swiper-slide:hover .review-quote,
.review-swiper .swiper-slide-active .review-quote {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.review-swiper .swiper-slide:hover .review-avatar,
.review-swiper .swiper-slide-active .review-avatar {
    border-color: rgba(255, 255, 255, 0.45);
}
.review-quote {
    display: block;
    height: auto;
    margin-bottom: 30px;
}
.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    min-height: 110px;
    word-break: keep-all;
}
.review-divider {
    height: 1px;
    background: #e8ecf0;
    margin: 28px 0 20px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-tint);
    border: 2px solid rgba(130, 155, 225, 0.25);
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.review-meta strong {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}
.review-meta span {
    font-size: 14px;
    color: #666;
}
.review-pagination {
    bottom: 0 !important;
}
.review-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d9e8;
    opacity: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}
.review-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary-dark);
    transform: scale(1.15);
}

/* main_section */
.ms-inner {
    max-width: 1480px;
    margin: 0 auto;
}

/* 공통 타이포 */
.ms-section-tag,
.ms-channel-tag,
.ms-why-tag {
    font-size: var(--ms-fs-tag);
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
}
.ms-channel-tag,
.ms-why-tag {
    text-align: center;
}
.ms-why-tag {
    display: inline-block;
    text-align: left;
    background: var(--color-bg-tint);
    padding: 8px 16px;
    border-radius: var(--ms-radius-pill);
    margin-bottom: 20px;
}
.ms-section-heading,
.ms-channel-title,
.ms-section-title,
.ms-cases-title,
.ms-why-title,
.review-title,
.ai-title {
    font-size: var(--ms-fs-title);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: #111;
}
.ms-section-desc,
.ms-why-desc,
.ai-desc,
.ms-package-desc {
    font-size: var(--ms-fs-desc);
    line-height: 1.75;
    color: #555;
}

/* 공통 버튼 */
.ms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    font-size: var(--ms-fs-body);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--ms-radius);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.ms-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 20px var(--color-shadow);
}
.ms-btn--outline {
    background: #fff;
    color: var(--color-primary-dark);
    border-color: #d8deef;
}
.ms-btn--white {
    background: #fff;
    color: var(--color-primary-darker);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.ms-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}
.ms-btn--link {
    padding: 0 0 0 14px;
    border: none;
    border-left: 3px solid var(--color-accent);
    border-radius: 0;
    background: transparent;
    color: var(--color-accent);
    box-shadow: none;
}
.ms-btn--pill {
    border-radius: var(--ms-radius-pill);
}
.ms-btn--block {
    display: flex;
    width: 100%;
    max-width: 480px;
}
@media (hover: hover) {
    .ms-btn--primary:hover {
        background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(78, 95, 168, 0.25);
    }
    .ms-btn--outline:hover {
        border-color: var(--color-accent);
        background: var(--color-bg-tint);
        transform: translateY(-2px);
    }
    .ms-btn--white:hover {
        background: var(--color-bg-tint);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    .ms-btn--ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    .ms-btn--link:hover {
        color: var(--color-primary-dark);
        border-left-color: var(--color-primary-dark);
        transform: none;
    }
    .ms-btn--link:hover span {
        transform: translateX(4px);
    }
}
.ms-btn--link span {
    transition: transform 0.2s ease;
}

.ms-section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* channel */
.ms-channel {
    background: #fff;
    padding: var(--ms-py) var(--ms-px) 120px;
}
.ms-channel-tag {
    text-align: center;
    margin-bottom: 14px;
}
.ms-channel-title {
    text-align: center;
    margin-bottom: 56px;
}
.ms-channel-grid {
    list-style: none;
}
.ms-channel-accordion {
    display: flex;
    gap: 10px;
    height: clamp(400px, 38vw, 520px);
    align-items: stretch;
}
.ms-channel-accordion .ms-channel-card {
    flex: 1;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
@media (hover: hover) {
    .ms-channel-accordion:hover .ms-channel-card {
        flex: 0.7;
    }
    .ms-channel-accordion:hover .ms-channel-card:hover {
        flex: 3.4;
        box-shadow: 0 20px 48px rgba(78, 95, 168, 0.18);
    }
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-visual img {
        transform: scale(1.05);
    }
}
.ms-channel-card {
    border-radius: 20px;
    overflow: hidden;
}
.ms-channel-visual {
    position: relative;
    height: 100%;
    min-height: 100%;
    background: #eef1fa;
}
.ms-channel-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ms-channel-num {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    font-size: clamp(36px, 3vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    transition: font-size 0.4s ease, color 0.4s ease;
}
.ms-channel-body {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 20px 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%);
    color: #fff;
    transition: padding 0.45s ease;
}
@media (hover: hover) {
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-body {
        padding: 32px 26px 26px;
    }
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-num {
        font-size: clamp(44px, 4vw, 64px);
        color: rgba(255, 255, 255, 0.14);
    }
}
.ms-channel-cat {
    display: block;
    font-size: var(--ms-fs-xs);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: margin 0.35s ease;
}
@media (hover: hover) {
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-cat {
        margin-bottom: 10px;
    }
}
.ms-channel-body h3 {
    font-size: var(--ms-fs-body);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    max-height: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, max-height 0.45s ease, transform 0.35s ease, margin 0.35s ease;
}
.ms-channel-body p {
    font-size: var(--ms-fs-xs);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.05s, max-height 0.45s ease, transform 0.4s ease 0.05s;
}
@media (hover: hover) {
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-body h3 {
        opacity: 1;
        max-height: 60px;
        margin-bottom: 8px;
        transform: translateY(0);
        white-space: normal;
    }
    .ms-channel-accordion .ms-channel-card:hover .ms-channel-body p {
        opacity: 1;
        max-height: 100px;
        transform: translateY(0);
    }
}
@media (max-width: 1200px) {
    .ms-channel-accordion {
        height: 440px;
    }
    .ms-channel-accordion:hover .ms-channel-card:hover {
        flex: 2.8;
    }
}
@media (max-width: 1024px) {
    .ms-channel-accordion {
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .ms-channel-accordion .ms-channel-card {
        flex: 0 0 clamp(260px, 72vw, 320px);
        height: 400px;
        scroll-snap-align: start;
    }
    .ms-channel-accordion:hover .ms-channel-card,
    .ms-channel-accordion:hover .ms-channel-card:hover {
        flex: 0 0 clamp(260px, 72vw, 320px);
        box-shadow: none;
    }
    .ms-channel-body {
        padding: 24px 20px 20px;
    }
    .ms-channel-body h3,
    .ms-channel-body p {
        opacity: 1;
        max-height: none;
        transform: none;
        white-space: normal;
    }
    .ms-channel-body h3 {
        margin-bottom: 8px;
    }
    .ms-channel-cat {
        margin-bottom: 8px;
    }
}

/* package */
.ms-package {
    background: linear-gradient(180deg, #f0f2fb 0%, var(--color-bg-tint) 50%, #e8ebf8 100%);
}
.ms-package-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 80px;
}
.ms-package-intro {
    align-self: center;
}
.ms-package-title {
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.ms-package-price-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.ms-package-price-glow {
    position: absolute;
    inset: -32px -48px;
    background: radial-gradient(ellipse at center, var(--color-glow-soft) 0%, transparent 72%);
    animation: msPriceGlow 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.ms-package-price {
    position: relative;
    z-index: 1;
    font-size: clamp(48px, 5.8vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.ms-package-price-num {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--color-primary-darker) 0%,
        var(--color-primary-dark) 20%,
        var(--color-accent) 45%,
        #c5d0f0 50%,
        var(--color-accent) 55%,
        var(--color-primary-dark) 80%,
        var(--color-primary-darker) 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: msPriceShimmer 4s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(78, 95, 168, 0.25));
}
.ms-package-price-wrap::before,
.ms-package-price-wrap::after {
    position: absolute;
    font-size: 20px;
    color: var(--color-accent);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: msPriceSparkle 2.8s ease-in-out infinite;
}
.ms-package-price-wrap::before {
    content: '✦';
    top: -6px;
    right: -14px;
}
.ms-package-price-wrap::after {
    content: '✧';
    bottom: 6px;
    left: -18px;
    animation-delay: 1.4s;
}
.ms-package-price-month {
    font-size: 0.42em;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-right: 4px;
}
.ms-package-won {
    font-size: 0.4em;
    font-weight: 700;
    color: var(--color-primary-dark);
}
@keyframes msPriceGlow {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}
@keyframes msPriceShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 220% center; }
}
@keyframes msPriceSparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.6) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(180deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .ms-package-price-glow,
    .ms-package-price-num,
    .ms-package-price-wrap::before,
    .ms-package-price-wrap::after {
        animation: none;
    }
    .ms-package-price-num {
        background: none;
        -webkit-text-fill-color: var(--color-primary-dark);
        color: var(--color-primary-dark);
    }
}
.ms-package-desc {
    margin-bottom: 0;
}
.ms-package-card {
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 280px;
    flex-shrink: 0;
    padding: 0;
}
.ms-package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ms-package-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 14px 22px;
    font-size: var(--ms-fs-sm);
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(78, 95, 168, 0.1);
    box-shadow: 0 6px 20px rgba(78, 95, 168, 0.1);
    transition: transform 0.25s ease;
}
.ms-package-list li:nth-child(1) {
    align-self: flex-start;
    margin: 0 0 18px 0;
    transform: rotate(-2deg) translateX(-12px);
    border-radius: 16px 20px 14px 18px;
}
.ms-package-list li:nth-child(2) {
    align-self: flex-end;
    margin: 0 0 22px 0;
    transform: rotate(1.5deg) translateX(20px);
    border-radius: 18px 14px 20px 16px;
    box-shadow: 0 8px 24px rgba(78, 95, 168, 0.12);
}
.ms-package-list li:nth-child(3) {
    align-self: flex-start;
    margin: 0 0 16px 8px;
    transform: rotate(0.8deg) translateX(-4px);
    border-radius: 14px 18px 16px 20px;
}
.ms-package-list li:nth-child(4) {
    align-self: flex-end;
    margin: 0 0 20px 0;
    transform: rotate(-1.2deg) translateX(28px);
    border-radius: 20px 16px 18px 14px;
}
.ms-package-list li:nth-child(5) {
    align-self: flex-start;
    margin: 0 0 0 16px;
    transform: rotate(2deg) translateX(-20px);
    border-radius: 16px 14px 20px 18px;
}
@media (hover: hover) {
    .ms-package-list li:hover {
        transform: rotate(0deg) translateX(0) scale(1.02);
        z-index: 1;
    }
}
.ms-package-list i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
}
.ms-package-visual {
    position: relative;
    text-align: center;
}
.ms-package-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.ms-package-visual-float {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}
.ms-package-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.ms-package-badge {
    position: absolute;
    top: 8%;
    right: 4%;
    padding: 10px 16px;
    width: auto;
    height: auto;
    min-height: 0;
    border-radius: 999px;
    background: rgba(61, 70, 120, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.02em;
    display: block;
    text-align: center;
    box-shadow: 0 4px 16px rgba(61, 70, 120, 0.2);
    z-index: 2;
}

/* stats */
.ms-stats {
    position: relative;
    padding: var(--ms-py) var(--ms-px);
    overflow: hidden;
}
.ms-stats-bg {
    position: absolute;
    inset: 0;
    background: url('../images/section08_hospital01.png') center center / cover no-repeat;
    z-index: 0;
}
.ms-stats-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(143, 143, 143, 0.88) 0%, rgba(240, 242, 251, 0.82) 100%);
}
.ms-stats .ms-inner {
    position: relative;
    z-index: 1;
}
.ms-stats .ms-section-title {
    margin-bottom: 56px;
}
.ms-section-title--typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 1.2em;
}
.ms-typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.95em;
    margin-top: 0.1em;
    background: var(--color-primary);
    border-radius: 1px;
    animation: msTypingBlink 0.75s step-end infinite;
}
.ms-typing-cursor.is-done {
    animation: none;
    opacity: 0;
}
@keyframes msTypingBlink {
    50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .ms-typing-cursor {
        display: none;
    }
}
.ms-stats-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ms-stat-item {
    text-align: center;
    padding: 40px 20px 36px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(78, 95, 168, 0.1);
    box-shadow: 0 8px 32px rgba(78, 95, 168, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
    .ms-stat-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(78, 95, 168, 0.16);
    }
}
.ms-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(78, 95, 168, 0.45);
}
.ms-stat-num {
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary) 55%, #7b9ae8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(106, 126, 200, 0.3));
}
.ms-stat-label {
    font-size: var(--ms-fs-body);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.ms-stat-sub {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}
@media (prefers-reduced-motion: reduce) {
    .ms-stat-num {
        background: none;
        -webkit-text-fill-color: var(--color-primary-dark);
        color: var(--color-primary-dark);
        filter: none;
    }
}

/* cases */
.ms-cases {
    background: #eceef3;
    padding: var(--ms-py) var(--ms-px) 120px;
}
.ms-cases-title {
    text-align: center;
    margin-bottom: 56px;
}
.ms-cases-title span {
    color: var(--color-primary-dark);
}
.ms-cases-lead {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #6b7289;
    margin: -36px 0 52px;
    letter-spacing: -0.01em;
}
.ms-cases-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ms-cases-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.ms-case-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 48px 40px;
}
.ms-case-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.ms-case-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.ms-case-meta {
    font-size: 14px;
    font-weight: 700;
    color: #4a5168;
    letter-spacing: -0.02em;
}
.ms-case-meta::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 10px;
    border-radius: 50%;
    background: #c5cad8;
    vertical-align: middle;
}
.ms-case-quote {
    position: relative;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    color: #0a0a0a;
    line-height: 1.32;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}
.ms-case-quote em {
    font-style: normal;
    color: var(--color-primary-dark);
    position: relative;
}
.ms-case-quote em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 10px;
    background: rgba(106, 126, 200, 0.18);
    z-index: -1;
    border-radius: 2px;
}
.ms-case-quote::before { content: '\201C'; color: var(--color-primary); margin-right: 2px; }
.ms-case-quote::after { content: '\201D'; color: var(--color-primary); margin-left: 2px; }
.ms-case-card--compact .ms-case-quote {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    margin-bottom: 18px;
}
.ms-case-result {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(78, 95, 168, 0.1);
}
.ms-case-card--compact .ms-case-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
}
.ms-case-kpi {
    flex-shrink: 0;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary) 55%, #7b9ae8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ms-case-kpi-unit {
    font-size: 0.45em;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-left: 2px;
}
.ms-case-card--compact .ms-case-kpi {
    font-size: clamp(36px, 4vw, 48px);
}
.ms-case-summary {
    font-size: var(--ms-fs-sm);
    line-height: 1.7;
    color: #5a6278;
    font-weight: 500;
}
.ms-case-card--compact .ms-case-summary {
    font-size: var(--ms-fs-xs);
}
.ms-case-tag {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--color-bg-tint);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.ms-case-summary strong {
    color: #1a1f36;
    font-weight: 800;
}
.ms-case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ms-case-metric-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 14px;
    border-radius: var(--ms-radius-pill);
    background: #f0f3fa;
    font-size: var(--ms-fs-body);
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 14px;
}
.ms-case-chart-img {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(78, 95, 168, 0.08);
}
.ms-case-chart-img img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}
.ms-case-card--compact .ms-case-metric {
    margin-bottom: 0;
}
.ms-case-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ms-case-btn:hover {
    background: #333;
    transform: translateY(-1px);
}
.ms-cases-more-btn {
    margin: 40px auto 0;
}
.ms-why-btn,
.cta-banner-btn {
    white-space: nowrap;
}

/* why */
.ms-why {
    background: #fff;
    padding: var(--ms-py) var(--ms-px);
}
.ms-why-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.ms-why-title {
    font-size: var(--ms-fs-title-lg);
    margin-bottom: 24px;
}
.ms-why-desc {
    font-size: var(--ms-fs-desc);
    margin-bottom: 32px;
}
.ms-why-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ms-why-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
    transition: border-color 0.25s, box-shadow 0.25s;
}
@media (hover: hover) {
    .ms-why-card:hover {
        border-color: rgba(130, 155, 225, 0.3);
        box-shadow: 0 6px 24px var(--color-shadow);
    }
}
.ms-why-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--color-bg-tint);
    color: var(--color-primary-dark);
    font-size: 20px;
    margin-bottom: 16px;
}
.ms-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.ms-why-card p {
    font-size: var(--ms-fs-sm);
    line-height: 1.7;
    color: #555;
}

/* cta */
.ms-cta {
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 55%, var(--color-primary) 100%);
    padding: 72px var(--ms-px);
}
.ms-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.ms-cta-content h2 {
    font-size: var(--ms-fs-title);
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.ms-cta-content p {
    font-size: var(--ms-fs-body);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}
.ms-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-shrink: 0;
}
.ms-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    font-size: var(--ms-fs-body);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--ms-radius);
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ms-cta-btn--white,
.ms-btn--white {
    background: #fff;
    color: var(--color-primary-darker);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.ms-cta-btn--outline,
.ms-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}
@media (hover: hover) {
    .ms-cta-btn--white:hover,
    .ms-btn--white:hover {
        background: var(--color-bg-tint);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    .ms-cta-btn--outline:hover,
    .ms-btn--ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
}

@media (max-width: 1024px) {
    .header-inner {
        position: relative;
        z-index: 102;
        padding: max(14px, env(safe-area-inset-top)) 20px 14px;
        gap: 16px;
    }
    .logo-img {
        height: 36px;
    }
    .btn-menu-toggle {
        display: inline-flex;
    }
    .header-actions {
        position: relative;
        z-index: 103;
    }
    .btn-inquiry {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    .btn-inquiry-text--full { display: none; }
    .btn-inquiry-text--short { display: inline; }
    .btn-kakao {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    .btn-kakao-text--full { display: none; }
    .btn-kakao-text--short { display: inline; }
    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 98;
        background: rgba(17, 17, 17, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .site-header.is-menu-open .mobile-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }
    .gnb {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: max(88px, calc(env(safe-area-inset-top) + 64px)) 28px max(32px, env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: -12px 0 40px rgba(78, 95, 168, 0.18);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 101;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .site-header.is-menu-open .gnb {
        transform: translateX(0);
    }
    .gnb a {
        display: flex;
        align-items: center;
        padding: 18px 0;
        font-size: 18px;
        font-weight: 700;
        color: #222;
        border-bottom: 1px solid rgba(78, 95, 168, 0.1);
    }
    .gnb a:last-child {
        border-bottom: none;
    }
    .gnb a:active {
        color: var(--color-primary-dark);
    }
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
        background-position: center top;
        background-size: cover;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btn {
        width: 100%;
    }
    .platform-section { padding: 40px 20px 60px; }
    .platform-row {
        flex-direction: column;
        gap: 40px;
        padding: 48px 0;
    }
    .platform-row--reverse {
        flex-direction: column;
    }
    .platform-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    .platform-visual {
        order: 2;
    }
    .platform-visual img {
        max-width: 360px;
    }
    .orbit-diagram {
        width: min(100%, 480px);
    }
    .platform-link {
        justify-content: center;
    }
    .trust-banner {
        padding: 60px 20px;
        min-height: 420px;
        background-position: center center;
    }
    .trust-banner-content {
        max-width: 100%;
        text-align: center;
    }
    .trust-banner-btns {
        justify-content: center;
    }
    .marketing-section {
        padding: 60px 20px 80px;
    }
    .marketing-title {
        margin-bottom: 40px;
    }
    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .marketing-card {
        padding: 32px 24px 28px;
    }
    .cta-banner-section {
        padding: 0 20px 60px;
    }
    .cta-banner {
        padding: 48px 24px;
        min-height: 280px;
        border-radius: 16px;
    }
    .cta-banner-desc br {
        display: none;
    }
    .ai-section {
        padding: 60px 20px 80px;
    }
    .ai-row {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 60px;
    }
    .ai-content {
        max-width: 100%;
        text-align: center;
    }
    .ai-link {
        justify-content: center;
    }
    .ai-visual img {
        max-width: 360px;
    }
    .partners-block {
        padding-top: 48px;
    }
    .partners-title {
        margin-bottom: 32px;
    }
    .partners-list {
        gap: 32px 40px;
    }
    .partners-list img {
        height: 28px;
    }
    .apps-banner {
        padding: 60px 20px;
    }
    .apps-banner-inner {
        flex-direction: column;
        gap: 40px;
    }
    .apps-banner-content {
        max-width: 100%;
        text-align: center;
    }
    .apps-banner-visual img {
        max-width: 360px;
    }
    .apps-banner-wave {
        width: 100%;
        opacity: 0.5;
    }
    .review-section {
        padding: 60px 20px 80px;
    }
    .review-title {
        margin-bottom: 40px;
    }
    .review-card {
        padding: 28px 24px 24px;
    }
    .review-text {
        min-height: auto;
    }
    .site-footer {
        padding: 48px 20px 28px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-legal {
        order: 2;
    }
    .footer-social {
        order: 3;
    }
    .ms-channel {
        padding: 60px 20px 80px;
    }
    .ms-channel-title {
        margin-bottom: 40px;
    }
    .ms-package {
        padding: 60px 20px;
    }
    .ms-package-inner {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .ms-package-card {
        min-width: 0;
        width: 100%;
    }
    .ms-package-list li {
        padding: 13px 18px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        align-self: stretch !important;
        margin: 0 0 12px 0 !important;
        transform: none !important;
        border-radius: 12px !important;
    }
    .ms-package-visual {
        max-width: 360px;
        margin: 0 auto;
    }
    .ms-stats {
        padding: 60px 20px;
    }
    .ms-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ms-stat-item {
        padding: 32px 16px 28px;
    }
    .ms-stat-num {
        font-size: clamp(36px, 8vw, 48px);
    }
    .ms-cases {
        padding: 60px 20px 80px;
    }
    .ms-case-card,
    .ms-case-card--featured,
    .ms-case-card--compact {
        padding: 28px 22px 24px;
    }
    .ms-case-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .ms-case-metrics {
        grid-template-columns: 1fr;
    }
    .ms-cases-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ms-why {
        padding: 60px 20px;
    }
    .ms-why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ms-why-grid {
        grid-template-columns: 1fr;
    }
    .ms-cta {
        padding: 56px 20px;
    }
    .ms-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .ms-cta-btns {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding-left: 16px;
        padding-right: 16px;
        gap: 10px;
    }
    .logo-img {
        height: 32px;
    }
    .header-actions {
        gap: 8px;
    }
    .btn-inquiry {
        padding: 9px 12px;
        font-size: 13px;
    }
    .btn-kakao {
        padding: 9px 10px;
        font-size: 13px;
    }
    .btn-kakao-text--short { display: none; }
    .btn-menu-toggle {
        width: 40px;
        height: 40px;
    }
    .gnb {
        width: min(300px, 100vw);
        padding-left: 24px;
        padding-right: 24px;
    }
    .gnb a {
        font-size: 17px;
        padding: 16px 0;
    }
}

/* 전화 상담 안내 모달 (PC 전용) */
body.is-tel-modal-open {
    overflow: hidden;
}

.tel-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(28, 32, 56, 0.55);
}

.tel-modal-overlay[hidden] {
    display: none;
}

.tel-modal {
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 44px 32px 32px;
    background: #fff;
    border-radius: var(--ms-radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(28, 32, 56, 0.25);
    animation: telModalIn 0.25s ease;
}

@keyframes telModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.tel-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #9AA1B5;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.tel-modal-close:hover {
    background: var(--color-bg-tint);
    color: var(--color-primary-dark);
}

.tel-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px var(--color-shadow);
}

.tel-modal-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1C2038;
}

.tel-modal-desc {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #6B7188;
}

.tel-modal-number {
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-primary-dark);
}

.tel-modal-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--color-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tel-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 95, 168, 0.28);
}
