.service-lead {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-figure {
    margin: 0 0 28px;
}

.hero-figure img {
    width: 100%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--brand-silver-soft);
}

.service-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
}

.service-card__body {
    padding: 16px;
}

.service-card h3 {
    margin-top: 0;
}

.service-card p {
    margin-bottom: 0;
}

.service-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.service-flow li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--brand-gold);
    border-radius: 8px;
    background: var(--brand-silver-soft);
    color: var(--brand-blue-dark);
    font-weight: 700;
    text-align: center;
}

.service-flow li:not(:last-child)::after {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -10px;
    width: 10px;
    content: "→";
    color: var(--brand-orange);
    transform: translateY(-50%);
}

.comparison-wrap {
    margin-bottom: 28px;
}

.comparison {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.comparison th,
.comparison td {
    padding: 11px 12px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.comparison thead th {
    background: var(--brand-blue-deep);
    color: #fff;
}

.comparison tbody th {
    background: var(--brand-silver-soft);
    color: var(--brand-blue-dark);
}

.comparison th:first-child {
    width: 20%;
}

.comparison th:nth-child(2),
.comparison th:nth-child(3) {
    width: 40%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.gallery figure {
    margin: 0;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.brand-home {
    border-bottom: 0;
}

@media (max-width: 680px) {
    .service-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

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

    .service-flow li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -14px;
        width: auto;
        content: "↓";
        transform: translateX(50%);
    }

    .gallery img {
        height: auto;
    }

    .comparison {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .comparison th,
    .comparison td {
        padding: 8px 6px;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .comparison th:first-child {
        width: 24%;
    }

    .comparison th:nth-child(2),
    .comparison th:nth-child(3) {
        width: 38%;
    }
}
