/* Service Page Styles */

.service-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 60px;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: #f9fafb;
    display: block;
    margin-bottom: 10px;
}

.label {
    font-size: 1rem;
    opacity: 0.9;
}

.problem, .solution, .how-it-works, .use-cases, .pricing, .cta {
    padding: 100px 0;
}

.problem h2, .solution h2, .how-it-works h2, .use-cases h2, .pricing h2, .cta h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 60px;
}

.problem p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #475569;
    font-size: 1.1rem;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.problem-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.problem-list li:last-child {
    border-bottom: none;
}

.consequences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.consequence {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.solution-item h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 10px;
}

.step-content p {
    color: #475569;
    text-align: center;
}

.cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.case h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.case ul {
    list-style: none;
    margin: 20px 0;
}

.case li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.case li:before {
    content: "✓";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.case li:last-child {
    border-bottom: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package h3 {
    color: #1e293b;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

.package p {
    color: #475569;
    margin-bottom: 20px;
}

.package ul {
    list-style: none;
    margin: 30px 0;
}

.package li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.package li:last-child {
    border-bottom: none;
}

.package .btn {
    margin-top: 20px;
    width: 100%;
}

.cta {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
}

form input {
    height: 50px;
}

form textarea {
    resize: vertical;
}

footer .footer-links {
    margin-top: 20px;
}

footer .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-links a:hover {
    color: #2563eb;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .stats {
        gap: 20px;
    }
    
    .number {
        font-size: 2.5rem;
    }
    
    .problem, .solution, .how-it-works, .use-cases, .pricing, .cta {
        padding: 80px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps, .pricing-grid, .cases {
        grid-template-columns: 1fr;
    }
}