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

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

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

/* 기존 메인 타이틀 섹션은 히어로 섹션으로 대체됨 */
.main-title-section {
    display: none;
}

.title-bold {
    font-weight: 900;
}

.title-normal {
    font-weight: 400;
}

/* 콘텐츠 섹션 래퍼 */
.content-sections-wrapper {
    position: relative;
    z-index: 1;
}

/* 프라이스 섹션들 - tripled 스타일 */
.price-sections {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* 섹션 간격 조정 */
.pain-points-section {
    margin: 0;
}

/* 히어로 섹션 */
.hero-section {
    background:#FFEF43;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23191919' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='1.4' fill='%23191919' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-main-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 700;
    color: #191919;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #666;
    line-height: 1.3;
    margin-bottom: 48px;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #191919;
    letter-spacing: -0.2px;
}

.hero-cta.primary {
    background: #191919;
    color: #fff;
    border-color: #191919;
}

.hero-cta.primary:hover {
    background: #191919;
    border-color: #FFEF43;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 0 #191919;
}

.hero-cta.secondary {
    background: #fff;
    color: #191919;
    border-color: #191919;
}

.hero-cta.secondary:hover {
    background: #fff;
    color: #191919;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 0 #191919;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-main-title {
        margin-bottom: 24px;
        word-break: keep-all;
    }

    .hero-subtitle {
        margin-bottom: 40px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }
}

/* 히어로 섹션 - tripled 스타일 (플레인프로븐 컬러) */
/* 브랜드 소개 섹션 (기존 - brand-intro-section-original로 사용) */
.brand-intro-section-original {
    padding: 250px 0 150px 0;
    background-color: #191919;
}

.brand-intro-section-original .brand-intro-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.brand-intro-section-original .brand-intro-container::before {
    content: '{';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'SUIT', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    color: #FFEF43;
    line-height: 1;
    z-index: 0;
}

.brand-intro-section-original .brand-intro-container::after {
    content: '}';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'SUIT', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    color: #FFEF43;
    line-height: 1;
    z-index: 0;
}

