/* Service pages */

.service {
    color: var(--ink);
}

.service .title {
    max-width: 560px;
}

.service-dot {
    color: var(--orange);
}

.service-green {
    color: var(--green);
}

.service-section {
    padding: 64px 0;
}

.service-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
}

/* Hero */
.service-hero {
    text-align: center;
}

/* What it is */
.service-what {
    background: var(--soft);
    padding-bottom: 32px;
}

.service-what__grid {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    justify-content: space-between;
}

.service-what__col {
    max-width: 560px;
}

.service-what__col p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0 0 24px;
}

.service-what__col p:last-of-type {
    margin: 0;
}

.service-what__col p strong {
    color: var(--ink);
}

.service-what__media {
    height: 100%;
    width: auto;
}

/* Stats */
.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-stat__num {
    display: block;
    font-size: 35px;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
}

.service-stat__label {
    font-size: 18px;
    color: var(--ink);
    font-weight: 600;
}

/* Why we love */
.service-why {
    text-align: center;
}

.service-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
}

.service-eyebrow::before,
.service-eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--orange);
}

.service-why__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
}

.service-card {
    width: calc(33.333% - 16px);
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.service-card__num {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
}

.service-card__text {
    margin: 0;
    font-size: 18px;
    max-width: 276px;
    font-weight: 500;
}

/* How it works */
.service-how {
    background: var(--soft);
}

.service-steps {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding-top: 16px;
}

.service-step {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}

.service-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.service-step__num {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: var(--green);
}

.service-step__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.service-step__label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
    color: var(--muted);
    margin-top: 16px;
    opacity: 50%;
}

.service-step__text {
    margin: 0;
    font-size: 16px;
    color: var(--muted);
    margin-top: 16px;
}

.service-step__arrow {
    align-self: center;
    display: inline-flex;
    flex-shrink: 0;
}

.service-step__arrow img {
    display: block;
    width: 26px;
    height: 26px;
}

/* How it works — debate variant */
.service-how--debate {
    text-align: center;
}

.service-debate {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    text-align: left;
}

.service-debate__card {
    width: calc(50% - 12px);
    border-radius: 20px;
    padding: 36px;
    background: var(--soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-debate__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-debate__num {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
}

.service-debate__icon {
    height: 82px;
    width: auto;
}

.service-debate__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.service-debate__label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
}

.service-debate__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted);
}

/* card 1 — affirmative */
.service-debate__card--1 {
    background: #e7f6ee;
}

.service-debate__card--1 .service-debate__num,
.service-debate__card--1 .service-debate__title {
    color: var(--green);
}

/* card 2 — negative */
.service-debate__card--2 {
    background: #ffede6;
}

.service-debate__card--2 .service-debate__num,
.service-debate__card--2 .service-debate__title {
    color: var(--orange);
}

/* card 3 — rebuttal */
.service-debate__card--3 {
    background: var(--green);
    color: var(--white);
}

.service-debate__card--3 .service-debate__num {
    color: rgba(255, 255, 255, 0.6);
}

.service-debate__card--3 .service-debate__title,
.service-debate__card--3 .service-debate__label,
.service-debate__card--3 .service-debate__text {
    color: var(--white);
}

/* CTA */
.service-cta {
    background: var(--green);
    color: var(--white);
    padding: 60px 0;
}

.service-cta__head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-cta__logo {
    width: 60px;
    height: auto;
}

.service-cta__brand {
    font-size: 40px;
    font-weight: 600;
}

.service-cta__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    flex-wrap: wrap;
}

.service-cta__text-col {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-cta__title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.service-cta__sub {
    margin: 0;
    font-size: 16px;
    opacity: 0.8;
}

.service-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.service-cta__actions .btn span {
    display: inline-flex;
    align-items: center;
}

.service-cta__actions .btn span img {
    display: block;
    width: 17px;
    height: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .service-what__grid {
        flex-direction: column;
        gap: 32px;
    }

    .service-what__media {
        width: 100%;
        height: auto;
    }

    .service-stats {
        grid-template-columns: 1fr;
    }

    .service-card {
        width: calc(50% - 12px);
    }

    .service-steps {
        flex-direction: column;
    }

    .service-step__arrow {
        transform: rotate(90deg);
    }

    .service-debate__card {
        width: 100%;
    }

    .service-cta__grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .service-cta__text-col,
    .service-cta__actions {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .service-section {
        padding: 40px 0;
    }

    .service-label,
    .service-eyebrow {
        font-size: 14px;
        letter-spacing: 2px;
        justify-content: flex-start;
    }

    .service-eyebrow::before, .service-eyebrow::after {
        display: none;
    }

    .service-stat__num {
        font-size: 30px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__text {
        max-width: none;
    }

    .service-step {
        padding: 20px;
    }

    .service-step__num {
        font-size: 52px;
    }

    .service-step__title {
        font-size: 24px;
    }

    .service-cta__head {
        gap: 14px;
    }

    .service-cta__logo {
        width: 44px;
    }

    .service-cta__brand {
        font-size: 28px;
    }

    .service-cta__title {
        font-size: 30px;
    }

    .service-cta__actions .btn {
        min-width: 0;
        width: 100%;
    }
}