.hn-trust-bar {
    background: var(--color-border);
}

.hn-trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
}

.hn-trust-bar article {
    min-height: 72px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--color-surface);
    color: var(--color-primary-dark);
}

.hn-trust-bar strong,
.hn-trust-bar small {
    display: block;
}

.hn-trust-bar strong {
    font-weight: 900;
    line-height: 1.15;
}

.hn-trust-bar small {
    color: var(--color-muted);
    font-size: .8rem;
}

.hn-trust-bar__icon {
    flex: 0 0 36px;
    width: 36px;
    aspect-ratio: 1;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
}

.hn-interior-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.25rem, 7vw, 6.75rem) 1.5rem;
    color: #f8fafc;
    background:
        radial-gradient(circle at 84% 10%, rgba(255, 193, 7, .1), transparent 24rem),
        linear-gradient(135deg, #07111d, #020508);
}

.hn-interior-section::before,
.hn-interior-section::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.hn-interior-section::before {
    opacity: .28;
    background:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 86px 86px;
}

.hn-interior-section::after {
    left: auto;
    width: min(38vw, 460px);
    background:
        linear-gradient(132deg, transparent 0 48%, rgba(255, 193, 7, .3) 48.2% 48.5%, transparent 48.8%) 100% 0 / 360px 100% no-repeat,
        linear-gradient(132deg, transparent 0 61%, rgba(255, 255, 255, .12) 61.2% 61.5%, transparent 61.8%) 100% 0 / 280px 100% no-repeat;
    opacity: .5;
}

.hn-interior-section > .hn-section__inner {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
}

.hn-interior-section .hn-section-intro {
    max-width: 760px;
    margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}

.hn-interior-section--hub .hn-section-intro {
    margin: 0;
}

.hn-interior-section .hn-section-label {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: #ffc107;
    letter-spacing: .12em;
}

.hn-interior-section .hn-section-label::before {
    width: 36px;
    height: 2px;
    content: "";
    background: #ffc107;
    box-shadow: 0 0 16px rgba(255, 193, 7, .45);
}

.hn-interior-section .hn-section-intro h2 {
    margin: .55rem 0 .8rem;
    color: #f8fafc;
    font-size: clamp(2.65rem, 5.2vw, 4.8rem);
    line-height: .94;
    text-transform: uppercase;
    text-wrap: balance;
}

.hn-interior-section .hn-section-intro h2 span {
    color: #ffc107;
}

.hn-interior-section .hn-section-intro p:not(.hn-section-label) {
    max-width: 720px;
    margin: 0;
    color: rgba(248, 250, 252, .74);
    font-size: 1.05rem;
    line-height: 1.55;
}

.hn-interior-hub-layout {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(360px, 1.18fr);
    gap: clamp(1.4rem, 5vw, 4rem);
    align-items: center;
}

.hn-interior-hub-grid,
.hn-interior-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hn-interior-hub-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.hn-interior-issue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hn-interior-card,
.hn-interior-issue-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: #f8fafc;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 193, 7, .09), transparent 8rem),
        linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018)),
        #07101a;
    clip-path: polygon(16px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
    text-decoration: none;
    box-shadow: inset 0 -2px 0 rgba(255, 193, 7, .18), 0 22px 48px rgba(0, 0, 0, .25);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hn-interior-card {
    display: grid;
    min-height: 220px;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.45rem;
}

.hn-interior-issue-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 1.4rem;
}

.hn-interior-card::after,
.hn-interior-issue-card::after {
    position: absolute;
    right: 8%;
    bottom: -2px;
    left: 8%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    opacity: .75;
    box-shadow: 0 0 18px rgba(255, 193, 7, .62);
}

.hn-interior-card:hover,
.hn-interior-card:focus-visible,
.hn-interior-issue-card:hover,
.hn-interior-issue-card:focus-visible,
.hn-interior-issue-card.is-selected {
    border-color: rgba(255, 193, 7, .7);
    box-shadow: inset 0 -2px 0 rgba(255, 193, 7, .42), 0 26px 56px rgba(0, 0, 0, .34), 0 0 26px rgba(255, 193, 7, .1);
    transform: translateY(-2px);
}

