@charset "UTF-8";

* {
    box-sizing: border-box;
}
body {
    background-color: #eef4fb;
}
.pricing_container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px 100px;
}

.fee_header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pricing_header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.pricing_body {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing_header h1,
.fee_header h1 {
    font-size: 40px;
    font-family: WOFF_3;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 0;
    margin-top: 0;
}

.pricing_header p,
.fee_header p {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}
.pricing_header p svg {
    width: 18px;
}

.annual-note {
    display: none;
    margin-top: 14px;
}

.cards {
    display: flex;
    gap: 28px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    flex: 1;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 35px 40px 35px;
    position: relative;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-20px);
    box-shadow: 0 32px 80px rgba(37, 99, 235, 0.24) !important;
    border-color: var(--primary);
}

.card:hover .btn_cta {
    background: var(--primary);
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:nth-child(1) {
    animation-delay: 0.08s;
}
.card:nth-child(2) {
    animation-delay: 0.16s;
}
.card:nth-child(3) {
    animation-delay: 0.24s;
}

.badge_recommended {
    background: #f97316;
    color: #fff;
    font-size: 15px;
    font-family: WOFF_3;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    justify-content: center;
    display: flex;
    text-align: center;
    white-space: nowrap;
    line-height: 1.5;
    padding: 5px 20px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.plan_name {
    font-size: 18px;
    font-family: WOFF_3;
    color: var(--text);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

/* price */
.price_row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    line-height: 1;
    margin-bottom: 6px;
}

.price_symbol {
    font-size: 20px;
    color: var(--text-3);
}

.price_num {
    font-size: 50px;
    font-family: WOFF_4;
    color: var(--text);
    line-height: 1;
}

.price_unit {
    font-size: 44px;
    font-family: WOFF_3;
}

.price_sub {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-3);
    padding-bottom: 0;
    margin-bottom: 28px;
}

.divider {
    display: block;
    border-top: 1px solid var(--border);
    margin-bottom: 10px;
}

.feature_list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-block: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature_list:nth-of-type(1) {
    border-top: none;
}
.feature_list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.5;
}

.feat-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--primary-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon svg path {
    stroke: var(--primary);
}

/* CTA button */
.btn_cta {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.9px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    transition: 0.3s;
    margin-bottom: 15px;
}

.btn_cta:hover {
    background: var(--primary);
    color: #fff;
}
@media (max-width: 1024px) {
    .pricing_container {
        padding: 0 16px 60px;
    }

    .pricing_header {
        margin-bottom: 40px;
    }

    .pricing_header h1,
    .fee_header h1 {
        font-size: 28px;
        word-break: auto-phrase;
        line-height: 1.4;
    }

    .pricing_header p,
    .fee_header p {
        font-size: 12px;
        padding: 4px 14px;
    }

    .badge_recommended {
        white-space: normal;
        width: fit-content;
        margin-inline: auto;
    }

    .cards {
        flex-direction: column;
        gap: 30px;
    }
    .card {
        padding: 28px 20px;
        width: 100%;
    }
    .card:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07);
        border-color: transparent;
    }

    .price_num {
        font-size: 28px;
    }

    .price_unit {
        font-size: 20px;
    }

    .price_symbol {
        font-size: 16px;
    }

    .price_sub {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .plan_name {
        font-size: 16px;
    }

    .feature_list li {
        font-size: 14px;
    }

    .btn_cta {
        font-size: 14px;
        padding: 12px 0;
        margin-bottom: 15px;
    }
}

/* 판매 수수료  */
.fee_notice {
    margin-top: 25px;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 25px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}
.dote_text {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
	line-height: 1.4;
	text-align: left;
}
.dote_text::before {
    content: '✔';
    display: inline-block;
    font-weight: 800;
    font-size: 20px;
    color: #2563eb;
}
.fee_container {
    max-width: 1000px;

    margin: 0 auto;
    padding: 0 60px 100px;
}

/* 상단 */
.fee_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fee_title h2 {
    font-size: 24px;
    font-weight: 800;
}

.fee_title span {
    font-size: 13px;
    color: #9ca3af;
}

.fee_summary {
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
}
.fee_summary b {
    font-family: WOFF_3;
    color: var(--primary);
}

/* 테이블 박스 */
.fee_table_box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
}

/* 테이블 */
.fee_table {
    width: 100%;
    border-collapse: collapse;
}

.fee_table thead {
    background: #364153;
    color: #fff;
}

.fee_table th {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-left: 1px solid var(--border-2);
}

.fee_table td {
    padding: 6px 14px;
    border-bottom: 1px solid var(--border-2);
    font-size: 14px;
}

.category {
    font-weight: 700;
    color: #111827;
}

.badge {
    display: flex;
    padding: 6px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-inline: auto;
    width: fit-content;
}

/* 반응형 */
@media (max-width: 1024px) {
    .fee_container {
        padding: 0 16px 60px;
    }
    .fee_header {
        margin-top: 30px;
    }
    .fee_summary {
        font-size: 14px;
        word-break: auto-phrase;
    }
    .fee_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fee_notice {
        flex-direction: column;
    }
	.fee_table th{
		word-break: auto-phrase;
		line-height: 1.4;
		padding: 4px 5px;
	}
	.fee_table td{
		padding-inline: 8px;
	}
	.badge{
		padding: 4px 8px;
		font-size: 13px;
	}
}