.brand-intro-section-original .brand-intro-image {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.brand-intro-section-original .brand-intro-image img {
    max-width: 100%;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.brand-intro-section-original .brand-intro-label {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFEF43;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.brand-intro-section-original .brand-intro-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.brand-intro-section-original .brand-intro-description {
    font-family: 'SUIT', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* 페인 포인트 섹션 - tripled 스타일 (플레인프로븐 컬러) */
.pain-points-section {
    background-color: #FFEF43;
    color: #191919;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.pain-points-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23191919' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='1.4' fill='%23191919' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
}

/* SVG와 섹션 간격 제거 */
.price-sections svg.portfolio-scallop-top {
    display: block;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 0;
    line-height: 0;
    background-color: #191919; 
    transform: scaleY(-1);
}

.pain-points-container {
    max-width: 1600px;
    margin: 0 auto;
    padding:100px 20px;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

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

.pain-points-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.4;
}

.pain-points-grid {
    margin-bottom: 60px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pain-point-card {
    background:#f8f9fa;
    padding: 40px 32px;
    width: calc(50% - 6px);
    margin-bottom: 20px;
    border: 2px solid #191919;
    box-shadow: 6px 6px 0 0 #191919;
    transition: all 0.3s ease;
    text-align: center;
}

.pain-point-emoji {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1;
}

.pain-point-card:hover {
    border: 2px solid 191919;
    box-shadow: 6px 6px 0 0 #191919;
    transform: translateY(-4px);
}

.pain-point-text {
    font-family: 'SUIT', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.pain-point-text strong {
    font-weight: 700;
    font-size: 20px;
}

.pain-points-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pain-cta-message {
    font-family: 'SUIT', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.pain-cta-message strong {
    font-weight: 700;
}

/* 전환 섹션 */
.transition-section {
    padding: 80px 0 80px 0;
    background-color: #FFEF43;
    color: #191919;
    position: relative;
    overflow: hidden;
}

.transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23191919' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='1.4' fill='%23191919' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    pointer-events: none;
    z-index: 0;
}

.transition-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.transition-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.6;
}

.transition-text strong {
    color: #191919;
    background: linear-gradient(180deg, transparent 70%, rgba(255, 239, 67, 0.3) 70%);
    font-weight: 700;
}

/* WHY 섹션 - tripled 스타일 (플레인프로븐 컬러) */
.why-section {
    padding: 200px 0;
    background-color: #FFFFFF;
}

.why-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-label {
    font-family: 'SUIT', sans-serif;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
    background-color: #FFEF43;
    margin: 0 auto;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0 0 #191919;
    border: 2px solid #191919;
    margin-bottom: 20px;
    padding: 10px 20px;
}

.why-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(35px, 4vw, 42px);
    font-weight: 700;
    color: #191919;
    line-height: 1.2;
    margin-bottom: 24px;
}

.why-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 1200px 이상에서 좌우 정렬 */
@media (min-width: 1200px) {
    .why-features {
        flex-direction: row;
        gap: 30px;
    }
    
    .why-feature-card {
        flex: 1;
    }
}

.why-feature-card {
    background: rgba(25, 25, 25, 0.02);
    padding: 30px 40px ;
    transition: all 0.3s ease;
}

.why-feature-title {
    font-family: 'SUIT', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
    color: #191919;
    margin-bottom: 12px;
}

.why-feature-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffa743;
    margin-bottom: 20px;
}

.why-feature-description {
    font-family: 'SUIT', sans-serif;
    word-break: keep-all;
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
}

.why-feature-description strong {
    color: #191919;
    font-weight: 600;
}

.price-sections svg.portfolio-scallop-bottom {
    display: block;
    width: 100%;
    height: 10px;
    margin: 0;
    padding: 0;
    line-height: 0;
    vertical-align: bottom;
    background-color: #FFEF43;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* 반응형 조정 */
@media (max-width: 768px) {
    /*.hero-section,
    .brand-intro-section,*/
    .stats-section,
    .why-section {
        padding: 80px 0;
    }
    
    /* 모바일에서 pain-points-section 하단 SVG 붙이기 */
    .pain-points-section {
        padding: 0; /* 하단 패딩 제거 */
    }
    
.price-sections svg.portfolio-scallop-bottom {
    display: block;
    width: 100%;
    height: 20px;
    margin-top: -1px;
    padding: 0;
    line-height: 0;
    background-color: #FFEF43;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23191919' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='1.4' fill='%23191919' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
}
    
    .transition-section{
        padding: 100px 0;
    }
    

    /*.hero-container,*/
    .brand-intro-section-original .brand-intro-container,
    .stats-container,
    .pain-points-container,
    .transition-container,
    .why-container {
        padding: 100px 20px;
    }

    .brand-intro-section-original .brand-intro-container::before,
    .brand-intro-section-original .brand-intro-container::after {
        font-size: clamp(40px, 10vw, 80px);
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pain-points-grid {
        gap: 12px;
    }
    
    .pain-point-card {
        width: 100%;
    }
    
    .hero-cta-buttons {
        flex-wrap: nowrap;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .why-feature-card {
        padding: 24px;
    }
    .main-title-section {
        padding: 20vh 0 80px 0;
    }
    
    .main-title-container {
        padding: 0 20px;
    }
    
    .title-bracket {
        font-size: clamp(60px, 15vw, 100px);
        margin-bottom: 15px;
    }
    
    .main-title {
        font-size: clamp(36px, 5vw, 50px);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .brand-intro-section-original .brand-intro-description {
      word-break: keep-all;
    }
    .brand-intro-section-original .brand-intro-container::before {
        display: none;
    }
    .brand-intro-section-original .brand-intro-container::after {
        display: none;
    }
}

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

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

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

/* 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;
}

/* 모바일에서 헤더 텍스트 크기 조정 */
@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;
}


/* 섹션 컨테이너 */
.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;
    }
}



/* 통일된 상품 카드 컨테이너 */
.product-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}


/* 통일된 상품 섹션 스타일 */
.product-section-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.product-section-description {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    color: #666666;
    word-break: keep-all;
    line-height: 1.4;
    max-width: 600px;
}
.product-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: auto;
    height: auto;
    border: 2px solid #FFFFFF;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .product-cards {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(20px, 3vw, 32px);
        justify-content: center;
        align-items: stretch;
        margin: 0 auto;
    }

    .product-card {
        flex: 1 1 clamp(320px, 45%, 420px);
        width: 100%;
    }
}


.product-card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc14d;
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 20px;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 193, 77, 0.3);
    animation: float-badge 2s ease-in-out infinite;
}

