body.pricing-page {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(236, 244, 255, 0.85) 100%);
    color: #111827;
}

.pricing-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 24px 112px;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 56px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1.2rem;
}

.pricing-hero__title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.pricing-hero__description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 auto;
    max-width: 640px;
}

.pricing-hero__note {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--radius-md);
    color: #4b5563;
    line-height: 1.7;
    padding: 1.2rem 1.4rem;
    max-width: 680px;
    justify-self: center;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 0.3rem;
    background: rgba(248, 250, 252, 0.85);
    margin: 0 auto;
}

.pricing-toggle__button {
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-toggle__button.is-active {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.pricing-toggle__caption {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 56px 0;
}

.plan-grid::after {
    content: '';
    display: block;
}

.plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    border-color: #cbd5f5;
}

.plan-card--highlight {
    background: #eef2ff;
    border-color: #c7d2fe;
    box-shadow: 0 32px 56px rgba(59, 130, 246, 0.12);
}

.plan-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.plan-card__subtitle {
    /*color: #6b7280;*/
    color: var(--accent);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-card__credit {
    font-size: 2.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.plan-card__credit span {
    display: block;
    font-size: 0.75em;
    font-weight: 400;
    color: #6b7280;
}

.plan-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1f2937;
}

.plan-card__price-value {
    font-weight: 700;
}

.plan-card__price-suffix {
    color: #6b7280;
    font-size: 0.92rem;
}

.plan-card__saving {
    display: none;
    font-size: 0.9rem;
    color: #a31630;
    font-weight: 600;
    margin-top: -25px;
    margin-bottom: 25px;
}

.plan-card__price--free {
    color: var(--accent);
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-card__features li::before {
    content: "✓";
    color: #1d4ed8;
    font-weight: 700;
    margin-top: 2px;
}

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

.plan-card .plan-cta {
    margin-top: 24px;
}

.plan-card form {
    margin-top: 24px;
}

.plan-card form button {
    width: 100%;
}

.enterprise-banner {
    margin: 64px 0;
    padding: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.enterprise-banner h2 {
    font-size: 1.55rem;
    color: #111827;
    margin-bottom: 14px;
}

.enterprise-banner p {
    color: #4b5563;
    margin-bottom: 20px;
}

.usage-section,
.addons-section {
    margin-top: 72px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    padding: 48px 40px 56px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.usage-section h2,
.addons-section h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #111827;
    margin-bottom: 36px;
}

.usage-grid,
.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.addon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usage-card,
.addon-card {
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.05);
}

.usage-card h3,
.addon-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-card h3 i {
    color: var(--accent);
    font-size: 1rem;
}

.usage-card ul,
.addon-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 0.95rem;
}

.usage-card li span:last-child {
    font-weight: 500;
    color: #1d4ed8;
}

.addon-card .addon-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.addon-card .addon-bonus {
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
    margin-bottom: 16px;
}

.plan-card .button--block,
.addon-card .button--block {
    width: 100%;
}

.addon-card .plan-cta {
    margin-top: 20px;
}

.addon-card__hint {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.5rem;
}

/* Addons section descriptions */
.addons-section__desc {
    text-align: center;
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.addons-section__notice {
    text-align: center;
    color: #d97706;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.addons-section__notice i {
    margin-right: 0.25rem;
}

.addons-section__status {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.addons-section__status a {
    color: var(--accent);
    text-decoration: underline;
}

.pricing-page .button,
.pricing-page .plan-cta,
.pricing-page .button--primary,
.pricing-page .button--ghost {
    border-radius: 12px;
}

.button--block {
    width: 100%;
}

@media (max-width: 1024px) {
    .plan-grid,
    .usage-grid,
    .addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 프로모션 코드 섹션 */
.promo-section {
    margin-top: 72px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    padding: 48px 40px 56px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.promo-section h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #111827;
    margin-bottom: 16px;
}

.promo-section__description {
    text-align: center;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 640px;
}

.promo-form__group {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    align-items: stretch;
}

.promo-form__input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #111827;
    transition: all 0.2s ease;
    font-family: 'Pretendard', sans-serif;
}

.promo-form__input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.promo-form__input::placeholder {
    color: #94a3b8;
}

.promo-form__submit {
    padding: 14px 32px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.promo-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.promo-form__notice {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.promo-form__notice:not(:empty) {
    display: block;
}

.promo-form__notice--success {
    background: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.2);
    color: #166534;
}

.promo-form__notice--error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 24px 16px 64px;
    }

    .plan-grid,
    .usage-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .pricing-hero h1 {
        font-size: 2.2rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }

    .promo-section {
        margin-top: 48px;
        padding: 32px 24px 40px;
    }

    .promo-section h2 {
        font-size: 1.75rem;
    }

    .promo-form__group {
        flex-direction: column;
    }

    .promo-form__submit {
        width: 100%;
        padding: 14px 20px;
    }
}
