.pc-wrapper {
    background-color: #f8fafc;
    padding: 50px 0;
    font-family: 'Inter', sans-serif;
}
.pc-header {
    margin-bottom: 40px;
    text-align: center;
}
.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.pc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.pc-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.pc-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.pc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}
.pc-card-img-wrap {
    position: relative;
    height: 180px;
    background: #e2e8f0;
    overflow: hidden;
}
.pc-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pc-card:hover .pc-card-img-wrap img {
    transform: scale(1.06);
}
.pc-icon-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #fff;
    color: #fff;
}
.pc-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pc-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.pc-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}
.pc-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.pc-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}
.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pc-feature-item {
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pc-feature-item i {
    color: #10b981;
    font-size: 16px;
}
.pc-footer {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pc-price-wrap {
    display: flex;
    flex-direction: column;
}
.pc-price-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.pc-price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1d4ed8;
}
.pc-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
}

/* Features Section styling */
.pc-features-section {
    background-color: #fff;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feat-card {
    padding: 24px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}
.feat-card:hover {
    transform: translateY(-2px);
}
.feat-icon-wrap {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}
.feat-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* FAQ Section styling */
.pc-faq-section {
    background-color: #f8fafc;
    padding: 60px 0;
}
.faq-accordion {
    margin-top: 30px;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    border-color: #cbd5e1;
}

/* How It Works Section styling */
.pc-how-it-works-section {
    background-color: #fff;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.how-card {
    position: relative;
    padding: 30px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}
.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}
.how-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    user-select: none;
}
.how-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fce7f3;
    color: #db2777;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.how-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.how-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