/* 말풍선 꼬리 */
.product-card-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffc14d;
}

/* 위아래 플로팅 애니메이션 */
@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.product-card-header {
    margin-bottom: 10px;
}

.product-card-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.product-card-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-content {
    margin-bottom: 30px;
}

.product-card-description {
    font-family: 'SUIT', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.7px;
    margin-bottom: 10px;
    line-height: 1.5;
}

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

.product-card-features li {
    font-family: 'SUIT', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #CCCCCC;
    padding-left: 10px;
    position: relative;
    line-height: 1.4;
}

.product-card-features li::before {
    content: '∙';
    position: absolute;
    left: 0;
    color: #CCCCCC;
    font-weight: 600;
}

/* 카드 하단 영역 */
.product-card-tags {
    margin-top: auto;
    display: flex;
    color: #FFFFFF;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card-tag {
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #FFFFFF;
    font-family: 'SUIT', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}



.product-card-price {
    margin-top: auto;
    text-align: right;
    align-self: flex-end;
}

.product-card-price .price-amount {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.7px;
    display: block;
}

.product-card-price .price-period {
    font-size: 0.7em;
    font-weight: 400;
    color: #CCCCCC;
    margin-left: 2px;
}

.product-card-price .price-note {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
}
.sub_info {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.sub_info strong {
    color: #1a1a1a;
    font-weight: 600;
}



.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: 'SUIT', -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;
}



/* 추천 말풀선 스타일 */
.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;
}


.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: 'SUIT', 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: 'SUIT', 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: 'SUIT', 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: 'SUIT', 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: 'SUIT', 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: 'SUIT', 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;
}

.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-subscription-section {
   
}*/

.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;
}

/* 풀패키지 구독제 섹션 */
.full-package-section {
    background: var(--price-section-background);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.full-package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--price-pattern-image);
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.55;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.full-package-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* 기존 중복 스타일 제거 완료 */

.full-package-card {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
padding: 25px 25px 20px;
width: auto;
height: auto;
background: #FFFFFF;
border: 2px solid #191919;
}

.full-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffc14d;
}


.full-package-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffc14d;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.full-package-card-header {
    margin-bottom: 30px;
}

.full-package-card-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.full-package-card-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-package-card-content {
    margin-bottom: 30px;
}

