.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    opacity: 0.85;
}
.services-list .section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-tag{
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
.services-page {
    background: var(--bg);
}

.services-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background:
        linear-gradient(180deg, rgba(16, 24, 18, 0.45), rgba(16, 24, 18, 0.68)),
        url('../Obrazky/Zavlaha1.jpg') center/cover no-repeat;
}

.services-hero-content {
    max-width: 760px;
    text-align: center;
    color: white;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 18px;
    color: white;
}

.services-hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.92;
}

.services-list {
    padding: 96px 24px;
}

.services-grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--green);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 500px) {
    .services-hero {
        padding: 110px 18px 70px;
    }

    .services-list {
        padding: 72px 16px;
    }

    .services-hero-content h1 {
        font-size: 1.9rem;
    }
}
.services-list .section-header {
    text-align: center;
    margin-bottom: 72px;
}

.service-card {
    cursor: pointer;
}

.service-card.active {
    border-color: var(--green);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}

.service-detail {
    max-width: 1200px;
    margin: 56px auto 0;
}

.service-detail-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 42px 34px;
    box-shadow: var(--shadow-card);
}

.service-detail-top {
    display: block;
    margin-bottom: 42px;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    line-height: 1.15;
}

.service-detail-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-point {
    position: relative;
    padding-left: 38px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
}

.detail-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #a8d466;
}

.service-detail-bottom {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-detail-text-block h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-detail-text-block p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.service-note {
    background: #b7db73;
    color: #1b1b1b;
    font-weight: 600;
    line-height: 1.7;
    padding: 22px 24px;
    border-radius: 0;
}

@media (max-width: 900px) {
    .service-detail-content h2 {
        font-size: 2rem;
    }

    .service-detail-text-block h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 700px) {
    .service-detail-inner {
        padding: 28px 20px;
    }

    .service-detail-content h2 {
        font-size: 1.7rem;
    }

    .service-detail-text-block h3 {
        font-size: 1.45rem;
    }

    .detail-point {
        font-size: 1rem;
        padding-left: 34px;
    }

    .service-note {
        padding: 18px;
    }
}
.service-detail.hidden {
    display: none;
}
