 /* --- Case Study Section Styles --- */
 .cs-section {
    padding: 88px 0;
    background-color: var(--white);
    color: var(--dark);
}

.cs-header {
    margin-bottom: 56px;
    max-width: 800px;
}

.cs-intro-text {
    font-size: 1.1rem;
    color: var(--mid);
    line-height: 1.6;
    margin-top: 15px;
}

.cs-block {
    margin-bottom: 48px;
}

.cs-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cs-paragraph {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
}

/* List Base Styling */
.cs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--mid);
}

/* Specific List Styles */
.cs-inline-list li {
    display: flex;
    gap: 10px;
}

.cs-icon-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cs-icon-list i {
    color: #dc3545;
    /* Red for challenges */
    font-size: 1.1rem;
    margin-top: 2px;
}

.cs-check-list li::before {
    content: "\F26E";
    /* Bootstrap check-lg icon */
    font-family: "bootstrap-icons";
    color: var(--blue);
    margin-right: 12px;
    font-weight: bold;
}

.cs-bullet-list li::before {
    content: "•";
    color: var(--blue);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cs-bullet-list {
    padding-left: 20px;
}

/* Step Phase Styling */
.cs-step-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-left: 2px solid var(--blue-light);
    padding-left: 20px;
    position: relative;
}

.cs-step-list li span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--blue);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.cs-step-list li::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
}

/* Results List Styling */
.cs-result-list li {
    background: var(--blue-pale);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #198754;
    /* Green for success */
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .cs-section {
        padding: 56px 0;
    }

    .cs-subheading {
        font-size: 1.25rem;
    }

    .cs-step-list li {
        flex-direction: column;
        gap: 5px;
    }
}











   /* ── Case Study Testimonial Styles ────────────────── */
   .cs-testimonial-section {
    padding: 100px 0;
    background: #f8fafc;
    /* Very light slate background */
    position: relative;
    overflow: hidden;
}

.cs-tst-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

/* Accent border for the testimonial */
.cs-tst-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), #198754);
    /* Blue to Success Green gradient */
    border-radius: 24px 24px 0 0;
}

.cs-tst-icon {
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -20px;
}

.cs-tst-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.6;
    color: var(--dark);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
    border: none;
    padding: 0;
}

.cs-tst-text strong {
    color: var(--blue);
    font-weight: 700;
}

.cs-tst-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cs-tst-dash {
    width: 40px;
    height: 2px;
    background: #198754;
    /* Success green */
}

.cs-tst-author {
    display: flex;
    flex-direction: column;
}

.cs-tst-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
}

.cs-tst-org {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-tst-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    text-align: right;
}

.cs-stars {
    color: #f59e0b;
    /* Amber/Gold */
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cs-badge-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #198754;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cs-tst-wrapper {
        padding: 30px 20px;
    }

    .cs-tst-badge {
        position: static;
        text-align: left;
        margin-bottom: 20px;
    }

    .cs-tst-text {
        font-size: 1.15rem;
    }
}












 /* --- ERP CTA Section Styles --- */
 .erp-cta-section {
    padding: 88px 0;
    background: var(--white);
}

.erp-cta-box {
    position: relative;
    background: linear-gradient(135deg, #001e4a 0%, #004a99 100%);
    border-radius: 30px;
    padding: 80px 40px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

/* Subtle Grid/Dot Pattern */
.erp-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    pointer-events: none;
}

.erp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.erp-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 15px 0 25px;
}

.erp-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.erp-cta-desc strong {
    color: #fff;
    border-bottom: 2px solid var(--blue-light);
}

/* Buttons */
.erp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-white-lg {
    background: #fff;
    color: var(--blue);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-white-lg:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Trust Items */
.erp-cta-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.erp-trust-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.erp-trust-item i {
    color: #00d084;
    /* Success Green */
}

/* Responsive */
@media (max-width: 768px) {
    .erp-cta-box {
        padding: 50px 20px;
    }

    .erp-cta-actions {
        flex-direction: column;
    }

    .erp-cta-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}





 /* Ensure consistency with the construction case study */
 .cs-step-list li span {
    background: var(--blue);
    /* Standard blue for steps */
}

.m-cta-box {
    margin-top: 40px;
    box-shadow: var(--sh-md);
}

.m-cta-box h4 {
    font-size: 1.4rem;
}

@media (max-width: 575px) {
    .m-cta-box .d-flex {
        flex-direction: column;
    }
}