/* Services page – simple, full width */

.services-page main {
    padding: 0;
}

/* Hero */
.services-page .page-hero {
    background: var(--dark);
    color: #fff;
    padding: 56px 0 64px;
    text-align: center;
}

.services-page .page-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.services-page .page-hero h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.services-page .page-hero .page-hero-desc {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto;
}

/* Category nav */
.services-page .category-nav {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.services-page .category-nav-inner {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-page .category-nav-inner::-webkit-scrollbar {
    display: none;
}

.services-page .category-nav a {
    flex-shrink: 0;
    padding: 8px 18px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--radius-8);
    transition: color 0.2s, background 0.2s;
}

.services-page .category-nav a:hover {
    color: var(--text-primary);
    background: var(--bg-page);
}

.services-page .category-nav a.active {
    background: var(--dark);
    color: #fff;
}

/* Service section – full width */
.services-page .service-section {
    padding: 40px 0 48px;
    border-bottom: 1px solid var(--border);
}

.services-page .service-section:last-of-type {
    border-bottom: 0;
}

.services-page .service-section .container {
    max-width: none;
    padding-left: 80px;
    padding-right: 80px;
}

.services-page .service-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.services-page .service-section-title {
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.3;
}

.services-page .service-section-desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted-6);
    margin: 0;
}

.services-page .service-from-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.services-page .service-highlights-plain {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.services-page .service-types-plain {
    font-size: 14px;
    color: var(--text-muted-6);
    line-height: 1.5;
    margin: 0 0 24px;
}

/* Pricing table – simple */
.services-page .pricing-table-wrap {
    overflow-x: auto;
}

.services-page .pricing-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    font-size: 14px;
}

.services-page .pricing-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-page);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-1);
}

.services-page .pricing-table th:nth-child(2),
.services-page .pricing-table th:last-child,
.services-page .pricing-table td:nth-child(2),
.services-page .pricing-table td:last-child {
    text-align: right;
}

.services-page .pricing-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.services-page .pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.services-page .pricing-table .price {
    font-weight: 500;
    color: var(--text-primary);
}

.services-page .pricing-table .price-na {
    color: var(--text-muted-4);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-page .service-section .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .services-page .page-hero {
        padding: 40px 0 48px;
    }
    .services-page .page-hero h1 {
        font-size: 28px;
    }
    .services-page .page-hero .page-hero-desc {
        font-size: 15px;
    }
    .services-page .service-section-head {
        flex-direction: column;
    }
    .services-page .service-section-title {
        font-size: 20px;
    }
    .services-page .service-types-plain {
        font-size: 13px;
    }
    .services-page .pricing-table th,
    .services-page .pricing-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-page .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .services-page .page-hero {
        padding: 28px 0 36px;
    }
    .services-page .page-hero h1 {
        font-size: 22px;
    }
    .services-page .category-nav {
        padding: 10px 0;
        gap: 8px;
        flex-wrap: wrap;
    }
    .services-page .category-nav a {
        padding: 8px 14px;
        font-size: 13px;
        min-height: 44px;
    }
    .services-page .service-section {
        padding: 24px 0;
    }
    .services-page .pricing-table th,
    .services-page .pricing-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}
