/* Home: shared visual language */
.home-page {
    --home-card-shadow: var(--shadow-card);
    color: var(--color-primary);
    background: #fff;
}

.home-page a:focus-visible {
    outline: 3px solid rgba(232, 24, 32, .3);
    outline-offset: 3px;
}

.home-section-heading {
    margin-block-end: var(--section-title-gap);
    text-align: center;
}

.home-section-heading > p {
    margin: 0 0 5px;
    color: var(--color-accent-text);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.8;
}

.home-section-heading--start {
    margin-block-end: 0;
    text-align: start;
}

.home-section-heading .home-services__title,
.home-section-heading .home-process__title,
.home-section-heading .home-estimate__title,
.home-section-heading .home-why__title,
.home-section-heading .home-articles__title {
    margin: 0;
}

/* Home: hero */
.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 13%, rgba(232, 24, 32, .3), transparent 24%),
        radial-gradient(circle at 88% 105%, rgba(255, 255, 255, .11), transparent 28%),
        linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.home-hero [lang="en"] {
    direction: ltr;
    unicode-bidi: isolate;
}

.home-hero__container {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    width: min(100%, calc(var(--container-width) + (2 * var(--page-gutter))));
    gap: clamp(48px, 6vw, 84px);
    margin-inline: auto;
    padding: 66px var(--page-gutter) 78px;
}

.home-hero__content {
    grid-column: 1;
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.home-hero__eyebrow {
    margin: 0 0 10px;
    color: var(--color-accent-on-dark);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.7;
}

.home-hero__title {
    display: block;
    margin: 0;
    color: #fff;
    font-size: clamp(1.72rem, 2.6vw, 2.28rem);
    font-weight: 700;
    line-height: 1.6;
}

.home-hero__title-line {
    display: block;
    margin-block-start: 8px;
}

.home-hero__description {
    margin: 14px 0 0;
    max-width: 540px;
    color: rgba(255, 255, 255, .75);
    font-size: .84rem;
    font-weight: 400;
    line-height: 2;
}

.home-hero__actions {
    display: grid;
    width: min(100%, 470px);
    gap: 10px;
    margin-block-start: 20px;
}

.home-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--control-height);
    border: 2px solid transparent;
    border-radius: var(--radius-button);
    padding: 9px 22px;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.6;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.home-hero__action--primary {
    border-color: var(--color-cta);
    color: #fff;
    background: var(--color-cta);
}

.home-hero__action--primary:hover,
.home-hero__action--primary:focus-visible {
    color: var(--color-cta);
    background: #fff;
}

.home-hero__action--secondary {
    border-color: rgba(255, 255, 255, .75);
    color: #fff;
    background: transparent;
}

.home-hero__action--secondary:hover,
.home-hero__action--secondary:focus-visible {
    color: var(--color-primary);
    background: #fff;
}

.home-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 0;
    padding: 24px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: .75rem;
    line-height: 1.8;
    list-style: none;
}

.home-hero__benefits li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-hero__benefits li::before {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    background: #16915d;
    content: "✓";
    font-size: .75rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .home-hero__benefits {
        padding-block-start: 36px;
    }
}

.home-hero__media {
    position: relative;
    grid-column: 2;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .9);
    border-radius: 22px;
    background: var(--color-surface-soft);
    box-shadow: 0 26px 65px rgba(4, 8, 52, .42);
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.home-hero__media figcaption {
    position: absolute;
    inset-inline-start: 16px;
    inset-block-end: 16px;
    display: grid;
    gap: 1px;
    min-width: 138px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 11px;
    padding: 9px 13px;
    color: #fff;
    background: rgba(23, 29, 111, .88);
    box-shadow: 0 9px 24px rgba(0, 0, 0, .2);
    backdrop-filter: blur(8px);
}

.home-hero__media figcaption span {
    color: rgba(255, 255, 255, .66);
    font-size: .75rem;
    line-height: 1.6;
}

.home-hero__media figcaption strong {
    font-size: .75rem;
    line-height: 1.7;
}

/* Home: highlights */
.home-highlights {
    position: relative;
    z-index: 2;
    padding: 0 var(--page-gutter) 38px;
    background: var(--color-surface-soft);
}

.home-highlights__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
    transform: translateY(-30px);
    margin-block-end: -30px;
}

.home-highlights__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(23, 29, 111, .13);
    list-style: none;
}

.home-highlights__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 92px;
    gap: 12px;
    border: 0;
    border-inline-end: 1px solid var(--color-border);
    border-radius: 0;
    padding: 16px 20px;
    background: #fff;
    box-shadow: none;
    color: var(--color-primary);
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.home-highlights__item:last-child {
    border-inline-end: 0;
}

