/* ===================== 공통 영역 ===================== */
.pricing-container {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: flex-start;
    gap: clamp(120px, 16vw, 220px);
    padding-top: clamp(80px, 12vw, 160px);
    flex-shrink: 0;
}


/* ======================== */
/*          요금안내        */
/* ======================== */

.plan {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(32px, 5vw, 56px);
    width: 100%;
    max-width: 1320px;
    background: var(--color-background-white);
    flex-shrink: 0;
}

/* 헤더 */
.section_tit_keyword .body-sm.regular {
    color: var(--color-text-gray);
}

.plan .body-md.regular {
    margin-top: clamp(16px, 3.4vw, 24px) !important;
}

/* 섹션 공통 */
.pricing-container .section-container {
    display: flex;
    flex-direction: column;
    gap: var(--gap-80);
    width: 100%;
}


/* ----------------스탠다드 플랜---------------- */
.pricing {
    display: flex;
    flex-direction: column;
    gap: var(--gap-16);
    width: 100%;
}


/* 타이틀 */
.plan-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(gap-16);
    width: 100%;
}

.plan-title-group {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-16);
    width: 100%;
}

.plan-title-group .heading-md-bold {
    flex-shrink: 0;
}

.plan-title-group .body-sm.regular {
    min-width: 0;
    flex: 1;
}

.plan-capacity {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    align-items: center;
    gap: var(--gap-8);
    color: var(--color-text-gray);
    white-space: nowrap;
    transform: translateY(-50%);
}

.capacity-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-element-gray);
}


/* 카드 */
.plan-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-24);
    width: 100%;
}

.plan-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 40px);
    gap: var(--gap-20);
    min-width: 280px;
    padding: 40px;
    border-radius: var(--radius-large);
    background-color: var(--color-surface-gray-light, #f5f5f5);
}

.card-title {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
    margin-bottom: var(--gap-8);
}

.card-logo,
.card-logo img {
    width: 32px;
    height: 32px;
}

.blank {
    display: block;
    height: clamp(21px, 2vw, 24px);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: var(--gap-16);
    height: 410px;
    padding: clamp(16px, 2.5vw, 32px) 0;
    margin: 0;
    border-top: 1px solid var(--color-divider-gray-lighter);
    border-bottom: 1px solid var(--color-divider-gray-lighter);
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
}

.features-check {
    width: 20px;
    height: 20px;
}


/* ----------------무료로 사용할 수 있는 기능---------------- */
.card-free {
    margin-top: var(--gap-12);
}

.card-free-title {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
    margin-bottom: var(--gap-8);
    color: var(--color-text-gray-darker);
}

.card-free-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.free-item {
    position: relative;
    width: 50%;
    padding-left: var(--padding-12);
}

.free-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--color-element-gray);
    border-radius: 50%;
    transform: translateY(-50%);
}


/* 복리후생 */
.plan-card.plus {
    border: 1px solid var(--color-border-black);
}

.plus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ----------------엔터프라이즈 플랜---------------- */
.inq {
    display: flex;
    flex-direction: row;
    flex: 1 1 calc(33.333% - 40px);
    gap: var(--gap-80);
    min-width: 280px;
    padding: var(--padding-40);
    border-radius: var(--radius-large);
}

.inq-ent {
    background-color: var(--color-surface-primary-dark);
}

.inq-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gap-4);
    width: 30%;
    min-width: 0;
    flex-shrink: 0;
}

.inquiry-features {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gap-24);
    margin: 0;
}

.inquiry-features li {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
    white-space: nowrap;
}

.ent {
    color: var(--color-text-white);
}


/* ======================== */
/*    추가옵션&확장서비스    */
/* ======================== */

.custom {
    display: flex;
    flex-direction: row;
    gap: var(--gap-24);
    width: 100%;
}

.plan-service {
    display: block;
    text-align: right;
}

.price {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
}

.price .heading-md.bold,
.price-desc .body-sm.regular {
    margin-left: auto;
}

.body-sm.medium.full {
    width: 100% !important;
    flex-grow: 1;
}

.price-desc {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
}

.service-features {
    display: flex;
    align-items: center;
    gap: var(--gap-8);
    white-space: nowrap;
}

#price-badge {
    padding: 0 var(--padding-12);
    border-radius: var(--radius-medium);
    background: var(--color-divider-gray-lighter);
}


/* 1023px 이하: 모두 수직 정렬 */
@media (max-width: 1023px) {

}


/* ======================== */
/*        맞춤견적상담       */
/* ======================== */

.custom-quote {
    display: flex;
    height: 280px;
    padding-left: var(--padding-80);
    border-radius: var(--radius-large);
    background: linear-gradient(90deg, rgba(34, 11, 80, 1) 0%, rgba(62, 17, 155, 1) 72%);
    overflow: hidden;
    width: 100%;
    gap: var(--gap-24);
    align-items: center;
}

.custom-quote__text {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--color-text-white);
    gap: var(--gap-32);
}

.custom-quote__img {
    position: absolute;
    right: 0;
    height: auto;
    flex: 1;
    border-radius: var(--radius-large);
}


/* ======================== */
/*   주요기능 & 확장서비스    */
/* ======================== */

/* 공통 컨테이너 */
.features-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: clamp(328px, 91.3vw, 1320px);
    margin: 0 auto;
    gap: clamp(32px, 5vw, 56px);
}

.features-container .heading-xl {
    text-align: center;
}

/* 기능 카테고리 */
.feature-category-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-56);
}

.feature-category {
    display: flex;
    flex-direction: column;
    gap: var(--gap-16);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--gap-16);
}

.title-badge {
    height: 28px;
    padding: 0 var(--padding-12);
    border-radius: var(--radius-xlarge);
    background-color: var(--color-element-red-dark);
    color: var(--color-text-white);
    align-content: center;
}

.symbol {
    display: flex;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* 아코디언 컨테이너 */
.accordion-list {
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-bottom: var(--gap-20);
}

.accordion-item {
    background: white;
    border-bottom: 1px solid #eee;
}

.accordion-item.active {
    margin-bottom: var(--gap-32);
}


/* 아코디언 헤더 */
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px 24px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accordion-header .body-md {
    flex: 1;
    color: var(--color-text-gray-darker);
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

/* 아코디언 콘텐츠 */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding: 16px 20px 16px 0;
    border-bottom: 1px solid #eee;
    gap: 24px;
}

.feature-item .body-sm.medium {
    width: 240px;
    color: var(--color-text-gray-darker);
    flex-basis: 240px;
    flex-shrink: 0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-list .feature-item:last-child {
    border-bottom: 1px solid #eee;
}

/* 모바일 버튼 */
.btn-mo {
    display: none;
}


/* ======================== */
/*          부가기능         */
/* ======================== */
.gra {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 5vw, 56px) !important;
}

.addon-card {
    width: 33.333%;
    padding: var(--padding-40);
    border-radius: var(--radius-large);
    background-color: var(--color-surface-white);
    text-align: left;
}

.addon-card-header {
    padding-bottom: var(--gap-20);
    border-bottom: 1px solid #eee;
}

.addon-card ul {
    height: auto;
    padding: var(--padding-20) 0 0 0;
    border: 0;
    gap: var(--gap-8);
}