.full-package-card-description {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.full-package-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-package-card-features li {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.full-package-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc14d;
    font-weight: 600;
}

.full-package-card-price {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.full-package-card-price .price-amount {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.full-package-card-price .price-note {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

/* 유지보수 구독제 섹션 */
.maintenance-subscription-section {
    background: var(--price-section-background);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.maintenance-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--price-pattern-image);
    background-size: 60px 60px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.55;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.maintenance-subscription-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* 기존 중복 스타일 제거 완료 */

.maintenance-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.maintenance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffc14d;
}

.maintenance-card.recommended {
    border-color: #ffc14d;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.maintenance-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffc14d;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.maintenance-card-header {
    margin-bottom: 30px;
}

.maintenance-card-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.maintenance-card-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maintenance-card-content {
    margin-bottom: 30px;
}

.maintenance-card-description {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.5;
}


/* 무제한 모드 카드 스타일 */
.product-card.unlimited-mode {
    border-color: #1a1a1a;
}

.product-card.unlimited-mode .product-card-title {
    color: #ffc14d;
}w

.product-card.unlimited-mode .price-amount {
    color: #ffc14d;
}

/* 선택하기 버튼과 무제한 전환 버튼 컨테이너 */
.product-card-action {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 기본 선택하기 버튼 */
.select-plan-btn {
    flex: 0 0 70%; /* 카드 너비의 70% 차지 */
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 15px 20px;
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 호버 효과 */
.select-plan-btn:hover {
    box-shadow: 2px 3px 0px #191919;   
}

.product-card.unlimited-mode .select-plan-btn {
    background: #ffffff;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.product-card.unlimited-mode .select-plan-btn:hover {
    background: #ffc14d;
    border-color: #1a1a1a;
}

/* 무제한 전환 버튼을 액션 영역으로 이동 */
.product-card-action .unlimited-btn {
    flex: 0 0 30%; /* 카드 너비의 30% 차지 */
    margin: 0;
    word-break: keep-all;
    padding: 10px; /* 선택하기 버튼과 동일한 패딩 */
    font-size: 13px; /* 원래 글자크기로 복원 */
    font-weight: 500; /* 선택하기 버튼과 동일한 폰트 굵기 */
    background: #ffc14d; /* 노란색 배경 */
    color: #1a1a1a; /* 검은색 텍스트 */
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a; /* 노란색 테두리 */
}

.product-card-action .unlimited-btn:hover {
    box-shadow: 2px 3px 0px #1a1a1a; /* 호버 시 그림자 효과 */
    transform: none; /* transform 제거 */
}

.product-card-action .unlimited-btn.active {
    background: #ffc14d; /* 활성화 시 초록색 */
    border-color: #1a1a1a;
    height: 100%;
    color: #1a1a1a;
}

.product-card-action .unlimited-btn.active:hover {
    box-shadow: 2px 3px 0px #ffc14d;
}

.maintenance-card-features li {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.maintenance-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc14d;
    font-weight: 600;
}

.maintenance-card-price {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price-amount {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.price-note {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.maintenance-subscription-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-subscription-section .services-main-title .text-light {
    color: #8c8c8c;
    font-weight: 400;
}

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

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

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

/* 기존 중복 스타일 제거 완료 */
/* 스타일 정리 완료 */

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

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

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

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

/* 비교표 섹션 스타일 제거 완료 */


/* 중복 스타일 정리 완료 */

.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;
}

.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;
}

/* 스타일 정리 완료 */

.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;
}

#paymentModal {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

#paymentModal .modal-content {
    position: relative;
    top: 3vh;
    right: auto;
    left: auto;
    width: min(520px, 100%);
    max-height: 90vh;
    height: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

#paymentModal.show {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
}

#paymentModal.show .modal-content {
    right: auto;
    left: auto;
    transform: translateY(0);
    opacity: 1;
}

#paymentModal .modal-header {
    margin-top: 0;
    padding: 24px;
    position: relative;
}

#paymentModal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
}

#paymentModal .modal-close img {
    width: 18px;
    height: 18px;
    filter: none;
}

#paymentModal .modal-body {
    padding: 0 24px;
}

#paymentModal .modal-body-section {
    width: 100%;
}
   /*
#paymentModal .plan-info-card {
 overflow: hidden;
}
*/
#paymentModal .plan-description {
    margin: 0;
    padding: 16px 24px;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.3px;
    color: #505050;
}

#paymentModal .plan-features {
    background: #f5f5f5;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#paymentModal .feature-item {
    margin-bottom: 0;
}

