﻿@charset "utf-8";

/* 비급여 안내 */

body.syou-sub-page.syou-price-page #container.syou-sub {
    padding: 0;
}

body.syou-sub-page.syou-price-page .syou-sub__body:has(.syou-price-page) {
    padding: 0 0 32px;
    background: #fff;
}

body.syou-sub-page.syou-price-page .syou-content {
    margin: 0;
    padding: 0;
    max-width: none;
}

.syou-price-page.syou-philosophy {
    color: #1a1a1a;
    background: #fff;
}

/* 상단 히어로 — 이미지 없음 */
body.syou-price-page .syou-price-hero {
    margin: 0;
    padding: 28px 16px 24px;
    background: linear-gradient(180deg, #0a5c52 0%, #084a42 100%);
    text-align: center;
}

html.syou-root.syou-motion-ready body.syou-price-page .syou-price-hero__inner {
    animation: syou-price-hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes syou-price-hero-in {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-hero__inner {
    animation: none;
}

body.syou-price-page .syou-price-hero__inner {
    max-width: 28em;
    margin: 0 auto;
}

body.syou-price-page .syou-price-hero__eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.95);
}

body.syou-price-page .syou-price-hero__title {
    margin: 0 0 10px;
    font-size: calc(var(--syou-frame-title, 2rem) * 1.12);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #fff;
    word-break: keep-all;
}

body.syou-price-page .syou-price-hero__lead {
    margin: 0 auto;
    max-width: 24em;
    font-size: var(--syou-frame-caption, 1.6rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
    word-break: keep-all;
}

/* 안내 문구 */
body.syou-price-page .syou-price-intro {
    margin: 14px 16px 0;
    padding: 12px 14px;
    border-radius: 6px;
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    text-align: left;
}

body.syou-price-page .syou-price-intro__notice {
    margin: 0;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 500;
    line-height: 1.5;
    color: #c62828;
    word-break: keep-all;
}

/* 안내 패널 */
body.syou-price-page .syou-price-panel {
    margin: 18px 16px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

body.syou-price-page .syou-price-panel__main {
    padding: 18px 16px;
}

body.syou-price-page .syou-price-panel__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 0 0 12px;
    font-size: var(--syou-frame-sub, 1.7rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    word-break: keep-all;
}

body.syou-price-page .syou-price-panel__logo {
    display: block;
    width: auto;
    max-width: 108px;
    height: 28px;
    object-fit: contain;
    object-position: left center;
}

body.syou-price-page .syou-price-panel__copy p {
    margin: 0 0 10px;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.02em;
    color: #555;
    word-break: keep-all;
}

body.syou-price-page .syou-price-panel__copy p:last-child {
    margin-bottom: 0;
}

/* 3단계 안내 */
body.syou-price-page .syou-price-steps {
    margin: 18px 16px 0;
}

body.syou-price-page .syou-price-steps__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.syou-price-page .syou-price-steps__item {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-width: 0;
    padding: 14px 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
}

/* 페이지 모션 */
html.syou-root.syou-motion-ready body.syou-price-page .syou-price-page > section,
html.syou-root.syou-motion-ready body.syou-price-page .syou-price-steps__item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.syou-root.syou-motion-ready body.syou-price-page .syou-price-page > section.is-revealed,
html.syou-root.syou-motion-ready body.syou-price-page .syou-price-steps__item.is-revealed {
    opacity: 1;
    transform: none;
}

html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-page > section,
html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-steps__item,
html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-notes__process-item .syou-price-notes__process-step,
html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-notes__process-item .syou-price-notes__process-body,
html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-notes__process-item .syou-price-notes__process-line {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

html.syou-root.syou-motion--reduce body.syou-price-page .syou-price-notes__process-item.is-done .syou-price-notes__process-step {
    background: var(--syou-primary, #0a5c52);
    color: #fff;
    border-color: var(--syou-primary, #0a5c52);
}

body.syou-price-page .syou-price-steps__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    min-width: 0;
}

body.syou-price-page .syou-price-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin: 0;
    border: 2px solid var(--syou-primary, #0a5c52);
    border-radius: 50%;
    background: var(--syou-primary, #0a5c52);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

body.syou-price-page .syou-price-steps__title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    word-break: keep-all;
}

body.syou-price-page .syou-price-steps__list > li::before {
    content: none !important;
    display: none !important;
}

body.syou-price-page .syou-price-steps__text {
    margin: 0;
    font-size: calc(var(--syou-frame-meta, 1.4rem) * 0.93);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #666;
    word-break: keep-all;
}

/* 확인사항 — 진료과정형 세로 타임라인 */
body.syou-price-page .syou-price-notes {
    margin: 18px 16px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: visible;
}

body.syou-price-page .syou-price-notes__main {
    padding: 18px 16px;
    background: #fff;
}

body.syou-price-page .syou-price-notes__title {
    margin: 0 0 16px;
    font-size: var(--syou-frame-sub, 1.7rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    word-break: keep-all;
}

body.syou-price-page .syou-price-notes__process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

body.syou-price-page .syou-price-notes__process-list > li::before {
    content: none !important;
    display: none !important;
}

body.syou-price-page .syou-price-notes__process-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 20px;
    box-sizing: border-box;
}

body.syou-price-page .syou-price-notes__process-item:last-child {
    padding-bottom: 0;
}

body.syou-price-page .syou-price-notes__process-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 44px;
    min-height: 100%;
    padding-top: 6px;
}

body.syou-price-page .syou-price-notes__process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 2px solid var(--syou-primary, #0a5c52);
    border-radius: 50%;
    background: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--syou-primary, #0a5c52);
    transform: scale(0.55);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

body.syou-price-page .syou-price-notes__process-item.is-active .syou-price-notes__process-step,
body.syou-price-page .syou-price-notes__process-item.is-done .syou-price-notes__process-step {
    background: var(--syou-primary, #0a5c52);
    color: #fff;
    border-color: var(--syou-primary, #0a5c52);
}

body.syou-price-page .syou-price-notes__process-item.is-revealed .syou-price-notes__process-step {
    transform: scale(1);
    opacity: 1;
}

body.syou-price-page .syou-price-notes__process-line {
    display: block;
    flex: 1 1 auto;
    width: 2px;
    min-height: 20px;
    margin: 10px auto 0;
    background: linear-gradient(180deg, rgba(10, 92, 82, 0.55) 0%, #e0e0e0 100%);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.15s;
}

body.syou-price-page .syou-price-notes__process-item.is-revealed .syou-price-notes__process-line {
    transform: scaleY(1);
}

body.syou-price-page .syou-price-notes__process-item:last-child .syou-price-notes__process-line {
    display: none;
}

body.syou-price-page .syou-price-notes__process-body {
    min-width: 0;
    width: 100%;
    padding: 10px 16px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    visibility: hidden;
    transform: translate3d(12px, 0, 0);
    transition:
        visibility 0s linear 0.45s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

body.syou-price-page .syou-price-notes__process-item.is-revealed .syou-price-notes__process-body {
    visibility: visible;
    transform: none;
    transition:
        visibility 0s linear 0s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

body.syou-price-page .syou-price-notes__process-item.is-active .syou-price-notes__process-body,
body.syou-price-page .syou-price-notes__process-item.is-done .syou-price-notes__process-body {
    border-color: rgba(10, 92, 82, 0.22);
    box-shadow: 0 6px 18px rgba(10, 92, 82, 0.08);
}

body.syou-price-page .syou-price-notes__process-text {
    margin: 0;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #555;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

body.syou-price-page .syou-price-notes__footer {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid #ececec;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    word-break: keep-all;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html.syou-root.syou-motion-ready body.syou-price-page .syou-price-notes.is-revealed .syou-price-notes__footer {
    opacity: 1;
    transform: none;
}

/* 하단 CTA */
body.syou-price-page .syou-price-closing {
    margin: 22px 16px 0;
    padding: 24px 18px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(10, 92, 82, 0.88)),
        var(--syou-primary, #0a5c52);
    color: #fff;
    text-align: center;
}

body.syou-price-page .syou-price-closing__text {
    margin: 0 0 18px;
    font-size: var(--syou-frame-caption, 1.6rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

body.syou-price-page .syou-price-closing__contact {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

body.syou-price-page .syou-price-closing__contact-label {
    margin: 0 0 6px;
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

body.syou-price-page .syou-price-closing__contact-phone {
    margin: 0 0 12px;
    font-size: calc(var(--syou-frame-title, 2rem) * 1.05);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body.syou-price-page .syou-price-closing__contact-phone a {
    color: #fff;
    text-decoration: none;
}

body.syou-price-page .syou-price-closing__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: var(--syou-frame-meta, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-decoration: none;
}

body.syou-price-page .syou-price-closing__contact-btn:hover,
body.syou-price-page .syou-price-closing__contact-btn:focus-visible {
    background: rgba(255, 255, 255, 0.26);
}

@container syouframe (max-width: 740px) {
    body.syou-price-page .syou-price-steps__list {
        grid-template-columns: minmax(0, 1fr);
    }

    body.syou-price-page .syou-price-steps__item {
        padding: 14px 14px 16px;
    }
}
