/* Price Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* Stepper Component */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 150px;
}

.stepper-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% + 10px);
    width: calc(100% - 20px);
    height: 2px;
    background-color: #444;
    z-index: 1;
}

.stepper-step.completed:not(:last-child)::after {
    background-color: #ffc14d;
}

.stepper-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.stepper-step.active .stepper-number {
    background-color: #ffc14d;
    color: #1a1a1a;
}

.stepper-step.completed .stepper-number {
    background-color: #ffc14d;
    color: #1a1a1a;
}

.stepper-step.completed .stepper-number::before {
    content: '✓';
    font-size: 16px;
}

.stepper-title {
    font-size: 12px;
    color: #888;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.stepper-step.active .stepper-title {
    color: #ffc14d;
    font-weight: 500;
}

.stepper-step.completed .stepper-title {
    color: #ffc14d;
}

.stepper-content {
    display: none;
}

.stepper-content.active {
    display: block;
}

.stepper-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.btn-stepper {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-stepper-prev {
    background-color: #444;
    color: #fff;
}

.btn-stepper-prev:hover {
    background-color: #555;
}

.btn-stepper-next {
    background-color: #ffc14d;
    color: #1a1a1a;
}

.btn-stepper-next:hover {
    background-color: #e6ad44;
}

.btn-stepper:disabled {
    background-color: #333;
    color: #666;
    cursor: not-allowed;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .stepper {
        padding: 15px 0;
    }

    .stepper-step {
        max-width: 100px;
    }

    .stepper-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .stepper-title {
        font-size: 11px;
    }

    .stepper-step:not(:last-child)::after {
        top: 17.5px;
        width: calc(100% - 15px);
    }
}

/* Payment Modal Layout */
.payment-modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.payment-left-panel {
    flex: 0 0 350px;
    min-width: 350px;
}

.payment-right-panel {
    flex: 1;
    min-width: 450px;
}

/* Adjust stepper for right panel */
.payment-right-panel .stepper {
    margin-bottom: 20px;
    justify-content: flex-start;
}

.payment-right-panel .stepper-step {
    max-width: 120px;
}

/* Mobile responsiveness for payment modal */
@media (max-width: 1024px) {
    .payment-modal-body {
        flex-direction: column;
        gap: 20px;
    }

    .payment-left-panel {
        flex: none;
        min-width: auto;
        width: 100%;
    }

    .payment-right-panel {
        flex: none;
        min-width: auto;
        width: 100%;
    }

    .payment-right-panel .stepper {
        justify-content: center;
    }

    .payment-right-panel .stepper-step {
        max-width: 100px;
    }
}

/* Fade-in Drop Effect */
@keyframes dropDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-card-mask {
    overflow: hidden; /* 마스크 역할 */
    height: 100%; /* 마스크 컨테이너 높이 */
}

.service-card {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 500ms ease-out;
}

.service-card-mask.fade-in .service-card {
    animation: dropDown 500ms ease-out forwards;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.main-content {
    padding: 120px 0 0 0;
    position: relative;
    z-index: 10;
}

.price-container {
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

/* 메인 섹션 레이아웃 */
.price-main-section {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

/* 메인 헤더 */
.main-header {
    margin-bottom: 80px;
    max-width: 485px;
}

.header-icon {
    margin-bottom: 20px;
}

.header-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 47px;
    line-height: 55px;
    max-width: none;
    margin: 0;
    white-space: nowrap;
}

/* 모바일에서 헤더 텍스트 크기 조정 */
@media (max-width: 768px) {
    .header-text {
        font-size: 35px;
        line-height: 38px;
    }
}

/* 500px 이하에서만 줄바꿈 허용 */
@media (max-width: 500px) {
    .header-text {
        white-space: normal;
        max-width: 485px;
    }
}

/* 515px 이하에서 service-selection-form 줄바꿈 허용 */
@media (max-width: 515px) {
    .service-selection-form {
        flex-direction: column;
        align-items: center;
    }
}

.header-text .text-light {
    color: #8c8c8c;
    font-weight: 300;
    margin: 0;
}

.header-text .text-bold {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}



/* 섹션 헤더 */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-header p {
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    max-width: 200px;
}

/* 구분선 */
.section-divider {
    width: 100%;
    max-width: 1600px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 60px auto;
    padding: 0 20px;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.91398 20L6.45161 13.4946L0 14.2473L4.89247 10L0 5.69892L6.45161 6.50538L5.91398 0L10 5.05376L14.1398 0L13.5484 6.50538L20 5.69892L15.1075 10L20 14.2473L13.5484 13.4946L14.1398 20L10 14.8925L5.91398 20Z" fill="%23777777"/></svg>') no-repeat center;
    background-size: contain;
}

.section-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.91398 20L6.45161 13.4946L0 14.2473L4.89247 10L0 5.69892L6.45161 6.50538L5.91398 0L10 5.05376L14.1398 0L13.5484 6.50538L20 5.69892L15.1075 10L20 14.2473L13.5484 13.4946L14.1398 20L10 14.8925L5.91398 20Z" fill="%23777777"/></svg>') no-repeat center;
    background-size: contain;
}

.section-divider .divider-line {
    width: calc(100% - 40px);
    height: 1px;
    background-color: #777777;
}

/* 프로세스 섹션 */
.process-section {
    background-color: #1a1a1a;
    padding: 0;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.process-header p {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #a6a6a6;
    margin-bottom: 30px;
    letter-spacing: -0.36px;
    line-height: 28px;
}

.consult-btn {
    background: #1a1a1a;
    border: 1px solid #ffcb47;
    border-radius: 6px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SUIT', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ffcb47;
    letter-spacing: -0.3px;
}

.consult-btn:hover {
    background: #ffcb47;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 767px) {
    .step-circle {
        width: 130px;
        height: 130px;
    }

    .step-circle span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-circle span {
        font-size: 11px;
        padding: 0 8px;
    }
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ScrollFloat 애니메이션 - 첫 번째 원형용 */
@keyframes scrollFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .process-step {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    @keyframes scrollFloat {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.03);
        }
    }
}

.step-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-circle span {
    font-family: 'SUIT', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 21.74px;
    padding: 0 20px;
}

/* 기본 상태 (비활성) - 보더만 */
.step-circle {
    border: 1.5px solid #ffc14d;
    background: transparent;
}

.step-circle span {
    color: #ffc14d;
}

/* 활성 상태 - fill */
.step-circle.active {
    background: #ffc14d;
    border: 1.5px solid #ffc14d;
}

.step-circle.active span {
    color: #1a1a1a;
}

/* 연결선 제거 */
.process-step:not(:last-child)::after {
    display: none;
}

/* 반응형 디자인 */
@media (max-width: 1280px) {
    .step-circle {
        width: 160px;
        height: 160px;
    }

    .step-circle span {
        font-size: 16px;
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .step-circle {
        width: 140px;
        height: 140px;
    }

    .step-circle span {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .step-circle {
        width: 140px;
        height: 140px;
    }

    .step-circle span {
        font-size: 14px;
    }
}

/* 서비스 선택 섹션 */
.service-selection-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.service-selection-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-selection-title {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 78px;
    line-height: 85px;
    letter-spacing: -1.28px;
    color: #1a1a1a;
    margin: 0;
    flex: 0 0 auto;
    min-height: 170px;
}

.service-selection-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-text {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 48px;
    color: #333333;
    white-space: nowrap;
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 294px;
    height: 50px;
    border: 2px solid #ffc14d;
    border-radius: 10px;
    padding: 0 20px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-input:hover {
    border-color: #ffcb47;
}

.dropdown-input.active {
    border-color: #ffcb47;
    box-shadow: 0 0 0 2px rgba(255, 203, 71, 0.2);
}

.dropdown-placeholder {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    color: #737373;
}

.dropdown-selected {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    color: #333333;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-input.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #ffc14d;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 4px;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 15px 20px;
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    color: #333333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* 섹션 컨테이너 */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 2rem;
}

/* 섹션 웨이브 */
.section-wave-top {
    width: 100%;
    height: 160px;
    background-image: url('../../assets/wave.svg');
    background-color: transparent;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.section-wave-bottom {
    width: 100%;
    height: 150px;
    background-image: url('../../assets/wave.svg');
    background-color: transparent;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 1400px) {
    .section-wave-bottom {
        height: 180px;
    }
}

@media (min-width: 1600px) {
    .section-wave-bottom {
        height: 200px;
    }
}

/* 일반 제작 섹션 */
.general-production-section {
    background-color: #f8f9fa;
    margin: 0;
}

.general-production-section h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333333;
    text-align: center;
    width: 100%;
}

.general-production-section .section-content {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.general-production-section .section-title-left {
    width: 100%;
    text-align: center;
}

.general-production-section .section-content-right {
    width: 100%;
}

.general-production-section .production-inquiry-btn {
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    color: #333333;
}

.general-production-section .production-inquiry-btn:hover {
    background: #ffcb47;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.section-content {
    display: flex;
    align-items: flex-start;
}

.section-title-left {
    margin-bottom: 50px;
}

.production-inquiry-btn {
    background: #1a1a1a;
    border: 1px solid #ffcb47;
    border-radius: 6px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: #ffcb47;
    letter-spacing: -0.3px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.production-inquiry-btn:hover {
    background: #ffcb47;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.production-inquiry-btn img {
    transition: all 0.3s ease;
}

.production-inquiry-btn:hover img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.section-content-right {
    flex: 1;
}

.production-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

/* CSS만으로 간단한 웨이브 보더 */
.production-card,
.fullpackage-card,
.maintenance-card,
.template-card {
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 25px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
    position: relative;
}

/* 추천 말풀선 스타일 */
.recommendation-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ffc14d;
    color: #333333;
    padding: 6px 17px;
    border-radius: 20px;
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.24px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 193, 77, 0.3);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.recommendation-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffc14d;
}


.production-card:hover {
    transform: translateY(-3px);
    border-color: #ffc14d;
}

.production-card:hover .card-header h3 {
    color: #ffc14d;
}

.card-header {
    display: flex;
    align-items: center;
    font-size: 0;
    gap: 5px;
}

.card-header h3 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    white-space: nowrap;
    display: inline-block;
}

.card-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    letter-spacing: -0.3px;
    line-height: 1.2;
    display: inline-block;
}

.card-content {
    margin-bottom: 20px;
    flex: 1;
}

.card-description {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: -0.42px;
}

.card-features {
    list-style: none;
}

.card-features li {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #333333;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 10px;
    opacity: 0.8;
}

.card-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    border: 1px solid #333333;
    border-radius: 3px;
    padding: 5px 10px;
    letter-spacing: -0.26px;
}

.card-price {
    text-align: right;
}

.price {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 27px;
    font-weight: 800;
    color: #333333;
    display: block;
    letter-spacing: -0.54px;
    line-height: 1.2;
}

.price .month-text {
    font-size: 18px;
    font-weight: 400;
    color: #646464;
}

.vat {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    letter-spacing: -0.3px;
}

/* 플레인프로븐 템플릿 섹션 */
.template-section {
    margin-bottom: 80px;
}

.template-info {
    margin-bottom: 40px;
    padding: 20px;
    background: #ececec;
    border-radius: 4px;
}

.template-info h3 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.template-info p {
    font-family: 'SUIT', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    letter-spacing: -0.8px;
}

.template-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.template-card {
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 15px;
    background: transparent;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    flex: 1;
    min-width: 230px;
}

.template-card:hover {
    transform: translateY(-3px);
    border-color: #ffc14d;
}

.template-card:hover .template-header h4 {
    color: #ffc14d;
}

/* Coming Soon 상태 */
.template-card.coming-soon {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.template-card.coming-soon:hover {
    transform: none;
    border-color: #333333;
}

.template-card.coming-soon:hover .template-header h4 {
    color: #333;
}

/* 커스텀 템플릿 카드만 준비중 상태 */
.fullpackage-card.coming-soon {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.fullpackage-card.coming-soon:hover {
    transform: none;
    border-color: #333333;
}

.fullpackage-card.coming-soon:hover .card-header h3 {
    color: #333;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 10;
}

.coming-soon-text {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.template-header h4 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.template-tags .tag {
    font-size: 11px;
    padding: 3px 8px;
}

/* 유지보수 구독제 섹션 */
.maintenance-section {
    margin-bottom: 80px;
}

.maintenance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.maintenance-card {
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 25px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 280px;
}

/* 풀패키지 구독제 섹션 */
.fullpackage-section {
    background-color: #f8f9fa;
    margin: 0;
    position: relative;
    z-index: 10;
}

.fullpackage-section h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333333;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
}

.section-description {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    text-align: center;
    letter-spacing: -0.28px;
    line-height: 23px;
    margin: 0;
}

.fullpackage-section .section-content {
    display: flex;
    flex-direction: column;
}

/* 유지보수 구독제 섹션 */
.maintenance-section {
    background-color: #f8f9fa;
    margin: 0;
}

.maintenance-section .services-main-title {
    text-align: center;
    margin-bottom: 60px;
}

.maintenance-section .services-main-title h1 {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 58px;
    line-height: 80px;
    letter-spacing: 0;
}

.maintenance-section .services-main-title .text-light {
    color: #8c8c8c;
    font-weight: 400;
}

.maintenance-section .services-main-title .text-bold {
    color: #333333;
    font-weight: 400;
}

.maintenance-section h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
}

.maintenance-section .section-content {
    display: flex;
    flex-direction: column;
}

.fullpackage-section .section-title-left {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.fullpackage-section .section-content-right {
    width: 100%;
}

/* 섹션 별 아이콘 */
.section-star {
    text-align: center;
}

.section-star-icon {
    width: 40px;
    height: 40px;
}

.maintenance-section .section-title-left {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.maintenance-section .section-content-right {
    width: 100%;
}

/* 비교표 섹션 */
.comparison-section {
    background-color: #f8f9fa;
    margin: 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #333333;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.comparison-header p {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #a6a6a6;
    letter-spacing: -0.32px;
    line-height: 19px;
}

.comparison-table {
    background: #f8f9fa;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.table-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #333333;
}

.header-cell {
    padding: 24px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    letter-spacing: -0.32px;
    line-height: 24px;
    border-right: 1px solid #333333;
}

.header-cell.category {
    flex: 0 0 120px;
    text-align: left;
}

.header-cell.general {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.header-cell.general:hover {
    transform: translateY(-3px);
}

.header-cell.fullpackage {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #ffcb47 0%, #ffb433 100%);
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.header-cell.fullpackage:hover {
    transform: translateY(-3px);
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #333333;
}

.table-row:last-child {
    border-bottom: none;
}

.row-label {
    flex: 0 0 120px;
    padding: 24px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    letter-spacing: -0.32px;
    line-height: 24px;
    border-right: 1px solid #333333;
    background: #f8f9fa;
}

.row-cell {
    flex: 1;
    padding: 24px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    letter-spacing: -0.32px;
    line-height: 26px;
    border-right: 1px solid #333333;
}

.row-cell:last-child {
    border-right: none;
}

.row-cell.highlighted {
    background: rgba(255, 203, 71, 0.19);
}

/* 추천 섹션 */
.recommendation-section {
    background-color: #f8f9fa;
    margin: 0;
}

.recommendation-header {
    text-align: center;
    margin-bottom: 60px;
}

.recommendation-header h2 {
    font-family: 'SEBANG Gothic', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.recommendation-header p {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #a6a6a6;
    letter-spacing: -0.32px;
    line-height: 19px;
}

.recommendation-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.recommendation-card {
    flex: 1;
    max-width: 695px;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recommendation-card.fullpackage {
    background: linear-gradient(135deg, #ffcb47 0%, #ffb433 100%);
    border: 1px solid #000000;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 203, 71, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.recommendation-card.fullpackage .card-icon {
    background: rgba(30, 30, 30, 0.19);
}

.card-title h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 28px;
}

.recommendation-card.fullpackage .card-title h3 {
    color: #1e1e1e;
}

.card-title p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #a6a6a6;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 30px;
}

.recommendation-card.fullpackage .card-title p {
    color: #1e1e1e;
}

.card-features {
    margin-bottom: 30px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-left: 20px;
}

.feature-item img {
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    line-height: 24px;
    text-align: left;
}

.recommendation-card.fullpackage .feature-item span {
    color: #1e1e1e;
}

.recommendation-btn {
    width: 100%;
    padding: 15px 24px;
    border: 1px solid #333333;
    border-radius: 6px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.recommendation-card.fullpackage .recommendation-btn {
    background: #f8f9fa;
    border: 1px solid #000000;
    color: #333333;
}

.recommendation-btn:hover {
    background: #333333;
    color: #ffffff;
}

.recommendation-card.fullpackage .recommendation-btn:hover {
    background: #1e1e1e;
    color: #ffffff;
}

.fullpackage-info {
    margin-bottom: 30px;
}

.fullpackage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullpackage-features li {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.fullpackage-features li::before {
    content: "•";
    color: #ffc14d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.fullpackage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fullpackage-card {
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 25px;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 280px;
}

.clickable-card {
    cursor: pointer;
    user-select: none;
}

.clickable-card:hover {
    transform: translateY(-5px);
    border-color: #ffc14d;
    box-shadow: 0 10px 30px rgba(255, 193, 77, 0.2);
}

.clickable-card:active {
    transform: translateY(-2px);
}

/* 사이드 패널 스타일 */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    transition: background-color 0.25s ease;
}

.payment-modal .modal-content {
    position: absolute;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #1a1a1a;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.refund-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10001;
    transition: background-color 0.25s ease;
}

.refund-modal .modal-content {
    position: absolute;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #1a1a1a;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.payment-modal.show {
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.payment-modal.show .modal-content {
    right: 0;
}

.refund-modal.show {
    display: block;
    background: rgba(0, 0, 0, 0.6);
}

.refund-modal.show .modal-content {
    right: 0;
}

/* 모든 모달에 동일한 슬라이드 애니메이션 적용 */
#paymentStepModal, #paymentCompleteModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    transition: background-color 0.25s ease;
}

#paymentStepModal.show, #paymentCompleteModal.show {
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

#paymentStepModal .modal-content, #paymentCompleteModal .modal-content {
    position: absolute;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #1a1a1a;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

#paymentStepModal.show .modal-content, #paymentCompleteModal.show .modal-content {
    right: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    margin-top: 35px;
    position: relative;
    transition: all 0.2s ease;
}

.plan-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    font-family: 'SEBANG Gothic', sans-serif;
    letter-spacing: -0.5px;
    line-height: 29px;
}

.plan-subtitle {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.3px;
    line-height: 18px;
}

.modal-close {
    background: transparent;
    border: none;
    cursor: pointer !important;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10002;
    pointer-events: auto !important;
}

.modal-close img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.modal-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.modal-back {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 15px !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 10004 !important;
    pointer-events: auto !important;
}

.modal-back img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    pointer-events: none;
}

.modal-back:hover {
    opacity: 0.7 !important;
    transform: scale(1.1) !important;
}

.modal-body {
    padding: 0 25px 100px;
    transition: all 0.2s ease;
}

.plan-details {
    background: #2c2c2c;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.plan-details-header {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.28px;
}

.plan-details-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-details-content li {
    color: #cccccc;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.28px;
    position: relative;
    padding-left: 15px;
}

.plan-details-content li::before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.plan-details-content li:last-child {
    margin-bottom: 0;
}

.price-breakdown {
    padding: 15px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}


.price-item.total {
    border-top: 1px solid #575757;
    padding-top: 15px;
    margin-top: 8px;
}

.price-label {
    color: #777777;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.3px;
}

.price-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.32px;
}

.price-item.total .price-label {
    color: #777777;
    font-size: 15px;
    font-weight: 600;
}

.total-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-item.total .price-value {
    color: #ffc14d;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -0.54px;
    line-height: 32px;
}

.month-text {
    color: #646464;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.refund-info {
    text-align: right;
}

.refund-btn {
    background: none;
    border: 1px solid #cccccc;
    color: #cccccc;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.26px;
    transition: all 0.3s ease;
}

.refund-btn:hover {
    background: #cccccc;
    color: #1a1a1a;
}

.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    border-top: 1px solid #333;
    background: #1a1a1a;
}

.btn-select {
    width: 100%;
    background: #ffc14d;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #ffca5d;
    transform: translateY(-1px);
}

.refund-content {
    color: #cccccc;
    font-size: 13px;
    line-height: 23px;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.26px;
}

.refund-content p {
    margin: 0 0 20px 0;
}

.refund-content strong {
    color: #ffffff;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: #777777;
    margin: 20px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #1a1a1a;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.fullpackage-recommendation {
    margin-top: 20px;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-list li {
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.recommendation-list li::before {
    content: "•";
    color: #ffc14d;
    font-weight: bold;
    position: absolute;
    left: 0;
}


.price-container .fullpackage-cards .fullpackage-card:hover {
    transform: translateY(-3px);
    border-color: #ffc14d;
}

.maintenance-card:hover .card-header h3 {
    color: #ffc14d;
}

.fullpackage-card .card-header h3 {
    color: #333333;
}

.fullpackage-card:hover .card-header h3 {
    color: #ffc14d;
}

.maintenance-card .card-content {
    flex: 1;
}

.fullpackage-card .card-content {
    flex: 1;
}


.maintenance-card .card-description {
    color: #ffc14d;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -0.34px;
}

.fullpackage-card .card-description {
    color: #333333;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -0.34px;
}

.maintenance-card .card-features li {
    margin-bottom: 0;
    line-height: 1.5;
}

.fullpackage-card .card-features li {
    margin-bottom: 0;
    line-height: 1.5;
}

.production-card .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.production-card .card-price {
    text-align: right;
}

.maintenance-card .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.fullpackage-card .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.maintenance-card .card-price {
    text-align: right;
}

.fullpackage-card .card-price {
    text-align: right;
}

.maintenance-card .vat {
    opacity: 0.4;
}

.production-card .vat {
    opacity: 0.4;
}

.fullpackage-card .card-subtitle {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
}

.fullpackage-card .price {
    color: #333333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
}

.fullpackage-card .vat {
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.24px;
    opacity: 0.4;
}

/* 반응형 디자인 */
@media (max-width: 1280px) {
    .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 1rem;
    }

    .services-main-title h1 {
        font-size: 48px;
        line-height: 64px;
    }

    .service-selection-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 1200px;
    }

    .service-selection-title {
        font-size: 48px;
        line-height: 60px;
        text-align: left;
        min-height: 120px;
    }

    .service-selection-form {
        flex-direction: row;
        gap: 15px;
        flex-shrink: 0;
    }

    .form-text {
        font-size: 24px;
        line-height: 36px;
    }

    .dropdown-input {
        width: 250px;
    }

    .price-main-section {
        gap: 0;
    }

    .left-section {
        flex: 0 0 400px;
    }
}

@media (max-width: 915px) {
    .service-selection-content {
        flex-direction: column;
        text-align: center;
    }

    .service-selection-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-header {
        margin: 0 auto 80px auto;
        text-align: center;
    }

    .main-header h1 {
        font-size: 40px;
    }

    .section-content {
        flex-direction: column;
    }

    .section-title-left {
        flex: none;
    }

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

@media (max-width: 768px) {
    .main-content {
        padding: 180px 0 0 0;
    }

    .section-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 40px 1.5rem;
    }

    .service-selection-section {
        padding: 60px 0;
    }

    .service-selection-content {
        width: 100%;
        max-width: 100%;
    }

    .service-selection-title {
        font-size: 48px;
        line-height: 56px;
        min-height: 112px;
    }

    .form-text {
        font-size: 20px;
        line-height: 30px;
    }

    .dropdown-input {
        width: 220px;
        height: 45px;
    }

    .dropdown-placeholder,
    .dropdown-selected {
        font-size: 20px;
        line-height: 24px;
    }

    .dropdown-item {
        font-size: 20px;
        line-height: 24px;
        padding: 12px 16px;
    }

    .price-main-section {
        flex-direction: column;
        gap: 0;
    }

    .left-section {
        flex: none;
    }

    .general-production-section,
    .fullpackage-section,
    .maintenance-section,
    .comparison-section,
    .recommendation-section {
        padding: 40px 0;
    }

    .section-wave-top,
    .section-wave-bottom {
        height: 80px;
    }

    .section-wave-bottom {
        margin-bottom: 40px;
    }

    /* 비교표 반응형 */
    .comparison-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        min-width: 800px;
    }

    /* 추천 카드 반응형 */
    .recommendation-cards {
        flex-direction: column;
        gap: 30px;
    }

    .recommendation-card {
        max-width: none;
        padding: 30px 20px;
    }

    .main-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .main-header h1 {
        font-size: 32px;
    }

    .template-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .card-header {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .card-price {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 30px 1rem;
    }

    .service-selection-section {
        padding: 40px 0;
    }

    .service-selection-content {
        width: 100%;
        max-width: 100%;
    }

    .service-selection-title {
        font-size: 36px;
        line-height: 44px;
        min-height: 88px;
    }

    .form-text {
        font-size: 18px;
        line-height: 28px;
    }

    .dropdown-input {
        width: 200px;
        height: 40px;
    }

    .dropdown-placeholder,
    .dropdown-selected {
        font-size: 18px;
        line-height: 22px;
    }

    .dropdown-item {
        font-size: 18px;
        line-height: 22px;
        padding: 10px 14px;
    }

    .general-production-section,
    .fullpackage-section,
    .maintenance-section,
    .comparison-section,
    .recommendation-section {
        padding: 30px 0;
    }

    .section-wave-top,
    .section-wave-bottom {
        height: 60px;
    }

    .section-wave-bottom {
        margin-bottom: 30px;
    }

    .template-cards {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .template-card {
        min-width: auto;
    }

    .template-card .template-tags {
        display: none;
    }

    .main-header {
        margin-bottom: 40px;
    }

    .main-header h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .card-header h3 {
        font-size: 22px;
    }

    .card-description {
        font-size: 16px;
    }

    .price {
        font-size: 24px;
    }

    .production-card,
    .fullpackage-card,
    .maintenance-card {
        padding: 20px;
    }

    .recommendation-card {
        padding: 25px 15px;
    }
}

/* 다크모드 지원 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}


/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.production-card,
.maintenance-card,
.template-card {
    animation: fadeInUp 0.6s ease forwards;
}

.production-card:nth-child(1) { animation-delay: 0.1s; }
.production-card:nth-child(2) { animation-delay: 0.2s; }
.production-card:nth-child(3) { animation-delay: 0.3s; }
.production-card:nth-child(4) { animation-delay: 0.4s; }

.maintenance-card:nth-child(1) { animation-delay: 0.1s; }
.maintenance-card:nth-child(2) { animation-delay: 0.2s; }
.maintenance-card:nth-child(3) { animation-delay: 0.3s; }
.maintenance-card:nth-child(4) { animation-delay: 0.4s; }

/* 스크롤 애니메이션 */
@media (prefers-reduced-motion: no-preference) {
    .production-card,
    .maintenance-card,
    .template-card {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .production-card.animate,
    .maintenance-card.animate,
    .template-card.animate {
        animation: fadeInUp 0.6s ease forwards;
    }
}

/* Services Hero Section Styles */
.services-hero-section {
    background: #1a1a1a;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    z-index: 0;
}

.services-hero-container {
    position: relative;
    z-index: 10;
}

.services-hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    width: 100%;
}

/* 스크롤 다운 아이콘 */
.scroll-down-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-down-icon svg {
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Content Sections Wrapper */
.content-sections-wrapper {
    background: #1a1a1a;
    position: relative;
    z-index: 10;
    margin-top: 100vh;
}

/* Services Process Section - 서브 섹션 + 프로세스 통합 */
.services-process-section {
    background: #1a1a1a;
    padding: 150px 0;
    position: relative;
}

.services-process-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* 서비스 콘텐츠 래퍼 (제목 + 카드 통합) */
.services-content-wrapper {
    margin-bottom: 150px;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* 메인 타이틀 */
.services-main-title {
    max-width: 100%;
    margin: 0 auto;
}

.services-main-title h1 {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 58px;
    line-height: 80px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

/* GridMotion Background Styles */
.gridMotion-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gridMotion-container {
    gap: 1rem;
    flex: none;
    position: absolute;
    width: 150vw;
    height: 150vh;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 100%;
    transform: rotate(-15deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.gridMotion-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
    will-change: transform, filter;
}

.gridMotion-item {
    position: relative;
    aspect-ratio: 1 / 1;
}

.gridMotion-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gridMotion-item-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.5);
    z-index: 1;
}

.gridMotion-item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.gridMotion-item-content {
    padding: 1rem;
    text-align: center;
    z-index: 1;
    color: #555;
    font-size: 1rem;
}

/* Rotating Text Styles */
.rotating-text-container {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}

.rotating-text-wrapper {
    position: relative;
    min-height: 80px;
    display: inline-block;
}

.rotating-text-wrapper:first-child {
    text-align: right;
}

.rotating-text-wrapper:last-child {
    width: 250px;
    text-align: left;
}

.rotating-text-container > .text-light {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.rotating-text-item {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffc14d;
    border-radius: 8px;
    padding: 4px 12px;
    transition: opacity 0.5s ease;
    display: inline-flex;
    white-space: nowrap;
    color: #ffffff;
}

.rotating-text-wrapper:first-child .rotating-text-item {
    justify-content: flex-end;
}

.rotating-text-wrapper:last-child .rotating-text-item {
    justify-content: flex-start;
}

.text-rotate-sizer {
    visibility: hidden;
    display: block;
    height: 0;
    overflow: hidden;
}

.text-rotate-word {
    display: inline-flex;
}

.text-rotate-char-wrapper {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.125rem;
}

.text-rotate-element {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rotating-text-item.active .text-rotate-element {
    transform: translateY(0%);
}

.rotating-text-item.inactive {
    opacity: 0;
}

.rotating-text-item.inactive .text-rotate-element {
    transform: translateY(-120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-main-title .text-light {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.services-main-title .text-bold {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

/* 서브 섹션 */
.services-sub-section {
    text-align: left;
    flex: 0 0 450px;
    margin-bottom: 0;
}

.services-sub-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.services-star-icon {
    width: 69px;
    height: 69px;
}

.services-sub-title {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #f2f2f2;
    margin: 0;
    letter-spacing: 0;
}

.services-description {
    margin-bottom: 30px;
}

.services-description p {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #a6a6a6;
    margin: 0;
    letter-spacing: -0.36px;
}

/* CTA 버튼 */
.services-cta {
    display: flex;
    justify-content: flex-start;
}

.services-consult-btn {
    background: #1a1a1a;
    border: 1px solid #ffcb47;
    border-radius: 6px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: #ffcb47;
    letter-spacing: -0.3px;
}

.services-consult-btn:hover {
    background: rgba(255, 203, 71, 0.15);
    color: #ffcb47;
    transform: translateY(-2px);
}

.services-consult-btn img {
    transition: all 0.3s ease;
}

/* 서비스 카드 그리드 */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
}

.service-card {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 0;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0.3;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.service-card-title {
    font-family: 'SEBANG Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #ffffff;
    letter-spacing: -0.4px;
}

.service-card-subtitle {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 17.9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.3px;
}

/* 서비스 섹션 모바일 반응형 */
@media (max-width: 1280px) {
    .services-hero-container {
        padding: 0 2rem;
    }
    
    .services-main-title h1 {
        font-size: 48px;
        line-height: 64px;
    }
    
    .services-sub-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .services-hero-section {
        padding: 50px 0 60px;
    }

    .services-main-title h1 {
        font-size: 42px;
        line-height: 56px;
    }

    .services-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .services-sub-section {
        text-align: center;
        flex: none;
        width: 100%;
    }

    .services-sub-title-container {
        align-items: center;
    }

    .services-cta {
        justify-content: center;
    }

    .services-sub-title {
        font-size: 28px;
        line-height: 32px;
    }

    .rotating-text-wrapper {
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 40px 0 40px;
        margin-bottom: 40px;
    }

    .services-hero-container {
        padding: 0;
    }

    .services-main-title {
        margin-bottom: 40px;
    }

    .services-main-title h1 {
        font-size: 35px;
        line-height: 40px;
        white-space: normal;
        word-break: keep-all;
    }

    .services-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .services-sub-section {
        margin-bottom: 40px;
        text-align: center;
        flex: none;
        width: 100%;
    }

    .services-sub-title-container {
        align-items: center;
    }

    .services-cta {
        justify-content: center;
    }

    .services-sub-title {
        font-size: 24px;
        line-height: 28px;
    }

    .services-description p {
        font-size: 16px;
        line-height: 24px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card-title {
        font-size: 18px;
        line-height: 20px;
    }

    .service-card-subtitle {
        font-size: 14px;
        line-height: 16px;
    }

    .services-process-section .section-container {
        padding: 0;
    }

    .rotating-text-wrapper {
        min-height: 60px;
    }

    .rotating-text-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .rotating-text-wrapper:first-child {
        text-align: center;
    }

    .rotating-text-wrapper:last-child {
        text-align: center;
        width: 100%;
    }

    .rotating-text-container > .text-light {
        text-align: center;
    }

    .rotating-text-wrapper:first-child .rotating-text-item {
        justify-content: center;
        text-align: center;
    }

    .rotating-text-wrapper:last-child .rotating-text-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .services-hero-container {
        padding: 0 1rem;
    }

    .services-main-title h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .services-sub-title {
        font-size: 20px;
        line-height: 24px;
    }

    .services-description p {
        font-size: 16px;
        line-height: 24px;
    }

    .services-consult-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .rotating-text-wrapper {
        min-height: 60px;
    }

    .services-main-title .text-light,
    .services-main-title .text-bold {
        display: block;
    }

    .services-main-title br {
        display: none;
    }

    .rotating-text-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .rotating-text-wrapper:first-child {
        text-align: center;
    }

    .rotating-text-wrapper:last-child {
        text-align: center;
        width: 100%;
    }

    .rotating-text-container > .text-light {
        text-align: center;
    }

    .rotating-text-wrapper:first-child .rotating-text-item {
        justify-content: center;
        text-align: center;
    }

    .rotating-text-wrapper:last-child .rotating-text-item {
        justify-content: center;
        text-align: center;
    }
}

/* 계정 설정 섹션 스타일 */
.account-setup-section {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 3px solid #ffc14d;
}

.account-setup-section h4 {
    color: #ffc14d !important;
    font-weight: 600;
    margin-bottom: 15px !important;
}

/* 플랜 선택 모달 스타일 (Figma 디자인 적용) */
.modal-title {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: -0.4px;
}

.plan-info-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #000000;
}

.plan-title-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-title-section h3 {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: -0.48px;
}

.plan-subtitle {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #2a2a2a;
    letter-spacing: -0.28px;
}

.plan-dropdown-icon {
    width: 10px;
    height: 6px;
}

.plan-features {
    background: #fafafa;
    padding: 15px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #ffc14d;
    letter-spacing: -0.32px;
    width: 16px;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #2a2a2a;
    letter-spacing: -0.32px;
}

.price-breakdown {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-label {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #2a2a2a;
    letter-spacing: -0.32px;
}

.price-value {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #2a2a2a;
    letter-spacing: -0.32px;
}

.price-item.total {
    border-top: 1px solid #b1b1b1;
    padding-top: 15px;
    margin-top: 15px;
}

.price-item.total .price-label {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.36px;
}

.total-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.total-price .price-value {
    font-weight: 800;
    font-size: 23px;
    line-height: 27px;
    color: #ffc14d;
    letter-spacing: -0.46px;
}

.month-text {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 20px;
    color: #646464;
    letter-spacing: -0.34px;
}

.currency-text {
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #2a2a2a;
    letter-spacing: -0.26px;
}

.refund-info {
    text-align: right;
    margin-top: 15px;
}

.refund-btn {
    background: transparent;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 10px 15px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    color: #cccccc;
    letter-spacing: -0.26px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 65px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refund-btn:hover {
    border-color: #ffc14d;
    color: #ffc14d;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-close {
    background: #cacaca;
    border: none;
    border-radius: 8px;
    padding: 17px 20px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 92px;
}

.btn-close:hover {
    background: #b0b0b0;
}

.btn-select {
    background: #ffc14d;
    border: none;
    border-radius: 8px;
    padding: 17px 20px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 200px;
}

.btn-select:hover {
    background: #e6a942;
    transform: translateY(-2px);
}

/* 플랜 모달 스타일 */
.plan-modal-container {
    background: white;
    padding: 32px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.plan-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.plan-modal-close:hover {
    background-color: #f5f5f5;
}

.plan-modal-title {
    margin: 0;
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    letter-spacing: -0.4px;
    margin-bottom: 24px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.plan-dropdown-container {
    margin-bottom: 10px;
    position: relative;
}

.plan-dropdown-header {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    cursor: pointer;
}

.plan-title-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-name {
    color: #2a2a2a;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.48px;
}

.plan-subtitle {
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.28px;
}

.plan-dropdown-arrow {
    width: 10px;
    height: 6px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #333;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.plan-features-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    width: 574px;
    max-width: 100%;
    background: #FAFAFA;
    border-radius: 10px;
    margin-bottom: 24px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.plan-feature-item {
    align-items: flex-start;
    gap: 15px;
    padding: 5px 0;
}
.plan-feature-check {
    color: #FFC14D;
    font-weight: 700;
    font-size: 16px;
    margin-top: 1px;
    min-width: 16px;
}

.plan-feature-text {
    color: #2a2a2a;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.32px;
}

.plan-price-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.plan-price-item {
    display: flex;
    justify-content: space-between;
}

.plan-price-item:last-child {
    margin-bottom: 0;
}

.plan-price-label {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
}

.plan-price-value {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
}

.plan-price-total {
    border-top: 1px solid #b1b1b1;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-price-total-label {
    color: #2a2a2a;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.36px;
}

.plan-total-price-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-month-text {
    color: #2a2a2a;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.34px;
}

.plan-total-price {
    color: #ffc14d;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.46px;
}

.plan-currency-text {
    color: #2a2a2a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.26px;
}

.plan-refund-container {
    text-align: right;
    margin-top: 15px;
}

.plan-refund-btn {
    background: transparent;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 10px 15px;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #cccccc;
    letter-spacing: -0.26px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.plan-refund-btn:hover {
    border-color: #ffc14d;
    color: #ffc14d;
}

.plan-modal-buttons {
    display: flex;
    gap: 12px;
}

.plan-btn-close {
    flex: 1;
    padding: 16px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.plan-btn-close:hover {
    background-color: #e5e5e5;
}

.plan-btn-select {
    flex: 2;
    padding: 16px;
    background: #FFC14D;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.plan-btn-select:hover {
    background-color: #FFB830;
}

.plan-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #000;
    border-radius: 10px;
    margin-top: 5px;
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.plan-dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.2s ease;
}

.plan-dropdown-option:hover {
    background-color: #f5f5f5;
}

.plan-dropdown-option:last-child {
    border-bottom: none;
}

.clickable-card {
    cursor: pointer;
}

.plan-modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.plan-dropdown-hidden {
    display: none;
}

/* 개인정보처리방침 모달 */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.privacy-modal.show {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.privacy-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    max-height: 80vh;
    width: 90%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(100vh);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.privacy-modal.show .privacy-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.privacy-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.privacy-modal-body {
    padding: 32px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-intro {
    margin-bottom: 24px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.privacy-section p {
    margin-bottom: 8px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.privacy-section ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.privacy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

.contact-info {
    margin-top: 16px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-label {
    font-weight: 600;
    min-width: 60px;
}

.contact-value {
    color: #666;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .privacy-modal-header,
    .privacy-modal-body {
        padding: 20px;
    }

    .privacy-modal-header h2 {
        font-size: 18px;
    }
}

/* 타이핑 애니메이션 */
.typing-text,
.typing-text-second {
    display: inline-block;
    white-space: pre-wrap;
}

.text-type__content {
    display: inline-block;
}

.text-type__cursor {
    margin-left: 0.25rem;
    display: inline-block;
    color: #ffc14d;
    animation: cursor-blink 0.7s infinite;
    transition: opacity 0.3s ease;
}

@keyframes cursor-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}