#paymentModal .price-breakdown {
    background: transparent;
}

#paymentModal .modal-footer {
    position: static;
    padding: 20px 24px 24px;
    background: #ffffff;
}

#paymentModal .btn-close {
    background: #f5f5f5;
    color: #2a2a2a;
    flex: 0 0 auto;
}

#paymentModal .btn-close:hover {
    background: #e8e8e8;
}

#paymentModal .btn-select {
    flex: 1 1 auto;
}

#paymentModal .plan-view {
    display: block;
    flex: 1 1 auto;
}

#paymentModal .refund-view {
    display: none;
}

#paymentModal[data-mode="refund"] .plan-view {
    display: none;
}

#paymentModal[data-mode="refund"] .refund-view {
    display: block;
}

#paymentModal[data-mode="refund"] .modal-footer {
    display: none;
}

#paymentModal .modal-header {
    align-items: center;
}

#paymentModal .modal-header-plan,
#paymentModal .modal-header-refund {
    flex: 1;
}

#paymentModal .modal-header-refund {
    display: flex;
    align-items: center;
    gap: 12px;
}

#paymentModal[data-mode="payment"] .modal-header-refund {
    display: none;
}

#paymentModal[data-mode="refund"] .modal-header-plan {
    display: none;
}

.modal-plan-selector {
    position: relative;
    display: block;
}

.modal-plan-selector:not(.active) .plan-header-icon {
    opacity: 0;
}

.modal-plan-selector:not(.active) .plan-header-toggle {
    cursor: default;
}


.modal-plan-options {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: max(240px, 100%);
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: none;
    z-index: 100;
}

.modal-plan-selector.open .modal-plan-options {
    display: block;
}

.modal-plan-option {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    transition: background 0.15s ease, color 0.15s ease;
}

.modal-plan-option:hover {
    background: #f1f1f1;
}

.modal-plan-option.selected {
    background: #1a1a1a;
    color: #ffffff;
}

.modal-plan-option .option-price {
    font-weight: 600;
}
.payment-modal.show {
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.payment-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: 'SUIT', 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;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal-back img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.modal-back:hover {
    opacity: 0.6;
}

.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: 'SUIT', 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: 'SUIT', 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;
}

.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: 'SUIT', sans-serif;
    letter-spacing: -0.3px;
}

.price-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'SUIT', 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: 'SUIT', sans-serif;
    letter-spacing: -0.26px;
    transition: all 0.3s ease;
}

.refund-btn:hover {
    background: #cccccc;
    color: #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: 'SUIT', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.refund-section-divider {
    height: 1px;
    background: #eeeeee;
    margin: 30px 0;
    border: none;
}

.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;
}


/* 스타일 정리 완료 */

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

/* 스타일 정리 완료 */

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

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

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

/* 반응형 디자인 */
@media (max-width: 1280px) {
    .section-container {
        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%;
        padding: 0 20px;
    }

    .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);
    }

    /* 섹션 wrapper 반응형 */
    .general-production-wrapper,
    .maintenance-subscription-wrapper,
    .full-package-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .general-production-info,
    .maintenance-subscription-info,
    .full-package-info {
        min-width: auto;
        margin: 0 auto;
        text-align: center;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .product-card-price .price-amount
    {
        font-size: 35px;
    }
    .product-card {
        width: 90vw;
    }
    
    .product-card-header,
    .product-card-content,
    .product-card-description,
    .product-card-features {
        text-align: left;
    }
    
    .product-card-tags {
        justify-content: flex-start;
    }
    
    .product-card-price {
        text-align: right;
    }
    
    .full-package-container {
        padding: 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,
    .full-package-section,
    .maintenance-subscription-section,
    .comparison-section,
    .recommendation-section {
        padding: 30vw 0 0 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) {
    svg.portfolio-scallop-bottom {
        display: none;
        height: 0;
        opacity: 0;
        visibility: hidden;
    }

    /* .subscription-process-section {
        padding: 0 0 40px 0;
    } */

    .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,
    .full-package-section,
    .maintenance-subscription-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;
    }

    .product-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;
    }
}