.home-highlights__item > .home-highlights__icon {
    flex: 0 0 auto;
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    object-fit: contain;
}

.home-highlights__item > span {
    display: grid;
    min-width: 0;
}

.home-highlights__item strong,
.home-highlights__item small {
    display: block;
}

.home-highlights__item strong {
    color: var(--color-primary);
    font-size: .78rem;
    line-height: 1.8;
}

.home-highlights__item small {
    color: var(--color-muted);
    font-size: .75rem;
    line-height: 1.8;
}

/* Home: services */
.home-services {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: #fff;
}

.home-services [lang="en"] {
    direction: ltr;
    unicode-bidi: isolate;
}

.home-services__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.home-services__title {
    margin: 0 0 var(--section-title-gap);
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.home-services__description {
    width: min(100%, 920px);
    margin: 14px auto 0;
    color: var(--color-muted);
    font-size: .8rem;
    font-weight: 400;
    line-height: 2;
}

.home-services__description p {
    margin: 0;
}

.home-services__description p + p {
    margin-block-start: 6px;
}

.home-services__text-link {
    border-block-end: 1px solid currentColor;
    color: var(--color-accent-text);
    font-weight: 700;
    text-underline-offset: 4px;
}

.home-services__text-link:hover,
.home-services__text-link:focus-visible {
    color: var(--color-primary);
}

.home-services__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--section-grid-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-services__list > li {
    min-width: 0;
}

.home-services__card {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 184px;
    gap: 12px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 28px 20px 24px;
    color: var(--color-primary);
    background: #fff;
    box-shadow: var(--home-card-shadow);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-services__card::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 4px;
    background: var(--color-cta);
    content: "";
    transform: scaleX(.28);
    transition: transform 180ms ease;
}

.home-services__card:hover,
.home-services__card:focus-visible {
    border-color: rgba(232, 24, 32, .45);
    box-shadow: 0 10px 24px rgba(23, 29, 111, .09);
    transform: translateY(-2px);
}

.home-services__card:hover::before,
.home-services__card:focus-visible::before {
    transform: scaleX(1);
}

.home-services__icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Home: old-window replacement */
.home-replacement {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: var(--color-surface-soft);
}

.home-replacement__container {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    width: min(100%, var(--container-width));
    gap: clamp(36px, 5vw, 68px);
    margin-inline: auto;
    border: 1px solid var(--color-border);
    overflow: hidden;
    border-radius: 22px;
    padding: clamp(24px, 3vw, 38px);
    background: #fff;
    box-shadow: var(--home-card-shadow);
}

.home-replacement__content {
    grid-column: 1;
    max-width: 520px;
}

.home-replacement__eyebrow {
    margin: 0 0 5px;
    color: var(--color-accent-text);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.8;
}

.home-replacement__title {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.7;
}

.home-replacement__lead {
    margin: 10px 0 0;
    color: #5f6477;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.9;
}

.home-replacement__description {
    margin: 8px 0 0;
    color: #5f6477;
    font-size: .76rem;
    line-height: 2;
}

.home-replacement__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    min-height: var(--control-height);
    margin-block-start: 20px;
    border: 2px solid var(--color-cta);
    border-radius: var(--radius-button);
    padding: 9px 22px;
    color: #fff;
    background: var(--color-cta);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.6;
    transition: color 160ms ease, background-color 160ms ease;
}

.home-replacement__action:hover,
.home-replacement__action:focus-visible {
    color: var(--color-accent-text);
    background: #fff;
}

.home-replacement__media {
    grid-column: 2;
    aspect-ratio: 3 / 2;
    margin: 0;
    overflow: hidden;
    border-radius: 17px;
    background: #fff;
}

.home-replacement__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .projects-gallery__card {
    border-radius: 14px;
    box-shadow: var(--home-card-shadow);
}

/* Home: request-to-install process */
.home-process {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: var(--color-surface-soft);
}

.home-process__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.home-process__title {
    margin: 0 0 var(--section-title-gap);
    color: var(--color-primary);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.home-process__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--section-grid-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-process__step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex-direction: column;
    min-height: 118px;
    gap: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    border-radius: 14px;
    padding: 16px 18px;
    color: var(--color-primary);
    background: #fff;
    box-shadow: var(--home-card-shadow);
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.home-process__step::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--color-cta);
    content: "";
}

