.service-survey {
    margin: 56px auto;
    padding: 0 15px;
}

.service-survey__inner {
    position: relative;
    max-width: 1232px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    background:
        radial-gradient(circle at 0 100%, rgba(8, 116, 67, .12), transparent 30%),
        radial-gradient(circle at 100% 0, rgba(249, 194, 42, .16), transparent 28%),
        #ffffff;
    border: 1px solid #d8ebe0;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(23, 51, 42, .08);
}

.service-survey__heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.service-survey__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 7px 12px;
    color: #075b35;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    background: #dff4e7;
    border-radius: 999px;
    text-transform: uppercase;
}

.service-survey__eyebrow i {
    color: #e6a700;
}

.service-survey__heading h2 {
    margin: 0 0 10px;
    color: #17332a;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.service-survey__heading p {
    margin: 0;
    color: #64746d;
    font-size: .96rem;
    line-height: 1.7;
}

.service-survey__options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.service-survey__option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 164px;
    padding: 18px 12px 16px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #314b42;
    font: inherit;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #dfe9e3;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(23, 51, 42, .05);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-survey__option:hover,
.service-survey__option:focus-visible {
    color: #075b35;
    border-color: #079447;
    box-shadow: 0 12px 26px rgba(7, 91, 53, .12);
    outline: none;
    transform: translateY(-4px);
}

.service-survey__option.is-selected {
    color: #075b35;
    background: #f0faf4;
    border-color: #079447;
    box-shadow: 0 10px 24px rgba(7, 91, 53, .14);
}

.service-survey__emoji {
    display: flex;
    width: 88px;
    height: 88px;
    margin-bottom: 9px;
    align-items: center;
    justify-content: center;
}

.service-survey__emoji img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .2s ease;
}

.service-survey__option:hover .service-survey__emoji img,
.service-survey__option:focus-visible .service-survey__emoji img {
    transform: scale(1.08);
}

.service-survey__label {
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.service-survey__check {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: .65rem;
    background: #087443;
    border-radius: 50%;
}

.service-survey__option.is-selected .service-survey__check {
    display: flex;
}

.service-survey__note {
    display: flex;
    margin: 22px 0 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #718078;
    font-size: .78rem;
    text-align: center;
}

.service-survey__note i {
    color: #079447;
}

@media (max-width: 991.98px) {
    .service-survey__options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .service-survey {
        margin: 38px auto;
        padding: 0 11px;
    }

    .service-survey__inner {
        padding: 26px 16px;
        border-radius: 18px;
    }

    .service-survey__heading {
        margin-bottom: 22px;
    }

    .service-survey__options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-survey__option {
        min-height: 136px;
        padding: 14px 8px;
    }

    .service-survey__emoji {
        width: 70px;
        height: 70px;
    }

    .service-survey__option:last-child {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-survey__option,
    .service-survey__emoji img {
        transition: none;
    }
}