/* Content Sections Wrapper */
.content-sections-wrapper {
    position: relative;
    z-index: 10;
}

/* 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 관련 스타일 제거 완료 */

/* 서브 섹션 */
.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: 'SUIT', -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: 'SUIT', -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: 'SUIT', -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 {
        height: 70vh;
    }

    .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 {
        height: 70vh;
    }

    .services-hero-container {
        padding: 0;
        text-align: center;
    }

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

    .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;
        text-align: center;
    }

    .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;
        left: 50%;
        transform: translateX(-50%);
    }

    .rotating-text-wrapper:last-child .rotating-text-item {
        justify-content: center;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

@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;
        text-align: center;
    }

    .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;
        left: 50%;
        transform: translateX(-50%);
    }

    .rotating-text-wrapper:last-child .rotating-text-item {
        justify-content: center;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 계정 설정 섹션 스타일 */
.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;
    margin-bottom: 20px;
  /*  overflow: hidden;*/
}

.plan-header-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 20px;
    background: transparent;
    cursor: pointer;
    color: #2a2a2a;
    transition: background 0.2s ease, color 0.2s ease;
}


.modal-plan-selector.active .plan-header-toggle:hover {
    background: #f5f5f5;
}

.modal-plan-selector.open .plan-header-toggle {
    background: #ffffff;
    color: #1a1a1a;
}

.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;
}

.modal-plan-selector.open .plan-title-section h3,
.modal-plan-selector.open .plan-title-section .plan-subtitle {
    color:#1a1a1a;
}

.plan-header-icon {
    width: 12px;
    height: 8px;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.modal-plan-selector.open .plan-header-icon {
    transform: rotate(180deg);
    filter: invert(1);
}

.modal-plan-selector.disabled .plan-header-toggle {
    cursor: default;
    background: transparent !important;
}

.modal-plan-selector.disabled .plan-header-icon {
    opacity: 0;
}

.modal-plan-selector.disabled .plan-header-toggle:focus {
    outline: none;
}

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

.feature-item {
    display: flex;
    align-items: center;
    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;
}

.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;
}

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

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

/* 플랜 모달 스타일 */
.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: 'SUIT', -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-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: 1024px) {
    .general-production-wrapper,
    .maintenance-subscription-wrapper,
    .full-package-wrapper {
        flex-direction: column;
        gap: 40px;
        
    }
    
    .product-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 카드 최소 320px 유지 */
    max-width: 100%;  /* 한 줄일 때도 680px 이내 */
    margin: 0 auto;               /* 가운데 정렬 */
    justify-content: center;      /* 남는 공간 중앙에 */
    gap: 10px;
  }

  .product-card {
    width: 100%;
  }
}

/* 모바일 반응형 */

