.inner-hero,
.about-owner,
.services-section,
.service-keywords,
.cta-band {
    padding-left: max(24px, calc((100vw - 1180px) / 2));
    padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.inner-hero {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 70px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(13, 27, 42, 0.94), rgba(18, 48, 82, 0.72)),
        url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.inner-hero h1,
.cta-band h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.05;
}

.inner-hero h1 {
    max-width: 860px;
    font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.inner-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.04rem;
}

.about-owner {
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.75fr);
    align-items: center;
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: var(--white);
}

.owner-photo {
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.owner-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.owner-profile h2,
.owner-profile h3 {
    margin: 0;
    letter-spacing: 0;
}

.owner-profile h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.owner-profile h3 {
    margin-top: 10px;
    color: var(--blue);
    font-size: 1.1rem;
}

.owner-profile p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.78;
    font-size: 1.04rem;
}

.services-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 64px;
    padding-bottom: 64px;
    background: var(--white);
}

.service-card {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfe;
    box-shadow: 0 12px 34px rgba(13, 27, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 111, 189, 0.42);
    box-shadow: var(--shadow);
}

.service-head {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
}

.service-icon {
    flex: 0 0 auto;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
    font-size: 1.25rem;
}

.service-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.22;
}

.service-card p {
    margin: 22px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 52px;
    padding-bottom: 52px;
    background: var(--paper);
}

.cta-band h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.service-keywords {
    padding-top: 60px;
    padding-bottom: 62px;
    background: var(--paper);
}

.service-keywords h2 {
    max-width: 860px;
    margin: 0 0 24px;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.05;
}

.service-keywords div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-keywords span {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--navy);
    background: var(--white);
    font-weight: 800;
}

@media (max-width: 980px) {
    .about-owner {
        grid-template-columns: 1fr;
    }

    .services-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .inner-hero,
    .about-owner,
    .services-section,
    .service-keywords,
    .cta-band {
        padding-left: 18px;
        padding-right: 18px;
    }

    .services-section {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        min-height: 390px;
    }

    .owner-photo,
    .owner-photo img {
        min-height: 320px;
    }
}