.home-process__number {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(232, 24, 32, .18);
    border-radius: 12px;
    color: var(--color-cta);
    background: #fff2f3;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
}

/* Home: online price estimate */
.home-estimate {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: #fff;
}

.home-estimate__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.home-estimate__title {
    margin: 0 0 var(--section-title-gap);
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.home-estimate__panel {
    position: relative;
    display: grid;
    overflow: hidden;
    justify-items: center;
    width: min(100%, 960px);
    margin-inline: auto;
    border: 0;
    border-radius: 20px;
    padding: 42px clamp(24px, 5vw, 64px) 36px;
    background:
        radial-gradient(circle at 0 0, rgba(232, 24, 32, .22), transparent 28%),
        var(--color-primary);
    box-shadow: 0 18px 44px rgba(23, 29, 111, .16);
}

.home-estimate__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 600px);
    min-height: var(--control-height);
    border: 2px solid #fff;
    border-radius: var(--radius-button);
    padding: 9px 24px;
    color: var(--color-primary);
    background: #fff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    transition: color 160ms ease, background-color 160ms ease;
}

.home-estimate__action:hover,
.home-estimate__action:focus-visible {
    border-color: var(--color-cta);
    color: #fff;
    background: var(--color-cta);
}

.home-estimate__note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
}

/* Home: why Jahanshiri */
.home-why {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: var(--color-surface-soft);
}

.home-why__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.home-why__title {
    margin: 0 0 var(--section-title-gap);
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.home-why__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--section-grid-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-why__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    min-height: 118px;
    gap: 16px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 18px 22px;
    color: var(--color-primary);
    background: #fff;
    box-shadow: var(--home-card-shadow);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.8;
    text-align: start;
}

.home-why__icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* Home: latest articles */
.home-articles {
    padding: var(--section-block-start) var(--page-gutter) var(--section-block-end);
    background: #fff;
}

.home-articles__container {
    width: min(100%, var(--container-width));
    margin-inline: auto;
}

.home-articles__title {
    margin: 0 0 var(--section-title-gap);
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.home-articles__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-block-end: var(--section-title-gap);
}

.home-articles__heading .home-section-heading {
    margin-block-end: 0;
}

.home-articles__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--section-grid-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-articles__item,
.home-articles__item article {
    min-width: 0;
    height: 100%;
}

.home-articles__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: 100%;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-primary);
    background: #fff;
    box-shadow: var(--home-card-shadow);
    direction: rtl;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-articles__card:hover,
.home-articles__card:focus-visible {
    border-color: rgba(232, 24, 32, .45);
    box-shadow: 0 10px 24px rgba(23, 29, 111, .09);
    transform: translateY(-2px);
}

.home-articles__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: var(--color-surface-soft);
}

.home-articles__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-articles__content {
    display: flex;
    min-width: 0;
    align-items: center;
    min-height: 112px;
    padding: 20px;
}

#main .home-articles__card-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: start;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-articles__more {
    flex: 0 0 auto;
    border-block-end: 2px solid var(--color-cta);
    padding-block-end: 4px;
    color: var(--color-primary);
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.7;
    transition: color 160ms ease;
}

.home-articles__more:hover,
.home-articles__more:focus-visible {
    color: var(--color-cta);
}