/* 480px 이하 - modal-plan-options 수정 */
@media (max-width: 480px) {
    .modal-plan-options {
        position: absolute;
        top: calc(100% + 5px);
        bottom: auto;
        left: 0;
        transform: none;
        right: 0;
        width: 100%;
        max-width: none;
        max-height: 40vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .modal-plan-option {
        font-size: 14px;
        padding: 12px;
    }

    .modal-plan-option .option-price {
        font-size: 14px;
    }
}

/* 360px 이하 - modal-plan-options 수정 */
@media (max-width: 360px) {
    svg.portfolio-scallop-bottom {
        display: none;
        height: 0;
        opacity: 0;
        visibility: hidden;
    }

    /* .subscription-process-section {
        padding: 0 0 30px 0;
    } */

    .modal-plan-options {
        position: absolute;
        top: calc(100% + 5px);
        bottom: auto;
        left: 0;
        transform: none;
        right: 0;
        width: 100%;
        max-width: none;
        max-height: 40vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .modal-plan-option {
        font-size: 13px;
        padding: 10px;
    }

    .modal-plan-option .option-price {
        font-size: 13px;
    }
}

/* 플랜 섹션 - tripled 스타일 */
.plans-section {
    padding: 120px 20px;
    position: relative;
    background: #fff;
}

.plans-container {
    max-width: 1280px;
    margin: 0 auto;
}

.plans-header {
    text-align: center;
    margin-bottom: 80px;
}

.plans-title {
    font-size: 42px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 24px;
    line-height: 1.2;
}

.plans-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #191919;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.plans-consult-btn {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    background: #ffffff;
    border: 2px solid #191919;
    padding: 12px 32px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.plans-consult-btn:hover {
    background: #fff;
    color: #191919;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 0 #191919;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.plan-card {
    background: #fff;
    border-radius: 0;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 24px;
    box-shadow: 0 0 24px 0 #19191915;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #19191915;
    font-family: 'SUIT', sans-serif;
    word-break: keep-all;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 24px 0 #19191925;
    background: #fff;
}

.plan-card.plan-recommended {
    background: #fff;
    border: 1px solid #ffca43;
    box-shadow: 0 0 24px 0 #ffca4345;
}

.plan-card.plan-recommended:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 24px 0 #ffca4345;
    background: #fff;
}

.plan-badge {
    /*position: absolute;
    top: -12px;
    right: 32px;
    background: #FFEF43;
    color: #191919;
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 99px;
    padding: 6px 16px;
    transition: all 0.3s ease;
    z-index: 10; */
    display: none;
}

.plan-card:hover .plan-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 239, 67, 0.4);
}

.plan-content-top {
    display: flex;
    flex-direction: column;
}

.plan-content-bottom {
    display: flex;
    flex-direction: column;
}


.plan-name {
    font-family: 'SUIT', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #191919;
    line-height: 1.2;
}

.plan-label {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    margin-bottom: 20px;
    text-align: center;
}

.plan-amount {
    font-family: 'SUIT', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #191919;
    line-height: 1;
}

.plan-period {
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-left: 4px;
}

.plan-description {
    font-family: 'SUIT', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}
.plan-card > div:last-child
.plan-card p {
    font-family: 'SUIT', sans-serif;
    color: #191919;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0 0 0;
}


.plan-recommendation-text {
    font-family: 'SUIT', sans-serif;
    font-weight: 500;
    color: #ffa743;
    margin: 10px 0 30px 0;
}

.plan-card > div:last-child {
    margin-top: 100px;
}

.plan-card > div:last-child > p {
    font-family: 'SUIT', sans-serif;
    color: #666;
    font-size: 13px;
}

.plan-features-title {
    font-family: 'SUIT', sans-serif;
    color: #666;
    font-size: 13px;
    padding: 20px 0 10px 0;
    margin-top: 20px;
    font-weight: 500;
    border-top: 1px solid #19191915;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    color: #191919;
}