.hn-interior-issue-card.is-selected::before {
    position: absolute;
    top: .9rem;
    right: .9rem;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    content: "✓";
    background: #ffc107;
    color: #07101a;
    font-family: var(--font-heading);
    font-weight: 900;
    box-shadow: 0 0 24px rgba(255, 193, 7, .58);
}

.hn-interior-card__icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid rgba(255, 193, 7, .55);
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, .16), transparent 3rem),
        rgba(255, 255, 255, .04);
}

.hn-interior-issue-card .hn-interior-card__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 1.2rem;
    border-radius: 50%;
}

.hn-interior-card__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.hn-interior-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hn-interior-card strong,
.hn-interior-issue-card strong {
    color: #f8fafc;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1;
    text-transform: uppercase;
    text-wrap: balance;
}

.hn-interior-card__body > span {
    margin: .8rem 0 1rem;
    color: rgba(248, 250, 252, .7);
    line-height: 1.5;
}

.hn-interior-card em,
.hn-interior-issue-card em {
    display: inline-flex;
    gap: .75rem;
    align-items: center;
    margin-top: auto;
    color: #ffc107;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hn-interior-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hn-interior-factor-card {
    position: relative;
    display: grid;
    min-height: 156px;
    align-content: end;
    overflow: hidden;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-bottom-color: rgba(255, 193, 7, .55);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 193, 7, .08), transparent 42%),
        rgba(255, 255, 255, .035);
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    box-shadow: inset 0 -2px 0 rgba(255, 193, 7, .2), 0 18px 42px rgba(0, 0, 0, .22);
}

.hn-interior-factor-card::before {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(255, 193, 7, .15);
    content: "";
    transform: rotate(45deg);
}

.hn-interior-factor-card span {
    position: relative;
    width: fit-content;
    margin-bottom: 1.1rem;
    color: #ffc107;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 193, 7, .22);
}

