.psp-section-1639 {
    padding: 80px 20px;
    background-color: #F9F7F1; /* Warm Sand fallback */
    max-width: 1200px;
    margin: 0 auto;
}

.psp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.psp-card {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Price Card */
.psp-price-card {
    display: flex;
    flex-direction: column;
}

.psp-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    color: #D35400; /* Terracotta */
    font-weight: 600;
}

.psp-price-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0A192F; /* Ocean Navy */
    line-height: 1.2;
}

.psp-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 40px;
}

.psp-price-wrap {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.psp-price-value {
    font-size: 56px;
    font-weight: 600;
    color: #0A192F;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.psp-price-note {
    font-size: 15px;
    color: #5A6A7D;
}

.psp-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.psp-btn {
    padding: 16px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.psp-btn-primary {
    background-color: #D35400;
    color: #fff;
}

.psp-btn-secondary {
    background-color: transparent;
    border: 2px solid #0A192F;
    color: #0A192F;
}

/* Checklist Card */
.psp-checklist-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #0A192F;
}

.psp-list {
    margin-bottom: 40px;
}

.psp-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.psp-list-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D35400;
}

.psp-list-icon svg {
    width: 100%;
    height: 100%;
    fill: #D35400;
}

.psp-list-item span {
    font-size: 16px;
    line-height: 1.5;
    color: #2C3E50;
}

.psp-clarity-note {
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.8;
    color: #5A6A7D;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Comparison Note */
.psp-comparison-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
}

.psp-comparison-note p {
    font-size: 16px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.psp-btn-text {
    font-size: 16px;
    font-weight: 600;
    color: #D35400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.psp-btn-text:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .psp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .psp-section-1639 {
        padding: 60px 15px;
    }
    .psp-card {
        padding: 30px 20px;
    }
    .psp-price-value {
        font-size: 48px;
    }
}
