/* Problem/Solution Section */
.problem-solution-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.problem-box, .solution-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.problem-box {
    border-left: 5px solid #ef4444;
}

.solution-box {
    border-left: 5px solid #10b981;
}

.problem-box h3, .solution-box h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-box h3 i {
    color: #ef4444;
}

.solution-box h3 i {
    color: #10b981;
}

/* Service Highlight */
.service-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 5rem;
    border: 1px solid #bae6fd;
}

.service-price {
    font-size: 4rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1rem 0;
}

.service-price span {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
}

.service-metric {
    background: white;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #1e293b;
}

/* Features Grid */
.features-section {
    margin-bottom: 5rem;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-card li i {
    color: #10b981;
    margin-top: 0.3rem;
    flex-shrink: 0;
}


/* Purchase Process */
.process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 2rem;
    border-radius: 12px;
    margin: 5rem 0;
    text-align: center;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.3rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .service-price {
        font-size: 3rem;
    }

    .problem-solution-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}