.hn-interior-factor-card p {
    position: relative;
    margin: 0;
    color: rgba(248, 250, 252, .82);
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 1120px) {
    .hn-interior-hub-layout,
    .hn-interior-issue-grid,
    .hn-interior-factor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hn-interior-section--hub .hn-section-intro {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .hn-interior-section {
        padding-inline: 1rem;
    }

    .hn-interior-hub-layout,
    .hn-interior-hub-grid,
    .hn-interior-card-grid,
    .hn-interior-issue-grid,
    .hn-interior-factor-grid {
        grid-template-columns: 1fr;
    }

    .hn-interior-card {
        grid-template-columns: 1fr;
    }

    .hn-interior-issue-card {
        min-height: 0;
    }
}

.hn-punch-list {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
}

.hn-punch-list ul {
    display: grid;
    gap: .75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hn-punch-list li {
    padding: .8rem 1rem;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.hn-punch-panel-section {
    position: relative;
    padding-block: clamp(3.8rem, 6vw, 5.8rem);
    background:
        linear-gradient(135deg, rgba(255, 193, 7, .09), transparent 24rem),
        linear-gradient(180deg, #f3f5f7, #e8edf2);
    color: #08101b;
}

.hn-punch-panel {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.hn-punch-panel__card,
.hn-punch-panel__steps li {
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.hn-punch-panel__card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.4rem, 2.7vw, 2.2rem);
}

.hn-punch-panel__card > span {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #d18c00;
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1;
    text-transform: uppercase;
}

.hn-punch-panel__card > span::after {
    width: min(6rem, 16vw);
    height: 2px;
    content: "";
    background: #ffc107;
}

.hn-punch-panel__card h2 {
    margin: .7rem 0 1rem;
    color: #08101b;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: .98;
    text-transform: none;
}

.hn-punch-panel__card p,
.hn-punch-panel__card small {
    max-width: 34rem;
    color: #344152;
    line-height: 1.55;
}

.hn-punch-panel__card .hn-button {
    width: fit-content;
    margin: 1.35rem 0 .9rem;
}

.hn-punch-panel__button-icon {
    display: grid;
    width: 2rem;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: #07111f;
}

.hn-punch-panel__button-icon img {
    width: 1.05rem;
    height: 1.05rem;
}

.hn-punch-panel__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.85rem, 1.4vw, 1.2rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.hn-punch-panel__steps li {
    display: grid;
    min-height: 0;
    align-content: start;
    justify-items: start;
    padding: clamp(1.25rem, 2.2vw, 1.8rem);
}

.hn-punch-panel__icon {
    display: grid;
    width: 3.4rem;
    aspect-ratio: 1;
    margin: 0 0 1rem;
    place-items: center;
    border: 1px solid rgba(255, 193, 7, .65);
    border-radius: 50%;
    background: rgba(255, 193, 7, .08);
}

.hn-punch-panel__icon img {
    width: 1.9rem;
    height: 1.9rem;
}

.hn-punch-panel__count {
    color: #d18c00;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.hn-punch-panel__steps strong {
    margin-top: .55rem;
    color: #08101b;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.05;
}

.hn-punch-panel__steps p {
    margin: .8rem 0 0;
    color: #445164;
    font-size: .98rem;
    line-height: 1.5;
}

.hn-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hn-split > div {
    padding: 1.4rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
}

.hn-why-section {
    position: relative;
    overflow: hidden;
    padding: 94px 24px 110px;
    color: #f7f8fa;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 193, 7, .07), transparent 32rem),
        linear-gradient(180deg, #020507, #05090e);
}

.hn-why-section::before,
.hn-why-section::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.hn-why-section::before {
    opacity: .34;
    background:
        repeating-linear-gradient(90deg, transparent 0 89px, rgba(255, 255, 255, .025) 90px),
        repeating-linear-gradient(0deg, transparent 0 89px, rgba(255, 255, 255, .02) 90px);
}

.hn-why-section::after {
    background: linear-gradient(135deg, transparent 0 49.85%, rgba(255, 193, 7, .08) 50%, transparent 50.15%) 50% 0 / 760px 760px no-repeat;
}

.hn-why-layout {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1240px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.hn-why-layout .hn-section-intro {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px;
    text-align: center;
}

.hn-home .hn-why-layout .hn-section-intro {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.hn-why-layout .hn-section-intro h2 {
    max-width: none;
    margin: 0;
    color: #f7f8fa;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-wrap: balance;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .56);
}

.hn-home .hn-why-layout .hn-section-intro h2 {
    max-width: none;
}

.hn-why-layout .hn-section-intro h2 span {
    color: #ffc107;
    text-shadow: 0 0 24px rgba(255, 193, 7, .18);
}

.hn-pricing-guide {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #f7f8fa;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 193, 7, .08), transparent 22rem),
        linear-gradient(180deg, #04080e, #020507);
}

.hn-pricing-guide::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .28;
    background:
        linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 76px 76px;
    pointer-events: none;
}

.hn-pricing-guide--includes,
.hn-pricing-guide--photos {
    background:
        linear-gradient(115deg, transparent 0 64%, rgba(255, 193, 7, .08) 64.2% 64.6%, transparent 64.8%),
        linear-gradient(180deg, #060907, #020507);
}

.hn-pricing-guide--methods,
.hn-pricing-guide--changes {
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 193, 7, .08), transparent 22rem),
        linear-gradient(180deg, #05090f, #030608);
}

.hn-pricing-guide--policy {
    background:
        linear-gradient(130deg, rgba(255, 193, 7, .07), transparent 24rem),
        linear-gradient(180deg, #04080e, #020507);
}

.hn-pricing-guide--terms {
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 193, 7, .08), transparent 22rem),
        linear-gradient(180deg, #05090f, #020507);
}

.hn-pricing-guide .hn-section__inner {
    width: min(1240px, 100%);
}

.hn-pricing-guide .hn-section-intro {
    display: grid;
    max-width: 920px;
    gap: .95rem;
    margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.hn-pricing-guide .hn-section-intro h2,
.hn-pricing-photo-card h2 {
    margin: 0;
    color: #f7f8fa;
    font-size: clamp(2.75rem, 4.6vw, 4.5rem);
    line-height: 1.02;
    text-wrap: balance;
}

.hn-pricing-guide .hn-section-intro p:not(.hn-section-label),
.hn-pricing-guide p,
.hn-pricing-photo-card li {
    color: rgba(247, 248, 250, .72);
    line-height: 1.65;
}

.hn-pricing-factor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hn-pricing-factor-grid article,
.hn-pricing-include-grid article,
.hn-price-change-grid article {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 1.6rem;
    border: 1px solid rgba(255, 193, 7, .3);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 193, 7, .055), transparent 38%),
        rgba(255, 255, 255, .026);
}

.hn-pricing-factor-grid article::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .2;
    background:
        linear-gradient(130deg, transparent 0 38%, rgba(255, 193, 7, .28) 38.2% 38.45%, transparent 38.65%);
    pointer-events: none;
}

.hn-pricing-factor-grid article > span,
.hn-pricing-include-grid article > span {
    color: #ffc107;
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hn-pricing-factor-grid h3,
.hn-pricing-include-grid h3,
.hn-pricing-methods h3,
.hn-similar-repair-grid h3,
.hn-price-change-grid h3 {
    margin: .85rem 0 .8rem;
    color: #f7f8fa;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    line-height: 1.05;
}

.hn-pricing-factor-grid p,
.hn-pricing-include-grid p,
.hn-pricing-methods p,
.hn-similar-repair-grid p,
.hn-price-change-grid p {
    margin: 0;
}

.hn-policy-meta {
    color: #ffc107 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.hn-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hn-policy-grid article {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 310px;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-bottom-color: rgba(255, 193, 7, .45);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .038), transparent 56%),
        rgba(255, 255, 255, .026);
}

.hn-policy-grid--terms article {
    min-height: 350px;
}

.hn-policy-grid article::after {
    position: absolute;
    right: -3.2rem;
    bottom: -3.2rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(255, 193, 7, .14);
    content: "";
    transform: rotate(45deg);
}

.hn-policy-grid article > span {
    color: #ffc107;
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 700;
}

.hn-policy-grid h3 {
    margin: .85rem 0 .8rem;
    color: #f7f8fa;
    font-family: var(--font-heading);
    font-size: 1.48rem;
    line-height: 1.05;
}

.hn-policy-grid p {
    margin: 0;
    color: rgba(247, 248, 250, .72);
    line-height: 1.62;
}

.hn-pricing-include-grid,
.hn-price-change-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hn-pricing-include-grid article,
.hn-price-change-grid article {
    min-height: 280px;
}

.hn-pricing-methods {
    display: grid;
    gap: .85rem;
}

.hn-pricing-methods article {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
    min-height: 140px;
    padding: 1.2rem 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .026);
}

.hn-pricing-methods article::after {
    position: absolute;
    right: 1.25rem;
    left: 70%;
    top: 50%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(255, 193, 7, .7), transparent);
}

.hn-pricing-methods article > span {
    color: rgba(255, 255, 255, .08);
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.hn-pricing-note {
    max-width: 760px;
    margin: 1.3rem 0 0;
    color: rgba(255, 193, 7, .78) !important;
}

.hn-similar-repair-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hn-similar-repair-grid article {
    min-height: 310px;
    padding: 1.3rem;
    border: 1px solid rgba(255, 193, 7, .28);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .04) 0 49%, rgba(255, 193, 7, .35) 49.2% 49.5%, rgba(255, 255, 255, .025) 49.7% 100%),
        rgba(255, 255, 255, .026);
}

.hn-similar-repair-grid article > div {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    color: #ffc107;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hn-pricing-photo-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.4rem, 4vw, 2.5rem);
    border: 1px solid rgba(255, 193, 7, .34);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(255, 193, 7, .075), transparent 38%),
        rgba(255, 255, 255, .026);
}

.hn-pricing-photo-card > div {
    display: grid;
    gap: 1rem;
}

.hn-pricing-photo-card ul {
    display: grid;
    gap: .85rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hn-pricing-photo-card li {
    position: relative;
    padding: .95rem .95rem .95rem 2.45rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    background: rgba(0, 0, 0, .18);
}

.hn-pricing-photo-card li::before {
    position: absolute;
    top: 1.15rem;
    left: .9rem;
    width: .55rem;
    height: .55rem;
    content: "";
    border-radius: 50%;
    background: #ffc107;
    box-shadow: 0 0 14px rgba(255, 193, 7, .42);
}

@media (max-width: 1100px) {
    .hn-pricing-factor-grid,
    .hn-pricing-include-grid,
    .hn-policy-grid,
    .hn-similar-repair-grid,
    .hn-price-change-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hn-pricing-photo-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hn-pricing-factor-grid,
    .hn-pricing-include-grid,
    .hn-policy-grid,
    .hn-similar-repair-grid,
    .hn-price-change-grid,
    .hn-pricing-methods article {
        grid-template-columns: 1fr;
    }

    .hn-pricing-factor-grid article,
    .hn-pricing-include-grid article,
    .hn-policy-grid article,
    .hn-similar-repair-grid article,
    .hn-price-change-grid article {
        min-height: 0;
    }

    .hn-pricing-methods article > span {
        font-size: 3.1rem;
    }
}

.hn-why-layout .hn-section-intro h2::after {
    display: block;
    width: 600px;
    max-width: 74%;
    height: 22px;
    margin: 28px auto 0;
    content: "";
    background:
        linear-gradient(90deg, #ffc107, #f79a1e) left 10px center / calc(50% - 42px) 2px no-repeat,
        linear-gradient(90deg, #f79a1e, #ffc107) right 10px center / calc(50% - 42px) 2px no-repeat;
    clip-path: polygon(0 45%, calc(50% - 24px) 45%, 50% 0, calc(50% + 24px) 45%, 100% 45%, 100% 55%, calc(50% + 20px) 55%, 50% 18%, calc(50% - 20px) 55%, 0 55%);
}

.hn-why-layout .hn-section-intro p {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(247, 248, 250, .7);
    font-size: 1.08rem;
    line-height: 1.55;
}

.hn-home .hn-why-layout .hn-section-intro p {
    margin: 18px auto 0;
}

.hn-why-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hn-why-grid article {
    position: relative;
    display: flex;
    min-height: 380px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 42px 34px 38px;
    border: 1px solid rgba(247, 248, 250, .25);
    border-radius: 8px;
    color: #f7f8fa;
    background:
        radial-gradient(circle at 50% 16%, rgba(255, 193, 7, .07), transparent 9rem),
        linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
    box-shadow: inset 0 -2px 0 rgba(255, 193, 7, .68), 0 25px 48px rgba(0, 0, 0, .28);
    text-align: center;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hn-why-grid article::before {
    position: absolute;
    top: -38px;
    right: -22px;
    width: 160px;
    height: 160px;
    content: "";
    opacity: .12;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .34) 46% 47%, transparent 48%);
    transform: rotate(12deg);
}

.hn-why-grid article:hover,
.hn-why-grid article:focus-within {
    border-color: rgba(255, 193, 7, .58);
    box-shadow: inset 0 -3px 0 #ffc107, 0 30px 58px rgba(0, 0, 0, .38), 0 0 24px rgba(255, 193, 7, .08);
    transform: translateY(-5px);
}

.hn-why-grid__icon {
    display: grid;
    width: 116px;
    height: 116px;
    flex: 0 0 116px;
    margin-bottom: 30px;
    place-items: center;
    border: 2px solid rgba(255, 193, 7, .82);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)),
        #07101b;
    box-shadow: inset 0 0 26px rgba(255, 193, 7, .06), 0 0 24px rgba(255, 193, 7, .08);
}

.hn-why-grid__icon img {
    display: block;
    width: 70px;
    height: 70px;
}

.hn-why-grid h3 {
    margin: 0;
    color: #f7f8fa;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hn-why-grid h3::after {
    display: block;
    width: 48px;
    height: 2px;
    margin: 20px auto;
    content: "";
    background: #ffc107;
}

.hn-why-grid p {
    max-width: 310px;
    margin: 0 auto;
    color: rgba(247, 248, 250, .68);
    font-size: 1rem;
    line-height: 1.5;
}

.hn-why-cta {
    display: grid;
    width: min(100%, 560px);
    min-height: 78px;
    grid-template-columns: 56px minmax(0, 1fr) 32px;
    gap: 18px;
    align-items: center;
    margin-top: 48px;
    padding: 10px 24px;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #f7f8fa;
    background: linear-gradient(110deg, rgba(255, 193, 7, .08), rgba(255, 255, 255, .025), rgba(255, 193, 7, .08));
    box-shadow: 0 0 0 5px rgba(255, 193, 7, .035), 0 18px 38px rgba(0, 0, 0, .32);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hn-why-cta:hover,
.hn-why-cta:focus-visible {
    color: #fff;
    background: linear-gradient(110deg, rgba(255, 193, 7, .16), rgba(255, 255, 255, .045), rgba(255, 193, 7, .16));
    box-shadow: 0 0 0 5px rgba(255, 193, 7, .06), 0 22px 44px rgba(0, 0, 0, .4), 0 0 28px rgba(255, 193, 7, .1);
    transform: translateY(-3px);
}

.hn-why-cta img:first-child {
    width: 50px;
    height: 50px;
}

.hn-why-cta img:last-child {
    width: 32px;
    height: 32px;
    transition: transform .2s ease;
}

.hn-why-cta:hover img:last-child,
.hn-why-cta:focus-visible img:last-child {
    transform: translateX(4px);
}

.hn-about-positioning {
    position: relative;
    overflow: hidden;
    padding: 92px 24px;
    color: #f7f8fa;
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 193, 7, .06), transparent 22rem),
        linear-gradient(180deg, #05090f, #090f17);
}

.hn-about-positioning::before,
.hn-about-niche::before,
.hn-about-fit::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: .34;
    pointer-events: none;
}

.hn-about-positioning__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
}

