body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color: #0f172a;
}

.page-shell {
    width: min(1400px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.hero {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
}

.hero-title {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.toolbar .form-control,
.toolbar .form-select {
    border-radius: 1rem;
    border-color: rgba(148, 163, 184, 0.35);
    box-shadow: none;
}

.services-section {
    margin-top: 2rem;
}

.service-item {
    transition: opacity 180ms ease, transform 180ms ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-card {
    border-radius: 1.35rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    max-height: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
}

.service-image {
    flex: 1 1 auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    padding: 0;
    height: 100%;
    width: 100%;
}

.access-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.68rem;
    padding: 0.42rem 0.68rem;
    letter-spacing: 0.04em;
}

.card-body {
    min-height: 5rem;
    flex: 0 0 auto;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-access {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 700;
    border: 0;
    text-decoration: none;
}

.btn-access-local {
    background: #0f172a;
    color: #f8fafc;
}

.btn-access-local:hover {
    background: #1e293b;
    color: #f8fafc;
}

.btn-access-internet {
    background: #16a34a;
    color: #f8fafc;
}

.btn-access-internet:hover {
    background: #15803d;
    color: #f8fafc;
}

.service-title {
    line-height: 1.15;
}

.d-none {
    display: none !important;
}

@media (max-width: 575.98px) {
    .page-shell {
        width: min(100% - 1rem, 1400px);
        padding-top: 1rem;
    }

    .service-card {
        height: 300px;
    }

    .access-badge {
        top: 1rem;
        right: 1rem;
    }
}