.pcg-wrapper {
    width: 100%;
}

.pcg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pcg-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pcg-badge-wrap {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.pcg-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background-color: #4361ee;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
}

.pcg-wrap:has(.pcg-badge-wrap) {
    padding-top: 20px;
}

.pcg-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 36px 32px;
    background-color: #f0f4ff;
    border: 1px solid #e0e7ff;
    border-radius: 20px;
    position: relative;
    top: 0;
    box-sizing: border-box;
}

.pcg-card.pcg-highlight {
    background-color: #4361ee;
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(67, 97, 238, 0.35);
}

.pcg-plan-name {
    margin: 0 0 12px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    line-height: 1.4;
}

.pcg-highlight .pcg-plan-name {
    color: rgba(255, 255, 255, 0.8);
}

.pcg-price {
    margin: 0 0 6px 0;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: #111827;
    letter-spacing: -0.02em;
}

.pcg-highlight .pcg-price {
    color: #ffffff;
}

.pcg-price-note {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.pcg-highlight .pcg-price-note {
    color: rgba(255, 255, 255, 0.7);
}

.pcg-divider {
    border: none;
    border-top: 1px solid #e0e7ff;
    margin: 24px 0;
}

.pcg-highlight .pcg-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.pcg-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pcg-feature-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pcg-feature-icon {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    width: 16px;
    text-align: center;
}

.pcg-feature-item.pcg-included .pcg-feature-icon {
    color: #4361ee;
}

.pcg-feature-item.pcg-excluded .pcg-feature-icon {
    color: #d1d5db;
}

.pcg-feature-text {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.pcg-feature-item.pcg-excluded .pcg-feature-text {
    color: #9ca3af;
}

.pcg-highlight .pcg-feature-item.pcg-included .pcg-feature-icon,
.pcg-highlight .pcg-feature-item.pcg-excluded .pcg-feature-icon {
    color: rgba(255, 255, 255, 0.85);
}

.pcg-highlight .pcg-feature-text {
    color: rgba(255, 255, 255, 0.95);
}

.pcg-highlight .pcg-feature-item.pcg-excluded .pcg-feature-text {
    color: rgba(255, 255, 255, 0.55);
}

.pcg-btn-wrap {
    margin-top: 28px;
}

.pcg-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    background-color: transparent;
    color: #4361ee;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
}

.pcg-btn:hover {
    background-color: #4361ee;
    color: #ffffff;
    border-color: #4361ee;
}

.pcg-highlight .pcg-btn {
    background-color: #ffffff;
    color: #4361ee;
    border-color: transparent;
}

.pcg-highlight .pcg-btn:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
    .pcg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pcg-price {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .pcg-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pcg-card {
        padding: 28px 24px;
    }

    .pcg-price {
        font-size: 36px;
    }
}