.hn-about-positioning__heading h2,
.hn-about-niche .hn-section-intro h2,
.hn-about-fit .hn-section-intro h2 {
    margin: 0;
    color: #f7f8fa;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-wrap: balance;
}

.hn-about-positioning__heading h2 {
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .98;
}

.hn-about-positioning__heading h2 span,
.hn-about-niche .hn-section-intro h2 span,
.hn-about-fit .hn-section-intro h2 span {
    color: #ffc107;
}

.hn-about-positioning__copy {
    position: relative;
    display: grid;
    gap: 1.1rem;
    padding-left: clamp(1.5rem, 3vw, 2.4rem);
    border-left: 2px solid rgba(255, 193, 7, .72);
}

.hn-about-positioning__copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(247, 248, 250, .76);
    font-size: 1.12rem;
    line-height: 1.72;
}

.hn-about-positioning__copy p:nth-child(2) {
    color: #f7f8fa;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
}

.hn-about-niche,
.hn-about-fit {
    position: relative;
    overflow: hidden;
    padding: 92px 24px 104px;
    color: #f7f8fa;
    background: linear-gradient(180deg, #080d14, #030507);
}

.hn-about-niche .hn-section__inner,
.hn-about-fit .hn-section__inner {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
}

.hn-about-niche .hn-section-intro,
.hn-about-fit .hn-section-intro {
    max-width: 900px;
    margin: 0 0 3rem;
    text-align: left;
}

.hn-about-niche .hn-section-intro h2,
.hn-about-fit .hn-section-intro h2 {
    max-width: 900px;
    font-size: clamp(2.85rem, 5vw, 5rem);
    line-height: 1;
}

.hn-about-niche .hn-section-intro p,
.hn-about-fit .hn-section-intro p {
    max-width: 690px;
    margin: 1.1rem 0 0;
    color: rgba(247, 248, 250, .72);
    font-size: 1.08rem;
    line-height: 1.58;
}

.hn-about-niche__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hn-about-niche__grid article {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: #05090f;
    box-shadow: inset 0 -2px 0 rgba(255, 193, 7, .86), 0 24px 52px rgba(0, 0, 0, .34);
}

.hn-about-niche__visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hn-about-niche__visual::after,
.hn-about-fit__zones article::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(2, 5, 8, .05), rgba(2, 5, 8, .78));
    pointer-events: none;
}