.plan-features li {
    font-family: 'SUIT', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    color: #766d29;
    background-color: #fff9d9;
    border-radius: 99px;
    padding: 0 12px;
    display: inline-block;
    margin-bottom: 10px;
    text-align: center;
}
.plan-cta-btn {
    width: 100%;
    background: #191919;
    color: #fff;
    border: 2px solid #191919;
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.plan-cta-btn:hover {
    background: #FFEF43;
    border-color: #FFEF43;
    color: #191919;
}

.plans-note {
    text-align: center;
    margin-top: 40px;
}

.plans-note p {
    font-family: 'SUIT', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 100px 20px;
    }

    .plans-header {
        margin-bottom: 60px;
    }

    .plans-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .plans-subtitle {
        font-size: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-name {
        font-size: 35px;
    }

    .plan-amount {
        font-size: 30px;
    }
}

/* FAQ 섹션 */
.faq-section {
    background: #fff;
    padding: 140px 0 300px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #191919;
    text-align: center;
    margin-bottom: 60px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 2px solid #191919;
    overflow: hidden;
    transition: all 0.3s ease;
}


.faq-item:hover {
    box-shadow: 4px 4px 0 0 #191919;
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 4px 4px 0 0 #191919;
    transform: translateY(0);
}

.faq-question {
    background-color: #FFFFFF;
    width: 100%;
    padding: 24px 28px;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #191919;
    transition: all 0.3s ease;
}



.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #191919;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    word-break: keep-all;
    background-color: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content {
    padding: 28px 0;
    color: #191919;
    border-top: 1px solid #b8b8b8;
    margin: 0 28px ;
    font-family: 'SUIT', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.faq-content h3 {
    color: #191919;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.faq-content h4 {
    color: #FFEF43;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.faq-content p {
    margin: 12px 0;
    color: #191919;
}

.faq-content strong {
    color: #191919;
    font-weight: 600;
}

.faq-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

/* FAQ 반응형 */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0 200px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-content {
        padding: 10px 0;
        font-size: 14px;
    }

    .faq-content h3 {
        font-size: 18px;
    }

    .faq-content h4 {
        font-size: 16px;
    }
}

/* =========================================
    히어로 섹션 - 피그마 디자인 적용
    ========================================= */

/* =========================================
    비용 인식 섹션 - 피그마 디자인 적용
    ========================================= */
.cost-awareness-section {
    background: #191919;
    color: #fff;
    margin-top: -1px;
    padding:100px 20px 150px 20px;
}

.cost-awareness-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    gap: 40px;
    flex-direction: row;
}

.cost-awareness-container > div:first-child {
    flex: 1;
    min-width: 400px;
}

.cost-awareness-container > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cost-awareness-container > div:last-child img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
}

.cost-awareness-title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cost-awareness-title h2 {
    color: #fff;
    font-family: 'SUIT', sans-serif;
    font-weight: 200;
    font-size: 45px;
    word-break: keep-all;
    line-height: 120%;
    letter-spacing: -1px;
    margin: 60px 0;
}

.cost-awareness-title span {
    color: #191919;
    font-family: 'SUIT', sans-serif;
    font-weight: 500;
    font-size: 20px;
    background-color: #FFEF43;
    letter-spacing: -1px;
    padding: 10px 20px;
    text-align: center;
}


.cost-awareness-title strong {
    color: #ffc14d;
    font-family: 'SUIT', sans-serif;
    font-weight: 700;
    font-size: 45px;
    letter-spacing: -1px;
    margin: 0 0 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cost-awareness-container > div:first-child > div:first-child {
    margin-bottom: 25px;
}

.cost-awareness-container p{
    font-size: 25px;
    font-weight: 500;
    color: #ffc14d;
}

.cost-awareness-list p {
    color: #fff;
    font-family: 'SUIT', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 180%;
    letter-spacing: -0.92px;
    margin: 0 0 25px 0;
}


/* =========================================
    반응형 디자인
    ========================================= */
@media (max-width: 768px) {
    
    .cost-awareness-section {
        padding: 40px 20px 60px;
    }

    .cost-awareness-container {
        flex-direction: column;
        gap: 40px;
    }

    .cost-awareness-container > div:first-child {
        min-width: auto;
        max-width: 100%;
    }

    .cost-awareness-title {
        font-size: clamp(32px, 6vw, 45px);
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .cost-awareness-container > div:first-child > div:nth-child(2) p {
        font-size: clamp(20px, 4vw, 25px);
    }

    .cost-awareness-container > div:first-child > div:last-child p {
        font-size: clamp(18px, 3vw, 23px);
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    
    .hero-section {
        padding: 80px 15px;
    }

    .cost-awareness-section {
        padding: 30px 15px 50px;
    }
}

/* 파일 정리 완료 */
