.why-choose-page {
    background: #fff;
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

.why-choose-page h1,
.why-choose-page h2,
.why-choose-page h3 {
    font-family: var(--font-headings);
}

.why-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.why-reading-width {
    width: min(850px, calc(100% - 48px));
    margin-inline: auto;
}

.why-hero {
    position: relative;
    min-height: clamp(560px, 72vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--color-secondary);
    color: #fff;
}

.why-hero > img,
.why-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.why-hero > img {
    object-fit: cover;
    object-position: center 48%;
}

.why-hero-shade {
    background: linear-gradient(180deg, rgba(7, 15, 30, .06) 18%, rgba(7, 15, 30, .84) 100%);
}

.why-hero-content {
    position: relative;
    z-index: 1;
    padding-block: 8rem 5rem;
}

.why-hero h1 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: .96;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.why-hero p {
    max-width: 600px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.55;
}

.why-primary-action,
.why-secondary-action {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), background-color .25s ease, color .25s ease;
}

.why-primary-action {
    background: var(--color-accent);
    color: #fff;
}

.why-primary-action:hover,
.why-primary-action:focus-visible {
    background: #e0241b;
    color: #fff;
    transform: translateY(-2px);
}

.why-intro {
    padding: clamp(5rem, 9vw, 8rem) 0 0;
    text-align: center;
}

.why-intro h2 {
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    font-size: clamp(2.15rem, 4.5vw, 3.6rem);
    line-height: 1.12;
    letter-spacing: -.025em;
    text-wrap: balance;
}

.why-intro p {
    margin: 0 auto 1.25rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.why-intro .why-intro-lead {
    color: var(--color-text-dark);
    font-size: 1.16rem;
    font-weight: 600;
}

.why-intro a,
.why-text-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.why-trust-strip {
    width: min(1080px, calc(100% - 48px));
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--color-border);
}

.why-trust-strip div {
    padding: 2rem clamp(1rem, 3vw, 2.5rem);
}

.why-trust-strip div + div {
    border-left: 1px solid var(--color-border);
}

.why-trust-strip strong,
.why-trust-strip span {
    display: block;
}

.why-trust-strip strong {
    color: var(--color-primary);
    font-family: var(--font-headings);
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.why-trust-strip span {
    margin-top: .35rem;
    color: var(--color-text-muted);
    font-size: .88rem;
}

.why-reasons {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--color-bg-light);
}

.why-reason {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
    padding-block: clamp(3rem, 7vw, 6rem);
    border-bottom: 1px solid var(--color-border);
}

.why-reason:first-child {
    padding-top: 0;
}

.why-reason:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.why-reason-reverse .why-reason-media {
    order: 2;
}

.why-reason-media {
    margin: 0;
    overflow: hidden;
    background: #dce4eb;
    box-shadow: var(--shadow-medium);
}

.why-reason-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.why-reason:hover .why-reason-media img {
    transform: scale(1.025);
}

.why-reason-copy h2 {
    margin: 0 0 1.2rem;
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.why-reason-copy p {
    max-width: 64ch;
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.why-text-link {
    display: inline-block;
    margin-top: .45rem;
}

.why-reviews {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: #fff;
}

.why-reviews-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-reviews-heading h2 {
    margin: 0 0 .55rem;
    color: var(--color-primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.025em;
}

.why-reviews-heading p {
    margin: 0;
    color: var(--color-text-muted);
}

.why-secondary-action {
    flex: 0 0 auto;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.why-secondary-action:hover,
.why-secondary-action:focus-visible {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.why-review-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: stretch;
}

.why-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem;
    background: var(--color-primary);
    color: #fff;
}

.why-rating strong {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    line-height: 1;
}

.why-rating span {
    margin-top: .65rem;
    font-weight: 700;
}

.why-rating small {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .74);
}

.why-review-quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.why-review-quotes figure {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 1.75rem;
    background: var(--color-bg-light);
}

.why-review-quotes blockquote {
    margin: 0 0 2rem;
    color: var(--color-text-dark);
    font-size: .96rem;
    line-height: 1.65;
}

.why-review-quotes figcaption {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.why-review-quotes figcaption img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.why-review-quotes figcaption span,
.why-review-quotes figcaption strong,
.why-review-quotes figcaption small {
    display: block;
}

.why-review-quotes figcaption strong {
    color: var(--color-text-dark);
    font-size: .88rem;
}

.why-review-quotes figcaption small {
    margin-top: .15rem;
    color: var(--color-text-muted);
    font-size: .74rem;
}

.why-final-cta {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    background: var(--color-primary);
    color: #fff;
}

.why-final-cta .why-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.why-final-cta h2 {
    margin: 0 0 .55rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -.025em;
}

.why-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 920px) {
    .why-reason,
    .why-review-layout {
        grid-template-columns: 1fr;
    }

    .why-reason-reverse .why-reason-media {
        order: 0;
    }

    .why-review-quotes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-rating {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .why-shell,
    .why-reading-width,
    .why-trust-strip {
        width: min(100% - 32px, 1180px);
    }

    .why-hero {
        min-height: 620px;
        align-items: center;
    }

    .why-hero > img {
        object-position: 57% center;
    }

    .why-hero-content {
        padding-block: 2rem;
    }

    .why-trust-strip,
    .why-review-quotes {
        grid-template-columns: 1fr;
    }

    .why-trust-strip div + div {
        border-top: 1px solid var(--color-border);
        border-left: 0;
    }

    .why-reviews-heading,
    .why-final-cta .why-shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .why-secondary-action,
    .why-final-cta .why-primary-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-primary-action,
    .why-secondary-action,
    .why-reason-media img {
        transition: none;
    }
}
