
/* Pricing Section Header */
.section-header-pricing {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-heading {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-lead {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Updated Pricing Calculator Layout */
.calculator-controls-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.slider-control-full {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.slider-header label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
}

.slider-value-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.slider-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
}

.discount-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: none;
    white-space: nowrap;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-control-full input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #e91e63, #f06292);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    margin-bottom: 0.5rem;
}

.slider-control-full input[type="range"]:hover {
    opacity: 1;
}

.slider-control-full input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(233,30,99,0.4);
    border: 3px solid white;
}

.slider-control-full input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e91e63;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(233,30,99,0.4);
    border: 3px solid white;
}

.slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6c757d;
    padding: 0 0.5rem;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid rgba(233,30,99,0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233,30,99,0.3);
    box-shadow: 0 10px 30px rgba(233,30,99,0.15);
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e91e63, #f06292);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #212529;
    min-height: 2.4rem;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(233,30,99,0.1);
}

.detail-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

.pricing-card-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(233,30,99,0.2);
}

.pricing-card-total span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.per-month {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Total Box */
.pricing-total-box {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 15px;
    padding: 2rem 3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.total-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.total-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.total-note {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* BACS Automation CTA */
.bacs-automation-cta {
    background: linear-gradient(135deg, rgba(233,30,99,0.1), rgba(240,98,146,0.1));
    border: 2px solid rgba(233,30,99,0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.automation-cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.automation-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.automation-cta-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.automation-cta-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.automation-cta-button .btn {
    white-space: nowrap;
}

/* Responsive adjustments for new layout */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .automation-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .automation-cta-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .slider-scale {
        font-size: 0.65rem;
    }
    
    .slider-value {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 2.5rem;
    }
}
