/* ============================================
   SERVICE PAGE EXTRA STYLES – WEBPOT
   ============================================ */

/* ================= COUNTERS ================= */

.service-stats {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}

.service-stats-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.service-stat-box h2 {
    font-size: 2.8rem;
    color: #1e3a8a;
}

.service-stat-box p {
    margin-top: 10px;
    color: #475569;
}

/* ================= PRICING CARDS ================= */

.pricing-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
}

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

.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 45px 35px;
    background: #ffffff;
    transition: 0.3s ease;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #a8b2dd, #020617);
    color: white;
    border: none;
}

.pricing-card.featured li {
    color: #e5e7eb;
}

.pricing-card h3 {
    font-size: 1.5rem;
}

.price {
    font-size: 2.2rem;
    margin: 15px 0;
}

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

.pricing-card li {
    margin-bottom: 12px;
    color: #475569;
}

.pricing-card .btn-primary {
    display: inline-block;
    margin-top: 20px;
}