.hn-about-niche__visual img,
.hn-about-fit__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.08) brightness(.72);
}

.hn-about-niche__body {
    padding: 1.55rem;
}

.hn-about-niche__body span {
    display: inline-block;
    margin-bottom: 1.1rem;
    color: #ffc107;
    font-family: var(--font-heading);
    font-weight: 700;
}

.hn-about-niche__body h3,
.hn-about-fit__zones h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
}

.hn-about-niche__body p,
.hn-about-fit__zones p {
    margin: .9rem 0 0;
    color: rgba(247, 248, 250, .72);
    line-height: 1.55;
}

.hn-why-section--about-values {
    padding-block: 86px 96px;
}

.hn-why-section--about-values .hn-why-layout .hn-section-intro h2 {
    white-space: normal;
}

.hn-why-section--about-values .hn-why-layout .hn-section-intro h2 span {
    color: #ffc107;
}

.hn-why-section--about-values .hn-why-grid article {
    min-height: 330px;
}

.hn-why-section--about-values .hn-why-grid h3 {
    font-size: 1.45rem;
    text-transform: none;
}

.hn-about-fit__zones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, .34);
    border-radius: 8px;
    background: #030507;
}

.hn-about-fit__zones article {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    isolation: isolate;
}

.hn-about-fit__zones article + article {
    border-left: 1px solid rgba(255, 193, 7, .32);
}

