.service-overview {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.cost-impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-stat {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.3;
}

.cost-categories {
    margin-bottom: 5rem;
}

.cost-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.categories-intro {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.4rem;
}

.savings-potential {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.category-content {
    padding: 2rem;
}

.current-issues,
.optimization-solutions {
    margin-bottom: 2rem;
}

.current-issues h4,
.optimization-solutions h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.current-issues ul,
.optimization-solutions ul {
    list-style: none;
    padding: 0;
}

.current-issues li,
.optimization-solutions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
}

.current-issues li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.optimization-solutions li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.real-example {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    color: #0369a1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.methodology-section {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.methodology-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.methodology-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.methodology-process {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.step-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

.step-duration {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.step-content {
    padding: 2rem;
}

.step-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-activities {
    margin-bottom: 2rem;
}

.step-activities h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.step-activities ul {
    list-style: none;
    padding: 0;
}

.step-activities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.step-activities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.step-deliverables {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    color: #0369a1;
    font-size: 0.9rem;
}

.success-stories {
    margin-bottom: 5rem;
}

.success-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.stories-intro {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.story-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card.featured {
    border: 2px solid var(--accent-color);
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.story-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.story-header h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-savings {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
}

.story-content {
    padding: 2rem;
}

.story-challenge,
.story-solution,
.story-results {
    margin-bottom: 2rem;
}

.story-challenge h4,
.story-solution h4,
.story-results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.story-challenge p,
.story-solution p {
    color: #4b5563;
    line-height: 1.6;
}

.story-solution ul {
    list-style: none;
    padding: 0;
}

.story-solution li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
}

.story-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #16a34a;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: #16a34a;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.8rem;
}

.story-testimonial {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.story-testimonial blockquote {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.story-testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.implementation-time,
.roi-highlight {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    color: #0369a1;
    font-size: 0.9rem;
    text-align: center;
}

.service-packages {
    margin-bottom: 5rem;
}

.service-packages h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.packages-intro {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.package-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.package-duration {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.package-content {
    padding: 2rem;
}

.package-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.package-includes {
    margin-bottom: 2rem;
}

.package-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.package-includes ul {
    list-style: none;
    padding: 0;
}

.package-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.package-guarantee {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 1rem;
    border-radius: 6px;
    color: #166534;
    font-size: 0.9rem;
    text-align: center;
}

.optimization-tools {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.optimization-tools h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tools-intro {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.tool-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

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

.tool-icon {
    font-size: 2rem;
}

.tool-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.tool-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tool-features {
    margin-bottom: 1.5rem;
}

.tool-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tool-features ul {
    list-style: none;
    padding: 0;
}

.tool-features li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
}

.tool-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tool-benefits {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    color: #0369a1;
    font-size: 0.9rem;
}

.implementation-process {
    margin-bottom: 5rem;
}

.implementation-process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 2rem;
    text-align: center;
    max-width: 180px;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.flow-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.flow-step p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.step-action {
    margin-bottom: 1rem;
}

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

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.optimization-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.optimization-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.optimization-cta > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.cta-guarantee {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-guarantee h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-guarantee p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-guarantee cite {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cost-impact-stats {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .methodology-section,
    .optimization-tools,
    .optimization-cta {
        padding: 2rem;
    }
}
