.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;
}

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

.benefit-item {
    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;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.analysis-types {
    margin-bottom: 5rem;
}

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

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

.analysis-type-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;
}

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

.analysis-type-card.popular {
    border: 2px solid var(--accent-color);
}

.analysis-type-card.popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 16px 16px 0 0;
}

.type-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;
}

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

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

.type-header h3 {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.3rem;
}

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

.type-content {
    padding: 2rem;
}

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

.type-includes,
.type-deliverables {
    margin-bottom: 2rem;
}

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

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

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

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

.type-deliverables p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.type-price {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 1rem;
}

.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-steps {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.method-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

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

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

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

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

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

.metrics-explanation {
    margin-bottom: 5rem;
}

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

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

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

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

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

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

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

.metric-formula {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
}

.metric-content {
    padding: 2rem;
}

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

.metric-interpretation,
.metric-benchmark {
    margin-bottom: 1.5rem;
}

.metric-interpretation h4,
.metric-benchmark h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.metric-interpretation ul {
    list-style: none;
    padding: 0;
}

.metric-interpretation li {
    padding: 0.5rem 0;
    color: #374151;
}

.metric-benchmark {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.metric-benchmark p {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

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

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

.case-study-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.case-overview {
    background: #f8fafc;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.case-overview h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.fact-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
}

.case-analysis {
    padding: 2rem;
}

.case-analysis h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.analysis-results {
    display: grid;
    gap: 2rem;
}

.results-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.result-metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #e5e7eb;
}

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

.metric-value {
    font-weight: bold;
    color: var(--primary-color);
}

.metric-value.positive {
    color: #16a34a;
}

.scenario-table {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.scenario-table table {
    width: 100%;
    border-collapse: collapse;
}

.scenario-table th,
.scenario-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.scenario-table th {
    background: #f8fafc;
    color: var(--primary-color);
    font-weight: 600;
}

.expected-value {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    color: #16a34a;
    font-weight: 600;
}

.risk-factors {
    display: grid;
    gap: 0.75rem;
}

.risk-item {
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.risk-item.low {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    color: #166534;
}

.risk-item.medium {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.risk-item.high {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #dc2626;
}

.case-recommendation {
    background: #f8fafc;
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.case-recommendation h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.recommendation-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
}

.recommendation-box.accept {
    border-color: #16a34a;
    background: #f0fdf4;
}

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

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

.recommendation-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #16a34a;
}

.recommendation-rationale h4,
.implementation-timeline h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.recommendation-rationale ul {
    list-style: none;
    padding: 0;
}

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

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

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

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

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

.process-timeline {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-duration {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-deliverable {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.pricing-structure {
    margin-bottom: 5rem;
}

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

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

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

.factor-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 2rem;
}

.factor-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.factor-list {
    display: grid;
    gap: 1.5rem;
}

.factor-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.factor-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.factor-item ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.factor-item li {
    padding: 0.25rem 0;
    color: #374151;
    font-size: 0.9rem;
}

.pricing-guarantee {
    background: #f0fdf4;
    border: 2px solid #16a34a;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pricing-guarantee h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.pricing-guarantee p {
    color: #166534;
    line-height: 1.6;
    font-weight: 500;
}

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

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

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

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

.cta-option {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
}

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

.cta-option p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.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-testimonial {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

@media (max-width: 768px) {
    .service-benefits {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .type-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
    }
    
    .case-facts {
        grid-template-columns: 1fr;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-factors {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .methodology-section,
    .case-study-section,
    .analysis-cta {
        padding: 2rem;
    }
}
