/* Services Page Specialized Styles */

.svc-heading {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #1e293b 0%, var(--primary) 100%);
    /* Force dark gradients on titles for light sections. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin: 0 0 40px;
}

.subheading {
    text-align: left;
    font-size: 18px;
    color: #1e293b;
    margin: 24px 0 12px;
}

/* Hero */
.svc-hero-new {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.svc-hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
}

.svc-hero-text h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    margin: 0 0 12px;
    color: #1e293b;
}

.svc-hero-text p {
    color: #475569;
    margin: 0 0 20px;
    font-size: 18px;
}

.svc-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.svc-stats li {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.svc-stats strong {
    display: block;
    font-size: 20px;
    color: var(--primary);
}

.svc-stats span {
    color: var(--muted);
    font-size: 12px;
}

/* Sections */
.svc-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Services grid */
.svc-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.svc-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    transition: all .25s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #dbe4f0;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.svc-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #1e293b;
}

.svc-card p {
    margin: 0 0 12px;
    color: #475569;
}

.svc-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
}

/* Deliverables */
.deliver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.deliver-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.deliver-card i {
    color: var(--primary);
}

.deliver-card h4 {
    margin: 0;
    color: var(--fg);
    font-size: 16px;
}

.deliver-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Features chips */
.svc-features .feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.chip {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    color: var(--fg);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chip i {
    color: var(--primary);
}

/* Pricing */
.svc-pricing-new .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-card .price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-card .badge {
    background: var(--gradient-primary);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}

.price-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(34, 197, 94, .18);
    transform: translateY(-2px);
}

.price-card .btn {
    align-self: flex-start;
}

.price-note {
    text-align: center;
    color: var(--muted);
    margin-top: 12px;
}

/* Engagement */
.engage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.engage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
}

.engage-card h4 {
    margin: 0 0 6px;
    color: var(--fg);
}

.engage-card p {
    margin: 0;
    color: var(--muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.timeline .t {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.timeline .t span {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline .t p {
    margin: 0;
    color: var(--muted);
}

/* Process */
.svc-process-new .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.step span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.step h4 {
    margin: 0 0 6px;
    color: var(--fg);
}

.step p {
    margin: 0;
    color: var(--muted);
}

/* CTA */
.svc-cta .cta-box {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.svc-cta h2 {
    margin: 0 0 8px;
    color: var(--fg);
}

.svc-cta p {
    margin: 0 0 16px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
    .svc-hero-wrap {
        grid-template-columns: 1fr;
    }

    .svc-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .svc-hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .svc-grid-new {
        grid-template-columns: 1fr;
    }

    .deliver-grid {
        grid-template-columns: 1fr;
    }

    .engage-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .svc-features .feature-chips {
        justify-content: flex-start;
    }

    .chip {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .svc-hero-new {
        padding: 100px 0 60px;
    }

    .svc-hero-text h1 {
        font-size: 28px;
    }

    .svc-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .price-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .svc-heading {
        font-size: 26px;
    }

    .svc-hero-actions .btn {
        width: 100%;
        max-width: none;
    }
}