/* Enhanced Journey Section Styles */
.process-journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 2px solid var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

.journey-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.journey-step.active {
    border-color: var(--accent-color);
    box-shadow: 0 12px 48px rgba(41, 171, 226, 0.15);
}

.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(35, 26, 112, 0.3);
}

.step-title h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.step-duration {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.step-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.step-checklist i {
    color: var(--accent-color);
    font-size: 1rem;
}

.step-visual {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-highlight {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.journey-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    color: white;
}

.journey-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.journey-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Risk-Free Guarantee Section Styles */
.risk-free-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1455 100%);
    color: white;
    position: relative;
}

.risk-free-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 2L18 6L10 18L2 6Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23shield)"/></svg>');
}

.guarantee-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.guarantee-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(41, 171, 226, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.guarantee-badge-large i {
    font-size: 2rem;
    color: var(--accent-color);
}

.badge-text strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.2;
}

.badge-text small {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
}

.guarantee-hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, white, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-promise {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-main:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.pillar-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.pillar-proof {
    text-align: center;
}

.proof-stat {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}

.proof-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.guarantee-details {
    margin-bottom: 4rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.card-header h4 {
    margin: 0;
    font-size: 1.25rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.detail-list i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.guarantee-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: -10px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.author-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.guarantee-cta {
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Enhanced Results & Impact Section Styles */
.results-impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    position: relative;
}

/* Accessibility improvements for better contrast */
.results-impact-section * {
    text-shadow: none;
}

.results-impact-section .text-muted {
    color: #6c757d !important;
}

.results-impact-section .small-text {
    color: #495057 !important;
    font-weight: 500;
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(35, 26, 112, 0.2);
}

.results-badge i {
    font-size: 1.25rem;
    color: #ffc107;
}

.results-header h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.results-intro {
    font-size: 1.2rem;
    color: #495057;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Performance Showcase */
.performance-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.showcase-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1455 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.showcase-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
}

.main-metric {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.metric-visual {
    text-align: center;
}

.metric-circle {
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 171, 226, 0.1);
    position: relative;
}

.metric-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0% 98.5%, transparent 98.5%);
    z-index: -1;
}

.metric-percent {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.metric-details h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.metric-details p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.metric-context {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.context-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.context-item i {
    color: var(--accent-color);
}

.showcase-secondary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.secondary-metric {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.secondary-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.metric-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.metric-content .metric-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.metric-content .metric-label {
    display: block;
    color: #495057;
    font-size: 0.95rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

.metric-comparison {
    color: #0d6efd;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(13, 110, 253, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Impact Stories */
.impact-stories {
    margin-bottom: 4rem;
}

.impact-stories h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.business-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.business-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.business-info span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.impact-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.impact-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}

.impact-stat .stat-label {
    font-size: 0.85rem;
    color: #495057;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
    line-height: 1.3;
}

.impact-quote {
    font-style: italic;
    color: #495057;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    background: rgba(41, 171, 226, 0.03);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Performance Dashboard */
.performance-dashboard {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid #e9ecef;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.update-time {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dashboard-metric {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.dashboard-metric .metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.metric-data .metric-number {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.metric-data .metric-label {
    display: block;
    color: #495057;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.metric-trend.positive {
    color: #28a745;
    background: #d4edda;
}

.metric-trend.stable {
    color: #495057;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Client Logos */
.client-logos {
    text-align: center;
}

.client-logos h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.logos-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.logo-text {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
}

/* High Contrast Utilities for Accessibility */
.high-contrast-text {
    color: #212529 !important;
    font-weight: 600 !important;
}

.medium-contrast-text {
    color: #495057 !important;
    font-weight: 500 !important;
}

.light-text-improved {
    color: #6c757d !important;
    font-weight: 500 !important;
}

/* Specific fixes for elements with poor contrast */
.impact-stat .stat-label,
.metric-data .metric-label,
.business-info span {
    color: #495057 !important;
    font-weight: 500 !important;
}

.update-time,
.results-intro {
    color: #6c757d !important;
    font-weight: 500 !important;
}

/* Ensure all white text on colored backgrounds has proper contrast */
.showcase-main *,
.pillar-main *,
.guarantee-testimonial *,
.journey-cta * {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .journey-header h2,
    .guarantee-hero h2,
    .results-header h2 {
        font-size: 2rem;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .journey-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-pillars,
    .details-grid,
    .stories-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-metric {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .logos-scroll {
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .guarantee-promise,
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}