.hn-about-fit__image {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hn-about-fit__zones article::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(3, 5, 7, .22), rgba(3, 5, 7, .92)),
        linear-gradient(135deg, transparent 0 49%, rgba(255, 193, 7, .2) 50%, transparent 51%);
}

.hn-about-fit__zones article > div {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.hn-about-fit__zones span {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 1.2rem;
    place-items: center;
    border: 1px solid #ffc107;
    border-radius: 50%;
    background: rgba(5, 9, 15, .82);
}

.hn-about-fit__zones span img {
    width: 42px;
    height: 42px;
}

@media (max-width: 980px) {
    .hn-punch-panel,
    .hn-about-positioning__inner,
    .hn-about-niche__grid,
    .hn-about-fit__zones {
        grid-template-columns: 1fr;
    }

    .hn-punch-panel__steps {
        grid-template-columns: 1fr;
    }

    .hn-about-fit__zones article + article {
        border-top: 1px solid rgba(255, 193, 7, .32);
        border-left: 0;
    }

    .hn-why-layout .hn-section-intro h2 {
        font-size: 4rem;
        white-space: normal;
    }

    .hn-why-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .hn-why-grid article {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .hn-punch-panel-section {
        padding-block: 68px 76px;
    }

    .hn-punch-panel__card,
    .hn-punch-panel__steps li {
        padding: 1.25rem;
    }

    .hn-punch-panel__card h2 {
        font-size: 2.15rem;
    }

    .hn-why-section {
        padding: 70px 16px 82px;
    }

    .hn-why-layout .hn-section-intro {
        margin-bottom: 36px;
    }

    .hn-why-layout .hn-section-intro h2 {
        font-size: 3rem;
    }

    .hn-why-layout .hn-section-intro h2::after {
        margin-top: 22px;
    }

    .hn-why-layout .hn-section-intro p {
        font-size: 1rem;
    }

    .hn-why-grid article {
        padding: 34px 24px;
    }

    .hn-why-grid__icon {
        width: 100px;
        height: 100px;
        flex-basis: 100px;
    }

    .hn-why-grid__icon img {
        width: 62px;
        height: 62px;
    }

    .hn-why-grid h3 {
        font-size: 1.5rem;
    }

    .hn-why-cta {
        grid-template-columns: 44px minmax(0, 1fr) 26px;
        gap: 10px;
        min-height: 72px;
        padding: 10px 15px;
        font-size: 1.15rem;
    }

    .hn-why-cta img:first-child {
        width: 42px;
        height: 42px;
    }

    .hn-why-cta img:last-child {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 390px) {
    .hn-why-layout .hn-section-intro h2 {
        font-size: 2.65rem;
    }

    .hn-why-cta {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hn-why-section *,
    .hn-why-section *::before,
    .hn-why-section *::after {
        transition: none !important;
    }
}

@media (max-width: 760px) {
    .hn-trust-bar,
    .hn-punch-list,
    .hn-split {
        grid-template-columns: 1fr;
    }

    .hn-trust-bar__inner {
        grid-template-columns: 1fr;
    }
}
