/* Service landing (Direct CRO) */
.service-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 1.75rem;
}

.service-hero-lead {
    margin-bottom: 1rem !important;
}

.service-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-hero-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.45rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
}

.service-hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #ca9c5e;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .service-hero .inner-hero-content {
        max-width: 52rem;
    }

    .service-hero-actions {
        flex-wrap: nowrap;
        align-items: center;
    }

    .service-hero-actions .btn-inner-hero {
        flex: 0 0 auto;
        white-space: nowrap;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 0.9rem;
    }
}

.btn-inner-hero--outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff !important;
    cursor: pointer;
    font-family: inherit;
}

.service-hero-trust-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 1rem 0 1.25rem;
    line-height: 1.4;
}

.service-problem-card {
    display: block;
    height: 100%;
    padding: 1.25rem 1.25rem 1rem;
    border: 1px solid #e6ece8;
    border-radius: 8px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-problem-card:hover {
    border-color: #396956;
    box-shadow: 0 8px 24px rgba(57, 105, 86, 0.12);
    color: inherit;
}

.service-problem-card__group {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #396956;
    margin-bottom: 0.5rem;
}

.service-problem-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 0.5rem;
}

.service-problem-card__teaser {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.45;
}

.service-problem-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #396956;
}

.service-problem-detail {
    scroll-margin-top: 6rem;
    margin-bottom: 1.5rem;
}

.service-problem-detail__inner {
    border: 1px solid #e6ece8;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fafcfb;
}

.service-problem-detail__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 0.5rem;
}

.service-problem-detail__teaser {
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.service-problem-detail__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .service-problem-detail__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-problem-detail__item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 0.35rem;
}

.service-problem-detail__text {
    font-size: 0.92rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
    white-space: pre-line;
}

.service-problem-detail__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.service-problem-detail__more {
    font-size: 0.9rem;
    color: #396956;
}

.service-process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 992px) {
    .service-process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

.service-process-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #e6ece8;
    border-radius: 8px;
    background: #ffffff;
}

.service-process-step__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #396956;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 0.35rem;
}

.service-process-step p {
    font-size: 0.92rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
}

.service-process-cta {
    margin-top: 1.5rem;
}

.service-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.service-why-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    color: #333333;
}

.service-why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #396956;
    font-weight: 700;
}

.service-team-intro {
    margin: -0.75rem 0 1.5rem;
    color: #4a4a4a;
}

.service-team-members {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .service-team-members {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-team-member {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e6ece8;
    border-radius: 8px;
    background: #ffffff;
}

.service-team-member__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-team-member__name {
    font-size: 1rem;
    font-weight: 700;
    color: #284b3d;
    margin-bottom: 0.25rem;
}

.service-team-member__role {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.4;
}

.service-seo-content__title {
    font-size: 1.5rem;
}

.service-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    background: #ffffff;
    border-top: 1px solid #e6ece8;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.35rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
}

.service-sticky-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.45rem 0.25rem;
    border: none;
    background: transparent;
    color: #284b3d;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
}

.service-sticky-cta__btn i {
    font-size: 1.1rem;
}

.service-sticky-cta__btn--form {
    color: #396956;
}

.service-sticky-cta__btn--phone span {
    font-size: 0.62rem;
    white-space: nowrap;
}

@media (min-width: 400px) {
    .service-sticky-cta__btn--phone span {
        font-size: 0.7rem;
    }
}

body.has-service-sticky-cta {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
    .service-sticky-cta {
        display: none !important;
    }

    body.has-service-sticky-cta {
        padding-bottom: 0;
    }
}