@media (max-width: 1023.98px) {
    .home-section-heading {
        margin-block-end: 26px;
    }

    .home-hero__container {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding-block: 42px 44px;
    }

    .home-hero__content,
    .home-hero__media {
        grid-column: 1;
    }

    .home-hero__content {
        width: min(100%, 600px);
        max-width: none;
        margin-inline: auto;
        text-align: center;
    }

    .home-hero__actions {
        margin-inline: auto;
    }

    .home-hero__media {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .home-highlights {
        padding-block: 0 34px;
    }

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

    .home-highlights__item {
        min-height: 96px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
    }

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

    .home-services__card {
        min-height: 160px;
    }

    .home-replacement__container {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        padding: 28px;
    }

    .home-replacement__content,
    .home-replacement__media {
        grid-column: 1;
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .home-replacement__content {
        max-width: none;
        text-align: center;
    }

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

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

    .home-why__item {
        min-height: 108px;
    }

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

    .home-articles__card,
    .home-articles__media {
        min-height: 140px;
    }
}

@media (max-width: 639.98px) {
    .home-section-heading {
        margin-block-end: 22px;
    }

    .home-section-heading > p {
        margin-block-end: 3px;
        font-size: .75rem;
    }

    .home-hero__container {
        gap: 28px;
        padding: 32px 16px 36px;
    }

    .home-hero__eyebrow {
        margin-block-end: 8px;
        font-size: .82rem;
    }

    .home-hero__title {
        font-size: clamp(1.3rem, 5.8vw, 1.48rem);
        line-height: 1.5;
    }

    .home-hero__title-line {
        margin-block-start: 6px;
    }

    .home-hero__description {
        margin-block-start: 10px;
        font-size: .8rem;
        line-height: 1.9;
    }

    .home-hero__actions {
        gap: 9px;
        margin-block-start: 18px;
    }

    .home-hero__action {
        min-height: 48px;
        padding-block: 9px;
        font-size: .76rem;
    }

    .home-hero__media {
        aspect-ratio: 3 / 2;
        border-width: 3px;
        border-radius: 14px;
    }

    .home-hero__media figcaption {
        inset-inline-start: 10px;
        inset-block-end: 10px;
        min-width: 124px;
        border-radius: 9px;
        padding: 7px 10px;
    }

    .home-highlights {
        padding: 0 16px 26px;
    }

    .home-highlights__container {
        margin-block-end: -18px;
        transform: translateY(-18px);
    }

    .home-highlights__list {
        gap: 10px;
        border-radius: 14px;
        padding: 8px;
    }

    .home-highlights__item {
        flex-direction: column;
        min-height: 114px;
        gap: 2px;
        padding: 12px 10px;
        font-size: .82rem;
    }

    .home-highlights__item > .home-highlights__icon {
        width: 50px;
        min-width: 50px;
        max-width: 50px;
        height: 50px;
    }

    .home-services {
        padding-inline: 16px;
    }

    .home-services__title {
        font-size: 1.25rem;
    }

    .home-services__card {
        flex-direction: column;
        min-height: 154px;
        gap: 4px;
        padding: 14px 10px;
        font-size: .78rem;
    }

    .home-services__icon {
        width: 62px;
        height: 62px;
    }

    .home-replacement {
        padding-inline: 16px;
    }

    .home-replacement__container {
        gap: 26px;
        padding: 18px;
    }

    .home-replacement__title {
        font-size: 1.25rem;
    }

    .home-replacement__lead {
        margin-block-start: 8px;
        font-size: .78rem;
    }

    .home-replacement__description {
        margin-block-start: 6px;
        font-size: .75rem;
    }

    .home-replacement__action {
        min-height: 48px;
        margin-block-start: 18px;
        padding-block: 9px;
        font-size: .76rem;
    }

    .home-replacement__media {
        border-radius: 12px;
    }

    .home-process {
        padding-inline: 16px;
    }

    .home-process__title {
        font-size: 1.2rem;
    }

    .home-process__step {
        flex-direction: column;
        min-height: 112px;
        gap: 7px;
        padding: 14px 10px;
        font-size: .78rem;
        line-height: 1.7;
    }

    .home-process__number {
        width: 32px;
        height: 32px;
    }

    .home-estimate {
        padding-inline: 16px;
    }

    .home-estimate__title {
        font-size: 1.2rem;
    }

    .home-estimate__panel {
        border-radius: 12px;
        padding: 26px 16px 24px;
    }

    .home-estimate__action {
        min-height: 48px;
        padding: 8px 16px;
        font-size: .76rem;
    }

    .home-estimate__note {
        margin-block-start: 10px;
        font-size: .75rem;
    }

    .home-why {
        padding-inline: 16px;
    }

    .home-why__title {
        font-size: 1.2rem;
    }

    .home-why__item {
        flex-direction: column;
        min-height: 132px;
        gap: 5px;
        padding: 14px 10px;
        font-size: .76rem;
        line-height: 1.7;
        text-align: center;
    }

    .home-why__icon {
        width: 56px;
        height: 56px;
    }

    .home-articles {
        padding-inline: 16px;
    }

    .home-articles__title {
        font-size: 1.2rem;
    }

    .home-articles__heading {
        gap: 12px;
        margin-block-end: 22px;
    }

    .home-articles__list {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-articles__card {
        grid-template-columns: minmax(110px, 40%) minmax(0, 1fr);
    }

    .home-articles__card,
    .home-articles__media {
        min-height: 120px;
    }

    .home-articles__content {
        padding: 14px;
    }

    #main .home-articles__card-title {
        font-size: .75rem;
        line-height: 1.8;
    }

    .home-articles__more {
        width: auto;
        min-height: 0;
        margin: 0;
        border: 0;
        border-block-end: 2px solid var(--color-cta);
        border-radius: 0;
        padding: 0 0 3px;
        font-size: .75rem;
    }
}
