.pc-grid-789e1365 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.pc-card-789e1365 {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pc-card-789e1365:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.pc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.pc-icon {
    font-size: 30px;
    color: #333;
    background: #f5f5f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.pc-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}
.pc-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.pc-title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1a1a1a;
}
.pc-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 25px;
    min-height: 60px;
}
.pc-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.pc-price-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}
.pc-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pc-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pc-features li i {
    color: #4CAF50;
    font-size: 12px;
}
@media (max-width: 1024px) {
    .pc-grid-789e1365 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .pc-grid-789e1365 {
        grid-template-columns: 1fr;
    }
}