
:root {
    --trf-font-primary: "Poppins", sans-serif;
    --ink: #12221c;
    --ink-soft: #284238;
    --paper: #f5f7f2;
    --surface: #ffffff;
    --surface-quiet: #eef4ef;
    --green: #0f7a3f;
    --green-dark: #075b31;
    --teal: #00747a;
    --navy: #1c4564;
    --gold: #efbd3a;
    --coral: #d85f45;
    --muted: #63726b;
    --line: rgba(18, 34, 28, 0.14);
    --shadow-sm: 0 10px 30px rgba(18, 34, 28, 0.08);
    --shadow-md: 0 20px 55px rgba(18, 34, 28, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: #4d4d4d;
    font-family: var(--trf-font-primary);
    line-height: 1.55;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

    .skip-link:focus {
        width: auto;
        height: auto;
        margin: 0;
        clip: auto;
        padding: 12px 16px;
        background: var(--ink);
        color: var(--surface);
        z-index: 40;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.2s ease;
}

    .site-header.is-scrolled {
        box-shadow: var(--shadow-sm);
    }

.utility-bar {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.83rem;
}

.utility-bar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 7px 24px;
}

.utility-bar a {
    text-decoration: none;
}

    .utility-bar a:hover {
        color: var(--surface);
    }

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

    .brand img {
        width: 196px;
        height: auto;
    }

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    font-size: 0.91rem;
    font-weight: 700;
}

    .site-nav a {
        color: #4d4d4d;
        text-decoration: none;
        white-space: nowrap;
    }

        .site-nav a:hover {
            color: var(--green-dark);
        }

.site-nav__action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    line-height: 1.15;
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.site-nav__action,
.button--primary {
    background: var(--green);
    color: var(--surface);
    box-shadow: 0 10px 22px rgba(15, 122, 63, 0.22);
}

.button--secondary {
    background: var(--surface);
    color: #4d4d4d;
    border-color: var(--line);
}

.button--dark {
    background: var(--ink);
    color: var(--surface);
}

.button--light {
    background: var(--surface);
    color: #4d4d4d;
    border-color: rgba(255, 255, 255, 0.64);
}

.button:hover,
.site-nav__action:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.nav-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 10px;
}

    .nav-toggle span:not(.sr-only) {
        display: block;
        height: 2px;
        margin: 5px 0;
        background: var(--ink);
    }

.hero {
    position: relative;
    min-height: 540px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero__media {
    position: absolute;
    inset: 0;
}

    .hero__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(10, 22, 17, 0.93), rgba(10, 22, 17, 0.68), rgba(10, 22, 17, 0.2));
    }

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

.hero__content {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 72px 24px 54px;
    color: var(--surface);
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: 3.45rem;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero__intro,
.hero p {
    max-width: 680px;
    font-size: 1.11rem;
    color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
    margin: 0 0 11px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow--green {
    color: var(--green-dark);
}

.hero__actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 760px;
    margin: 36px 0 0;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

    .proof-strip div {
        padding: 16px 18px;
        background: rgba(10, 22, 17, 0.48);
    }

    .proof-strip dt {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 900;
    }

    .proof-strip dd {
        margin: 3px 0 0;
        color: rgba(255, 255, 255, 0.78);
    }

.section-wrap,
.page-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 24px;
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 52px;
    align-items: end;
}

    .intro-panel h2,
    .section-heading h2,
    .device-band h2,
    .process-section h2,
    .audience-band h2,
    .cta-band h2 {
        margin: 0;
        font-size: 2.65rem;
        line-height: 1.08;
        letter-spacing: 0;
    }

    .intro-panel p,
    .section-heading p,
    .device-band p,
    .process-section p,
    .audience-band p,
    .page-hero p {
        color: #4d4d4d;
        font-size: 1.05rem;
    }

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

    .section-heading > p {
        max-width: 330px;
        margin: 0;
    }

.section-heading--ruled {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.service-grid {
    padding-top: 18px;
}

.service-grid__items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    --accent: var(--green);
    min-height: 234px;
    padding: 21px;
    border-radius: 8px;
    color: #4d4d4d;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

    .service-card__kicker,
    .service-card span,
    .hardware-card span,
    .product-card span {
        display: block;
        color: var(--accent, var(--green-dark));
        font-size: 0.75rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .service-card strong {
        display: block;
        margin: 14px 0 8px;
        font-size: 1.2rem;
        line-height: 1.12;
    }

    .service-card small {
        display: block;
        font-size: 0.94rem;
        color: #4d4d4d;
    }

.service-card__link {
    margin-top: auto;
    padding-top: 18px;
    color: var(--green-dark);
}

.service-card--green {
    --accent: var(--green);
}

.service-card--blue {
    --accent: var(--navy);
}

.service-card--yellow {
    --accent: var(--gold);
}

.service-card--coral {
    --accent: var(--coral);
}

.service-card--ink {
    --accent: var(--ink);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.device-band {
    background: var(--navy);
    color: var(--surface);
}

.device-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 50px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 24px;
}

.device-band p {
    color: rgba(255, 255, 255, 0.78);
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hardware-card {
    min-height: 312px;
    padding: 24px;
    border-radius: 8px;
    color: #4d4d4d;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.hardware-card__visual {
    position: relative;
    display: block;
    height: 118px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: var(--surface-quiet);
    overflow: hidden;
}

.hardware-card--laptop .hardware-card__visual::before {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    top: 26px;
    height: 54px;
    border-radius: 6px 6px 2px 2px;
    background: var(--navy);
    box-shadow: inset 0 0 0 8px #d6e5e0;
}

.hardware-card--laptop .hardware-card__visual::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 25px;
    height: 12px;
    border-radius: 2px 2px 8px 8px;
    background: #8ea49b;
}

.hardware-card--printer .hardware-card__visual::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    top: 30px;
    height: 64px;
    border-radius: 8px;
    background: #dce6e2;
    box-shadow: inset 0 -18px 0 var(--teal);
}

.hardware-card--printer .hardware-card__visual::after {
    content: "";
    position: absolute;
    left: 28%;
    right: 28%;
    top: 18px;
    height: 30px;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.hardware-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.36rem;
    line-height: 1.1;
}

.hardware-card p {
    margin: 0;
    color: #4d4d4d;
}

.process-section,
.service-detail,
.audience-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 46px;
    align-items: start;
}

.steps {
    display: grid;
    gap: 12px;
}

    .steps article,
    .audience-grid article,
    .service-detail__aside,
    .hero-summary,
    .product-card,
    .faq-strip article,
    .content-aside,
    .product-detail__aside {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 22px;
    }

    .steps article {
        display: grid;
        grid-template-columns: 42px 1fr;
        column-gap: 16px;
        align-items: start;
    }

    .steps span {
        display: inline-grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--gold);
        color: #4d4d4d;
        font-weight: 900;
    }

    .steps h3 {
        margin: 0 0 6px;
        font-size: 1.16rem;
    }

    .steps p {
        grid-column: 2;
        margin: 0;
    }

.audience-band {
    background: var(--green-dark);
    color: var(--surface);
}

.audience-band__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 24px;
}

.audience-band p {
    color: rgba(255, 255, 255, 0.78);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

    .audience-grid article {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .audience-grid strong,
    .audience-grid span {
        display: block;
    }

    .audience-grid strong {
        font-size: 1.05rem;
    }

    .audience-grid span {
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.78);
    }

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--gold);
    max-width: none;
    padding: 64px max(24px, calc((100% - 1180px) / 2));
}

    .cta-band .eyebrow {
        color: var(--green-dark);
    }

.page-hero {
    padding-top: 72px;
    padding-bottom: 52px;
}

    .page-hero p {
        max-width: 760px;
    }

.page-hero--service,
.page-hero--product {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: end;
    background: var(--surface);
    padding-inline: max(24px, calc((100% - 1180px) / 2));
    border-bottom: 1px solid var(--line);
}

.page-hero--content {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.hero-summary strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1.1;
}

.hero-summary span {
    display: block;
    margin-top: 10px;
    color: #4d4d4d;
}

.service-detail {
    grid-template-columns: minmax(0, 1fr) 336px;
}

.service-detail__main,
.content-page {
    color: #4d4d4d;
    max-width: 820px;
}

    .service-detail__main p:first-child,
    .content-page p:first-child {
        margin-top: 0;
    }

    .content-page p,
    .content-page li,
    .service-detail__main p,
    .service-detail__main li {
        font-size: 1.04rem;
    }

    .content-page h2,
    .service-detail__main h2 {
        font-size: 1.76rem;
        line-height: 1.16;
        margin-top: 34px;
        color: #4d4d4d;
    }

.content-page__cta {
    margin-top: 30px;
}

.service-detail__aside img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

.service-detail__aside h2,
.content-aside h2,
.product-detail__aside h2 {
    margin-top: 0;
    font-size: 1.28rem;
}

.highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 0;
}

    .highlight-row article {
        border-top: 3px solid var(--green);
        padding-top: 18px;
    }

    .highlight-row span {
        color: var(--green-dark);
        font-weight: 900;
    }

    .highlight-row h2 {
        margin: 12px 0 8px;
        font-size: 1.28rem;
        line-height: 1.12;
    }

    .highlight-row p {
        margin: 0;
        color: #4d4d4d;
    }

.product-section {
    padding-top: 22px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 286px;
    color: #4d4d4d;
    text-decoration: none;
}

    .product-card img,
    .product-facts img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        background: var(--surface-quiet);
        border-radius: 6px;
    }

    .product-card img {
        margin-bottom: 14px;
    }

    .product-card h3 {
        margin: 16px 0 8px;
        font-size: 1.22rem;
        line-height: 1.12;
    }

    .product-card p {
        color: #4d4d4d;
        margin: 0 0 14px;
    }

    .product-card strong {
        margin-top: auto;
        font-size: 1.2rem;
    }

    .product-card small {
        margin-top: 14px;
        color: var(--green-dark);
        font-weight: 900;
    }

.product-card--linked:hover {
    border-color: rgba(15, 122, 63, 0.36);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-facts {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

    .product-facts dl {
        margin: 18px 0 0;
        display: grid;
        gap: 10px;
    }

    .product-facts div {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        border-top: 1px solid var(--line);
        padding-top: 10px;
    }

    .product-facts dt {
        color: #4d4d4d;
    }

    .product-facts dd {
        margin: 0;
        font-weight: 900;
        text-align: right;
    }

.product-detail,
.content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

    .product-detail__copy,
    .content-shell .content-page {
        padding: 0;
        margin: 0;
    }

.faq-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 10px;
}

    .faq-strip h2 {
        margin: 0 0 8px;
        font-size: 1.22rem;
    }

    .faq-strip p {
        margin: 0;
        color: #4d4d4d;
    }

.site-footer {
    background: var(--ink);
    color: var(--surface);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
    gap: 34px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 24px;
}

.site-footer__logo {
    width: 190px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 0.92rem;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    color: var(--surface);
    text-decoration-color: rgba(255, 255, 255, 0.35);
    margin: 8px 0;
}

.site-footer .button {
    display: inline-flex;
    color: #4d4d4d;
    margin-top: 10px;
}

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 24px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
    }

        .site-nav.is-open {
            display: flex;
        }

        .site-nav a {
            padding: 12px 0;
            white-space: normal;
        }

    .site-nav__action {
        margin-top: 8px;
    }

    .service-grid__items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .utility-bar__inner {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .hero {
        min-height: 520px;
    }

    .hero__media::after {
        background: linear-gradient(0deg, rgba(10, 22, 17, 0.94), rgba(10, 22, 17, 0.48));
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.55rem;
    }

    .intro-panel,
    .device-band__inner,
    .process-section,
    .audience-band__inner,
    .service-detail,
    .page-hero--service,
    .page-hero--product,
    .product-detail,
    .content-shell,
    .site-footer__inner,
    .highlight-row,
    .product-grid,
    .faq-strip {
        grid-template-columns: 1fr;
    }

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

    .hardware-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-wrap,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .device-band__inner,
    .audience-band__inner {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .intro-panel h2,
    .section-heading h2,
    .device-band h2,
    .process-section h2,
    .audience-band h2,
    .cta-band h2 {
        font-size: 2rem;
    }
}

@media (max-width: 540px) {
    .utility-bar {
        display: none;
    }

    .site-header__inner {
        padding: 12px 18px;
    }

    .brand img {
        width: 168px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    .hero__content {
        padding: 58px 18px 42px;
    }

    .section-wrap,
    .page-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .device-band__inner,
    .audience-band__inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .steps article {
        grid-template-columns: 1fr;
    }

    .steps p {
        grid-column: auto;
    }

    .page-hero--service,
    .page-hero--product {
        padding-left: 18px;
        padding-right: 18px;
    }

    .button,
    .site-nav__action {
        width: 100%;
    }
}

.site-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    overflow: hidden;
    background: transparent;
}

    .site-progress span {
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: left center;
        background: var(--green);
    }

.has-js [data-reveal] {
    opacity: 0;
    translate: 0 18px;
    transition: opacity 520ms ease, translate 520ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

    .has-js [data-reveal].is-visible {
        opacity: 1;
        translate: 0 0;
    }

.route-finder {
    padding-top: 18px;
}

.route-finder__shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 300px;
    gap: 14px;
    align-items: stretch;
}

.route-tabs,
.route-panels,
.route-finder__status {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.route-tabs {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.route-tab {
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: #4d4d4d;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

    .route-tab:hover {
        background: var(--surface-quiet);
    }

    .route-tab.is-active {
        background: var(--ink);
        color: var(--surface);
        border-color: var(--ink);
    }

.route-panels {
    position: relative;
    min-height: 290px;
    overflow: hidden;
}

.route-panel {
    display: none;
    min-height: 100%;
    padding: 30px;
    background: linear-gradient(135deg, rgba(15, 122, 63, 0.11), transparent 44%), var(--surface);
}

    .route-panel.is-active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .route-panel span,
    .route-finder__status span {
        color: var(--green-dark);
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .route-panel h3 {
        max-width: 600px;
        margin: 12px 0 10px;
        font-size: 2rem;
        line-height: 1.08;
    }

    .route-panel p {
        max-width: 620px;
        color: #4d4d4d;
        margin: 0;
    }

.route-finder__status {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: var(--ink);
    color: var(--surface);
}

    .route-finder__status strong {
        display: block;
        margin-bottom: 10px;
        font-size: 1.55rem;
        line-height: 1.08;
    }

    .route-finder__status span {
        color: rgba(255, 255, 255, 0.74);
        text-transform: none;
        font-size: 0.96rem;
        font-weight: 600;
    }

.route-meter {
    height: 6px;
    margin-top: 26px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

    .route-meter span {
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0.25);
        transform-origin: left center;
        background: var(--gold);
        transition: transform 220ms ease;
    }

.service-card,
.hardware-card,
.product-card--linked {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    will-change: transform;
}

    .service-card:hover,
    .hardware-card:hover,
    .product-card--linked:hover {
        transform: perspective(900px) translateY(-3px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    }

    .hardware-card:hover {
        box-shadow: var(--shadow-md);
    }

@media (max-width: 960px) {
    .route-finder__shell {
        grid-template-columns: 1fr;
    }

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

    .route-finder__status {
        min-height: 170px;
    }
}

@media (max-width: 540px) {
    .route-tabs {
        grid-template-columns: 1fr;
    }

    .route-panel {
        padding: 22px;
    }

        .route-panel h3 {
            font-size: 1.55rem;
        }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }

    .has-js [data-reveal] {
        opacity: 1;
        translate: 0 0;
    }

    .service-card,
    .hardware-card,
    .product-card--linked,
    .service-card:hover,
    .hardware-card:hover,
    .product-card--linked:hover {
        transform: none;
    }
}

/* Strong visible redesign pass: first-screen route desk */
.hero--command {
    min-height: 650px;
    background: #0d1d18;
    isolation: isolate;
}

    .hero--command::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 38%;
        background: linear-gradient(180deg, transparent, rgba(245, 247, 242, 0.08));
        z-index: 0;
    }

    .hero--command .hero__media {
        inset: 0 0 auto 0;
        height: 260px;
        opacity: 0.32;
    }

        .hero--command .hero__media::after {
            background: linear-gradient(180deg, rgba(13, 29, 24, 0.12), #0d1d18 86%);
        }

.hero__content--split {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
    gap: 44px;
    align-items: center;
    padding-top: 82px;
    padding-bottom: 70px;
}

.hero__copy {
    position: relative;
    z-index: 1;
}

.hero--command h1 {
    max-width: 760px;
    font-size: 4.3rem;
    line-height: 0.98;
}

.hero--command .hero__intro {
    max-width: 620px;
    font-size: 1.16rem;
}

.hero-console {
    position: relative;
    z-index: 1;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #4d4d4d;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.hero-console__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 14px 18px;
    border-bottom: 1px solid var(--line);
}

    .hero-console__top span,
    .hero-console__note span {
        color: var(--green-dark);
        font-size: 0.76rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .hero-console__top strong {
        font-size: 1.08rem;
    }

.hero-console__routes {
    display: grid;
    gap: 10px;
    padding: 14px 0;
}

    .hero-console__routes a {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 12px;
        align-items: start;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        color: #4d4d4d;
        text-decoration: none;
        transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    }

        .hero-console__routes a:hover {
            transform: translateY(-2px);
            border-color: rgba(15, 122, 63, 0.36);
            box-shadow: var(--shadow-sm);
        }

    .hero-console__routes span {
        display: inline-grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: var(--surface-quiet);
        color: var(--green-dark);
        font-size: 0.78rem;
        font-weight: 900;
    }

    .hero-console__routes strong,
    .hero-console__routes small {
        display: block;
    }

    .hero-console__routes small {
        margin-top: 3px;
        color: #4d4d4d;
        font-size: 0.9rem;
    }

.hero-console__note {
    padding: 18px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--surface);
}

    .hero-console__note span {
        color: var(--gold);
    }

    .hero-console__note strong {
        display: block;
        margin-top: 7px;
        line-height: 1.18;
    }

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

    .hero--command h1 {
        font-size: 3.1rem;
    }

    .hero-console {
        max-width: 620px;
    }
}

@media (max-width: 540px) {
    .hero--command {
        min-height: 0;
    }

        .hero--command h1 {
            font-size: 2.18rem;
        }

    .hero__content--split {
        gap: 28px;
    }

    .hero-console {
        padding: 12px;
    }

    .hero-console__top {
        display: block;
    }

        .hero-console__top strong {
            display: block;
            margin-top: 5px;
        }
}

/* Premium homepage redesign: bright hero and product-led offer panels */
.hero--premium {
    min-height: 560px;
    background: #edf4ef;
    color: #4d4d4d;
    align-items: center;
    isolation: isolate;
}

    .hero--premium .hero__media {
        position: absolute;
        inset: 0;
        height: auto;
        opacity: 1;
    }

        .hero--premium .hero__media::after {
            background: linear-gradient(90deg, rgba(245, 247, 242, 0.96) 0%, rgba(245, 247, 242, 0.88) 38%, rgba(245, 247, 242, 0.34) 72%, rgba(245, 247, 242, 0.12) 100%), linear-gradient(0deg, rgba(245, 247, 242, 0.9), rgba(245, 247, 242, 0.18));
        }

        .hero--premium .hero__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.08) contrast(1.02) brightness(1.08);
        }

.hero__content--premium {
    width: min(1180px, 100%);
    padding-top: 86px;
    padding-bottom: 86px;
    color: #4d4d4d;
}

.hero--premium h1 {
    max-width: 760px;
    font-size: 4rem;
    line-height: 1.02;
    color: #4d4d4d;
}

.hero--premium .hero__intro {
    max-width: 610px;
    color: #4d4d4d;
    font-size: 1.17rem;
}

.hero--premium .eyebrow {
    color: var(--green-dark);
}

.hero--premium .button--secondary {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(18, 34, 28, 0.18);
    backdrop-filter: blur(8px);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    margin: -34px auto 0;
    position: relative;
    z-index: 4;
    padding: 0 24px;
    gap: 12px;
}

    .trust-strip div {
        min-height: 92px;
        padding: 20px 22px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-sm);
    }

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

    .trust-strip strong {
        color: var(--green-dark);
        font-size: 1.65rem;
        line-height: 1;
    }

    .trust-strip span {
        margin-top: 7px;
        color: #4d4d4d;
    }

.offer-showcase {
    padding-top: 78px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

    .offer-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(15, 122, 63, 0.28);
    }

.offer-card__visual {
    position: relative;
    min-height: 236px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 0;
    background: #eaf2ee;
}

    .offer-card__visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(18, 34, 28, 0) 56%, rgba(18, 34, 28, 0.12) 100%);
        pointer-events: none;
    }

    .offer-card__visual img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.01);
        transition: transform 220ms ease;
    }

.offer-card:hover .offer-card__visual img {
    transform: scale(1.05);
}

.offer-card__visual--device {
    background: linear-gradient(135deg, rgba(15, 122, 63, 0.14), rgba(0, 116, 122, 0.12)), var(--surface-quiet);
}

.offer-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px;
}

    .offer-card__body > span {
        color: var(--green-dark);
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
    }

.offer-card h3 {
    margin: 13px 0 10px;
    font-size: 1.55rem;
    line-height: 1.08;
}

.offer-card p {
    margin: 0 0 20px;
    color: #4d4d4d;
}

.offer-card .button {
    margin-top: auto;
}

.offer-card--laptops .offer-card__body > span {
    color: var(--navy);
}

.offer-card--printers .offer-card__body > span {
    color: var(--teal);
}

.device-illustration {
    position: relative;
    display: block;
    width: min(260px, 92%);
    height: 150px;
}

.device-illustration--laptop::before {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 12px;
    height: 86px;
    border-radius: 10px 10px 4px 4px;
    background: var(--navy);
    box-shadow: inset 0 0 0 12px #d9e7e2;
}

.device-illustration--laptop::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 26px;
    height: 18px;
    border-radius: 3px 3px 14px 14px;
    background: #8da49a;
}

.device-illustration--printer::before {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    top: 42px;
    height: 78px;
    border-radius: 12px;
    background: #dfe9e5;
    box-shadow: inset 0 -24px 0 var(--teal), 0 16px 30px rgba(18, 34, 28, 0.12);
}

.device-illustration--printer::after {
    content: "";
    position: absolute;
    left: 26%;
    right: 26%;
    top: 18px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
}

.intro-panel--premium {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.customer-types {
    background: var(--ink);
    color: var(--surface);
}

.customer-types__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 44px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 76px 24px;
}

.customer-types h2 {
    margin: 0;
    font-size: 2.6rem;
    line-height: 1.08;
}

.customer-types__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

    .customer-types__grid article {
        min-height: 140px;
        padding: 22px;
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
    }

    .customer-types__grid strong,
    .customer-types__grid span {
        display: block;
    }

    .customer-types__grid span {
        margin-top: 8px;
        color: rgba(255,255,255,0.72);
    }

.steps--premium article {
    border-left: 4px solid var(--green);
}

.cta-band--premium {
    background: var(--gold);
}

@media (max-width: 980px) {
    .hero--premium h1 {
        font-size: 3rem;
    }

    .offer-grid,
    .customer-types__inner {
        grid-template-columns: 1fr;
    }

    .offer-card {
        min-height: 0;
    }
}

@media (max-width: 680px) {
    .hero--premium {
        min-height: 500px;
    }

        .hero--premium .hero__media::after {
            background: linear-gradient(0deg, rgba(245,247,242,0.98) 0%, rgba(245,247,242,0.86) 72%, rgba(245,247,242,0.52) 100%);
        }

        .hero--premium h1 {
            font-size: 2.24rem;
        }

    .trust-strip,
    .customer-types__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: 0;
        padding-top: 14px;
    }

    .offer-showcase {
        padding-top: 56px;
    }

    .offer-card__body {
        padding: 22px;
    }

    .customer-types h2 {
        font-size: 2rem;
    }
}


.site-nav__cta {
    color: #fff;
}

    .site-nav__cta:hover {
        color: #fff;
    }


.site-nav__action {
    color: #fff;
}

    .site-nav__action:hover {
        color: #fff;
    }


.site-header .site-nav__action, .site-header .site-nav__action:visited, .site-header .site-nav__action:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}


/* Account gateway and CTA polish */
.utility-bar__account {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.site-nav__actions {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: 2px;
}

.site-nav__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: #4d4d4d !important;
    box-shadow: none;
}

.site-header .site-nav__action {
    min-width: 108px;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

.site-nav__login:hover {
    color: var(--green-dark) !important;
    border-color: rgba(15, 122, 63, 0.32);
    background: var(--surface);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.button {
    gap: 9px;
}

.button--primary {
    background: linear-gradient(180deg, #12934b, var(--green));
    color: #fff;
}

.button--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #4d4d4d;
    border-color: rgba(18, 34, 28, 0.18);
}

    .button--secondary:hover {
        border-color: rgba(15, 122, 63, 0.34);
        background: #fff;
    }

.button--dark:hover {
    background: #1c332b;
}

.button__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.28em;
    height: 1.28em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 900;
    line-height: 1;
}

.button--secondary .button__icon {
    background: rgba(15, 122, 63, 0.12);
    color: var(--green-dark);
}

.account-gateway {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 30px;
    align-items: stretch;
    padding-top: 48px;
    padding-bottom: 68px;
}

.account-gateway__intro {
    padding: 28px 0;
}

    .account-gateway__intro h2 {
        margin: 0;
        font-size: 2.35rem;
        line-height: 1.08;
    }

    .account-gateway__intro p:not(.eyebrow) {
        color: #4d4d4d;
        font-size: 1.05rem;
    }

.account-gateway__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.account-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

    .account-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .account-card span {
        color: var(--green-dark);
        font-size: 0.76rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .account-card h3 {
        margin: 14px 0 10px;
        font-size: 1.36rem;
        line-height: 1.1;
    }

    .account-card p {
        margin: 0 0 20px;
        color: #4d4d4d;
    }

    .account-card .button {
        width: 100%;
        margin-top: auto;
    }

.account-card--register {
    border-top: 4px solid var(--green);
}

.account-card--login {
    border-top: 4px solid var(--navy);
}

    .account-card--login span {
        color: var(--navy);
    }

.account-card--support {
    border-top: 4px solid var(--gold);
}

    .account-card--support span {
        color: #8a6514;
    }

@media (max-width: 1120px) {
    .site-nav__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 10px;
    }

    .site-nav__login,
    .site-nav__action {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .account-gateway,
    .account-gateway__cards {
        grid-template-columns: 1fr;
    }

    .account-gateway__intro {
        padding: 0;
    }
}

@media (max-width: 540px) {
    .site-nav__actions {
        grid-template-columns: 1fr;
    }

    .account-gateway__intro h2 {
        font-size: 1.95rem;
    }

    .account-card {
        min-height: 0;
        padding: 22px;
    }
}

/* Account gateway layout refinement */
.account-gateway {
    display: block;
    padding-top: 72px;
    padding-bottom: 72px;
}

.account-gateway__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
    gap: 36px;
    align-items: end;
    padding: 24px 0 28px;
    border-top: 1px solid var(--line);
}

    .account-gateway__intro h2 {
        max-width: 680px;
    }

    .account-gateway__intro p:not(.eyebrow) {
        max-width: 420px;
        margin: 0;
    }

.account-gateway__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-card {
    min-height: 310px;
}

    .account-card > span {
        color: var(--green-dark);
        font-size: 0.76rem;
        font-weight: 900;
        text-transform: uppercase;
    }

.account-card--login > span {
    color: var(--navy);
}

.account-card--support > span {
    color: #8a6514;
}

.account-card .button__icon {
    text-transform: none;
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .account-gateway__intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
    }

        .account-gateway__intro p:not(.eyebrow) {
            max-width: 680px;
        }
}

/* Account gateway final mobile override */
@media (max-width: 980px) {
    .account-gateway__cards {
        grid-template-columns: 1fr;
    }
}

/* Database backed account pages */
.site-header--account .site-header__inner {
    grid-template-columns: auto 1fr;
}

.site-nav--account {
    gap: 18px;
}

.account-hero {
    background: linear-gradient(90deg, rgba(245, 247, 242, 0.98), rgba(245, 247, 242, 0.78)), url('/images/trf-hero-workspace.jpg') center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

    .account-hero > div {
        max-width: 1180px;
        margin: 0 auto;
        padding: 82px 24px 72px;
    }

    .account-hero h1 {
        max-width: 780px;
        margin: 0;
        color: #4d4d4d;
        font-size: 3.35rem;
        line-height: 1.02;
    }

    .account-hero p:not(.eyebrow) {
        max-width: 650px;
        color: #4d4d4d;
        font-size: 1.12rem;
    }

.account-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 24px 76px;
}

.account-shell--wide {
    display: block;
}

.account-panel,
.account-aside {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.account-panel {
    padding: 30px;
}

.account-panel--narrow {
    max-width: 660px;
}

.account-aside {
    padding: 26px;
}

    .account-aside h2,
    .form-heading h2 {
        margin: 0;
        font-size: 1.72rem;
        line-height: 1.12;
    }

    .account-aside p,
    .form-heading p {
        color: #4d4d4d;
    }

.form-heading {
    margin-bottom: 24px;
}

.form-heading--wide {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.account-form {
    display: grid;
    gap: 22px;
}

.form-section {
    margin: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(238, 244, 239, 0.42);
}

    .form-section[hidden],
    [data-bank-fields][hidden],
    [data-charity-fields][hidden],
    [data-vat-fields][hidden],
    [data-organisation-field][hidden] {
        display: none !important;
    }

    .form-section legend {
        padding: 0 8px;
        color: var(--green-dark);
        font-weight: 900;
    }

.form-grid {
    display: grid;
    gap: 16px;
}

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

.form-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-field {
    display: grid;
    gap: 7px;
}

    .form-field label,
    .check-row {
        color: #4d4d4d;
        font-weight: 800;
    }

    .form-field input,
    .form-field select {
        width: 100%;
        min-height: 46px;
        padding: 10px 12px;
        border: 1px solid rgba(18, 34, 28, 0.18);
        border-radius: 8px;
        background: #fff;
        color: #4d4d4d;
        font: inherit;
    }

        .form-field input:focus,
        .form-field select:focus {
            outline: 3px solid rgba(15, 122, 63, 0.16);
            border-color: rgba(15, 122, 63, 0.58);
        }

    .form-field span[data-valmsg-for],
    .field-validation-error {
        color: #a73422;
        font-size: 0.9rem;
        font-weight: 700;
    }

.form-alert {
    padding: 13px 15px;
    border: 1px solid rgba(167, 52, 34, 0.28);
    border-radius: 8px;
    background: #fff2ef;
    color: #7b281b;
    font-weight: 800;
}

    .form-alert:empty,
    .validation-summary-valid {
        display: none;
    }

.form-success {
    margin-bottom: 20px;
    padding: 13px 15px;
    border: 1px solid rgba(15, 122, 63, 0.26);
    border-radius: 8px;
    background: #edf8f1;
    color: var(--green-dark);
    font-weight: 900;
}

.segmented-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

    .segmented-choice label,
    .check-row {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-height: 44px;
        padding: 10px 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
    }

        .segmented-choice input,
        .check-row input {
            accent-color: var(--green);
        }

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.form-actions--split {
    justify-content: space-between;
}

.form-actions a:not(.button) {
    color: var(--green-dark);
    font-weight: 800;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.account-summary {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
}

    .account-summary div {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .account-summary dt {
        color: #4d4d4d;
    }

    .account-summary dd {
        margin: 0;
        font-weight: 900;
        text-align: right;
    }

.site-footer__inner--account {
    grid-template-columns: minmax(0, 1fr) 260px;
}

@media (max-width: 1120px) {
    .site-nav--account {
        display: none;
    }
}

@media (max-width: 900px) {
    .account-shell,
    .form-heading--wide {
        grid-template-columns: 1fr;
        display: grid;
    }

    .account-aside {
        order: -1;
    }

    .form-grid--2,
    .form-grid--3,
    .form-grid--4,
    .site-footer__inner--account {
        grid-template-columns: 1fr;
    }

    .account-hero h1 {
        font-size: 2.38rem;
    }

    .form-actions,
    .form-actions--split {
        align-items: stretch;
        flex-direction: column;
    }

        .form-actions .button,
        .form-actions a:not(.button) {
            width: 100%;
            text-align: center;
        }
}

@media (max-width: 540px) {
    .account-hero > div,
    .account-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .account-panel,
    .account-aside,
    .form-section {
        padding: 20px;
    }

    .account-summary div {
        display: block;
    }

    .account-summary dd {
        margin-top: 4px;
        text-align: left;
    }
}

/* My TRF dashboard */
.account-dashboard {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dashboard-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

    .dashboard-head h2 {
        margin: 0;
        font-size: 2.35rem;
        line-height: 1;
    }

    .dashboard-head p:not(.eyebrow) {
        margin-bottom: 0;
        color: #4d4d4d;
    }

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.stat-tile {
    min-height: 138px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

    .stat-tile span {
        display: block;
        color: #4d4d4d;
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .stat-tile strong {
        display: block;
        margin-top: 18px;
        color: #4d4d4d;
        font-size: 2.15rem;
        line-height: 1;
    }

.dashboard-tabs {
    margin-top: 22px;
}

.dashboard-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(238, 244, 239, 0.62);
}

.dashboard-tab {
    min-height: 44px;
    padding: 10px 15px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #4d4d4d;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

    .dashboard-tab.is-active {
        background: var(--surface);
        color: var(--green-dark);
        box-shadow: 0 6px 20px rgba(16, 30, 26, 0.08);
    }

.dashboard-panel {
    display: block;
}

    .dashboard-panel[hidden] {
        display: none !important;
    }

.section-heading {
    margin-bottom: 16px;
}

    .section-heading h3 {
        margin: 0;
        font-size: 1.75rem;
    }

    .section-heading p {
        max-width: 720px;
        color: #4d4d4d;
    }

.detail-grid {
    display: grid;
    gap: 14px;
}

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

.detail-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.detail-card--wide {
    grid-column: 1 / -1;
}

.detail-card h4 {
    margin: 0 0 14px;
    color: #4d4d4d;
    font-size: 1.08rem;
}

.detail-card p {
    color: #4d4d4d;
}

.detail-list {
    display: grid;
    gap: 0;
    margin: 0;
}

    .detail-list div {
        display: grid;
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 14px;
        padding: 11px 0;
        border-top: 1px solid var(--line);
    }

.detail-list--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

    .detail-list--inline div {
        display: block;
        padding: 0;
        border: 0;
    }

.detail-list dt {
    color: #4d4d4d;
    font-weight: 800;
}

.detail-list dd {
    margin: 0;
    color: #4d4d4d;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 122, 63, 0.1);
    color: var(--green-dark) !important;
    font-weight: 900;
}

.dashboard-note {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(238, 244, 239, 0.7);
}

    .dashboard-note strong {
        color: #4d4d4d;
    }

    .dashboard-note span {
        color: #4d4d4d;
    }

.account-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.quick-action {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

    .quick-action span {
        color: #4d4d4d;
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    .quick-action strong {
        color: #4d4d4d;
        font-size: 1.08rem;
    }

    .quick-action:hover {
        transform: translateY(-2px);
        border-color: rgba(15, 122, 63, 0.28);
    }

@media (max-width: 900px) {
    .dashboard-head,
    .stat-grid,
    .detail-grid--2,
    .detail-list--inline,
    .account-quick-actions {
        grid-template-columns: 1fr;
    }

    .dashboard-head {
        display: grid;
    }

    .dashboard-actions,
    .dashboard-actions .button {
        width: 100%;
    }

        .dashboard-actions .button {
            text-align: center;
        }

    .stat-tile {
        min-height: 108px;
    }
}

@media (max-width: 620px) {
    .dashboard-head h2 {
        font-size: 1.95rem;
    }

    .dashboard-tablist {
        display: grid;
    }

    .dashboard-tab {
        width: 100%;
        text-align: left;
    }

    .detail-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* TRF mockup alignment pass - 2026-07-15 */
:root {
    --trf-font-primary: "Poppins", sans-serif;
    --trf-green: #006935;
    --trf-green-2: #8bc53f;
    --trf-text: #3f3f3f;
    --trf-muted: #666666;
    --trf-grey: #e7e7e7;
    --trf-panel: #f3f3f3;
    --trf-line: rgba(0, 105, 53, 0.22);
    --trf-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    --trf-soft-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

body {
    background: #fff;
    color: #4d4d4d;
    font-family: var(--trf-font-primary);
}

.mock-shell {
    width: min(1260px, calc(100% - 44px));
    margin-inline: auto;
}

.trf-mock-header.site-header {
    background: #fff;
    border: 0;
    box-shadow: none;
}

.trf-mock-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.mock-topbar {
    min-height: 48px;
    background: linear-gradient(180deg, #bdbdbd 0%, #f7f7f7 86%, #fff 100%);
    color: #4d4d4d;
    font-weight: 800;
}

.mock-topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 48px;
}

.mock-contact-line {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 1rem;
}

    .mock-contact-line span {
        width: 1px;
        height: 30px;
        background: rgba(0, 0, 0, 0.45);
    }

    .mock-contact-line a,
    .mock-social a,
    .mock-nav a,
    .mock-footer-grid a {
        text-decoration: none;
    }

.mock-social {
    justify-self: end;
    display: inline-flex;
    gap: 14px;
    align-items: center;
}

    .mock-social a {
        display: inline-grid;
        place-items: center;
        min-width: 18px;
        min-height: 18px;
        color: var(--trf-green);
        font-size: 0.72rem;
        font-weight: 900;
    }

.mock-brandbar {
    display: grid;
    grid-template-columns: 270px minmax(260px, 1fr) auto auto;
    gap: 26px;
    align-items: center;
    padding: 28px 0 18px;
}

.mock-brand img,
.site-header .mock-brand img {
    width: 250px;
    max-width: 100%;
}

.mock-search {
    justify-self: center;
    display: grid;
    grid-template-columns: minmax(260px, 420px) auto;
    gap: 10px;
    width: min(590px, 100%);
}

    .mock-search input {
        min-height: 45px;
        border: 1px solid rgba(0, 0, 0, 0.34);
        border-radius: 999px;
        padding: 0 24px;
        color: #4d4d4d;
        font: inherit;
    }

    .mock-search button,
    .mock-pill {
        font-family: sans-serif;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 45px;
        padding: 0 24px;
        border-radius: 999px;
        border: 2px solid var(--trf-green);
        background: #fff;
        color: var(--trf-green);
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 1.1;
        transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
    }

    .mock-search button,
    .mock-pill--solid {
        background: var(--trf-green);
        color: #fff;
    }

.mock-pill--outline {
    background: #fff;
    color: var(--trf-green);
}

.mock-pill--light {
    background: #fff;
    color: var(--trf-green);
    border-color: #fff;
}

.mock-search button:hover,
.mock-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 105, 53, 0.22);
}

.mock-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    white-space: nowrap;
}

.mock-nav-wrap {
    background: #e7e7e7;
}

.mock-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 70px;
    font-weight: 900;
    text-transform: uppercase;
}

    .mock-nav a {
        color: #4d4d4d;
    }

        .mock-nav a:hover,
        .mock-nav a:focus {
            color: var(--trf-green);
        }

    .mock-nav .has-sub::after {
        content: "";
        display: inline-block;
        width: 9px;
        height: 9px;
        margin-left: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
    }

.mock-contact-button {
    margin-left: auto;
    min-width: 132px;
    min-height: 45px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--trf-green);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-progress span {
    background: var(--trf-green);
}

.mock-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
}

.mock-flow {
    position: absolute;
    pointer-events: none;
    width: 760px;
    height: 230px;
    opacity: 0.52;
    background: radial-gradient(ellipse at 10% 50%, rgba(0, 105, 53, 0.13), transparent 58%), linear-gradient(18deg, transparent 28%, rgba(118, 224, 206, 0.34) 34%, rgba(139, 197, 63, 0.16) 47%, transparent 64%);
    filter: blur(1px);
    border-radius: 50%;
}

.mock-flow--hero {
    right: -100px;
    top: 40px;
    width: 920px;
}

.mock-flow--left {
    left: -210px;
    top: 80px;
}

.mock-flow--right {
    right: -250px;
    bottom: 80px;
}

.mock-home-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    min-height: 570px;
    padding: 90px 0 40px;
}

.mock-home-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
    align-items: center;
}

.mock-home-copy h1 {
    margin: 0;
    max-width: 700px;
    color: #4d4d4d;
    font-size: 3.2rem;
    line-height: 1.08;
    font-weight: 500;
}

    .mock-home-copy h1::first-line,
    .mock-home-copy h1 strong,
    .mock-copy-block strong,
    .mock-section-heading strong,
    .mock-stats strong,
    .mock-intro-center strong,
    .mock-latest-news strong {
        color: var(--trf-green);
    }

.mock-home-copy p,
.mock-copy-block p,
.mock-section-heading p,
.mock-richtext p,
.mock-page-cta p {
    color: #4d4d4d;
    font-size: 1.04rem;
}

.mock-home-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

    .mock-home-buttons .mock-pill {
        min-height: 44px;
        padding-inline: 18px;
        font-size: 0.82rem;
    }

.mock-product-stage {
    position: relative;
    min-height: 430px;
}

    .mock-product-stage img {
        position: absolute;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 28px 58px rgba(0, 0, 0, 0.18);
        background: #fff;
    }

.mock-product-stage__main {
    left: 8%;
    bottom: 0;
    width: 58%;
    height: 58%;
    z-index: 3;
}

.mock-product-stage__printer {
    right: 4%;
    top: 32px;
    width: 49%;
    height: 48%;
    z-index: 2;
}

.mock-product-stage__cart {
    right: 0;
    bottom: 34px;
    width: 31%;
    height: 34%;
    z-index: 4;
}

.mock-product-line {
    padding: 12px 0 20px;
    background: #fff;
}

.mock-product-line__inner {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 20px;
}

.mock-product-line img {
    width: min(31%, 330px);
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.mock-stats {
    padding: 34px 0 70px;
    text-align: center;
}

.mock-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 900px;
}

    .mock-stats__grid div {
        min-height: 130px;
        padding: 0 24px;
        border-right: 1px solid rgba(0,0,0,0.35);
    }

        .mock-stats__grid div:last-child {
            border-right: 0;
        }

.mock-stats strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
}

.mock-stats span {
    display: block;
    margin-top: 16px;
    color: #4d4d4d;
    line-height: 1.25;
}

.mock-shop-center {
    margin-top: 28px;
}

.mock-split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.mock-split--image-left {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.mock-image-stack img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--trf-soft-shadow);
}

.mock-copy-block h2,
.mock-section-heading h2,
.mock-intro-center h2,
.mock-latest-news h2,
.mock-green-card-section h2,
.mock-bordered-benefits h2,
.mock-device-focus h2 {
    margin: 0 0 18px;
    color: #4d4d4d;
    font-size: 2.45rem;
    line-height: 1.12;
    font-weight: 500;
}

.mock-copy-block p {
    line-height: 1.55;
}

.mock-service-band {
    padding: 66px 0 80px;
    background: radial-gradient(circle at 25% 40%, rgba(255,255,255,0.2), transparent 18%), repeating-linear-gradient(35deg, rgba(255,255,255,0.17) 0 1px, transparent 1px 78px), #d9d9d9;
    text-align: center;
}

    .mock-service-band h2 {
        margin: 0 0 38px;
        font-size: 2.1rem;
        font-weight: 500;
    }

        .mock-service-band h2 strong {
            color: var(--trf-green);
        }

.mock-service-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

    .mock-service-icons a {
        display: grid;
        gap: 18px;
        justify-items: center;
        color: #fff;
        text-decoration: none;
    }

    .mock-service-icons strong {
        min-width: 220px;
        min-height: 44px;
        padding: 10px 20px;
        border-radius: 999px;
        background: var(--trf-green);
        color: #fff;
        font-size: 0.98rem;
    }

.mock-round-icon {
    display: inline-grid;
    place-items: center;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0 22%, #eeeeee 23% 100%);
    border: 2px solid rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 8px 22px rgba(255,255,255,0.8), 0 10px 22px rgba(0,0,0,0.16);
    color: var(--trf-green);
    font-weight: 900;
    line-height: 1;
}

    .mock-round-icon::before {
        content: "TRF";
        font-size: 1.95rem;
    }

.mock-round-icon--tools::before {
    content: "RF";
}

.mock-round-icon--recycle::before {
    content: "RC";
}

.mock-round-icon--returns::before {
    content: "RM";
}

.mock-round-icon--devices::before {
    content: "IT";
}

.mock-round-icon--secure::before {
    content: "DS";
}

.mock-round-icon--chart::before {
    content: "VA";
}

.mock-round-icon--heart::before {
    content: "CH";
}

.mock-round-icon--briefcase::before {
    content: "BS";
}

.mock-round-icon--people::before {
    content: "PS";
}

.mock-round-icon--planet::before {
    content: "ER";
}

.mock-round-icon--leaf::before {
    content: "R";
}

.mock-section-heading {
    position: relative;
    max-width: 940px;
    margin-bottom: 34px;
}

    .mock-section-heading h2 {
        margin-bottom: 8px;
    }

.mock-card-row--image {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

    .mock-card-row--image a {
        color: inherit;
        text-decoration: none;
    }

    .mock-card-row--image img {
        width: 100%;
        aspect-ratio: 1 / 0.86;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--trf-soft-shadow);
    }

    .mock-card-row--image strong {
        display: block;
        margin-top: 18px;
        color: #4d4d4d;
        font-size: 1.25rem;
    }

    .mock-card-row--image span {
        display: block;
        margin-top: 6px;
        color: #4d4d4d;
    }

.mock-returns-home {
    padding: 82px 0;
    background: repeating-linear-gradient(35deg, rgba(255,255,255,0.25) 0 1px, transparent 1px 82px), #d8d8d8;
}

.mock-returns-home__inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: center;
}

.mock-return-wheel {
    position: relative;
    width: min(430px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
    border-radius: 50%;
    background: conic-gradient(var(--trf-green-2) 0 72deg, var(--trf-green) 72deg 144deg, #565656 144deg 216deg, var(--trf-green) 216deg 288deg, var(--trf-green-2) 288deg 360deg);
    box-shadow: inset 0 0 0 58px #e6e6e6, var(--trf-soft-shadow);
    color: #fff;
}

    .mock-return-wheel strong {
        position: absolute;
        inset: 33%;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--trf-green);
        text-align: center;
        font-size: 1rem;
        text-transform: uppercase;
    }

    .mock-return-wheel span {
        position: absolute;
        width: 128px;
        color: #fff;
        font-size: 0.78rem;
        font-weight: 900;
        text-align: center;
        text-transform: uppercase;
    }

        .mock-return-wheel span:nth-child(1) {
            left: 38px;
            top: 54px;
            transform: rotate(-28deg);
        }

        .mock-return-wheel span:nth-child(2) {
            right: 28px;
            top: 80px;
            transform: rotate(30deg);
        }

        .mock-return-wheel span:nth-child(3) {
            right: 18px;
            bottom: 100px;
            transform: rotate(72deg);
        }

        .mock-return-wheel span:nth-child(4) {
            left: 136px;
            bottom: 32px;
        }

.mock-hover-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

    .mock-hover-cards a {
        position: relative;
        min-height: 320px;
        overflow: hidden;
        border-radius: 18px;
        color: #fff;
        text-decoration: none;
        box-shadow: var(--trf-soft-shadow);
    }

    .mock-hover-cards img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        transition: transform 220ms ease;
    }

    .mock-hover-cards a::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 105, 53, 0.78);
        opacity: 0;
        transition: opacity 180ms ease;
    }

    .mock-hover-cards strong,
    .mock-hover-cards em,
    .mock-hover-cards .mock-round-icon {
        position: absolute;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
    }

    .mock-hover-cards .mock-round-icon {
        top: 18px;
        width: 92px;
        height: 92px;
        font-size: 0.9rem;
    }

        .mock-hover-cards .mock-round-icon::before {
            font-size: 1.22rem;
        }

    .mock-hover-cards strong {
        bottom: 112px;
        width: 80%;
        text-align: center;
        font-size: 1.35rem;
    }

    .mock-hover-cards em {
        bottom: 52px;
        padding: 12px 28px;
        border-radius: 999px;
        background: #fff;
        color: var(--trf-green);
        font-style: normal;
        font-weight: 900;
    }

    .mock-hover-cards a:hover img {
        transform: scale(1.05);
    }

    .mock-hover-cards a:hover::after {
        opacity: 1;
    }

.mock-badge-cluster {
    position: relative;
    min-height: 360px;
}

    .mock-badge-cluster span {
        position: absolute;
        display: grid;
        place-items: center;
        width: 150px;
        height: 150px;
        border: 5px solid var(--trf-green);
        border-radius: 50%;
        background: rgba(255,255,255,0.76);
        color: #4d4d4d;
        text-align: center;
        font-weight: 900;
    }

        .mock-badge-cluster span:nth-child(1) {
            left: 8%;
            top: 38%;
        }

        .mock-badge-cluster span:nth-child(2) {
            left: 36%;
            top: 5%;
        }

        .mock-badge-cluster span:nth-child(3) {
            left: 38%;
            top: 52%;
        }

        .mock-badge-cluster span:nth-child(4) {
            right: 7%;
            top: 32%;
        }

.mock-latest-news {
    padding: 72px 0 82px;
    background: linear-gradient(90deg, #fff, #d8d8d8);
}

    .mock-latest-news h2 {
        margin-bottom: 34px;
    }

.mock-news-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

    .mock-news-row article {
        position: relative;
        overflow: hidden;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--trf-soft-shadow);
    }

        .mock-news-row article > span {
            position: absolute;
            top: 0;
            left: 26px;
            z-index: 2;
            min-width: 86px;
            min-height: 40px;
            display: inline-grid;
            place-items: center;
            border-radius: 0 0 12px 12px;
            background: #fff;
            color: var(--trf-green);
            font-weight: 900;
        }

    .mock-news-row img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

    .mock-news-row h3,
    .mock-news-row p {
        margin-inline: 26px;
    }

    .mock-news-row h3 {
        margin-top: 22px;
        color: #4d4d4d;
        font-size: 1.38rem;
        line-height: 1.16;
    }

    .mock-news-row p {
        color: #4d4d4d;
    }

    .mock-news-row article > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 8px 26px 28px;
        padding: 10px 18px;
        border-radius: 999px;
        background: var(--trf-green);
        color: #fff !important;
        text-decoration: none;
        font-weight: 900;
    }

        .mock-news-row article > a:hover,
        .mock-news-row article > a:focus-visible {
            color: #fff !important;
            background: #006638;
            text-decoration: none;
        }

.mock-newsletter {
    display: grid;
    justify-content: center;
    gap: 18px;
    margin-top: 56px;
    text-align: center;
}

    .mock-newsletter label {
        font-size: 1.72rem;
    }

        .mock-newsletter label strong {
            color: var(--trf-green);
        }

    .mock-newsletter div {
        display: grid;
        grid-template-columns: minmax(260px, 420px) 180px;
    }

    .mock-newsletter input {
        min-height: 46px;
        padding: 0 22px;
        border: 1px solid rgba(0,0,0,0.24);
        border-radius: 999px 0 0 999px;
        font: inherit;
    }

    .mock-newsletter button {
        min-height: 46px;
        border: 0;
        border-radius: 0 999px 999px 0;
        background: var(--trf-green);
        color: #fff;
        font-weight: 900;
    }

.mock-page-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(110px, 15vw) minmax(0, 1fr);
    align-items: center;
    min-height: 252px;
    background: #fff;
    overflow: hidden;
}

.mock-page-banner__icon {
    display: grid;
    place-items: center;
    height: 100%;
}

    .mock-page-banner__icon .mock-round-icon {
        width: 118px;
        height: 118px;
        box-shadow: none;
        border: 0;
        background: transparent;
        color: var(--trf-green);
    }

.mock-page-banner__panel {
    position: relative;
    min-height: 206px;
    display: grid;
    align-items: center;
    padding: 32px min(9vw, 150px) 32px 190px;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.23) 0 1px, transparent 1px 82px), repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 120px), #d7d7d7;
}

    .mock-page-banner__panel::before {
        content: "";
        position: absolute;
        left: -170px;
        top: 50%;
        width: 330px;
        height: 330px;
        transform: translateY(-50%);
        border-radius: 50%;
        border: 12px solid var(--trf-green);
        background: radial-gradient(circle at 62% 50%, rgba(0,105,53,0.24) 0 1px, transparent 2px) 0 0 / 13px 13px, #fff;
    }

.mock-page-banner h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #4d4d4d;
    font-size: 3.3rem;
    line-height: 1.08;
    font-weight: 400;
}

    .mock-page-banner h1 strong {
        color: var(--trf-green);
    }

.mock-page-banner p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0;
    color: #4d4d4d;
    font-size: 1.32rem;
}

.mock-intro-center {
    text-align: center;
    background: #f5f5f5;
}

    .mock-intro-center .mock-shell {
        max-width: 1040px;
    }

.mock-richtext {
    color: #4d4d4d;
    font-size: 1.12rem;
    line-height: 1.55;
}

    .mock-richtext p {
        margin: 0 auto 18px;
    }

    .mock-richtext a {
        color: var(--trf-green);
        font-weight: 900;
    }

.mock-service-feature {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
}

.mock-feature-panel,
.mock-benefit-panel {
    padding: 64px;
    box-shadow: var(--trf-shadow);
}

.mock-feature-panel {
    background: #fff;
    border: 6px solid var(--trf-green);
    border-radius: 88px 0 0 88px;
}

.mock-benefit-panel {
    background: var(--trf-green);
    color: #fff;
    border-radius: 0 88px 88px 0;
}

    .mock-feature-panel h2,
    .mock-benefit-panel h2 {
        margin-top: 0;
        font-size: 2.75rem;
        line-height: 1.12;
        font-weight: 500;
    }

        .mock-feature-panel h2 strong {
            color: var(--trf-green);
        }

.mock-feature-list {
    display: grid;
    gap: 44px;
    text-align: center;
}

    .mock-feature-list .mock-round-icon {
        width: 128px;
        height: 128px;
        box-shadow: none;
        background: var(--trf-green);
        color: #fff;
        margin-bottom: 12px;
    }

    .mock-feature-list article {
        display: grid;
        justify-items: center;
    }

    .mock-feature-list h3 {
        margin: 0 0 8px;
        color: var(--trf-green);
        font-size: 1.35rem;
    }

    .mock-feature-list p {
        margin: 0;
        color: #4d4d4d;
    }

.mock-benefit-panel ul {
    display: grid;
    gap: 26px;
    margin: 0;
    padding-left: 24px;
    font-size: 1.1rem;
}

.mock-benefit-panel li::marker {
    font-size: 1.4rem;
}

.mock-green-card-section {
    background: #f1f1f1;
    text-align: center;
}

.mock-green-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.mock-green-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-green-card-grid article {
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 36px 28px;
    border-radius: 12px;
    background: var(--trf-green);
    color: #fff;
    box-shadow: var(--trf-soft-shadow);
}

.mock-green-card-grid h3 {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.12;
}

.mock-green-card-grid p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.mock-process-cards .mock-shell {
    display: grid;
    gap: 42px;
}

.mock-process-cards article {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    min-height: 170px;
    border: 3px solid var(--trf-green);
    border-radius: 0 28px 28px 0;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--trf-soft-shadow);
}

    .mock-process-cards article:nth-child(even) {
        grid-template-columns: 1fr 280px;
        margin-left: auto;
        border-color: var(--trf-green-2);
        border-radius: 28px 0 0 28px;
    }

        .mock-process-cards article:nth-child(even) img {
            order: 2;
        }

.mock-process-cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mock-process-cards h3,
.mock-process-cards p {
    margin-left: 34px;
    margin-right: 34px;
}

.mock-process-cards h3 {
    color: var(--trf-green);
    font-size: 1.4rem;
}

.mock-bordered-benefits {
    background: #f4f4f4;
    text-align: center;
}

.mock-benefit-outline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 28px;
    margin-top: 64px;
    padding: 54px;
    border: 6px solid var(--trf-green);
    border-radius: 88px 88px 0 0;
    background: #fff;
}

    .mock-benefit-outline-grid article {
        position: relative;
        padding: 82px 28px 28px;
        border: 4px solid var(--trf-green);
        border-radius: 0 0 44px 44px;
    }

    .mock-benefit-outline-grid .mock-round-icon {
        position: absolute;
        left: 50%;
        top: -66px;
        width: 132px;
        height: 132px;
        transform: translateX(-50%);
        background: var(--trf-green);
        color: #fff;
    }

    .mock-benefit-outline-grid h3 {
        color: var(--trf-green);
        font-size: 1.34rem;
    }

.mock-green-statement {
    margin-top: -6px;
    padding: 62px;
    border-radius: 0 0 88px 88px;
    background: var(--trf-green);
    color: #fff;
}

    .mock-green-statement h2 {
        color: #fff;
    }

.mock-device-focus {
    background: #f2f2f2;
    text-align: center;
}

    .mock-device-focus img {
        width: min(760px, 100%);
        max-height: 360px;
        object-fit: cover;
        margin: 0 auto 56px;
        border-radius: 16px;
        box-shadow: var(--trf-soft-shadow);
    }

.mock-white-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-top: 48px;
}

    .mock-white-card-grid article {
        min-height: 330px;
        padding: 38px 30px;
        border: 5px solid var(--trf-green);
        border-radius: 28px;
        background: #fff;
        box-shadow: var(--trf-soft-shadow);
    }

    .mock-white-card-grid h3 {
        color: var(--trf-green);
        font-size: 1.8rem;
        line-height: 1.08;
    }

.mock-items-page {
    background: #fff;
    text-align: center;
}

.mock-category-block {
    padding: 62px 0 78px;
}

    .mock-category-block:nth-child(odd) {
        background: #fff;
    }

    .mock-category-block:nth-child(even) {
        background: #f7f7f7;
    }

    .mock-category-block h2 {
        margin: 0 0 34px;
        padding: 24px 0;
        background: linear-gradient(90deg, #fff, #d0d0d0, #fff);
        color: var(--trf-green);
        font-size: 2.65rem;
    }

    .mock-category-block > img {
        width: min(760px, 80%);
        max-height: 300px;
        object-fit: cover;
        margin: 0 auto 28px;
        border-radius: 16px;
    }

.mock-product-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    margin-bottom: 34px;
}

    .mock-product-bubbles span {
        min-width: 150px;
        min-height: 150px;
        display: grid;
        place-items: end center;
        padding: 0 18px 20px;
        border: 2px solid rgba(0,105,53,0.26);
        border-radius: 50%;
        background: radial-gradient(circle at 50% 42%, #fff 0 45%, #efefef 46% 100%);
        color: #fff;
        box-shadow: inset 0 -46px 0 var(--trf-green);
    }

.mock-product-bubbles--brands span {
    color: var(--trf-green);
    font-weight: 900;
    box-shadow: inset 0 -46px 0 var(--trf-green);
}

    .mock-product-bubbles--brands span::after {
        content: attr(data-label);
    }

.mock-page-cta {
    background: #f5f5f5;
    text-align: center;
    padding-top: 54px;
}

    .mock-page-cta p {
        max-width: 1370px;
        margin: 0 auto 22px;
        font-size: 1.35rem;
    }

    .mock-page-cta a {
        color: var(--trf-green);
        font-weight: 900;
    }

.mock-contact-section {
    padding: 110px 0 130px;
    background: linear-gradient(to right, #fff 0%, #fff 52%, #e5e5e5 100%);
}

.mock-contact-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    padding: 76px;
    border: 6px solid var(--trf-green);
    border-radius: 70px;
    background: #fff;
}

.mock-contact-details h2 {
    margin: 0 0 10px;
    color: var(--trf-green);
    font-size: 3.1rem;
}

.mock-contact-details dl {
    display: grid;
    gap: 36px;
    margin-top: 72px;
}

.mock-contact-details dt {
    color: #4d4d4d;
    font-size: 1.5rem;
    font-weight: 900;
}

.mock-contact-details dd {
    margin: 6px 0 0;
    color: #4d4d4d;
    font-size: 1.25rem;
}

.mock-contact-form {
    display: grid;
    gap: 22px;
    padding: 52px;
    border-radius: 54px;
    background: var(--trf-green);
    color: #fff;
}

    .mock-contact-form label {
        display: grid;
        gap: 8px;
        font-weight: 900;
        font-size: 1.15rem;
    }

    .mock-contact-form input,
    .mock-contact-form textarea {
        width: 100%;
        min-height: 56px;
        padding: 12px 16px;
        border: 3px solid var(--trf-green-2);
        border-radius: 8px;
        font: inherit;
    }

    .mock-contact-form textarea {
        min-height: 230px;
        resize: vertical;
    }

.mock-content-card {
    max-width: 960px;
    padding: 60px;
    border: 5px solid var(--trf-green);
    border-radius: 46px;
    background: #fff;
    box-shadow: var(--trf-soft-shadow);
}

.mock-about-page .mock-green-card-grid {
    margin-top: 40px;
}

.trf-mock-footer.site-footer {
    background: #fff;
    color: #4d4d4d;
}

.trf-mock-footer .site-footer__logo {
    width: 240px;
    filter: none;
}

.mock-footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 0.85fr 1.05fr;
    gap: 72px;
    padding: 72px 0 64px;
    border-bottom: 1px solid rgba(0,0,0,0.35);
}

    .mock-footer-grid h2 {
        margin: 0 0 22px;
        color: #4d4d4d;
        font-size: 1.65rem;
        text-transform: none;
    }

    .mock-footer-grid a {
        display: block;
        margin: 12px 0;
        color: #4d4d4d;
        font-weight: 700;
    }

    .mock-footer-grid p {
        color: #4d4d4d;
    }

.mock-social--footer {
    justify-self: start;
    margin-top: 18px;
}

.mock-footer-bottom {
    padding: 30px 0 52px;
    color: #4d4d4d;
    text-align: center;
}

.account-shell--mock-login,
.account-shell--mock-register {
    background: linear-gradient(90deg, #fff 0 62%, #e8e8e8 62% 100%);
}

.account-shell--mock-login {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.account-panel--mock {
    border: 5px solid var(--trf-green);
    border-radius: 52px;
    box-shadow: none;
    background: #fff;
}

    .account-panel--mock.account-panel--narrow {
        width: min(980px, 100%);
        max-width: 1370px;
        padding: 70px 120px;
    }

.form-heading--center {
    text-align: center;
}

    .form-heading--center h2 {
        color: var(--trf-green);
        font-size: 3rem;
    }

    .form-heading--center p {
        text-transform: uppercase;
        font-weight: 800;
    }

.account-form--mock {
    gap: 28px;
}

    .account-form--mock .form-field {
        gap: 8px;
    }

        .account-form--mock .form-field label {
            color: #4d4d4d;
            font-size: 1.12rem;
            font-weight: 900;
        }

        .account-form--mock .form-field input,
        .account-form--mock .form-field select {
            min-height: 52px;
            border: 3px solid var(--trf-green);
            border-radius: 7px;
            font-size: 1.05rem;
        }

            .account-form--mock .form-field input:focus,
            .account-form--mock .form-field select:focus,
            .mock-contact-form input:focus,
            .mock-contact-form textarea:focus,
            .mock-search input:focus {
                outline: 3px solid rgba(139,197,63,0.28);
            }

.form-actions--center {
    justify-content: center;
}

.mock-login-register-link {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
}

    .mock-login-register-link a:not(.mock-pill) {
        color: var(--trf-green);
        font-weight: 900;
    }

.account-shell--mock-register {
    padding-top: 80px;
}

    .account-shell--mock-register .account-panel--mock {
        max-width: 1080px;
        margin-inline: auto;
        padding: 70px 100px;
    }

.mock-form-section-title {
    margin: 38px -100px 28px;
    padding: 26px 100px;
    background: linear-gradient(90deg, #fff, #d9d9d9);
    color: var(--trf-green);
    text-align: center;
    font-size: 2.4rem;
}

.form-section--mock {
    padding: 0;
    border: 0;
    background: transparent;
}

.form-grid--mock {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 690px;
    margin-inline: auto;
}

.mock-find-address {
    justify-self: start;
    margin-top: 10px;
}

.mock-payment-label {
    margin: 0 0 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.segmented-choice--mock {
    justify-content: center;
}

    .segmented-choice--mock label {
        border: 0;
        background: transparent;
    }

        .segmented-choice--mock label.is-disabled {
            opacity: 0.48;
            cursor: not-allowed;
        }

@media (max-width: 1180px) {
    .mock-brandbar {
        grid-template-columns: 220px 1fr;
    }

    .mock-header-actions {
        grid-column: 2;
        justify-content: start;
    }

    .mock-search {
        justify-self: stretch;
    }

    .mock-nav {
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
    }

    .mock-contact-button {
        margin-left: 0;
    }
}

@media (max-width: 920px) {
    .mock-shell {
        width: min(100% - 32px, 1260px);
    }

    .mock-topbar__inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }

    .mock-contact-line,
    .mock-social {
        grid-column: auto;
        justify-self: center;
    }

    .mock-brandbar {
        grid-template-columns: 1fr auto;
    }

    .mock-brand img {
        width: 200px;
    }

    .mock-search,
    .mock-header-actions {
        grid-column: 1 / -1;
    }

    .mock-search {
        grid-template-columns: 1fr;
    }

    .mock-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        overflow: visible;
    }

        .mock-nav.is-open {
            display: flex;
        }

    .mock-contact-button {
        width: 100%;
    }

    .mock-home-hero__inner,
    .mock-split,
    .mock-split--image-left,
    .mock-returns-home__inner,
    .mock-service-feature,
    .mock-contact-card,
    .mock-footer-grid {
        grid-template-columns: 1fr;
    }

    .mock-home-hero {
        padding-top: 54px;
    }

    .mock-product-stage {
        min-height: 360px;
    }

    .mock-home-copy h1,
    .mock-page-banner h1 {
        font-size: 2.35rem;
    }

    .mock-stats__grid,
    .mock-service-icons,
    .mock-card-row--image,
    .mock-hover-cards,
    .mock-news-row,
    .mock-green-card-grid,
    .mock-green-card-grid--three,
    .mock-benefit-outline-grid,
    .mock-white-card-grid {
        grid-template-columns: 1fr;
    }

        .mock-stats__grid div {
            border-right: 0;
            border-bottom: 1px solid rgba(0,0,0,0.18);
            padding: 18px;
        }

    .mock-page-banner {
        grid-template-columns: 1fr;
    }

    .mock-page-banner__icon {
        display: none;
    }

    .mock-page-banner__panel {
        padding: 42px 24px;
    }

        .mock-page-banner__panel::before {
            opacity: 0.35;
        }

    .mock-feature-panel,
    .mock-benefit-panel {
        border-radius: 42px;
        padding: 36px 24px;
    }

    .mock-process-cards article,
    .mock-process-cards article:nth-child(even) {
        grid-template-columns: 1fr;
        margin-left: 0;
        border-radius: 28px;
    }

        .mock-process-cards article:nth-child(even) img {
            order: 0;
        }

    .mock-process-cards img {
        height: 220px;
    }

    .mock-contact-section {
        background: #f5f5f5;
        padding: 60px 0;
    }

    .mock-contact-card {
        padding: 32px;
        border-radius: 38px;
    }

    .account-panel--mock.account-panel--narrow,
    .account-shell--mock-register .account-panel--mock {
        padding: 34px 24px;
    }

    .mock-form-section-title {
        margin-left: -24px;
        margin-right: -24px;
        padding: 20px 24px;
        font-size: 1.9rem;
    }
}

@media (max-width: 560px) {
    .mock-contact-line {
        flex-direction: column;
        gap: 4px;
    }

        .mock-contact-line span {
            display: none;
        }

    .mock-header-actions,
    .mock-home-buttons,
    .mock-login-register-link {
        flex-direction: column;
        align-items: stretch;
    }

    .mock-pill,
    .mock-search button {
        width: 100%;
    }

    .mock-home-copy h1,
    .mock-copy-block h2,
    .mock-section-heading h2,
    .mock-intro-center h2,
    .mock-latest-news h2 {
        font-size: 2rem;
    }

    .mock-product-line__inner {
        flex-direction: column;
    }

    .mock-product-line img {
        width: 100%;
    }

    .mock-newsletter div {
        grid-template-columns: 1fr;
    }

    .mock-newsletter input,
    .mock-newsletter button {
        border-radius: 999px;
    }

    .mock-contact-form {
        padding: 24px;
        border-radius: 28px;
    }
}

/* Supplied mockup subpage header assets */
.mock-page-banner--asset {
    display: block;
    height: auto;
    min-height: 108px;
    padding: 0;
    background: #f2f2f2;
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
}

    .mock-page-banner--asset img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 178px;
        object-fit: cover;
        object-position: center center;
    }

@media (max-width: 760px) {
    .mock-page-banner--asset img {
        width: 100%;
        height: 176px;
        object-position: left center;
    }
}
/* Home Page.jpg reference match */
.home-reference {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.home-reference__slice {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #fff;
}

    .home-reference__slice img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }

.home-reference__hotspot {
    position: absolute;
    z-index: 2;
    display: block;
    overflow: hidden;
    color: transparent;
    text-indent: 120%;
    white-space: nowrap;
    border-radius: 999px;
    outline-offset: 4px;
}

    .home-reference__hotspot:focus-visible {
        outline: 3px solid var(--trf-green);
        background: rgba(0, 105, 53, 0.12);
    }

.hs-hero-laptops {
    left: 17.2%;
    top: 44.2%;
    width: 8.4%;
    height: 5.9%;
}

.hs-hero-printers {
    left: 26.2%;
    top: 44.2%;
    width: 7.5%;
    height: 5.9%;
}

.hs-hero-cartridges {
    left: 34.1%;
    top: 44.2%;
    width: 11.8%;
    height: 5.9%;
}

.hs-shop-products {
    left: 42.8%;
    top: 29.2%;
    width: 14.4%;
    height: 6.7%;
}

.hs-refurb-process {
    left: 51.7%;
    top: 82.7%;
    width: 13.8%;
    height: 7.1%;
}

.hs-contact-us {
    left: 66.7%;
    top: 82.7%;
    width: 8.8%;
    height: 7.1%;
}

.hs-service-refurb {
    left: 17.7%;
    top: 47.8%;
    width: 13.8%;
    height: 5.9%;
}

.hs-service-recycling {
    left: 34.0%;
    top: 47.8%;
    width: 13.8%;
    height: 5.9%;
}

.hs-service-returns {
    left: 50.3%;
    top: 47.8%;
    width: 13.8%;
    height: 5.9%;
}

.hs-service-itad {
    left: 66.5%;
    top: 47.8%;
    width: 13.8%;
    height: 5.9%;
}

.hs-itad-items {
    left: 15.8%;
    top: 8.8%;
    width: 16.8%;
    height: 31%;
    border-radius: 18px;
}

.hs-itad-erasure {
    left: 33.8%;
    top: 8.8%;
    width: 16.8%;
    height: 31%;
    border-radius: 18px;
}

.hs-itad-shredding {
    left: 51.6%;
    top: 8.8%;
    width: 16.8%;
    height: 31%;
    border-radius: 18px;
}

.hs-itad-disposal {
    left: 69.7%;
    top: 8.8%;
    width: 16.8%;
    height: 31%;
    border-radius: 18px;
}

.hs-returns-explore {
    left: 55.2%;
    top: 38.2%;
    width: 11.5%;
    height: 6.1%;
}

.hs-recycling-charity {
    left: 17.0%;
    top: 7.2%;
    width: 18.0%;
    height: 30%;
    border-radius: 18px;
}

.hs-recycling-business {
    left: 40.3%;
    top: 7.2%;
    width: 20.1%;
    height: 30%;
    border-radius: 18px;
}

.hs-recycling-public {
    left: 69.8%;
    top: 7.2%;
    width: 17.0%;
    height: 30%;
    border-radius: 18px;
}

.hs-accreditations {
    left: 15.7%;
    top: 76.7%;
    width: 11.0%;
    height: 6.4%;
}

.hs-news-one {
    left: 17.1%;
    top: 9.5%;
    width: 24.6%;
    height: 45%;
    border-radius: 22px;
}

.hs-news-two {
    left: 43.4%;
    top: 9.5%;
    width: 24.1%;
    height: 45%;
    border-radius: 22px;
}

.hs-news-three {
    left: 69.8%;
    top: 9.5%;
    width: 14.3%;
    height: 45%;
    border-radius: 18px;
}

.hs-newsletter-signup {
    left: 53.0%;
    top: 82.0%;
    width: 12.3%;
    height: 7.0%;
}

@media (max-width: 760px) {
    .home-reference {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .home-reference__slice {
        min-width: 1120px;
    }
}

/* Active demo-inspired homepage */
.interactive-home {
    background: #fff;
    color: #4d4d4d;
}

    .interactive-home .mock-flow {
        display: none;
    }

.trf-live-hero {
    min-height: 620px;
    padding: 72px 0 54px;
}

.trf-hero-slider {
    position: relative;
    min-height: 520px;
}

.trf-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(26px);
    transition: opacity 320ms ease, transform 320ms ease;
}

    .trf-hero-slide.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

.trf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 13px;
    color: var(--trf-green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

    .trf-kicker::before {
        content: "";
        width: 32px;
        height: 3px;
        border-radius: 999px;
        background: var(--trf-green-2);
    }

.trf-hero-copy h2 {
    margin: 0;
    max-width: 700px;
    color: #4d4d4d;
    font-size: 3.2rem;
    line-height: 1.08;
    font-weight: 500;
}

    .trf-hero-copy h2 strong {
        color: var(--trf-green);
    }

.trf-hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 24px;
    box-shadow: var(--trf-soft-shadow);
}

    .trf-hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 56%, rgba(0, 105, 53, 0.2));
    }

    .trf-hero-photo img {
        width: 100%;
        height: 100%;
        min-height: 430px;
        object-fit: cover;
    }

.trf-hero-stage img {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.trf-hero-stage:hover img {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22);
}

.trf-hero-stage:hover .mock-product-stage__main {
    transform: translateY(-8px) rotate(-1deg);
}

.trf-hero-stage:hover .mock-product-stage__printer {
    transform: translateY(6px) rotate(1deg);
}

.trf-hero-stage:hover .mock-product-stage__cart {
    transform: translateY(-4px) rotate(2deg);
}

.trf-slider-controls {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(0, 105, 53, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.trf-slider-arrow,
.trf-row-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--trf-green);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

    .trf-slider-arrow:hover,
    .trf-row-button:hover,
    .trf-slider-arrow:focus-visible,
    .trf-row-button:focus-visible {
        background: var(--trf-green-2);
        color: #173413;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0, 105, 53, 0.18);
    }

.trf-slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .trf-slider-dots button {
        width: 12px;
        height: 12px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #cfd9cf;
        cursor: pointer;
    }

        .trf-slider-dots button.is-active {
            width: 30px;
            border-radius: 999px;
            background: var(--trf-green);
        }

.trf-active-button {
    position: relative;
    overflow: hidden;
}

    .trf-active-button::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
        transform: translateX(-110%);
        transition: transform 420ms ease;
    }

    .trf-active-button:hover::after,
    .trf-active-button:focus-visible::after {
        transform: translateX(110%);
    }

.trf-product-strip {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trf-product-strip__inner,
.trf-card-carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 16px;
    align-items: center;
}

.trf-product-strip__viewport,
.trf-card-carousel__viewport,
.trf-news-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 12px 4px 26px;
}

    .trf-product-strip__viewport::-webkit-scrollbar,
    .trf-card-carousel__viewport::-webkit-scrollbar,
    .trf-news-row::-webkit-scrollbar {
        display: none;
    }

.trf-product-route {
    flex: 0 0 min(290px, 82vw);
    scroll-snap-align: start;
    color: #4d4d4d;
    text-decoration: none;
}

    .trf-product-route img {
        width: 100%;
        height: 155px;
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .trf-product-route strong,
    .trf-product-route span {
        display: block;
    }

    .trf-product-route strong {
        margin-top: 14px;
        font-size: 1.1rem;
    }

    .trf-product-route span {
        color: #4d4d4d;
    }

    .trf-product-route:hover img,
    .trf-product-route:focus-visible img {
        transform: translateY(-4px);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
    }

.trf-stats .mock-stats__grid {
    margin: 0 auto;
}

.trf-intro-section,
.trf-accreditations-section {
    background: #fff;
}

.trf-tilt-card {
    transition: transform 190ms ease;
}

    .trf-tilt-card:hover {
        transform: translateY(-6px) rotate(0.7deg);
    }

.trf-service-band {
    position: relative;
}

.trf-service-tile {
    transition: transform 180ms ease;
}

    .trf-service-tile .mock-round-icon {
        transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .trf-service-tile:hover,
    .trf-service-tile:focus-visible {
        transform: translateY(-8px);
    }

        .trf-service-tile:hover .mock-round-icon,
        .trf-service-tile:focus-visible .mock-round-icon {
            background: var(--trf-green);
            color: #fff;
            box-shadow: 0 16px 32px rgba(0, 105, 53, 0.24);
        }

.trf-card-carousel-section {
    background: #fff;
}

.trf-action-card {
    position: relative;
    flex: 0 0 min(285px, 82vw);
    min-height: 315px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    scroll-snap-align: start;
    box-shadow: var(--trf-soft-shadow);
    isolation: isolate;
}

    .trf-action-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 105, 53, 0.88));
    }

    .trf-action-card img {
        position: absolute;
        inset: 0;
        z-index: -2;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 220ms ease;
    }

    .trf-action-card strong,
    .trf-action-card span {
        position: absolute;
        left: 24px;
        right: 24px;
    }

    .trf-action-card strong {
        bottom: 66px;
        font-size: 1.42rem;
        line-height: 1.12;
    }

    .trf-action-card span {
        bottom: 24px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 900;
    }

        .trf-action-card span::after {
            content: "";
            width: 28px;
            height: 2px;
            background: currentColor;
            transition: width 160ms ease;
        }

    .trf-action-card:hover img,
    .trf-action-card:focus-visible img {
        transform: scale(1.06);
    }

    .trf-action-card:hover span::after,
    .trf-action-card:focus-visible span::after {
        width: 42px;
    }

.trf-return-wheel {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

    .trf-return-wheel:hover,
    .trf-return-wheel:focus-visible {
        transform: rotate(-3deg) scale(1.02);
        box-shadow: inset 0 0 0 58px #e6e6e6, 0 24px 48px rgba(0, 105, 53, 0.22);
    }

.trf-recycling-section {
    background: #fff;
}

    .trf-recycling-section .mock-hover-cards a {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

        .trf-recycling-section .mock-hover-cards a:hover,
        .trf-recycling-section .mock-hover-cards a:focus-visible {
            transform: translateY(-6px);
        }

            .trf-recycling-section .mock-hover-cards a:focus-visible::after {
                opacity: 1;
            }

.trf-accreditations-section .mock-badge-cluster span {
    transition: transform 180ms ease, background 180ms ease;
}

    .trf-accreditations-section .mock-badge-cluster span:hover {
        background: #fff;
        transform: translateY(-5px);
    }

.trf-news-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.trf-inline-controls {
    display: inline-flex;
    gap: 10px;
}

.trf-news-row {
    display: flex;
}

    .trf-news-row article {
        flex: 0 0 min(360px, 86vw);
        scroll-snap-align: start;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

        .trf-news-row article:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
        }

.trf-newsletter input:focus,
.trf-newsletter button:focus-visible {
    outline: 3px solid rgba(0, 105, 53, 0.22);
    outline-offset: 2px;
}

.trf-row-button[disabled] {
    opacity: 0.36;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (min-width: 1220px) {
    .trf-product-route {
        flex-basis: calc((100% - 72px) / 4);
    }

    .trf-action-card {
        flex-basis: calc((100% - 72px) / 4);
    }
}

@media (max-width: 980px) {
    .trf-live-hero {
        padding-top: 54px;
    }

    .trf-hero-slider {
        height: auto;
        min-height: 108px;
        padding-bottom: 74px;
    }

    .trf-hero-slide,
    .trf-hero-slide.is-active {
        grid-template-columns: 1fr;
    }

    .trf-hero-slide {
        align-items: start;
    }

    .trf-hero-copy h2 {
        font-size: 2.35rem;
    }

    .trf-slider-controls {
        bottom: 0;
    }

    .trf-product-strip__inner,
    .trf-card-carousel {
        grid-template-columns: minmax(0, 1fr);
    }

        .trf-product-strip__inner > .trf-row-button,
        .trf-card-carousel > .trf-row-button {
            display: none;
        }
}

@media (max-width: 640px) {
    .trf-live-hero {
        height: auto;
        min-height: 108px;
        padding: 42px 0 34px;
    }

    .trf-hero-photo,
    .trf-hero-photo img {
        min-height: 300px;
    }

    .trf-slider-controls {
        left: 50%;
        transform: translateX(-50%);
    }

    .trf-news-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .trf-row-button {
        width: 38px;
        height: 38px;
    }
}

/* Supplied TRF source asset refinements */
.trf-hero-stage img,
.trf-product-route--product img,
.trf-news-row img[src*="/products/"] {
    object-fit: contain;
    padding: 16px;
    background: #f7f8f5;
}

.trf-hero-stage .mock-product-stage__cart {
    padding: 12px;
}

.trf-product-route--product img {
    padding: 18px;
}

.mock-round-icon--asset::before {
    content: none !important;
}

.mock-round-icon--asset img {
    width: 66%;
    height: 66%;
    object-fit: contain;
}

.mock-hover-cards .mock-round-icon--asset img {
    width: 68%;
    height: 68%;
}

.trf-accreditations-section .mock-badge-cluster span {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.trf-accreditations-section .mock-badge-cluster img {
    max-width: 108px;
    max-height: 82px;
    object-fit: contain;
}

.trf-action-card img,
.mock-hover-cards img {
    object-position: center;
}

/* Reference demo homepage match */
.trf-mock-header {
    position: relative;
    top: auto;
    background: #fff;
    box-shadow: none;
}

    .trf-mock-header .mock-social {
        justify-self: end;
        gap: 19px;
    }

        .trf-mock-header .mock-social a {
            width: auto;
            height: auto;
            border: 0;
            background: transparent;
            color: var(--trf-green);
            font-size: 0.72rem;
            font-weight: 900;
        }

.trf-reference-home {
    --reference-green: #007a3d;
    background: #fff;
    font-family: var(--trf-font-primary);
}

    .trf-reference-home .mock-shell {
        width: min(100% - 48px, 1380px);
    }

.trf-reference-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: #f6f7f5;
}

.trf-reference-hero__slides,
.trf-reference-hero__bg,
.trf-reference-hero__bg::after {
    position: absolute;
    inset: 0;
}

.trf-reference-hero__bg {
    display: block;
    background-image: var(--hero-bg);
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.012);
    transition: opacity 520ms ease, transform 4200ms ease;
}

    .trf-reference-hero__bg::after {
        content: "";
        background: linear-gradient(90deg, rgba(255,255,255,0.94) 0 33%, rgba(255,255,255,0.62) 48%, rgba(255,255,255,0.1) 100%);
    }

    .trf-reference-hero__bg.is-active {
        opacity: 1;
        transform: scale(1);
    }

.trf-reference-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.trf-reference-hero__copy {
    width: min(670px, 56vw);
    padding-top: 34px;
}

.trf-reference-hero h1 {
    margin: 0;
    color: #4d4d4d;
    font-size: 3.28rem;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0;
}

    .trf-reference-hero h1 strong,
    .trf-reference-copy h2 strong,
    .trf-reference-section-heading h2 strong,
    .trf-news-heading h2 strong {
        color: var(--reference-green);
        font-weight: 800;
    }

.trf-reference-hero p {
    max-width: 610px;
    margin: 24px 0 0;
    color: #4d4d4d;
    font-size: 1.14rem;
    line-height: 1.52;
    font-weight: 700;
}

.trf-reference-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.trf-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 17px;
    border: 2px solid var(--reference-green);
    border-radius: 999px;
    color: var(--reference-green);
    background: rgba(255,255,255,0.24);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

    .trf-outline-button:hover,
    .trf-outline-button:focus-visible {
        background: var(--reference-green);
        color: #fff;
        transform: translateY(-2px);
    }

.trf-reference-hero__controls {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.trf-reference-proof {
    position: relative;
    overflow: hidden;
    padding: 52px 0 58px;
    background: #fff;
}

    .trf-reference-proof::before,
    .trf-reference-refurb::before,
    .trf-reference-returns::before {
        content: "";
        position: absolute;
        inset: 18% 10% auto auto;
        width: 680px;
        height: 340px;
        pointer-events: none;
        background: radial-gradient(ellipse at center, rgba(61, 219, 202, 0.18), transparent 64%);
        transform: rotate(-14deg);
    }

.trf-reference-range {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1320px);
    margin: 0 auto 28px;
}

    .trf-reference-range img {
        width: 100%;
        max-height: 330px;
        object-fit: contain;
    }

.trf-reference-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

    .trf-reference-stats div {
        min-height: 185px;
        display: grid;
        align-content: center;
        gap: 12px;
        padding: 8px 28px;
        border-right: 1px solid rgba(0, 0, 0, 0.35);
    }

        .trf-reference-stats div:last-child {
            border-right: 0;
        }

    .trf-reference-stats strong {
        color: var(--reference-green);
        font-size: 2.85rem;
        line-height: 1;
        font-weight: 900;
    }

    .trf-reference-stats span {
        color: #4d4d4d;
        font-size: 1.42rem;
        line-height: 1.27;
        font-weight: 700;
    }

.trf-reference-shop {
    display: flex;
    width: max-content;
    min-width: 214px;
    min-height: 58px;
    margin: 28px auto 0;
    align-items: center;
    justify-content: center;
}

.trf-reference-refurb {
    position: relative;
    overflow: hidden;
    padding: 36px 0 84px;
    background: #fff;
}

    .trf-reference-refurb::before {
        inset: auto auto 12% -90px;
        transform: rotate(18deg);
    }

.trf-reference-refurb__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
    gap: 54px;
    align-items: center;
}

.trf-reference-refurb__image img {
    width: 100%;
    object-fit: contain;
}

.trf-reference-copy h2,
.trf-reference-section-heading h2,
.trf-news-heading h2 {
    margin: 0 0 22px;
    color: #4d4d4d;
    font-size: 2.72rem;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0;
}

.trf-reference-copy p,
.trf-reference-section-heading p {
    color: #4d4d4d;
    font-size: 1.06rem;
    line-height: 1.56;
}

.trf-reference-copy a:not(.mock-pill):not(.trf-outline-button) {
    color: var(--reference-green);
    font-weight: 700;
}

.trf-reference-services {
    padding: 76px 0 86px;
    background-color: #e7e7e7;
    background-image: linear-gradient(rgba(231,231,231,0.9), rgba(231,231,231,0.9)), url('/images/trf-source/reference/our-services-bg.png');
    background-size: 560px auto;
    background-position: center;
}

    .trf-reference-services h2 {
        margin-bottom: 52px;
        color: #4d4d4d;
        font-size: 2.6rem;
        font-weight: 400;
    }

    .trf-reference-services .mock-service-icons {
        gap: 58px;
    }

    .trf-reference-services .mock-round-icon {
        width: 236px;
        height: 236px;
        background: radial-gradient(circle at 34% 28%, #fff 0 18%, #d9d9d9 56%, #bdbdbd 100%);
        box-shadow: inset 0 12px 24px rgba(255,255,255,0.7), 0 14px 28px rgba(0,0,0,0.17);
    }

        .trf-reference-services .mock-round-icon img {
            width: 62%;
            height: 62%;
        }

    .trf-reference-services .mock-service-icons strong {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

.trf-reference-itad {
    padding: 72px 0 78px;
    background: #fff;
}

.trf-reference-section-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 34px;
}

    .trf-reference-section-heading h2 {
        font-size: 2.72rem;
    }

    .trf-reference-section-heading p {
        max-width: 1250px;
        margin: 0;
    }

.trf-reference-itad .trf-card-carousel {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
}

    .trf-reference-itad .trf-card-carousel > .trf-row-button:first-child {
        order: 2;
        align-self: start;
        margin-top: -82px;
    }

    .trf-reference-itad .trf-card-carousel > .trf-row-button:last-child {
        order: 3;
        align-self: start;
        margin-top: -82px;
    }

.trf-reference-itad .trf-card-carousel__viewport {
    order: 1;
    grid-column: 1 / -1;
    gap: 30px;
    padding-bottom: 12px;
}

.trf-reference-itad-card {
    flex: 0 0 min(370px, 82vw);
    color: #4d4d4d;
    text-decoration: none;
    scroll-snap-align: start;
}

    .trf-reference-itad-card img {
        width: 100%;
        height: 290px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .trf-reference-itad-card strong,
    .trf-reference-itad-card span {
        display: block;
    }

    .trf-reference-itad-card strong {
        margin-top: 22px;
        font-size: 1.42rem;
        line-height: 1.15;
    }

    .trf-reference-itad-card span {
        margin-top: 12px;
        color: #4d4d4d;
        font-size: 1.02rem;
    }

    .trf-reference-itad-card:hover img,
    .trf-reference-itad-card:focus-visible img {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    }

.trf-reference-returns {
    position: relative;
    overflow: hidden;
    padding: 74px 0 80px;
    background-color: #e7e7e7;
    background-image: linear-gradient(rgba(231,231,231,0.84), rgba(231,231,231,0.84)), url('/images/trf-source/reference/our-services-bg.png');
    background-size: 640px auto;
}

.trf-reference-returns__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1.02fr);
    gap: 72px;
    align-items: center;
}

.trf-reference-returns__image img {
    width: min(620px, 100%);
    margin-inline: auto;
}

.trf-reference-returns .trf-reference-shop {
    margin-left: 0;
}

.trf-accreditations-section {
    background: #fff;
}

@media (max-width: 1180px) {

    .trf-reference-hero__copy {
        width: min(650px, 68vw);
    }

    .trf-reference-stats,
    .trf-reference-refurb__inner,
    .trf-reference-returns__inner {
        grid-template-columns: 1fr 1fr;
    }

    .trf-reference-services .mock-service-icons {
        gap: 26px;
    }

    .trf-reference-services .mock-round-icon {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 900px) {
    .trf-mock-header .mock-topbar__inner,
    .trf-mock-header .mock-brandbar,
    .trf-mock-header .mock-nav,
    .trf-reference-home .mock-shell {
        width: min(100% - 32px, 1380px);
    }

    .trf-mock-header .mock-brandbar,
    .trf-reference-refurb__inner,
    .trf-reference-returns__inner,
    .trf-reference-stats {
        grid-template-columns: 1fr;
    }

    .trf-reference-hero,
    .trf-reference-hero__inner {
        min-height: 620px;
    }

    .trf-reference-hero__copy {
        width: 100%;
    }

    .trf-reference-hero h1 {
        font-size: 2.45rem;
    }

    .trf-reference-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    }

        .trf-reference-stats div:last-child {
            border-bottom: 0;
        }

    .trf-reference-services .mock-service-icons {
        grid-template-columns: 1fr 1fr;
    }

    .trf-reference-itad .trf-card-carousel {
        grid-template-columns: 1fr;
    }

        .trf-reference-itad .trf-card-carousel > .trf-row-button {
            display: none;
        }
}

@media (max-width: 560px) {
    .trf-reference-buttons,
    .trf-outline-button {
        width: 100%;
    }

    .trf-reference-services .mock-service-icons {
        grid-template-columns: 1fr;
    }
}

/* Reference interaction polish */
.trf-mock-header,
.trf-reference-home,
.trf-mock-footer {
    font-family: var(--trf-font-primary);
}

    .trf-reference-home h1,
    .trf-reference-home h2,
    .trf-reference-home h3,
    .trf-reference-home p,
    .trf-reference-home a,
    .trf-reference-home button,
    .trf-mock-header a,
    .trf-mock-header button,
    .trf-mock-header input {
        letter-spacing: 0;
    }

    .trf-mock-header .mock-pill,
    .trf-mock-header .mock-search button,
    .trf-mock-header .mock-contact-button,
    .trf-reference-shop,
    .trf-news-row a,
    .trf-newsletter button,
    .trf-outline-button,
    .trf-row-button {
        font-family: var(--trf-font-primary);
        font-weight: 800;
        transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

        .trf-mock-header .mock-pill:hover,
        .trf-mock-header .mock-search button:hover,
        .trf-mock-header .mock-contact-button:hover,
        .trf-reference-shop:hover,
        .trf-news-row a:hover,
        .trf-newsletter button:hover,
        .trf-outline-button:hover,
        .trf-row-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 13px 28px rgba(0, 105, 53, 0.18);
        }

.trf-reference-hero {
    min-height: 692px;
}

.trf-reference-hero__inner {
    min-height: 692px;
}

.trf-reference-hero h1 {
    max-width: 720px;
    font-size: 3.26rem;
    font-weight: 400;
}

    .trf-reference-hero h1 strong {
        font-weight: 700;
    }

.trf-reference-hero p {
    max-width: 620px;
    font-size: 1.03rem;
    font-weight: 700;
}

.trf-outline-button {
    min-height: 50px;
    padding: 0 18px;
    border-width: 2px;
    font-size: 0.82rem;
}

.trf-reference-proof {
    padding-top: 42px;
    padding-bottom: 74px;
}

.trf-reference-range {
    width: min(100% - 48px, 1280px);
    margin-bottom: 24px;
}

.trf-reference-stats {
    max-width: 1240px;
}

    .trf-reference-stats div {
        min-height: 190px;
    }

    .trf-reference-stats strong {
        font-size: 2.72rem;
    }

    .trf-reference-stats span {
        font-size: 1.27rem;
        font-weight: 700;
    }

.trf-reference-refurb {
    padding-top: 18px;
    padding-bottom: 82px;
}

.trf-reference-refurb__inner {
    gap: 70px;
}

.trf-reference-copy h2,
.trf-reference-section-heading h2,
.trf-news-heading h2,
.trf-recycling-section .mock-section-heading h2 {
    font-size: 2.65rem;
    font-weight: 400;
}

.trf-reference-copy p,
.trf-reference-section-heading p,
.trf-recycling-section .mock-section-heading p {
    font-size: 1.02rem;
    line-height: 1.62;
}

.trf-reference-services {
    padding-top: 72px;
    padding-bottom: 82px;
    background-size: 620px auto;
}

    .trf-reference-services h2 {
        margin-bottom: 54px;
        font-size: 2.55rem;
    }

    .trf-reference-services .mock-service-icons a {
        gap: 30px;
    }

    .trf-reference-services .mock-round-icon {
        width: 238px;
        height: 238px;
        border: 1px solid rgba(0,0,0,0.18);
    }

.trf-service-tile .mock-round-icon img {
    transition: transform 220ms ease;
}

.trf-service-tile:hover .mock-round-icon,
.trf-service-tile:focus-visible .mock-round-icon,
.trf-service-tile.is-active .mock-round-icon {
    transform: translateY(-8px) scale(1.03);
    background: radial-gradient(circle at 34% 28%, #fff 0 18%, #dcdcdc 56%, #b8b8b8 100%);
}

    .trf-service-tile:hover .mock-round-icon img,
    .trf-service-tile:focus-visible .mock-round-icon img,
    .trf-service-tile.is-active .mock-round-icon img {
        transform: scale(1.08);
    }

.trf-reference-itad {
    padding-top: 72px;
    padding-bottom: 84px;
}

.trf-reference-section-heading--with-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 34px;
}

.trf-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.trf-row-button {
    width: 42px;
    height: 42px;
    background: var(--reference-green);
    border: 0;
    color: #fff;
    font-size: 1.65rem;
}

    .trf-row-button[disabled] {
        opacity: 0.5;
    }

.trf-card-carousel__viewport--itad {
    gap: 30px;
    padding: 4px 0 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .trf-card-carousel__viewport--itad::-webkit-scrollbar {
        display: none;
    }

    .trf-card-carousel__viewport--itad .trf-reference-itad-card {
        flex: 0 0 calc((100% - 90px) / 3.55);
        min-width: 330px;
    }

.trf-reference-itad-card img {
    height: 292px;
    border-radius: 8px;
}

.trf-reference-itad-card strong {
    margin-top: 22px;
    font-size: 1.34rem;
    font-weight: 700;
}

.trf-reference-itad-card span {
    color: #4d4d4d;
    font-size: 0.98rem;
}

.trf-reference-itad-card:hover img,
.trf-reference-itad-card:focus-visible img,
.trf-reference-itad-card.is-active img {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

.trf-reference-returns {
    min-height: 730px;
    display: grid;
    align-items: center;
    padding-top: 78px;
    padding-bottom: 88px;
}

.trf-reference-returns__image img {
    width: min(670px, 100%);
}

.trf-recycling-section {
    padding-top: 82px;
    padding-bottom: 96px;
    background: #fff;
}

    .trf-recycling-section .mock-section-heading {
        display: block;
        max-width: 1180px;
        margin-bottom: 104px;
    }

        .trf-recycling-section .mock-section-heading h2 {
            margin-bottom: 18px;
        }

        .trf-recycling-section .mock-section-heading p {
            max-width: 1100px;
        }

    .trf-recycling-section .mock-hover-cards {
        gap: 30px;
        align-items: start;
    }

        .trf-recycling-section .mock-hover-cards a {
            position: relative;
            display: grid;
            height: 398px;
            min-height: 398px;
            overflow: visible;
            color: #4d4d4d;
            text-decoration: none;
            box-shadow: none;
        }

            .trf-recycling-section .mock-hover-cards a::after {
                content: "";
                position: absolute;
                inset: 0;
                z-index: 1;
                width: 100%;
                height: 398px;
                border-radius: 12px;
                background: rgba(0, 105, 53, 0.78);
                opacity: 0;
                pointer-events: none;
                transition: opacity 180ms ease;
            }

            .trf-recycling-section .mock-hover-cards a:hover::after,
            .trf-recycling-section .mock-hover-cards a:focus-visible::after,
            .trf-recycling-section .mock-hover-cards a.is-active::after {
                opacity: 1;
            }

            .trf-recycling-section .mock-hover-cards a > img {
                width: 100%;
                height: 398px;
                min-height: 398px;
                object-fit: cover;
                border-radius: 12px;
                box-shadow: 0 13px 30px rgba(0, 0, 0, 0.09);
                transition: transform 220ms ease, box-shadow 180ms ease;
            }

        .trf-recycling-section .mock-hover-cards .mock-round-icon {
            position: absolute;
            z-index: 3;
            left: 50%;
            top: -66px;
            width: 140px;
            height: 140px;
            transform: translateX(-50%);
            border: 3px solid var(--reference-green);
            background: #fff;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
        }

        .trf-recycling-section .mock-hover-cards strong,
        .trf-recycling-section .mock-hover-cards em,
        .trf-recycling-section .mock-hover-cards .trf-card-copy {
            position: absolute;
            z-index: 2;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .trf-recycling-section .mock-hover-cards strong {
            top: 108px;
            width: 86%;
            color: #4d4d4d;
            font-size: 28px;
            font-weight: 500;
            line-height: 1.05;
        }

        .trf-recycling-section .mock-hover-cards .trf-card-copy {
            top: 166px;
            width: 82%;
            color: #fff;
            font-size: 18px;
            line-height: 1.35;
            opacity: 0;
            transition: opacity 180ms ease;
        }

        .trf-recycling-section .mock-hover-cards em {
            top: 276px;
            justify-self: center;
            padding: 11px 28px;
            border-radius: 999px;
            background: var(--reference-green);
            color: #fff;
            font-style: normal;
        }

        .trf-recycling-section .mock-hover-cards a:hover img,
        .trf-recycling-section .mock-hover-cards a:focus-visible img,
        .trf-recycling-section .mock-hover-cards a.is-active img {
            transform: scale(1.025);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
        }

        .trf-recycling-section .mock-hover-cards a:hover > strong,
        .trf-recycling-section .mock-hover-cards a:focus-visible > strong,
        .trf-recycling-section .mock-hover-cards a.is-active > strong {
            color: #fff !important;
        }

        .trf-recycling-section .mock-hover-cards a:hover .trf-card-copy,
        .trf-recycling-section .mock-hover-cards a:focus-visible .trf-card-copy,
        .trf-recycling-section .mock-hover-cards a.is-active .trf-card-copy {
            opacity: 1;
        }

.trf-news-section {
    padding: 86px 0 88px;
    background: linear-gradient(90deg, #f7f7f7, #d9d9d9);
}

.trf-news-heading {
    display: block;
    margin-bottom: 34px;
    text-align: center;
}

    .trf-news-heading h2 {
        margin: 0;
    }

.trf-news-row {
    gap: 30px;
    padding: 8px 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    .trf-news-row::-webkit-scrollbar {
        display: none;
    }

    .trf-news-row article {
        flex: 0 0 calc((100% - 60px) / 3);
        min-width: 330px;
        overflow: hidden;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

        .trf-news-row article > span {
            display: none;
        }

    .trf-news-row img {
        width: 100%;
        height: 235px;
        object-fit: cover;
        background: #d8d8d8;
    }

        .trf-news-row img[src*="news-eco-services"],
        .trf-news-row img[src*="news-simple-recycling"],
        .trf-news-row img[src*="news-smart-recycling"] {
            object-fit: cover;
            padding: 0;
        }

    .trf-news-row h3 {
        margin: 30px 30px 0;
        color: #4d4d4d;
        font-size: 1.32rem;
        line-height: 1.14;
        font-weight: 700;
    }

    .trf-news-row p {
        margin: 22px 30px 0;
        color: #4d4d4d;
        font-size: 1rem;
        line-height: 1.45;
    }

    .trf-news-row a {
        margin: 28px 30px 34px;
        min-width: 154px;
        min-height: 45px;
        padding: 0 24px;
        border-radius: 999px;
        background: var(--reference-green);
        color: #fff;
        text-transform: uppercase;
    }

    .trf-news-row article:hover,
    .trf-news-row article:focus-within,
    .trf-news-row article.is-active {
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(0,0,0,0.14);
    }

.trf-scroll-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 78px;
}

    .trf-scroll-dots button {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(0, 105, 53, 0.22);
        cursor: pointer;
    }

        .trf-scroll-dots button.is-active {
            background: var(--reference-green);
        }

.trf-newsletter {
    margin-top: 0;
}

    .trf-newsletter label {
        color: #4d4d4d;
        font-size: 2.42rem;
        font-weight: 400;
    }

    .trf-newsletter div {
        grid-template-columns: minmax(320px, 550px) 235px;
        margin-top: 16px;
    }

    .trf-newsletter input,
    .trf-newsletter button {
        min-height: 61px;
    }

    .trf-newsletter input {
        border: 1px solid var(--reference-green);
        border-radius: 999px 0 0 999px;
        padding-inline: 22px;
    }

    .trf-newsletter button {
        border-radius: 0 999px 999px 0;
        background: var(--reference-green);
        font-size: 1rem;
    }

@media (max-width: 980px) {
    .trf-card-carousel__viewport--itad .trf-reference-itad-card,
    .trf-news-row article {
        flex-basis: min(390px, 84vw);
    }

    .trf-reference-section-heading--with-controls {
        grid-template-columns: 1fr;
    }

    .trf-carousel-controls {
        justify-self: start;
    }
}

.trf-mock-header .mock-pill,
.trf-mock-header .mock-search button,
.trf-mock-header .mock-contact-button,
.trf-reference-shop,
.trf-news-row a,
.trf-newsletter button,
.trf-outline-button,
.trf-row-button {
    font-weight: 500;
}

.trf-reference-hero p {
    font-size: 1.125rem;
    line-height: 1.66;
    font-weight: 500;
}

.trf-reference-copy p,
.trf-reference-section-heading p,
.trf-recycling-section .mock-section-heading p,
.trf-news-row p {
    font-weight: 500;
}

.trf-reference-hero h1 {
    font-size: 2.94rem;
    line-height: 1.2;
}

.trf-outline-button {
    font-size: 1rem;
    line-height: 1;
}

/* Demo visual alignment pass */
.mock-contact-line {
    gap: 18px;
    color: #4d4d4d;
    font-weight: 600;
}

    .mock-contact-line a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

.mock-contact-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.75);
}

.mock-contact-icon,
.mock-button-icon {
    display: inline-block;
    flex: 0 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.mock-contact-icon {
    width: 18px;
    height: 18px;
}

.mock-contact-icon--phone {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.81a2 2 0 0 1-.45 2.11L8.05 9.91a16 16 0 0 0 6.04 6.04l1.27-1.27a2 2 0 0 1 2.11-.45c.91.31 1.85.53 2.81.66A2 2 0 0 1 22 16.92Z' stroke='%23007a3d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mock-contact-icon--mail {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' stroke='%23007a3d' stroke-width='1.7'/%3E%3Cpath d='m4 7 8 6 8-6' stroke='%23007a3d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mock-button-icon {
    width: 17px;
    height: 17px;
    margin-right: 7px;
}

.mock-button-icon--cart {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='20' r='1.7' stroke='%23007a3d' stroke-width='1.7'/%3E%3Ccircle cx='18' cy='20' r='1.7' stroke='%23007a3d' stroke-width='1.7'/%3E%3Cpath d='M2 3h3l2.2 11.2a2 2 0 0 0 2 1.6h7.7a2 2 0 0 0 2-1.5L20.5 7H6' stroke='%23007a3d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mock-pill--solid .mock-button-icon--user {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='white' stroke-width='1.8'/%3E%3C/svg%3E");
}

.mock-social a {
    position: relative;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    color: var(--trf-green);
    font-size: 0;
}

    .mock-social a::before,
    .mock-social a::after {
        content: "";
        position: absolute;
        display: block;
    }

.mock-social-link--youtube::before {
    left: 1px;
    top: 4px;
    width: 16px;
    height: 11px;
    border-radius: 3px;
    background: currentColor;
}

.mock-social-link--youtube::after {
    left: 7px;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 5px solid #fff;
}

.mock-social-link--instagram::before {
    inset: 2px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.mock-social-link--instagram::after {
    left: 6px;
    top: 6px;
    width: 6px;
    height: 6px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.mock-social-link--x::before,
.mock-social-link--tumblr::before {
    inset: 0;
    content: attr(aria-label);
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: currentColor;
}

.mock-social-link--tumblr::before {
    content: "t";
    font-size: 22px;
    line-height: 16px;
    font-weight: 800;
}


.mock-social-link {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
}

    .mock-social-link img {
        display: block;
        width: 18px;
        height: 18px;
        object-fit: contain;
    }


.trf-reference-refurb {
    padding-top: 0;
    padding-bottom: 70px;
}

.trf-reference-refurb__inner {
    gap: 58px;
    grid-template-columns: minmax(600px, 0.98fr) minmax(0, 1.02fr);
}

.trf-reference-refurb__image img {
    width: min(650px, 100%);
}

.trf-reference-services {
    padding-top: 62px;
}

    .trf-reference-services .mock-round-icon {
        width: 284px;
        height: 284px;
    }

        .trf-reference-services .mock-round-icon img {
            width: 58%;
            height: 58%;
        }

.trf-mock-footer .site-footer__logo {
    width: 240px;
    max-width: 100%;
}

.mock-footer-grid a,
.mock-footer-grid p {
    font-weight: 500;
}

.mock-footer-grid h2,
.mock-footer-grid strong {
    font-weight: 700;
}

/* Demo visual alignment corrections */
.trf-mock-header .mock-contact-line .mock-contact-icon,
.mock-contact-line .mock-contact-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.trf-mock-header .mock-contact-line .mock-contact-divider,
.mock-contact-line .mock-contact-divider {
    width: 1px;
    height: 34px;
    min-width: 1px;
    background: #111;
}

.trf-mock-header .mock-social a,
.trf-mock-footer .mock-social a,
.mock-social a {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    overflow: visible;
    border: 0;
    background: transparent;
    color: var(--trf-green);
    font-size: 0;
    line-height: 1;
}

    .trf-mock-header .mock-social a::before,
    .trf-mock-header .mock-social a::after,
    .trf-mock-footer .mock-social a::before,
    .trf-mock-footer .mock-social a::after {
        position: absolute;
        display: block;
    }

.trf-mock-header .mock-social-link--x::before,
.trf-mock-footer .mock-social-link--x::before {
    content: "X";
    inset: 0;
    color: currentColor;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.trf-mock-header .mock-social-link--tumblr::before,
.trf-mock-footer .mock-social-link--tumblr::before {
    content: "t";
    inset: -2px 0 0;
    color: currentColor;
    font-size: 24px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.trf-reference-hero__bg {
    background-position: center right;
}

/* Demo visual alignment corrections v2 */
.trf-mock-header .mock-topbar__inner,
.trf-mock-header .mock-brandbar,
.trf-mock-header .mock-nav,
.trf-reference-home .mock-shell {
    width: min(100% - 40px, 1400px);
}

.trf-mock-header .mock-social {
    gap: 0;
}

    .trf-mock-header .mock-social a {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

.trf-mock-header .mock-social-link--youtube::before {
    left: 10px;
    top: 13px;
}

.trf-mock-header .mock-social-link--youtube::after {
    left: 16px;
    top: 15px;
}

.trf-mock-header .mock-social-link--instagram::before {
    inset: 10px;
}

.trf-mock-header .mock-social-link--instagram::after {
    left: 14px;
    top: 14px;
}

.trf-mock-header .mock-social-link--x::before {
    inset: 9px 0 auto;
}

.trf-mock-header .mock-social-link--tumblr::before {
    inset: 6px 0 auto;
}

.trf-reference-hero,
.trf-reference-hero__inner {
    min-height: 696px;
}

.trf-reference-hero__copy {
    width: min(650px, 56vw);
    padding-top: 42px;
}

.trf-reference-hero .trf-reference-buttons {
    gap: 6px;
    margin-left: 6px;
}

.trf-reference-hero .trf-outline-button {
    min-height: 53px;
    padding: 0 18px;
    font-size: 15px;
}

.trf-mock-header .mock-button-icon {
    width: 15px;
    height: 15px;
    margin-right: 6px;
}

.trf-reference-hero__copy {
    padding-top: 46px;
}

.trf-reference-hero .trf-outline-button {
    padding: 0 13px;
}

.trf-mock-header .mock-social {
    transform: translateY(4px);
}

.trf-reference-hero__copy {
    position: relative;
    top: -27px;
}

.trf-recycling-section .mock-section-heading p {
    color: #4d4d4d;
    font-weight: 400;
}

.trf-recycling-section .mock-hover-cards a > img {
    height: 398px;
    min-height: 398px;
    border-radius: 12px;
    box-shadow: 0 13px 30px rgba(0,0,0,0.09);
    object-fit: cover;
}

.trf-recycling-section .mock-hover-cards .mock-round-icon img {
    width: 66%;
    height: 66%;
    height: auto;
    min-height: 108px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.trf-recycling-section .mock-hover-cards strong {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 500;
}

.trf-accreditations-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 92px;
    background: #fff;
}

    .trf-accreditations-section .mock-split {
        grid-template-columns: minmax(0, 680px) minmax(560px, 1fr);
        gap: 72px;
        align-items: center;
    }

    .trf-accreditations-section .trf-reference-copy {
        order: 1;
        max-width: 680px;
    }

    .trf-accreditations-section .mock-badge-cluster {
        order: 2;
        min-height: 520px;
    }

        .trf-accreditations-section .mock-badge-cluster::before {
            content: "";
            position: absolute;
            right: -12%;
            bottom: -4%;
            width: 720px;
            height: 330px;
            background: url('/images/trf-source/reference/our-services-bg.png') center / contain no-repeat;
            opacity: 0.42;
            transform: rotate(-8deg);
        }

        .trf-accreditations-section .mock-badge-cluster span {
            width: 220px;
            height: 220px;
            padding: 34px;
            border-width: 5px;
            background: rgba(255,255,255,0.94);
            z-index: 1;
        }

        .trf-accreditations-section .mock-badge-cluster img {
            max-width: 152px;
            max-height: 122px;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(1) {
            left: 38%;
            top: 58%;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(2) {
            right: 0;
            top: 42%;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(3) {
            left: 4%;
            top: 34%;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(4) {
            left: 38%;
            top: 6%;
        }

    .trf-accreditations-section .trf-reference-copy h2 {
        margin-bottom: 26px;
    }

    .trf-accreditations-section .trf-reference-copy p {
        margin-bottom: 24px;
        color: #4d4d4d;
        font-weight: 400;
    }

    .trf-accreditations-section .trf-reference-shop {
        margin-top: 12px;
        background: transparent;
        color: var(--reference-green);
        border: 2px solid var(--reference-green);
    }

.trf-news-heading {
    justify-content: flex-start;
    text-align: left;
}

    .trf-news-heading h2 {
        text-align: left;
    }

.trf-news-row article {
    position: relative;
}

    .trf-news-row article::before {
        content: "22 Apr";
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        display: grid;
        place-items: center;
        width: 126px;
        height: 40px;
        border-radius: 8px 0 8px 0;
        background: #fff;
        color: var(--reference-green);
        font-weight: 700;
    }

    .trf-news-row article:nth-child(2)::before,
    .trf-news-row article:nth-child(6)::before {
        content: "13 Apr";
    }

    .trf-news-row article:nth-child(3)::before,
    .trf-news-row article:nth-child(4)::before,
    .trf-news-row article:nth-child(7)::before {
        content: "25 Apr";
    }

    .trf-news-row article:nth-child(5)::before {
        content: "22 Apr";
    }

@media (max-width: 980px) {
    .trf-accreditations-section .mock-split {
        grid-template-columns: 1fr;
    }

    .trf-accreditations-section .mock-badge-cluster,
    .trf-accreditations-section .trf-reference-copy {
        order: initial;
    }
}

/* Demo homepage section tightening */
.trf-recycling-section {
    padding-bottom: 20px;
}

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 54px;
    }

    .trf-recycling-section .mock-hover-cards strong {
        margin-top: 16px;
    }

    .trf-recycling-section .mock-hover-cards em {
        margin-top: 10px;
    }

.trf-accreditations-section .mock-badge-cluster span {
    right: auto;
    bottom: auto;
}

    .trf-accreditations-section .mock-badge-cluster span:nth-child(1) {
        left: 250px;
        top: 322px;
    }

    .trf-accreditations-section .mock-badge-cluster span:nth-child(2) {
        left: 420px;
        top: 248px;
    }

    .trf-accreditations-section .mock-badge-cluster span:nth-child(3) {
        left: 72px;
        top: 230px;
    }

    .trf-accreditations-section .mock-badge-cluster span:nth-child(4) {
        left: 250px;
        top: 18px;
    }

.trf-accreditations-section .mock-badge-cluster::before {
    right: -70px;
    bottom: 18px;
}

/* Demo homepage match pass */
.trf-reference-hero__bg {
    background-position: center center;
}

.trf-reference-hero__copy {
    top: -54px;
}

.trf-reference-hero .trf-reference-buttons {
    width: 420px;
    gap: 20px 6px;
    margin-top: 28px;
    margin-left: 6px;
}

.trf-reference-hero .trf-outline-button {
    flex: 0 0 auto;
    padding: 0;
}

    .trf-reference-hero .trf-outline-button:nth-child(1) {
        width: 194px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(2) {
        width: 170px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 264px;
    }

.trf-reference-itad {
    padding-bottom: 149px;
}

.trf-reference-itad-card,
.trf-news-row article {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.trf-recycling-section {
    padding-top: 60px;
    padding-bottom: 18px;
}

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 104px;
    }

    .trf-recycling-section .mock-hover-cards a {
        position: relative;
        height: 398px;
        min-height: 398px;
        overflow: visible;
        border-radius: 12px;
    }

        .trf-recycling-section .mock-hover-cards a::after {
            content: "";
            position: absolute;
            z-index: 1;
            inset: 0;
            height: 398px;
            border-radius: 12px;
            background: rgba(0, 105, 53, 0.78);
            opacity: 0;
            transition: opacity 190ms ease;
        }

        .trf-recycling-section .mock-hover-cards a > img {
            height: 398px;
            min-height: 398px;
        }

    .trf-recycling-section .mock-hover-cards .mock-round-icon {
        z-index: 3;
    }

    .trf-recycling-section .mock-hover-cards strong,
    .trf-recycling-section .mock-hover-cards em {
        position: absolute;
        z-index: 2;
        left: 50%;
        opacity: 0;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .trf-recycling-section .mock-hover-cards strong {
        bottom: 112px;
        width: 86%;
        margin: 0;
        color: #fff;
        text-align: center;
        transform: translate(-50%, 10px);
    }

    .trf-recycling-section .mock-hover-cards em {
        bottom: 52px;
        margin: 0;
        background: #fff;
        color: var(--reference-green);
        transform: translate(-50%, 10px);
    }

    .trf-recycling-section .mock-hover-cards a:hover::after,
    .trf-recycling-section .mock-hover-cards a:focus-visible::after,
    .trf-recycling-section .mock-hover-cards a.is-active::after {
        opacity: 1;
    }

    .trf-recycling-section .mock-hover-cards a:hover strong,
    .trf-recycling-section .mock-hover-cards a:hover em,
    .trf-recycling-section .mock-hover-cards a:focus-visible strong,
    .trf-recycling-section .mock-hover-cards a:focus-visible em,
    .trf-recycling-section .mock-hover-cards a.is-active strong,
    .trf-recycling-section .mock-hover-cards a.is-active em {
        opacity: 1;
        transform: translate(-50%, 0);
    }

.trf-news-row article:nth-child(1)::before,
.trf-news-row article:nth-child(5)::before {
    content: "22 Apr";
}

.trf-news-row article:nth-child(2)::before,
.trf-news-row article:nth-child(3)::before,
.trf-news-row article:nth-child(6)::before,
.trf-news-row article:nth-child(7)::before {
    content: "25 Apr";
}

.trf-news-row article:nth-child(4)::before,
.trf-news-row article:nth-child(8)::before {
    content: "14 Apr";
}

.trf-newsletter label {
    text-transform: none;
}

@media (max-width: 560px) {
    .trf-reference-hero .trf-reference-buttons {
        width: 100%;
    }

    .trf-reference-hero .trf-outline-button,
    .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 100%;
    }
}

/* Demo homepage match pass 2 */
.trf-reference-hero__copy {
    top: -15px;
}

.trf-reference-proof {
    padding-bottom: 89px;
}

.trf-reference-refurb {
    overflow: visible;
    padding-bottom: 43px;
}

.trf-reference-refurb__inner {
    transform: translateY(50px);
}

.trf-reference-services {
    padding-top: 50px;
    padding-bottom: 94px;
}

.trf-reference-itad {
    padding-top: 58px;
    padding-bottom: 150px;
}

.trf-reference-returns {
    min-height: 756px;
}

.trf-reference-returns__inner {
    transform: translateY(24px);
}

.trf-recycling-section {
    padding-bottom: 0;
}

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 98px;
    }

.trf-accreditations-section {
    padding-top: 44px;
    padding-bottom: 120px;
}

.trf-news-section {
    padding-top: 75px;
    padding-bottom: 105px;
}

/* Demo homepage match pass 3 */
.trf-reference-refurb {
    padding-bottom: 94px;
}

.trf-accreditations-section {
    padding-top: 27px;
    padding-bottom: 137px;
}

/* Homepage polish: dropdowns, touch states, and responsive layout */
.mock-nav-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

    .mock-nav-item > .has-sub {
        display: inline-flex;
        align-items: center;
    }

.mock-submenu {
    position: absolute;
    z-index: 60;
    top: 100%;
    left: 0;
    min-width: 258px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0,0,0,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.mock-nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.mock-nav-item:hover .mock-submenu,
.mock-nav-item:focus-within .mock-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.trf-mock-header .mock-submenu a {
    display: block;
    padding: 14px 18px;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

    .trf-mock-header .mock-submenu a:hover,
    .trf-mock-header .mock-submenu a:focus-visible {
        background: #f3f6f0;
        color: var(--trf-green);
    }

.trf-news-row article:first-child img {
    object-position: center 45%;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 920px) {
    .trf-mock-header .mock-topbar__inner,
    .trf-mock-header .mock-brandbar,
    .trf-mock-header .mock-nav,
    .trf-reference-home .mock-shell {
        width: min(100% - 32px, 1380px);
    }

    .trf-mock-header .mock-contact-divider,
    .trf-mock-header .mock-social {
        display: none;
    }

    .trf-mock-header .mock-submenu {
        position: static;
        min-width: 0;
        padding: 0 0 8px;
        background: #f7f8f5;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

        .trf-mock-header .mock-submenu a {
            padding: 11px 30px;
            font-size: 13px;
        }

    .trf-reference-hero,
    .trf-reference-hero__inner {
        min-height: 650px;
    }

    .trf-reference-hero__bg {
        background-position: 61% center;
    }

        .trf-reference-hero__bg::after {
            background: linear-gradient(90deg, rgba(255,255,255,0.96) 0 42%, rgba(255,255,255,0.74) 58%, rgba(255,255,255,0.12) 100%);
        }

    .trf-reference-hero__copy {
        width: min(560px, 68vw);
        top: 0;
        padding-top: 0;
    }

    .trf-reference-hero h1 {
        font-size: 2.5rem;
    }

    .trf-reference-hero p {
        max-width: 510px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .trf-reference-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .trf-reference-stats div:nth-child(2) {
            border-right: 0;
        }

    .trf-reference-refurb__inner,
    .trf-reference-returns__inner,
    .trf-accreditations-section .mock-split {
        grid-template-columns: 1fr;
    }

    .trf-reference-refurb__inner,
    .trf-reference-returns__inner {
        transform: none;
    }

    .trf-reference-services .mock-service-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trf-reference-services .mock-round-icon {
        width: min(210px, 38vw);
        height: min(210px, 38vw);
    }
}

@media (max-width: 700px) {
    .trf-reference-home .mock-shell,
    .trf-mock-header .mock-topbar__inner,
    .trf-mock-header .mock-brandbar {
        width: min(100% - 28px, 1380px);
    }

    .trf-reference-hero,
    .trf-reference-hero__inner {
        min-height: 760px;
    }

    .trf-reference-hero__bg {
        background-position: 67% bottom;
    }

        .trf-reference-hero__bg::after {
            background: linear-gradient(180deg, rgba(255,255,255,0.98) 0 54%, rgba(255,255,255,0.62) 76%, rgba(255,255,255,0.18) 100%);
        }

    .trf-reference-hero__inner {
        align-items: flex-start;
        padding-top: 54px;
    }

    .trf-reference-hero__copy {
        width: 100%;
    }

    .trf-reference-hero h1 {
        max-width: 100%;
        font-size: 2.18rem;
    }

    .trf-reference-hero p {
        max-width: 100%;
        margin-top: 18px;
    }

    .trf-reference-hero .trf-reference-buttons {
        width: 100%;
        gap: 10px;
        margin-left: 0;
    }

    .trf-reference-hero .trf-outline-button,
    .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 100%;
        min-height: 48px;
    }

    .trf-reference-proof,
    .trf-reference-refurb,
    .trf-reference-services,
    .trf-reference-itad,
    .trf-reference-returns,
    .trf-recycling-section,
    .trf-accreditations-section,
    .trf-news-section {
        padding-top: 54px;
        padding-bottom: 58px;
    }

        .trf-reference-copy h2,
        .trf-reference-section-heading h2,
        .trf-news-heading h2,
        .trf-recycling-section .mock-section-heading h2 {
            font-size: 2.05rem;
            line-height: 1.16;
        }

    .trf-reference-stats {
        grid-template-columns: 1fr;
    }

        .trf-reference-stats div {
            min-height: 132px;
            border-right: 0;
            border-bottom: 1px solid rgba(0,0,0,0.2);
        }

        .trf-reference-stats span {
            font-size: 1.05rem;
        }

    .trf-reference-services .mock-service-icons,
    .trf-recycling-section .mock-hover-cards {
        grid-template-columns: 1fr;
    }

    .trf-reference-services .mock-round-icon {
        width: 168px;
        height: 168px;
    }

    .trf-card-carousel__viewport--itad .trf-reference-itad-card,
    .trf-news-row article {
        flex-basis: min(390px, 84vw);
        min-width: min(390px, 84vw);
    }

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 82px;
    }

    .trf-recycling-section .mock-hover-cards a,
    .trf-recycling-section .mock-hover-cards a > img,
    .trf-recycling-section .mock-hover-cards a::after {
        height: 360px;
        min-height: 360px;
    }

        .trf-recycling-section .mock-hover-cards a::after {
            opacity: 0.74;
        }

    .trf-recycling-section .mock-hover-cards strong,
    .trf-recycling-section .mock-hover-cards em {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .trf-accreditations-section .mock-badge-cluster {
        min-height: 360px;
    }

        .trf-accreditations-section .mock-badge-cluster span {
            width: 142px;
            height: 142px;
            padding: 22px;
        }

            .trf-accreditations-section .mock-badge-cluster span:nth-child(1) {
                left: 50%;
                top: 202px;
                transform: translateX(-50%);
            }

            .trf-accreditations-section .mock-badge-cluster span:nth-child(2) {
                left: auto;
                right: 0;
                top: 130px;
            }

            .trf-accreditations-section .mock-badge-cluster span:nth-child(3) {
                left: 0;
                top: 130px;
            }

            .trf-accreditations-section .mock-badge-cluster span:nth-child(4) {
                left: 50%;
                top: 0;
                transform: translateX(-50%);
            }

    .trf-news-row img {
        height: 210px;
    }

    .trf-news-row h3 {
        font-size: 1.16rem;
    }

    .trf-newsletter div {
        grid-template-columns: 1fr;
    }

    .trf-newsletter input,
    .trf-newsletter button {
        border-radius: 999px;
    }
}

@media (max-width: 460px) {

    .trf-reference-hero h1 {
        font-size: 1.92rem;
    }

    .trf-reference-hero,
    .trf-reference-hero__inner {
        min-height: 800px;
    }

    .trf-reference-shop,
    .trf-reference-copy .trf-outline-button,
    .trf-news-row a {
        width: 100%;
    }
}

/* Homepage polish pass 2: contain moving tracks and tighten small screens */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body,
    .trf-reference-home,
    .trf-reference-itad,
    .mock-latest-news {
        overflow-x: clip;
    }
}

.trf-card-carousel__viewport,
.trf-product-strip__viewport,
.trf-news-row {
    max-width: 100%;
    min-width: 0;
    overscroll-behavior-inline: contain;
}

.trf-reference-itad .mock-shell,
.mock-latest-news .mock-shell {
    min-width: 0;
}

@media (max-width: 700px) {
    .trf-card-carousel__viewport--itad .trf-reference-itad-card,
    .trf-news-row article {
        flex-basis: min(330px, calc(100vw - 56px));
        min-width: min(330px, calc(100vw - 56px));
    }
}

@media (max-width: 460px) {
    .trf-news-row a {
        width: calc(100% - 60px);
    }
}

/* Homepage polish pass 3: softer typography and more active carousel feel */
.trf-reference-home {
    font-weight: 400;
}

.trf-reference-hero h1 {
    font-weight: 400;
}

    .trf-reference-hero h1 strong,
    .trf-reference-copy h2 strong,
    .trf-reference-section-heading h2 strong,
    .trf-news-heading h2 strong,
    .trf-recycling-section .mock-section-heading h2 strong {
        font-weight: 600;
    }

.trf-reference-hero p {
    color: #4d4d4d;
    font-weight: 500;
}

.trf-reference-copy h2,
.trf-reference-section-heading h2,
.trf-news-heading h2,
.trf-reference-services h2,
.trf-recycling-section .mock-section-heading h2 {
    color: #4d4d4d;
    font-weight: 400;
}

.trf-reference-copy p,
.trf-reference-section-heading p,
.trf-recycling-section .mock-section-heading p,
.trf-news-row p {
    font-weight: 400;
}

.trf-reference-stats strong {
    font-weight: 700;
}

.trf-reference-stats span,
.trf-service-tile strong,
.trf-reference-itad-card strong,
.trf-news-row h3,
.trf-accreditations-section .mock-richtext strong,
.trf-newsletter label strong {
    font-weight: 600;
}

.trf-reference-buttons a,
.trf-reference-shop,
.trf-news-row a,
.trf-newsletter button {
    font-weight: 600;
}

.trf-card-carousel__viewport--itad,
.trf-news-row {
    scroll-padding-inline: 0;
}

    .trf-reference-itad-card,
    .trf-news-row article {
        will-change: transform;
    }

    .trf-news-row article {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

.trf-scroll-dots button {
    transition: width 160ms ease, background-color 160ms ease;
}

    .trf-scroll-dots button.is-active {
        width: 22px;
        border-radius: 999px;
    }

/* Homepage polish pass 4: restore section rhythm after typography updates */
.trf-reference-refurb {
    min-height: 546px;
    display: flex;
    align-items: center;
}

.trf-reference-services {
    padding-top: 48px;
    padding-bottom: 62px;
}

.trf-reference-itad {
    padding-top: 54px;
    padding-bottom: 72px;
}

    .trf-reference-itad .trf-reference-section-heading--with-controls {
        margin-bottom: 28px;
    }

    .trf-reference-itad .trf-scroll-dots {
        margin-bottom: 44px;
    }

@media (max-width: 920px) {
    .trf-reference-refurb {
        height: auto;
        min-height: 108px;
    }
}

/* Homepage polish pass 5: match demo proof band */
.trf-reference-proof {
    min-height: 761px;
    padding-top: 78px;
    padding-bottom: 78px;
    background: #fff;
}

    .trf-reference-proof::before {
        inset: auto 10% 26px auto;
        width: 760px;
        height: 390px;
        background: url('/images/trf-source/reference/our-services-bg.png') center / contain no-repeat;
        opacity: 0.38;
        transform: none;
    }

    .trf-reference-proof::after {
        content: "";
        position: absolute;
        z-index: 0;
        left: -120px;
        bottom: -160px;
        width: 620px;
        height: 360px;
        pointer-events: none;
        background: url('/images/trf-source/reference/our-services-bg.png') center / contain no-repeat;
        opacity: 0.28;
        transform: rotate(9deg);
    }

.trf-reference-range {
    width: 100%;
    max-width: none;
    margin: 0 auto 74px;
    overflow: hidden;
}

    .trf-reference-range img {
        width: min(1900px, 120vw);
        max-width: none;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
        transform: translateX(6.5vw);
    }

.trf-reference-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1050px;
    margin-inline: auto;
}

    .trf-reference-stats div {
        min-height: 214px;
        padding: 12px 52px;
    }

        .trf-reference-stats div:nth-child(3) {
            border-right: 0;
        }

    .trf-reference-stats strong {
        font-size: 3.15rem;
        font-weight: 500;
    }

    .trf-reference-stats span {
        color: #4d4d4d;
        font-size: 1.35rem;
        line-height: 1.43;
        font-weight: 400;
    }

.trf-reference-proof .trf-reference-shop {
    position: relative;
    z-index: 2;
    min-width: 220px;
    margin-top: -58px;
}

@media (max-width: 1180px) {
    .trf-reference-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: min(100% - 40px, 1050px);
    }

        .trf-reference-stats div {
            padding-inline: 28px;
        }
}

@media (max-width: 760px) {
    .trf-reference-proof {
        height: auto;
        min-height: 108px;
        padding-top: 44px;
        padding-bottom: 58px;
    }

    .trf-reference-range {
        margin-bottom: 34px;
    }

        .trf-reference-range img {
            width: 190vw;
            transform: translateX(18vw);
        }

    .trf-reference-stats {
        grid-template-columns: 1fr;
    }

        .trf-reference-stats div,
        .trf-reference-stats div:nth-child(3) {
            min-height: 128px;
            border-right: 0;
            border-bottom: 1px solid rgba(0,0,0,0.18);
        }

            .trf-reference-stats div:last-child {
                border-bottom: 0;
            }

    .trf-reference-proof .trf-reference-shop {
        width: min(100%, 260px);
        margin-top: 28px;
    }
}

/* Homepage polish pass 6: crop range image to demo proportions */
.trf-reference-proof {
    min-height: 761px;
    padding-top: 76px;
    padding-bottom: 72px;
}

.trf-reference-range {
    height: 360px;
    margin-bottom: 54px;
}

    .trf-reference-range img {
        width: min(1580px, 123vw);
        transform: translate(7vw, -150px);
    }

.trf-reference-stats {
    max-width: 1060px;
}

.trf-reference-proof .trf-reference-shop {
    margin-top: -52px;
}

@media (max-width: 760px) {
    .trf-reference-range {
        height: 220px;
        margin-bottom: 30px;
    }

        .trf-reference-range img {
            width: 178vw;
            transform: translate(17vw, -92px);
        }
}

/* Homepage polish pass 7: make proof background match demo */
.trf-reference-proof::before {
    z-index: 0;
    inset: auto 0 18px auto;
    width: 820px;
    height: 430px;
    background: radial-gradient(ellipse at center, rgba(85, 232, 222, 0.28) 0%, rgba(85, 232, 222, 0.18) 36%, rgba(85, 232, 222, 0) 72%), url('/images/trf-source/reference/our-services-bg.png') center / contain no-repeat;
    opacity: 0.92;
    transform: rotate(-4deg);
}

.trf-reference-proof::after {
    opacity: 0.42;
}

.trf-reference-stats,
.trf-reference-proof .trf-reference-shop {
    position: relative;
    z-index: 2;
}

/* Demo homepage correction pass 8: restore demo text, stats, and section scale */
.trf-reference-proof {
    min-height: 685px;
    padding-top: 52px;
    padding-bottom: 54px;
}

.trf-reference-range {
    height: 310px;
    margin-bottom: 32px;
}

    .trf-reference-range img {
        width: min(1500px, 118vw);
        transform: translate(6.8vw, -134px);
    }

.trf-reference-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
}

    .trf-reference-stats div {
        min-height: 180px;
        padding: 12px 34px;
    }

        .trf-reference-stats div:nth-child(3) {
            border-right: 1px solid rgba(0,0,0,0.2);
        }

        .trf-reference-stats div:nth-child(4) {
            border-right: 0;
        }

    .trf-reference-stats strong {
        font-size: clamp(2.35rem, 3vw, 3.08rem);
        line-height: 1.05;
    }

    .trf-reference-stats span {
        max-width: 260px;
        margin-inline: auto;
        font-size: clamp(1.05rem, 1.28vw, 1.27rem);
        line-height: 1.22;
    }

.trf-reference-proof .trf-reference-shop {
    margin-top: -34px;
}

.trf-reference-copy__buttons {
    align-items: center;
    margin-top: 26px;
}

    .trf-reference-copy__buttons .trf-reference-shop {
        margin-top: 0;
    }

    .trf-reference-copy__buttons .trf-outline-button {
        min-height: 54px;
        min-width: 150px;
        color: var(--trf-green);
        border-color: var(--trf-green);
    }

.trf-reference-services h2 {
    margin-bottom: 46px;
}

.trf-reference-services .mock-round-icon {
    width: 174px;
    height: 174px;
}

    .trf-reference-services .mock-round-icon::before {
        font-size: 1.6rem;
        letter-spacing: 0;
    }

.trf-reference-services .mock-round-icon--tools::before {
    content: "TECH";
}

.trf-reference-services .mock-round-icon--returns::before {
    content: "RETURN";
    font-size: 1.18rem;
}

.trf-reference-itad .trf-reference-section-heading--with-controls {
    margin-bottom: 34px;
}

.trf-reference-itad-card:hover,
.trf-news-row article:hover {
    transform: translateY(-7px);
}

@media (max-width: 1180px) {
    .trf-reference-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .trf-reference-stats div:nth-child(2),
        .trf-reference-stats div:nth-child(4) {
            border-right: 0;
        }

        .trf-reference-stats div:nth-child(1),
        .trf-reference-stats div:nth-child(2) {
            border-bottom: 1px solid rgba(0,0,0,0.2);
        }
}

@media (max-width: 760px) {
    .trf-reference-stats {
        grid-template-columns: 1fr;
    }

        .trf-reference-stats div:nth-child(1),
        .trf-reference-stats div:nth-child(2),
        .trf-reference-stats div:nth-child(3),
        .trf-reference-stats div:nth-child(4) {
            border-right: 0;
            border-bottom: 1px solid rgba(0,0,0,0.18);
        }

        .trf-reference-stats div:nth-child(4) {
            border-bottom: 0;
        }
}

.trf-reference-refurb {
    min-height: 538px;
    padding-top: 30px;
    padding-bottom: 38px;
}

.trf-reference-refurb__inner {
    gap: 50px;
    transform: none;
}

.trf-reference-refurb .trf-reference-copy h2 {
    margin-bottom: 14px;
    font-size: 2.52rem;
    line-height: 1.08;
}

.trf-reference-refurb .trf-reference-copy p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.36;
}

.trf-reference-refurb .trf-reference-copy__buttons {
    margin-top: 14px;
}

    .trf-reference-refurb .trf-reference-copy__buttons .trf-reference-shop,
    .trf-reference-refurb .trf-reference-copy__buttons .trf-outline-button {
        min-height: 50px;
    }
/* Demo homepage correction pass 10: services band icon/heading match */
.trf-reference-services {
    min-height: 581px;
    padding-top: 52px;
    padding-bottom: 54px;
}

    .trf-reference-services h2 {
        margin-bottom: 52px;
        text-align: center;
        font-size: 2.62rem;
    }

        .trf-reference-services h2 strong {
            color: var(--reference-green);
            font-weight: 600;
        }

    .trf-reference-services .mock-service-icons {
        gap: 58px;
    }

    .trf-reference-services .mock-round-icon {
        width: 252px;
        height: 252px;
    }

    .trf-reference-services .mock-round-icon--asset img {
        width: 68%;
        height: 68%;
    }

    .trf-reference-services .mock-service-icons strong {
        min-height: 46px;
        font-size: 0.98rem;
    }
/* Demo homepage correction pass 11: exact services-to-ITAD boundary */
.trf-reference-services {
    padding-bottom: 49px;
}
/* Demo homepage correction pass 12: lower homepage exact rhythm */
.trf-reference-itad {
    min-height: 735px;
    padding-bottom: 86px;
}

.trf-reference-returns {
    height: 703px;
    min-height: 703px;
    padding: 0;
    display: flex;
    align-items: center;
    background-color: #e7e7e7;
    background-image: linear-gradient(rgba(231,231,231,0.83), rgba(231,231,231,0.83)), url('/images/trf-source/reference/our-services-bg.png');
    background-size: 560px auto;
    background-position: center;
}

    .trf-reference-returns::before {
        display: none;
    }

.trf-reference-returns__inner {
    height: 703px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
    gap: 18px;
    align-items: center;
    transform: none;
}

.trf-reference-returns__image {
    overflow: visible;
}

    .trf-reference-returns__image img {
        width: 920px;
        max-width: none;
        transform: translateX(-315px);
    }

.trf-reference-returns .trf-reference-copy {
    max-width: 480px;
    justify-self: end;
}

    .trf-reference-returns .trf-reference-copy h2 {
        margin-bottom: 20px;
        font-size: 2.72rem;
        line-height: 1.08;
    }

    .trf-reference-returns .trf-reference-copy p {
        max-width: 460px;
        font-size: 1.05rem;
        line-height: 1.55;
    }

.trf-reference-returns .trf-reference-shop {
    margin-left: 0;
    margin-top: 28px;
}

.trf-recycling-section {
    height: 704px;
    min-height: 704px;
    padding: 52px 0 58px;
    overflow: hidden;
}

    .trf-recycling-section .mock-section-heading {
        max-width: none;
        margin-bottom: 84px;
    }

        .trf-recycling-section .mock-section-heading h2 {
            font-size: 2.62rem;
            line-height: 1.12;
        }

        .trf-recycling-section .mock-section-heading p {
            max-width: 1220px;
            font-size: 1.06rem;
        }

    .trf-recycling-section .mock-hover-cards {
        gap: 34px;
    }

        .trf-recycling-section .mock-hover-cards a,
        .trf-recycling-section .mock-hover-cards a > img,
        .trf-recycling-section .mock-hover-cards a::after {
            height: 408px;
            min-height: 408px;
            border-radius: 9px;
        }

        .trf-recycling-section .mock-hover-cards .mock-round-icon {
            top: -54px;
            width: 128px;
            height: 128px;
            background: #fff;
            border: 3px solid var(--reference-green);
            box-shadow: 0 8px 18px rgba(0,0,0,0.12);
        }

        .trf-recycling-section .mock-hover-cards .mock-round-icon--asset img {
            width: 62%;
            height: 62%;
            height: auto;
            min-height: 108px;
            object-fit: contain;
        }

        .trf-recycling-section .mock-hover-cards .trf-card-copy {
            position: absolute;
            z-index: 2;
            left: 50%;
            bottom: 96px;
            width: 78%;
            color: #fff;
            font-size: 0.98rem;
            line-height: 1.35;
            text-align: center;
            opacity: 0;
            transform: translate(-50%, 12px);
            transition: opacity 180ms ease, transform 180ms ease;
        }

        .trf-recycling-section .mock-hover-cards a:hover .trf-card-copy,
        .trf-recycling-section .mock-hover-cards a:focus-visible .trf-card-copy,
        .trf-recycling-section .mock-hover-cards a.is-active .trf-card-copy {
            opacity: 1;
            transform: translate(-50%, 0);
        }

.trf-accreditations-section {
    height: 692px;
    min-height: 692px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .trf-accreditations-section .mock-split {
        grid-template-columns: minmax(440px, 0.86fr) minmax(520px, 1.14fr);
        gap: 56px;
        align-items: center;
    }

    .trf-accreditations-section .mock-richtext {
        max-width: 620px;
    }

        .trf-accreditations-section .mock-richtext h2 {
            font-size: 2.62rem;
        }

    .trf-accreditations-section .mock-badge-cluster {
        min-height: 560px;
    }

        .trf-accreditations-section .mock-badge-cluster span {
            width: 214px;
            height: 214px;
            padding: 26px;
            border: 5px solid var(--reference-green);
            background: rgba(255,255,255,0.78);
        }

        .trf-accreditations-section .mock-badge-cluster img {
            max-width: 150px;
            max-height: 112px;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(1) {
            left: 10%;
            top: 168px;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(2) {
            right: -3%;
            top: 18px;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(3) {
            right: -2%;
            top: 332px;
        }

        .trf-accreditations-section .mock-badge-cluster span:nth-child(4) {
            left: 36%;
            top: 340px;
        }

.trf-news-row article:nth-child(1)::before,
.trf-news-row article:nth-child(5)::before {
    content: "22 Apr";
}

.trf-news-row article:nth-child(2)::before,
.trf-news-row article:nth-child(6)::before {
    content: "13Apr";
}

.trf-news-row article:nth-child(3)::before,
.trf-news-row article:nth-child(4)::before,
.trf-news-row article:nth-child(7)::before,
.trf-news-row article:nth-child(8)::before {
    content: "25 Apr";
}

.trf-news-row img[src*="news-simple-cartridges"] {
    object-fit: contain;
    padding: 10px 12px;
    background: #fff;
}
/* Demo homepage correction pass 13: lock ITAD section height */
.trf-reference-itad {
    height: 735px;
    min-height: 735px;
    padding-bottom: 80px;
    overflow: hidden;
}
/* Demo homepage correction pass 14: current live demo alignment */
.trf-reference-hero .trf-reference-buttons {
    width: 520px;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 28px;
    margin-left: 0;
}

.trf-reference-hero .trf-outline-button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

    .trf-reference-hero .trf-outline-button:nth-child(1) {
        width: 156px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(2) {
        width: 137px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 212px;
    }

.trf-reference-returns__image img {
    height: 560px;
    object-fit: contain;
}

.trf-recycling-section {
    height: 654px;
    min-height: 654px;
    padding-top: 52px;
    padding-bottom: 40px;
}

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 80px;
    }

    .trf-recycling-section .mock-hover-cards a,
    .trf-recycling-section .mock-hover-cards a > img,
    .trf-recycling-section .mock-hover-cards a::after {
        height: 400px;
        min-height: 400px;
    }

.trf-news-section {
    height: 1014px;
    min-height: 1014px;
    padding-top: 75px;
    padding-bottom: 70px;
}

@media (max-width: 700px) {
    .trf-reference-hero .trf-reference-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .trf-reference-hero .trf-outline-button,
    .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 100%;
        min-height: 48px;
    }

    .trf-recycling-section,
    .trf-news-section {
        height: auto;
        height: auto;
        min-height: 108px;
    }
}
/* Demo homepage correction pass 15: hero copy stack */
.trf-reference-hero__copy {
    width: 567px;
    max-width: 56vw;
    top: -41px;
}

.trf-reference-hero h1 {
    max-width: 567px;
}

.trf-reference-hero p {
    max-width: 520px;
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 30px;
}

.trf-reference-hero .trf-reference-buttons {
    margin-left: 6px;
    margin-top: 31px;
}

@media (max-width: 920px) {
    .trf-reference-hero__copy {
        width: min(560px, 68vw);
        max-width: 68vw;
        top: 0;
    }
}

@media (max-width: 700px) {
    .trf-reference-hero__copy {
        width: 100%;
        max-width: 100%;
    }

    .trf-reference-hero p {
        max-width: 100%;
        margin-top: 18px;
    }

    .trf-reference-hero .trf-reference-buttons {
        margin-left: 0;
        margin-top: 24px;
    }
}
/* Demo homepage correction pass 16: force demo hero heading wrap */
.trf-reference-hero h1 strong {
    display: inline-block;
    min-width: 356px;
}

@media (max-width: 700px) {
    .trf-reference-hero h1 strong {
        min-width: 0;
    }
}
/* Demo homepage correction pass 17: final hero baseline and button weight */
.trf-reference-hero__copy {
    top: -32px;
}

.trf-reference-hero p {
    margin-top: 27px;
}

.trf-reference-hero .trf-outline-button {
    font-weight: 500;
}
/* Demo homepage correction pass 18: final four-pixel hero nudge */
.trf-reference-hero__copy {
    top: -28px;
}
/* Demo homepage correction pass 19: footer height alignment */
.trf-mock-footer .mock-footer-grid {
    padding-bottom: 48px;
}

.trf-mock-footer .mock-footer-bottom {
    padding-bottom: 39px;
}
/* Demo homepage correction pass 20: section 1 heading typography */
.trf-reference-hero h1 {
    color: #4d4d4d;
    text-transform: capitalize;
}

    .trf-reference-hero h1 strong {
        color: #006935;
        font-size: 52px;
        font-weight: 500;
        line-height: 62.4px;
    }

.trf-reference-hero p {
    color: #4d4d4d;
    margin-top: 20px;
}

.trf-reference-hero .trf-outline-button {
    color: #006935;
    padding: 14px 10px;
}
/* Demo homepage correction pass 21: section 1 heading line-box nudge */
.trf-reference-hero h1 {
    position: relative;
    top: -1px;
}
/* Demo homepage correction pass 22: section 1 third CTA pixel alignment */
.trf-reference-hero .trf-outline-button:nth-child(3) {
    transform: translate(1px, 1px);
}
/* Demo homepage correction pass 23: screenshot/source section 1 text layout */
.trf-reference-hero__copy {
    width: 690px;
    max-width: 64vw;
    top: -44px;
}

.trf-reference-hero h1 {
    width: 690px;
    max-width: 690px;
    color: #4d4d4d;
    font-size: 47px;
    line-height: 56.4px;
    font-weight: 400;
    text-transform: none;
    position: static;
    top: auto;
}

.trf-reference-hero .trf-hero-title-line {
    display: block;
    white-space: nowrap;
}

.trf-reference-hero h1 strong {
    display: inline;
    min-width: 0;
    color: #006935;
    font-size: 52px;
    line-height: 62.4px;
    font-weight: 500;
}

.trf-reference-hero p {
    max-width: 590px;
    margin-top: 26px;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

.trf-reference-hero .trf-reference-buttons {
    width: 660px;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 34px;
    margin-left: 6px;
}

.trf-reference-hero .trf-outline-button {
    min-height: 53px;
    padding: 17px 12px;
    color: #006935;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

    .trf-reference-hero .trf-outline-button:nth-child(1) {
        width: 194px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(2) {
        width: 170px;
    }

    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 264px;
        transform: none;
    }

@media (max-width: 920px) {
    .trf-reference-hero__copy,
    .trf-reference-hero h1 {
        width: min(690px, 90vw);
        max-width: 90vw;
    }

    .trf-reference-hero .trf-hero-title-line {
        white-space: normal;
    }
}
/* Demo homepage correction pass 24: hero background scale and crop */
.trf-reference-hero__bg {
    background-position: 100% 50%;
    background-size: cover;
    transform: none;
    transition: opacity 520ms ease;
}

    .trf-reference-hero__bg.is-active {
        transform: none;
    }

    .trf-reference-hero__bg::after {
        background: linear-gradient(90deg, #f3f3f3 0%, rgba(255,255,255,0) 98%);
    }
/* Demo homepage alignment pass 25: shared layout, cards, buttons and carousel behavior */
.trf-reference-home .mock-shell {
    width: min(1268px, calc(100% - 48px));
}

.trf-reference-hero,
.trf-reference-hero__inner {
    min-height: 692px;
}

.trf-reference-services {
    min-height: 568px;
    padding: 78px 0 84px;
    background-color: #e7e7e7;
    background-size: 620px auto;
    background-position: center;
}

    .trf-reference-services h2,
    .trf-reference-section-heading h2,
    .trf-reference-copy h2,
    .trf-news-heading h2,
    .trf-recycling-section .mock-section-heading h2 {
        color: #4d4d4d;
        font-size: 46px;
        line-height: 1.18;
        font-weight: 400;
    }

    .trf-reference-services h2 {
        margin-bottom: 62px;
        text-align: left;
    }

    .trf-reference-services .mock-service-icons {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 48px;
        align-items: start;
    }

.trf-service-tile {
    display: grid;
    justify-items: center;
    gap: 24px;
    color: #4d4d4d;
    text-decoration: none;
}

.trf-reference-services .mock-round-icon {
    width: 222px;
    height: 222px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.72), 0 10px 24px rgba(0, 0, 0, 0.14);
}

.trf-reference-services .mock-service-icons strong {
    height: auto;
    min-height: 108px;
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 600;
}

.trf-reference-itad {
    height: auto;
    height: auto;
    min-height: 108px;
    padding: 82px 0 92px;
}

.trf-reference-section-heading--with-controls {
    margin-bottom: 38px;
}

.trf-reference-section-heading p {
    max-width: 1080px;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.62;
}

.trf-card-carousel__viewport--itad {
    gap: 34px;
    padding-bottom: 18px;
}

.trf-reference-itad-card {
    flex: 0 0 min(398px, 84vw);
}

    .trf-reference-itad-card img {
        height: 268px;
        border-radius: 0;
    }

    .trf-reference-itad-card strong {
        margin-top: 18px;
        color: #4d4d4d;
        font-size: 21px;
        font-weight: 600;
    }

    .trf-reference-itad-card span {
        margin-top: 8px;
        color: #4d4d4d;
        font-size: 15px;
    }

.trf-row-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 29px;
    font-weight: 400;
    line-height: 1;
}

.trf-reference-returns {
    padding: 84px 0 90px;
    background-size: 620px auto;
}

    .trf-reference-returns::before {
        display: none;
    }

.trf-reference-returns__inner {
    gap: 78px;
}

.trf-reference-returns__image img {
    width: min(580px, 100%);
    height: auto;
}

.trf-recycling-section {
    height: auto;
    height: auto;
    min-height: 108px;
    padding: 84px 0 92px;
}

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 88px;
    }

    .trf-recycling-section .mock-hover-cards {
        gap: 34px;
    }

        .trf-recycling-section .mock-hover-cards a,
        .trf-recycling-section .mock-hover-cards a > img,
        .trf-recycling-section .mock-hover-cards a::after {
            height: 390px;
            min-height: 390px;
        }

.trf-accreditations-section {
    height: auto;
    height: auto;
    min-height: 108px;
    padding: 86px 0 94px;
}

    .trf-accreditations-section .mock-badge-cluster {
        min-height: 500px;
    }

.trf-news-section {
    height: auto;
    height: auto;
    min-height: 108px;
    padding: 84px 0 94px;
}

.trf-news-row {
    gap: 34px;
    padding-bottom: 20px;
}

    .trf-news-row article {
        flex: 0 0 min(390px, 84vw);
    }

        .trf-news-row article img {
            height: 252px;
            border-radius: 0;
        }

        .trf-news-row article h3 {
            color: #4d4d4d;
            font-size: 20px;
            line-height: 1.28;
            font-weight: 600;
        }

        .trf-news-row article p {
            color: #4d4d4d;
            font-size: 15px;
        }

        .trf-news-row article > a,
        .trf-newsletter button,
        .trf-reference-shop,
        .mock-pill--solid {
            border-radius: 999px;
        }

.trf-reference-home .mock-pill--solid,
.trf-reference-home .trf-outline-button {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

    .trf-reference-home .trf-outline-button:hover,
    .trf-reference-home .trf-outline-button:focus-visible {
        transform: translateY(-2px);
    }

.trf-reference-home :focus-visible {
    outline: 3px solid rgba(0, 105, 53, 0.34);
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .trf-reference-services .mock-service-icons {
        gap: 24px;
    }

    .trf-reference-services .mock-round-icon {
        width: 188px;
        height: 188px;
    }
}

@media (max-width: 900px) {
    .trf-reference-home .mock-shell {
        width: min(100% - 32px, 720px);
    }

    .trf-reference-services .mock-service-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 28px;
    }

    .trf-reference-services .mock-round-icon {
        width: 204px;
        height: 204px;
    }
}

@media (max-width: 560px) {
    .trf-reference-services,
    .trf-reference-itad,
    .trf-reference-returns,
    .trf-recycling-section,
    .trf-accreditations-section,
    .trf-news-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

        .trf-reference-services h2,
        .trf-reference-section-heading h2,
        .trf-reference-copy h2,
        .trf-news-heading h2,
        .trf-recycling-section .mock-section-heading h2 {
            font-size: 34px;
        }

        .trf-reference-services .mock-service-icons {
            grid-template-columns: 1fr;
        }

        .trf-reference-services .mock-round-icon {
            width: 196px;
            height: 196px;
        }

    .trf-reference-itad-card,
    .trf-news-row article {
        flex-basis: 82vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trf-reference-home *,
    .trf-reference-home *::before,
    .trf-reference-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
/* Demo homepage alignment pass 26: keep hero actions inside small screens */
@media (max-width: 700px) {
    .trf-reference-hero .trf-reference-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 0;
    }

    .trf-reference-hero .trf-outline-button,
    .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 100%;
        min-height: 50px;
    }
}
/* Demo homepage alignment pass 27: restore and size every live homepage section */
.trf-reference-hero,
.trf-reference-hero__inner {
    min-height: 696px;
}

.trf-reference-proof {
    display: block;
    height: 685px;
    min-height: 685px;
    padding: 40px 0 0;
    overflow: hidden;
    background: #fff url('/images/trf-source/reference/swirl-right.png') no-repeat right center / contain;
}

    .trf-reference-proof::before,
    .trf-reference-refurb::before {
        display: none;
    }

.trf-reference-range {
    width: min(1103px, calc(100% - 80px));
    height: 318px;
    margin: 0 auto 19px;
    padding-top: 10px;
}

    .trf-reference-range img {
        display: block;
        width: 100%;
        height: 308px;
        max-height: none;
        object-fit: fill;
    }

.trf-reference-stats {
    width: min(1225px, calc(100% - 40px));
    max-width: none;
    height: 180px;
    margin: 0 auto;
}

    .trf-reference-stats div {
        min-height: 180px;
        gap: 7px;
        padding: 20px;
    }

    .trf-reference-stats strong {
        color: #006935;
        font-size: 32px;
        line-height: 32px;
        font-weight: 600;
    }

    .trf-reference-stats div:first-child strong {
        font-size: 45px;
        line-height: 45px;
    }

    .trf-reference-stats span {
        color: #4d4d4d;
        font-size: 19px;
        line-height: 30px;
        font-weight: 500;
    }

    .trf-reference-stats div:nth-child(2) span {
        line-height: 22px;
    }

.trf-reference-proof .trf-reference-shop {
    width: 178px;
    min-width: 178px;
    height: 47px;
    min-height: 47px;
    margin: 30px auto 0;
    padding: 14px 10px;
    font-size: 19px;
    line-height: 19px;
    font-weight: 500;
}

.trf-reference-refurb {
    height: 538px;
    min-height: 538px;
    padding: 0;
    background: #fff url('/images/trf-source/reference/swirl-left.png') no-repeat left center / 32% auto;
}

.trf-reference-refurb__inner {
    width: min(1245px, calc(100% - 40px)) !important;
    height: 538px;
    grid-template-columns: minmax(0, 578px) minmax(0, 612px);
    gap: 45px;
    align-items: start;
}

.trf-reference-refurb__image {
    padding-top: 122px;
}

    .trf-reference-refurb__image img {
        display: block;
        width: 578px;
        max-width: 100%;
        height: 256px;
        object-fit: contain;
    }

.trf-reference-refurb .trf-reference-copy {
    width: 100%;
}

    .trf-reference-refurb .trf-reference-copy h2 {
        margin: 0 0 20px;
        color: #4d4d4d;
        font-size: 40px;
        line-height: 48px;
        font-weight: 400;
    }

        .trf-reference-refurb .trf-reference-copy h2 strong {
            font-weight: 600;
        }

    .trf-reference-refurb .trf-reference-copy p {
        margin: 0 0 15px;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }

        .trf-reference-refurb .trf-reference-copy p:last-of-type {
            margin-bottom: 20px;
        }

.trf-reference-refurb .trf-reference-copy__buttons {
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
}

.trf-reference-refurb .trf-outline-button {
    width: auto;
    min-height: 50px;
    padding: 15px 30px;
    background: rgba(0, 105, 53, 0);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.trf-reference-services {
    height: 581px;
    min-height: 581px;
    overflow: hidden;
}

.trf-reference-itad {
    height: 735px;
    min-height: 735px;
    overflow: hidden;
}

.trf-reference-returns {
    height: 703px;
    min-height: 703px;
    overflow: hidden;
}

.trf-recycling-section {
    height: 654px;
    min-height: 654px;
    padding-top: 52px;
    padding-bottom: 40px;
    overflow: hidden;
}

.trf-accreditations-section {
    height: 692px;
    min-height: 692px;
    padding: 0;
    overflow: hidden;
}

.trf-news-section {
    height: 1014px;
    min-height: 1014px;
    padding-top: 75px;
    padding-bottom: 70px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .trf-reference-hero,
    .trf-reference-hero__inner,
    .trf-reference-proof,
    .trf-reference-refurb,
    .trf-reference-refurb__inner,
    .trf-reference-services,
    .trf-reference-itad,
    .trf-reference-returns,
    .trf-recycling-section,
    .trf-accreditations-section,
    .trf-news-section {
        height: auto;
        height: auto;
        min-height: 108px;
    }

    .trf-reference-proof {
        padding: 54px 0 64px;
        background-size: auto 56%;
    }

    .trf-reference-range {
        width: min(100% - 32px, 760px);
        height: auto;
        margin-bottom: 34px;
        padding-top: 0;
    }

        .trf-reference-range img {
            height: auto;
            object-fit: contain;
        }

    .trf-reference-stats {
        width: min(100% - 32px, 720px);
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .trf-reference-stats div:nth-child(2) {
            border-right: 0;
        }

    .trf-reference-refurb {
        padding: 64px 0 70px;
        background-size: auto 38%;
    }

    .trf-reference-refurb__inner {
        width: min(100% - 32px, 720px) !important;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trf-reference-refurb__image {
        padding-top: 0;
    }

        .trf-reference-refurb__image img {
            width: min(578px, 100%);
            height: auto;
            margin: 0 auto;
        }
}

@media (max-width: 560px) {
    .trf-reference-stats {
        grid-template-columns: 1fr;
    }

        .trf-reference-stats div {
            border-right: 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.25);
        }

            .trf-reference-stats div:last-child {
                border-bottom: 0;
            }

    .trf-reference-refurb .trf-reference-copy h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .trf-reference-refurb .trf-reference-copy__buttons {
        flex-wrap: wrap;
    }

    .trf-reference-refurb .trf-outline-button {
        width: 100%;
    }
}
/* Demo homepage alignment pass 28: remove an inherited product-image offset */
.trf-reference-range img {
    transform: none;
}
/* Demo homepage alignment pass 29: internal section geometry */
.trf-reference-services {
    padding: 50px 0 80px;
}

    .trf-reference-services .mock-shell {
        width: min(1245px, calc(100% - 20px));
    }

    .trf-reference-services h2 {
        margin: 0 0 95px;
        font-size: 40px;
        line-height: 48px;
    }

    .trf-reference-services .mock-service-icons {
        grid-template-columns: repeat(4, 251px);
        justify-content: center;
        gap: 60px;
    }

        .trf-reference-services .mock-service-icons a {
            width: 251px;
            gap: 44px;
        }

    .trf-reference-services .mock-round-icon {
        width: 221px;
        height: 221px;
    }

    .trf-reference-services .mock-service-icons a:nth-child(1) .mock-round-icon img,
    .trf-reference-services .mock-service-icons a:nth-child(2) .mock-round-icon img {
        width: 171px;
        height: 171px;
    }

    .trf-reference-services .mock-service-icons a:nth-child(3) .mock-round-icon img {
        width: 221px;
        height: 221px;
    }

    .trf-reference-services .mock-service-icons a:nth-child(4) .mock-round-icon img {
        width: 201px;
        height: 201px;
    }

    .trf-reference-services .mock-service-icons strong {
        display: flex;
        width: 251px;
        height: 42px;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        line-height: 12px;
        font-weight: 500;
    }

        /* Reduce gap between Our Services heading and service icons */
        .trf-reference-home .trf-reference-services h2#services-title {
            margin-bottom: 28px !important;
        }

.trf-reference-itad {
    padding: 50px 0 0;
}

    .trf-reference-itad .mock-shell {
        width: min(1225px, calc(100% - 40px));
    }

    .trf-reference-itad .trf-reference-section-heading--with-controls {
        margin-bottom: 34px;
    }

    .trf-reference-itad .trf-reference-section-heading h2 {
        margin: 0 0 20px;
        font-size: 40px;
        line-height: 48px;
    }

    .trf-reference-itad .trf-reference-section-heading p {
        width: 992px;
        max-width: 100%;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }

    .trf-reference-itad .trf-card-carousel__viewport {
        gap: 30px;
        padding-top: 0;
    }

.trf-reference-itad-card {
    flex-basis: min(328px, 84vw);
}

    .trf-reference-itad-card img {
        width: 328px;
        max-width: 100%;
        height: 395px;
        object-fit: cover;
    }

    .trf-reference-itad-card strong {
        margin-top: 22px;
        font-size: 21px;
        line-height: 31.5px;
        font-weight: 500;
    }

    .trf-reference-itad-card span {
        margin-top: 7px;
        font-size: 16px;
        line-height: 24px;
    }

.trf-reference-returns {
    padding: 0;
}

.trf-reference-returns__inner {
    width: min(1225px, calc(100% - 40px)) !important;
    height: 703px;
    grid-template-columns: 603px 588px;
    gap: 45px;
    align-items: start;
}

.trf-reference-returns__image {
    padding-top: 50px;
}

    .trf-reference-returns__image img {
        display: block;
        width: 603px;
        max-width: 100%;
        height: 603px;
        margin: 0;
        object-fit: fill;
        transform: none;
    }

.trf-reference-returns .trf-reference-copy {
    padding-top: 206px;
}

    .trf-reference-returns .trf-reference-copy h2 {
        width: 588px;
        max-width: 100%;
        margin: 0 0 20px;
        font-size: 40px;
        line-height: 48px;
        font-weight: 400;
    }

    .trf-reference-returns .trf-reference-copy p {
        width: 494px;
        max-width: 100%;
        margin: 0;
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
    }

.trf-reference-returns .trf-reference-shop {
    width: 218px;
    min-width: 218px;
    height: 46px;
    min-height: 46px;
    margin: 25px 0 0;
    padding: 15px 30px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}

.trf-recycling-section .mock-shell {
    width: min(1225px, calc(100% - 40px));
}

.trf-recycling-section .mock-section-heading {
    margin-bottom: 83px;
}

    .trf-recycling-section .mock-section-heading h2 {
        margin: 0 0 20px;
        font-size: 40px;
        line-height: 48px;
        font-weight: 400;
    }

    .trf-recycling-section .mock-section-heading p {
        width: 992px;
        max-width: 100%;
        margin: 0;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
    }

.trf-recycling-section .mock-hover-cards {
    gap: 30px;
}

    .trf-recycling-section .mock-hover-cards a,
    .trf-recycling-section .mock-hover-cards a > img,
    .trf-recycling-section .mock-hover-cards a::after {
        height: 400px;
        min-height: 400px;
    }

    .trf-recycling-section .mock-hover-cards .mock-round-icon {
        top: -40px;
    }

@media (max-width: 1100px) {
    .trf-reference-services {
        height: auto;
        height: auto;
        min-height: 108px;
    }

        .trf-reference-services .mock-service-icons {
            grid-template-columns: repeat(2, 251px);
        }

    .trf-reference-returns__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .trf-reference-services,
    .trf-reference-itad,
    .trf-reference-returns,
    .trf-recycling-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

        .trf-reference-services h2,
        .trf-reference-itad .trf-reference-section-heading h2,
        .trf-reference-returns .trf-reference-copy h2,
        .trf-recycling-section .mock-section-heading h2 {
            font-size: 36px;
            line-height: 1.2;
        }

        .trf-reference-services h2 {
            margin-bottom: 58px;
        }

    .trf-reference-itad-card img {
        height: 340px;
    }

    .trf-reference-returns__inner {
        height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .trf-reference-returns__image,
    .trf-reference-returns .trf-reference-copy {
        padding-top: 0;
    }

        .trf-reference-returns__image img {
            width: min(603px, 100%);
            height: auto;
            margin: 0 auto;
            object-fit: contain;
        }

    .trf-recycling-section .mock-section-heading {
        margin-bottom: 72px;
    }
}

@media (max-width: 620px) {
    .trf-reference-services .mock-service-icons {
        grid-template-columns: 251px;
    }
}
/* Demo homepage correction pass 30: exact accreditation and news geometry */
.trf-accreditations-section {
    height: 692px;
    min-height: 692px;
    padding: 0;
    display: block;
    background: #fff;
    overflow: hidden;
}

    .trf-accreditations-section .mock-split {
        width: min(1225px, calc(100% - 40px));
        height: 100%;
        padding-top: 99px;
        grid-template-columns: 603px 603px;
        gap: 20px;
        align-items: start;
        box-sizing: border-box;
    }

    .trf-accreditations-section .trf-reference-copy,
    .trf-accreditations-section .mock-richtext {
        width: 603px;
        max-width: 603px;
        order: 1;
    }

        .trf-accreditations-section .mock-richtext h2 {
            width: 603px;
            margin: 0 0 20px;
            color: #4d4d4d;
            font-size: 40px;
            line-height: 48px;
            font-weight: 400;
        }

        .trf-accreditations-section .mock-richtext p {
            width: 603px;
            margin: 0;
            color: #4d4d4d;
            font-size: 16px;
            line-height: 33px;
            font-weight: 400;
        }

            .trf-accreditations-section .mock-richtext p + p {
                margin-top: 15px;
            }

    .trf-accreditations-section .trf-reference-shop {
        display: flex;
        width: 201px;
        min-width: 201px;
        height: 50px;
        min-height: 50px;
        margin: 34px 0 0;
        padding: 0;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 25px;
        background: var(--reference-green);
        color: #fff;
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
    }

    .trf-accreditations-section .mock-badge-cluster {
        position: relative;
        width: 603px;
        height: 451px;
        min-height: 451px;
        order: 2;
    }

        .trf-accreditations-section .mock-badge-cluster::before {
            display: none;
        }

        .trf-accreditations-section .mock-badge-cluster > img {
            display: block;
            width: 603px;
            max-width: none;
            height: 451px;
            max-height: none;
            object-fit: fill;
        }

.trf-news-section {
    height: 1014px;
    min-height: 1014px;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

    .trf-news-section > .mock-shell {
        width: min(1225px, calc(100% - 40px));
        padding-top: 120px;
    }

.trf-news-heading {
    display: block;
    margin: 0 0 20px;
    text-align: left;
}

    .trf-news-heading h2 {
        width: 100%;
        height: 48px;
        margin: 0;
        color: #4d4d4d;
        font-size: 40px;
        line-height: 48px;
        font-weight: 400;
        text-align: left;
    }

.trf-news-row {
    display: flex;
    width: 100%;
    height: 559px;
    margin: 0;
    padding: 10px 0 20px 10px;
    gap: 30px;
    box-sizing: border-box;
    overflow-x: auto;
    scroll-padding-left: 10px;
}

    .trf-news-row article {
        flex: 0 0 382px;
        width: 382px;
        height: 529px;
        min-height: 529px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

        .trf-news-row article::before {
            top: 0;
            left: 0;
            width: 133px;
            height: 40px;
            min-width: 0;
            padding: 0;
            border-radius: 0;
            font-size: 16px;
            line-height: 40px;
            font-weight: 600;
            text-align: center;
        }

    .trf-news-row img {
        display: block;
        width: 382px;
        height: 244px;
        object-fit: contain;
        background: #fff;
    }

    .trf-news-row h3 {
        width: 382px;
        min-height: 78px;
        margin: 9px 0 0;
        padding: 0;
        color: #4d4d4d;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
    }

    .trf-news-row p {
        width: 352px;
        height: 48px;
        margin: 20px 30px 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

    .trf-news-row a {
        display: flex;
        width: 152px;
        height: 45px;
        margin: 30px 30px 0;
        padding: 0;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        background: var(--reference-green);
        color: #fff;
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
    }

.trf-news-section .trf-scroll-dots {
    width: 84px;
    height: 9px;
    margin: 0 auto;
    gap: 9px;
}

.trf-newsletter {
    display: block;
    width: 800px;
    height: 187px;
    margin: 50px auto 0;
    padding: 50px 10px 0;
    box-sizing: border-box;
    text-align: center;
}

    .trf-newsletter label {
        display: block;
        width: 780px;
        height: 48px;
        margin: 0;
        color: #4d4d4d;
        font-size: 40px;
        line-height: 48px;
        font-weight: 400;
    }

        .trf-newsletter label strong {
            color: var(--reference-green);
            font-weight: 600;
        }

    .trf-newsletter > div {
        display: grid;
        width: 780px;
        height: 59px;
        margin-top: 20px;
        grid-template-columns: 546px 234px;
        gap: 0;
    }

    .trf-newsletter input,
    .trf-newsletter button {
        height: 59px;
        min-height: 59px;
        font-size: 18px;
        line-height: 18px;
        font-weight: 400;
    }

    .trf-newsletter input {
        width: 546px;
        padding: 0 24px;
        border: 0;
        border-radius: 50px 0 0 50px;
    }

    .trf-newsletter button {
        width: 234px;
        padding: 0;
        border-radius: 0 50px 50px 0;
        background: var(--reference-green);
    }

@media (max-width: 900px) {
    .trf-accreditations-section,
    .trf-news-section {
        height: auto;
        height: auto;
        min-height: 108px;
    }

    .trf-accreditations-section {
        padding: 64px 0 68px;
    }

        .trf-accreditations-section .mock-split {
            height: auto;
            padding-top: 0;
            grid-template-columns: 1fr;
            gap: 38px;
        }

        .trf-accreditations-section .trf-reference-copy,
        .trf-accreditations-section .mock-richtext,
        .trf-accreditations-section .mock-richtext h2,
        .trf-accreditations-section .mock-richtext p,
        .trf-accreditations-section .mock-badge-cluster,
        .trf-accreditations-section .mock-badge-cluster > img {
            width: 100%;
            max-width: 100%;
        }

            .trf-accreditations-section .mock-richtext h2,
            .trf-news-heading h2,
            .trf-newsletter label {
                height: auto;
                font-size: 34px;
                line-height: 1.2;
            }

        .trf-accreditations-section .mock-badge-cluster {
            height: auto;
            height: auto;
            min-height: 108px;
        }

            .trf-accreditations-section .mock-badge-cluster > img {
                height: auto;
                object-fit: contain;
            }

    .trf-news-section {
        padding: 64px 0 68px;
    }

        .trf-news-section > .mock-shell {
            padding-top: 0;
        }

    .trf-news-row {
        height: auto;
        min-height: 559px;
    }

    .trf-newsletter {
        width: min(800px, 100%);
        height: auto;
        padding-inline: 0;
    }

        .trf-newsletter label,
        .trf-newsletter > div {
            width: 100%;
        }

        .trf-newsletter > div {
            grid-template-columns: minmax(0, 1fr) minmax(130px, 30%);
        }

        .trf-newsletter input,
        .trf-newsletter button {
            width: 100%;
        }
}

@media (max-width: 520px) {
    .trf-newsletter > div {
        height: auto;
        grid-template-columns: 1fr;
    }

    .trf-newsletter input,
    .trf-newsletter button {
        border-radius: 28px;
    }

    .trf-newsletter button {
        margin-top: 10px;
    }
}

/* Demo homepage correction pass 31: news card specificity */
.trf-news-section .trf-news-row article > img {
    width: 382px;
    height: 244px;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    object-fit: contain;
    background: #fff;
}

.trf-news-section .trf-news-row article h3 {
    width: 382px;
    min-height: 78px;
    margin: 9px 0 0;
    padding: 0;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.trf-news-section .trf-news-row article p {
    width: 352px;
    height: 48px;
    margin: 20px 30px 0;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.trf-news-section .trf-news-row article > a {
    width: 152px;
    height: 45px;
    margin: 30px 30px 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

/* Demo homepage correction pass 32: final desktop alignment */
.trf-reference-refurb__inner {
    transform: translateY(-1px);
}

.trf-reference-refurb .trf-reference-copy p:nth-of-type(2) {
    margin-bottom: 14px;
}

.trf-reference-returns .trf-reference-copy {
    width: 588px;
    max-width: 588px;
    justify-self: start;
}

.trf-recycling-section {
    padding-top: 50px;
}

.trf-news-section .trf-news-row article > a {
    min-width: 152px;
}

@media (max-width: 900px) {
    .trf-reference-refurb__inner {
        transform: none;
    }

    .trf-reference-returns .trf-reference-copy {
        width: 100%;
        max-width: none;
    }
}

/* Demo homepage correction pass 33: large desktop scaling */
@media (min-width: 1600px) {
    .trf-mock-header .mock-topbar {
        height: 56px;
        min-height: 56px;
    }

    .trf-mock-header .mock-brandbar {
        height: 212px;
        min-height: 212px;
    }

    .trf-mock-header .mock-nav-wrap,
    .trf-mock-header .mock-nav {
        height: 73px;
        min-height: 73px;
    }

    .trf-reference-hero__inner {
        width: 1430px;
        max-width: calc(100% - 40px);
    }

    .trf-reference-hero__copy {
        width: 655px;
        max-width: 655px;
        margin-left: 10px;
        top: -23px;
    }

    .trf-reference-hero h1 {
        width: 655px;
        max-width: 655px;
    }

    .trf-reference-hero p {
        width: 600px;
        max-width: 600px;
        margin-top: 19px;
    }

    .trf-reference-hero .trf-reference-buttons {
        margin-top: 32px;
    }

    .trf-reference-hero .trf-outline-button {
        font-size: 15px;
        font-weight: 500;
    }

    .trf-reference-proof {
        position: relative;
        height: 761px;
        min-height: 761px;
        padding: 0;
        background-color: #fff;
    }

    .trf-reference-range {
        position: absolute;
        top: 20px;
        left: 50%;
        width: 1242px;
        height: 347px;
        transform: translateX(-50%);
    }

        .trf-reference-range img {
            width: 1242px;
            height: 347px;
            object-fit: fill;
        }

    .trf-reference-stats {
        position: absolute;
        top: 380px;
        left: 50%;
        width: 1380px;
        height: 198px;
        grid-template-columns: repeat(4, 345px);
        transform: translateX(-50%);
    }

        .trf-reference-stats > div {
            width: 345px;
            height: 198px;
            min-height: 198px;
            padding: 0 20px;
            box-sizing: border-box;
            justify-content: flex-start;
        }

        .trf-reference-stats strong {
            width: 100%;
            height: 45px;
            font-size: 45px;
            line-height: 45px;
            font-weight: 600;
        }

        .trf-reference-stats > div:nth-child(2) strong,
        .trf-reference-stats > div:nth-child(4) strong {
            height: 50px;
            font-size: 50px;
            line-height: 50px;
        }

        .trf-reference-stats span {
            width: 100%;
            margin-top: 15px;
            font-size: 22px;
            line-height: 30px;
            font-weight: 500;
        }

        .trf-reference-stats > div:nth-child(2) span,
        .trf-reference-stats > div:nth-child(4) span {
            margin-top: 20px;
            font-size: 23px;
            line-height: 32px;
        }

    .trf-reference-proof > .trf-reference-shop {
        position: absolute;
        top: 695px;
        left: 50%;
        width: 213px;
        min-width: 213px;
        height: 56px;
        min-height: 56px;
        margin: 0;
        padding: 0;
        transform: translateX(-50%);
        font-size: 16px;
        line-height: 16px;
        white-space: nowrap;
    }

    .trf-reference-refurb {
        position: relative;
        height: 546px;
        min-height: 546px;
        padding: 0;
    }

    .trf-reference-refurb__inner {
        width: 1380px;
        max-width: calc(100% - 40px);
        height: 546px;
        margin-inline: auto;
        grid-template-columns: 652px 692px;
        gap: 45px;
        align-items: start;
        transform: none;
    }

    .trf-reference-refurb__image {
        padding-top: 76px;
    }

        .trf-reference-refurb__image img {
            width: 652px;
            max-width: 652px;
            height: 394px;
            object-fit: contain;
        }

    .trf-reference-refurb .trf-reference-copy {
        width: 692px;
        max-width: 692px;
        padding-top: 50px;
    }

        .trf-reference-refurb .trf-reference-copy h2,
        .trf-reference-refurb .trf-reference-copy p {
            width: 692px;
            max-width: 692px;
        }

        .trf-reference-refurb .trf-reference-copy h2 {
            margin-bottom: 20px;
        }

        .trf-reference-refurb .trf-reference-copy p:nth-of-type(1) {
            margin-bottom: 15px;
        }

        .trf-reference-refurb .trf-reference-copy p:nth-of-type(2) {
            margin-bottom: 14px;
        }

        .trf-reference-refurb .trf-reference-copy p:nth-of-type(3) {
            margin-bottom: 19px;
        }

    .trf-reference-services {
        height: 621px;
        min-height: 621px;
        padding: 50px 0 80px;
    }

        .trf-reference-services .mock-shell {
            width: 1380px;
            max-width: calc(100% - 40px);
        }

        .trf-reference-services h2 {
            width: 1380px;
            margin-bottom: 95px;
        }

        .trf-reference-services .mock-service-icons {
            width: 1320px;
            margin-inline: auto;
            grid-template-columns: repeat(4, 285px);
            gap: 60px;
        }

            .trf-reference-services .mock-service-icons a {
                width: 285px;
                gap: 45px;
            }

        .trf-reference-services .mock-round-icon {
            width: 285px;
            height: 255px;
        }

        .trf-reference-services .mock-service-icons a:nth-child(1) .mock-round-icon img,
        .trf-reference-services .mock-service-icons a:nth-child(2) .mock-round-icon img {
            width: 205px;
            height: 205px;
        }

        .trf-reference-services .mock-service-icons a:nth-child(3) .mock-round-icon img {
            width: 255px;
            height: 255px;
        }

        .trf-reference-services .mock-service-icons a:nth-child(4) .mock-round-icon img {
            width: 235px;
            height: 235px;
        }

        .trf-reference-services .mock-service-icons strong {
            width: 285px;
            height: 48px;
            min-height: 48px;
            font-size: 16px;
            line-height: 16px;
            font-weight: 500;
        }

    .trf-reference-itad {
        height: 755px;
        min-height: 755px;
        padding: 60px 0 0;
    }

        .trf-reference-itad .mock-shell {
            width: 1380px;
            max-width: calc(100% - 40px);
        }

        .trf-reference-itad .trf-reference-section-heading h2 {
            width: 1380px;
        }

        .trf-reference-itad .trf-reference-section-heading p {
            width: 1118px;
        }

        .trf-reference-itad .trf-reference-section-heading--with-controls {
            margin-bottom: 35px;
        }

        .trf-reference-itad .trf-card-carousel__viewport {
            gap: 30px;
        }

    .trf-reference-itad-card {
        flex: 0 0 372px;
        width: 372px;
        max-width: 372px;
        box-sizing: border-box;
    }

        .trf-reference-itad-card img {
            width: 372px;
            max-width: 372px;
            height: 395px;
        }

    .trf-reference-returns {
        height: 776px;
        min-height: 776px;
        padding: 0;
    }

    .trf-reference-returns__inner {
        width: 1380px !important;
        max-width: calc(100% - 40px);
        height: 776px;
        grid-template-columns: 680px 665px;
        gap: 45px;
    }

    .trf-reference-returns__image {
        padding-top: 48px;
    }

        .trf-reference-returns__image img {
            width: 680px;
            max-width: 680px;
            height: 680px;
        }

    .trf-reference-returns .trf-reference-copy {
        width: 665px;
        max-width: 665px;
        padding-top: 266px;
    }

        .trf-reference-returns .trf-reference-copy h2 {
            width: 665px;
            max-width: 665px;
        }

        .trf-reference-returns .trf-reference-copy p {
            width: 559px;
            max-width: 559px;
        }

    .trf-recycling-section {
        height: 740px;
        min-height: 740px;
        padding: 60px 0 0;
    }

        .trf-recycling-section .mock-shell {
            width: 1380px;
            max-width: calc(100% - 40px);
        }

        .trf-recycling-section .mock-section-heading {
            margin-bottom: 100px;
        }

            .trf-recycling-section .mock-section-heading h2 {
                width: 1380px;
            }

            .trf-recycling-section .mock-section-heading p {
                width: 1118px;
            }

        .trf-recycling-section .mock-hover-cards {
            width: 1380px;
            grid-template-columns: repeat(3, 440px);
            gap: 30px;
        }

            .trf-recycling-section .mock-hover-cards > a,
            .trf-recycling-section .mock-hover-cards > a > img,
            .trf-recycling-section .mock-hover-cards > a::after {
                width: 440px;
                height: 400px;
                min-height: 400px;
                border-radius: 8px;
            }

            .trf-recycling-section .mock-hover-cards .mock-round-icon {
                top: -66px;
                width: 140px;
                height: 140px;
            }

            .trf-recycling-section .mock-hover-cards > a::after {
                background: rgba(0, 105, 53, 0.73);
            }

            .trf-recycling-section .mock-hover-cards > a > strong {
                top: 108px;
                bottom: auto;
                width: 370px;
                height: 28px;
                font-size: 28px;
                line-height: 28px;
                font-weight: 500;
            }

            .trf-recycling-section .mock-hover-cards .trf-card-copy {
                top: 156px;
                bottom: auto;
                width: 370px;
                font-size: 16px;
                line-height: 24px;
            }

            .trf-recycling-section .mock-hover-cards > a > em {
                top: 248px;
                bottom: auto;
                width: 138px;
                height: 44px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                line-height: 16px;
                font-weight: 500;
            }

    .trf-accreditations-section {
        height: 684px;
        min-height: 684px;
    }

        .trf-accreditations-section .mock-split {
            width: 1380px;
            max-width: calc(100% - 40px);
            padding-top: 70px;
            grid-template-columns: 680px 680px;
            gap: 20px;
        }

        .trf-accreditations-section .trf-reference-copy,
        .trf-accreditations-section .mock-richtext,
        .trf-accreditations-section .mock-richtext h2,
        .trf-accreditations-section .mock-richtext p {
            width: 680px;
            max-width: 680px;
        }

            .trf-accreditations-section .mock-richtext h2 {
                height: 48px;
            }

        .trf-accreditations-section .mock-badge-cluster {
            width: 680px;
            height: 509px;
            min-height: 509px;
        }

            .trf-accreditations-section .mock-badge-cluster > img {
                width: 680px;
                height: 509px;
            }

    .trf-news-section {
        height: 1066px;
        min-height: 1066px;
    }

        .trf-news-section > .mock-shell {
            width: 1430px;
            max-width: calc(100% - 40px);
            padding-top: 95px;
        }

    .trf-news-heading h2 {
        width: 1430px;
    }

    .trf-news-heading {
        margin-bottom: -8px;
    }

    .trf-news-row {
        height: 589px;
        padding: 10px 0 20px 10px;
        gap: 30px;
    }

        .trf-news-row article {
            flex: 0 0 450px;
            width: 450px;
            height: 559px;
            min-height: 559px;
        }

    .trf-news-section .trf-news-row article > img {
        width: 450px;
        height: 287px;
    }

    .trf-news-section .trf-news-row article h3 {
        width: 450px;
        margin-top: 21px;
    }

    .trf-news-section .trf-news-row article p {
        width: 420px;
        margin-inline: 30px;
    }

    .trf-news-section .trf-scroll-dots {
        margin-top: 0;
    }

    .trf-newsletter {
        margin-top: 50px;
    }
}

/* Demo homepage correction pass 34: large desktop inherited-rule cleanup */
@media (min-width: 1600px) {
    .trf-reference-hero__inner {
        width: 1430px !important;
    }

    .trf-reference-hero__copy {
        top: -28px;
    }

    .trf-reference-hero p {
        margin-top: 20px;
    }

    .trf-reference-range {
        padding-top: 0;
    }

    .trf-reference-stats > div {
        position: relative;
        display: block;
        place-content: normal;
        place-items: normal;
    }

    .trf-reference-stats strong,
    .trf-reference-stats span {
        position: absolute;
        display: block;
        margin: 0;
        text-align: center;
    }

    .trf-reference-stats > div:nth-child(1) strong,
    .trf-reference-stats > div:nth-child(1) span {
        left: 20px;
        width: 303px;
    }

    .trf-reference-stats > div:nth-child(2) strong,
    .trf-reference-stats > div:nth-child(2) span {
        left: 20px;
        width: 305px;
    }

    .trf-reference-stats > div:nth-child(3) strong,
    .trf-reference-stats > div:nth-child(3) span {
        left: 36px;
        width: 289px;
    }

    .trf-reference-stats > div:nth-child(4) strong,
    .trf-reference-stats > div:nth-child(4) span {
        left: 22px;
        width: 303px;
    }

    .trf-reference-stats strong {
        top: 0;
    }

    .trf-reference-stats > div:nth-child(1) span,
    .trf-reference-stats > div:nth-child(3) span {
        top: 60px;
    }

    .trf-reference-stats > div:nth-child(2) span,
    .trf-reference-stats > div:nth-child(4) span {
        top: 70px;
    }

    .trf-reference-refurb__inner {
        width: 1380px !important;
    }

    .trf-reference-itad-card {
        min-width: 372px;
    }

    .trf-reference-returns__inner {
        transform: translateY(1px);
    }

    .trf-news-section {
        margin-top: 1px;
    }
}

/* Demo homepage correction pass 35: final wide caption and action alignment */
@media (min-width: 1600px) {
    .trf-reference-stats > div:nth-child(1) span {
        width: 303px;
        max-width: none;
    }

    .trf-reference-stats > div:nth-child(2) span {
        top: 50px;
        width: 305px;
        max-width: none;
    }

    .trf-reference-stats > div:nth-child(3) span {
        width: 289px;
        max-width: none;
    }

    .trf-reference-stats > div:nth-child(4) span {
        top: 50px;
        width: 303px;
        max-width: none;
    }

    .trf-reference-hero__actions {
        column-gap: 6px;
    }

        .trf-reference-hero__actions .trf-outline-button:nth-child(3) {
            margin-left: 1px;
            transform: translateY(1.5px);
        }
}

/* Demo homepage correction pass 36: hero action group selector */
@media (min-width: 1600px) {
    .trf-reference-hero .trf-reference-buttons {
        column-gap: 6px;
    }

        .trf-reference-hero .trf-reference-buttons .trf-outline-button:nth-child(3) {
            margin-left: 1px;
            transform: translateY(1.5px);
        }
}

/* Demo homepage correction pass 37: enforce wide ITAD slide width */
@media (min-width: 1600px) {
    .trf-reference-itad .trf-card-carousel__viewport--itad .trf-reference-itad-card {
        flex: 0 0 372px;
        width: 372px;
        min-width: 372px;
        max-width: 372px;
    }
}

/* Demo homepage correction pass 38: contain Returns content on phones */
@media (max-width: 900px) {
    .trf-reference-returns__inner {
        width: min(100% - 40px, 1225px) !important;
        grid-template-columns: minmax(0, 1fr);
    }

    .trf-reference-returns__image,
    .trf-reference-returns .trf-reference-copy {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

        .trf-reference-returns__image img,
        .trf-reference-returns .trf-reference-copy h2,
        .trf-reference-returns .trf-reference-copy p {
            width: 100%;
            max-width: 100%;
        }
}

/* Demo homepage correction pass 39: keep Returns CTA on one line */
.trf-reference-returns .trf-reference-shop {
    padding-inline: 29px;
    justify-content: center;
    white-space: nowrap;
}

/* Demo homepage correction pass 40: preserve circular Returns diagram */
.trf-reference-returns__image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

/* Demo homepage correction pass 41: restore visible newsletter email field */
.trf-newsletter input {
    box-sizing: border-box;
    border: 1px solid var(--reference-green);
    border-right-width: 0;
    background: #fff;
    color: #4d4d4d;
}

    .trf-newsletter input::placeholder {
        color: #4d4d4d;
        opacity: 1;
    }

    .trf-newsletter input:focus {
        position: relative;
        z-index: 1;
        outline: 0;
        border-color: var(--reference-green);
        box-shadow: 0 0 0 3px rgba(0, 105, 53, 0.18);
    }

@media (max-width: 520px) {
    .trf-newsletter input {
        border-right-width: 1px;
    }
}
/* Demo homepage correction pass 42: match desktop hero artwork scale */
@media (min-width: 901px) {
    .trf-reference-hero__bg {
        background-size: auto 100%;
        background-position: center right;
        background-repeat: no-repeat;
        background-color: #fff;
    }
}
/* Demo homepage correction pass 43: services background and button contrast */
.trf-reference-services {
    background-color: #dedede;
    background-image: url('/images/trf-source/reference/our-services-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .trf-reference-services .mock-service-icons strong,
    .trf-reference-services .trf-service-tile:hover strong,
    .trf-reference-services .trf-service-tile:focus-visible strong {
        color: #fff;
    }
/* Demo homepage correction pass 44: services mockup gradient wash */
.trf-reference-services {
    background-color: #d3d3d3;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0.08) 100%), url('/images/trf-source/reference/our-services-bg.png');
    background-size: cover, cover;
}
/* Demo homepage correction pass 45: faded services pattern, round icons and pill interaction */
.trf-reference-services {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(90deg, #f8f8f8 0%, #e7e7e7 50%, #d2d2d2 100%);
}

    .trf-reference-services::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: url('/images/trf-source/reference/our-services-bg.png') center / cover no-repeat;
        opacity: 0.36;
    }

    .trf-reference-services > .mock-shell {
        position: relative;
        z-index: 1;
    }

    .trf-reference-services .mock-round-icon {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .trf-reference-services .trf-service-tile,
    .trf-reference-services .trf-service-tile:hover,
    .trf-reference-services .trf-service-tile:focus-visible,
    .trf-reference-services .trf-service-tile.is-active {
        transform: none;
    }

        .trf-reference-services .trf-service-tile:hover .mock-round-icon,
        .trf-reference-services .trf-service-tile:focus-visible .mock-round-icon,
        .trf-reference-services .trf-service-tile.is-active .mock-round-icon,
        .trf-reference-services .trf-service-tile:hover .mock-round-icon img,
        .trf-reference-services .trf-service-tile:focus-visible .mock-round-icon img,
        .trf-reference-services .trf-service-tile.is-active .mock-round-icon img {
            transform: none;
        }

    .trf-reference-services .mock-service-icons strong {
        box-sizing: border-box;
        border: 2px solid transparent;
        transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .trf-reference-services .trf-service-tile:hover strong,
    .trf-reference-services .trf-service-tile:focus-visible strong {
        color: #006935;
        background: #fff;
        border-color: #006935;
        box-shadow: 0 8px 18px rgba(0, 105, 53, 0.16);
        transform: translateY(-2px);
    }

    .trf-reference-services .trf-service-tile:active strong {
        box-shadow: none;
        transform: translateY(0);
    }
/* Demo homepage correction pass 46: preserve the product range artwork ratio */
.trf-reference-range img {
    object-fit: contain;
}

@media (min-width: 1600px) {
    .trf-reference-range {
        display: grid;
        place-items: center;
        overflow: hidden;
    }

        .trf-reference-range img {
            width: 1000px;
            height: auto;
            max-width: 100%;
            object-fit: contain;
        }
}

/* Demo homepage correction pass 47: larger product range and shared CTA treatment */
@media (min-width: 901px) {
    .trf-reference-range {
        height: 347px;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

        .trf-reference-range img {
            width: min(1080px, 100%);
            height: auto;
            max-width: 100%;
            object-fit: contain;
        }
}

.trf-reference-home .trf-outline-button,
.trf-reference-home .trf-reference-shop,
.trf-reference-home .mock-service-icons strong,
.trf-reference-home .mock-hover-cards em,
.trf-reference-home .trf-news-row article > a,
.trf-reference-home .trf-newsletter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 2px solid var(--trf-green);
    border-radius: 999px;
    background: var(--trf-green);
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .trf-reference-home .trf-outline-button:hover,
    .trf-reference-home .trf-outline-button:focus-visible,
    .trf-reference-home .trf-reference-shop:hover,
    .trf-reference-home .trf-reference-shop:focus-visible,
    .trf-reference-home .trf-service-tile:hover strong,
    .trf-reference-home .trf-service-tile:focus-visible strong,
    .trf-reference-home .mock-hover-cards > a:hover em,
    .trf-reference-home .mock-hover-cards > a:focus-visible em,
    .trf-reference-home .trf-news-row article > a:hover,
    .trf-reference-home .trf-news-row article > a:focus-visible,
    .trf-reference-home .trf-newsletter button:hover,
    .trf-reference-home .trf-newsletter button:focus-visible {
        border-color: var(--trf-green);
        background: var(--trf-green);
        color: #fff;
        box-shadow: 0 13px 28px rgba(0, 105, 53, 0.18);
    }

    .trf-reference-home .trf-outline-button:hover,
    .trf-reference-home .trf-outline-button:focus-visible,
    .trf-reference-home .trf-reference-shop:hover,
    .trf-reference-home .trf-reference-shop:focus-visible,
    .trf-reference-home .trf-service-tile:hover strong,
    .trf-reference-home .trf-service-tile:focus-visible strong,
    .trf-reference-home .trf-news-row article > a:hover,
    .trf-reference-home .trf-news-row article > a:focus-visible,
    .trf-reference-home .trf-newsletter button:hover,
    .trf-reference-home .trf-newsletter button:focus-visible {
        transform: translateY(-2px);
    }

    .trf-reference-home .trf-outline-button:active,
    .trf-reference-home .trf-reference-shop:active,
    .trf-reference-home .trf-service-tile:active strong,
    .trf-reference-home .trf-news-row article > a:active,
    .trf-reference-home .trf-newsletter button:active {
        box-shadow: none;
        transform: translateY(0);
    }
/* Demo homepage correction pass 50: retain proof CTA centring during interaction */
@media (min-width: 1600px) {
    .trf-reference-home .trf-reference-proof > .trf-reference-shop:hover,
    .trf-reference-home .trf-reference-proof > .trf-reference-shop:focus-visible {
        transform: translate(-50%, -2px);
    }

    .trf-reference-home .trf-reference-proof > .trf-reference-shop:active {
        transform: translateX(-50%);
    }
}
/* Demo homepage correction pass 51: lower-page reference backgrounds */
.trf-reference-home .trf-reference-itad {
    background-color: #fff;
    background-image: url('/images/trf-source/reference/swirl-left.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.trf-reference-home .trf-reference-returns {
    background-color: #d7d7d7;
    background-image: url('/images/trf-source/reference/returns-management-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .trf-reference-home .trf-reference-returns::before {
        display: none;
    }

.trf-reference-home .trf-recycling-section {
    background-color: #fff;
    background-image: url('/images/trf-source/reference/swirl-left.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 84%;
}

.trf-reference-home .trf-accreditations-section {
    background-color: #fff;
    background-image: url('/images/trf-source/reference/swirl-right.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 94%;
}

.trf-reference-home .trf-news-section {
    background-color: #dedede;
    background-image: linear-gradient(90deg, #f1f1f1 0%, #d5d5d5 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 900px) {
    .trf-reference-home .trf-reference-itad,
    .trf-reference-home .trf-recycling-section {
        background-size: auto 72%;
    }

    .trf-reference-home .trf-accreditations-section {
        background-size: auto 68%;
    }
}
/* Demo homepage correction pass 52: reference overlays and news field */
.trf-reference-home .trf-reference-returns {
    isolation: isolate;
    background-color: #fff;
    background-image: url('/images/trf-source/reference/rectangle-40275.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .trf-reference-home .trf-reference-returns::before {
        content: "";
        display: block;
        position: absolute;
        inset: 0;
        width: auto;
        height: auto;
        background-image: url('/images/trf-source/reference/returns-management-bg.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.45;
        pointer-events: none;
        z-index: 0;
    }

.trf-reference-home .trf-reference-returns__inner {
    position: relative;
    z-index: 1;
}

.trf-reference-home .trf-news-section {
    background-color: #fff;
    background-image: url('/images/trf-source/reference/rectangle-40275.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* Demo homepage correction pass 53: exact latest-news card geometry */
.trf-reference-home .trf-news-heading {
    margin-bottom: 20px;
}

.trf-reference-home .trf-news-row article {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: none;
}

    .trf-reference-home .trf-news-row article:hover,
    .trf-reference-home .trf-news-row article:focus-within,
    .trf-reference-home .trf-news-row article.is-active {
        transform: none;
        box-shadow: none;
    }

    .trf-reference-home .trf-news-row article::before {
        content: attr(data-news-date);
        top: 0;
        left: 0;
        z-index: 3;
        width: 125px;
        height: 40px;
        padding: 0;
        border-radius: 10px 0;
        background: #fff;
        color: var(--reference-green);
        font-size: 16px;
        line-height: 40px;
        font-weight: 600;
        text-align: center;
    }

.trf-reference-home .trf-news-section .trf-news-row article > img {
    display: block;
    width: 100%;
    height: 244px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
    object-fit: cover;
}

.trf-reference-home .trf-news-row img[src*="news-simple-cartridges"] {
    object-fit: contain;
}

.trf-reference-home .trf-news-section .trf-news-row article h3 {
    width: 100%;
    height: 78px;
    min-height: 78px;
    margin: 21px 0 20px;
    padding: 30px 0 0 30px;
    box-sizing: border-box;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.trf-reference-home .trf-news-section .trf-news-row article p {
    width: calc(100% - 30px);
    height: 48px;
    margin: 0 0 0 30px;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.trf-reference-home .trf-news-section .trf-news-row article > a {
    width: 152px;
    height: 45px;
    margin: 30px 0 30px 30px;
    padding: 0;
    border: 0;
    border-radius: 30px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.trf-reference-home .trf-news-section .trf-scroll-dots {
    display: flex;
    width: 84px;
    height: 9px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .trf-reference-home .trf-news-section .trf-scroll-dots button,
    .trf-reference-home .trf-news-section .trf-scroll-dots button.is-active {
        flex: 0 0 9px;
        width: 9px;
        min-width: 9px;
        height: 9px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--reference-green);
        opacity: 0.2;
    }

        .trf-reference-home .trf-news-section .trf-scroll-dots button.is-active {
            opacity: 1;
        }

.trf-reference-home .trf-newsletter input {
    padding: 0 20px;
    border: 1px solid var(--reference-green);
}

.trf-reference-home .trf-newsletter button {
    border: 0;
}

@media (min-width: 1600px) {
    .trf-reference-home .trf-news-row {
        height: 561px;
        padding: 10px 0 20px 10px;
    }

        .trf-reference-home .trf-news-row article {
            flex: 0 0 450px;
            width: 450px;
            height: 531px;
            min-height: 531px;
        }

    .trf-reference-home .trf-news-section .trf-news-row article > img {
        width: 450px;
        height: 259px;
    }
}

/* Demo homepage correction pass 54: joined newsletter submit control */
.trf-reference-home .trf-newsletter button {
    border-radius: 0 50px 50px 0;
}


/* Responsive homepage pass 56: preserve approved desktop above 1100px */
@media (max-width: 1100px) {
    .trf-mock-header .mock-topbar__inner,
    .trf-mock-header .mock-brandbar,
    .trf-reference-home .mock-shell,
    .trf-mock-footer .mock-shell {
        width: min(calc(100% - 40px), 1024px);
    }

    .trf-mock-header .mock-topbar__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .trf-mock-header .mock-contact-line {
        grid-column: 1;
        justify-self: start;
    }

    .trf-mock-header .mock-social {
        grid-column: 2;
    }

    .trf-mock-header .mock-brandbar {
        grid-template-columns: 180px minmax(220px, 1fr) 250px 48px;
        gap: 14px;
        height: auto;
        min-height: 108px;
        padding: 18px 0;
    }

    .trf-mock-header .mock-brand,
    .trf-mock-header .mock-brand img {
        grid-column: 1;
        grid-row: 1;
        width: 180px;
        max-height: none;
    }

    .trf-mock-header .mock-search {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        grid-template-columns: minmax(0, 1fr) 96px;
        gap: 8px;
    }

        .trf-mock-header .mock-search button {
            width: 96px;
            padding-inline: 12px;
        }

    .trf-mock-header .mock-header-actions {
        grid-column: 3;
        grid-row: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 250px;
        margin: 0;
        left: auto;
    }

    .trf-mock-header .mock-pill {
        width: 100%;
        min-height: 44px;
        padding-inline: 10px;
        font-size: 12px;
        white-space: normal;
    }

    .trf-mock-header .nav-toggle {
        display: inline-grid;
        place-items: center;
        grid-column: 4;
        grid-row: 1;
        width: 48px;
        height: 48px;
        border: 2px solid var(--trf-green);
        border-radius: 50%;
        background: #fff;
    }

        .trf-mock-header .nav-toggle span:not(.sr-only) {
            width: 20px;
            margin: 0;
            background: var(--trf-green);
            transition: transform 160ms ease, opacity 160ms ease;
        }

            .trf-mock-header .nav-toggle span:not(.sr-only) + span:not(.sr-only) {
                margin-top: 5px;
            }

    .is-nav-open .trf-mock-header .nav-toggle span:not(.sr-only):nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .is-nav-open .trf-mock-header .nav-toggle span:not(.sr-only):nth-child(2) {
        opacity: 0;
    }

    .is-nav-open .trf-mock-header .nav-toggle span:not(.sr-only):nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .trf-mock-header .mock-nav-wrap {
        position: relative;
        z-index: 55;
    }

    .trf-mock-header .mock-nav {
        position: absolute;
        top: 0;
        left: 20px;
        right: 20px;
        width: auto;
        height: auto;
        min-height: 108px;
        max-height: min(72vh, 620px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 10px 0 14px;
        background: #fff;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

        .trf-mock-header .mock-nav.is-open {
            display: flex;
        }

    .trf-mock-header .mock-nav-item {
        display: block;
    }

        .trf-mock-header .mock-nav > a,
        .trf-mock-header .mock-nav-item > a {
            display: block;
            padding: 13px 18px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

    .trf-mock-header .mock-submenu {
        position: static;
        min-width: 0;
        padding: 0 0 8px;
        background: #f5f7f4;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

        .trf-mock-header .mock-submenu a {
            padding: 10px 30px;
            font-size: 13px;
        }

    .trf-mock-header .mock-contact-button {
        width: auto;
        margin: 10px 14px 0;
        text-align: center;
    }

    .trf-reference-home > section,
    .trf-reference-home .trf-reference-hero__inner,
    .trf-reference-home .trf-reference-refurb__inner,
    .trf-reference-home .trf-reference-returns__inner,
    .trf-reference-home .trf-accreditations-section .mock-split {
        height: auto;
        height: auto;
        min-height: 108px;
    }

    .trf-reference-home > section {
        overflow-x: clip;
    }

    .trf-reference-home .trf-reference-hero,
    .trf-reference-home .trf-reference-hero__inner {
        min-height: 620px;
    }

    .trf-reference-home .trf-reference-hero__bg {
        background-size: auto 100%;
        background-position: 70% center;
        background-repeat: no-repeat;
    }

        .trf-reference-home .trf-reference-hero__bg::after {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 42%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.12) 100%);
        }

    .trf-reference-home .trf-reference-hero__copy {
        width: min(540px, 58%);
        max-width: 540px;
        margin: 0;
        top: 0;
        padding: 0;
    }

    .trf-reference-home .trf-reference-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 42px;
        line-height: 1.18;
    }

    .trf-reference-home .trf-reference-hero p {
        width: 100%;
        max-width: 510px;
        font-size: 16px;
        line-height: 1.55;
    }

    .trf-reference-home .trf-reference-hero .trf-reference-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 0;
    }

    .trf-reference-home .trf-reference-hero .trf-outline-button {
        width: auto;
        min-height: 46px;
        padding-inline: 18px;
    }

    .trf-reference-home .trf-reference-proof {
        padding: 58px 0 64px;
        background-size: auto 56%;
    }

    .trf-reference-home .trf-reference-range {
        width: min(calc(100% - 40px), 760px);
        height: auto;
        margin: 0 auto 36px;
        padding: 0;
    }

        .trf-reference-home .trf-reference-range img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

    .trf-reference-home .trf-reference-stats {
        width: min(calc(100% - 40px), 900px);
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .trf-reference-home .trf-reference-stats > div {
            width: auto;
            height: auto;
            min-height: 158px;
            padding: 24px 20px;
        }

            .trf-reference-home .trf-reference-stats > div:nth-child(2) {
                border-right: 0;
            }

        .trf-reference-home .trf-reference-stats strong {
            width: 100%;
            font-size: 35px;
            line-height: 1.1;
        }

        .trf-reference-home .trf-reference-stats span {
            width: 100%;
            margin-top: 12px;
            font-size: 17px;
            line-height: 1.4;
        }

    .trf-reference-home .trf-reference-proof > .trf-reference-shop {
        margin-top: 32px;
    }

    .trf-reference-home .trf-reference-refurb,
    .trf-reference-home .trf-reference-services,
    .trf-reference-home .trf-reference-itad,
    .trf-reference-home .trf-reference-returns,
    .trf-reference-home .trf-recycling-section,
    .trf-reference-home .trf-accreditations-section,
    .trf-reference-home .trf-news-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

        .trf-reference-home .trf-reference-refurb__inner,
        .trf-reference-home .trf-reference-returns__inner,
        .trf-reference-home .trf-accreditations-section .mock-split {
            width: min(calc(100% - 40px), 850px) !important;
            grid-template-columns: minmax(0, 1fr);
            gap: 38px;
            transform: none;
        }

        .trf-reference-home .trf-reference-refurb__image,
        .trf-reference-home .trf-reference-returns__image,
        .trf-reference-home .trf-reference-refurb .trf-reference-copy,
        .trf-reference-home .trf-reference-returns .trf-reference-copy {
            width: 100%;
            max-width: 100%;
            padding-top: 0;
        }

            .trf-reference-home .trf-reference-refurb__image img {
                width: min(620px, 100%);
                height: auto;
                margin: 0 auto;
            }

            .trf-reference-home .trf-reference-returns__image img {
                width: min(520px, 100%);
                height: auto;
                margin: 0 auto;
                object-fit: cover;
            }

        .trf-reference-home .trf-reference-copy h2,
        .trf-reference-home .trf-reference-section-heading h2,
        .trf-reference-home .trf-recycling-section .mock-section-heading h2,
        .trf-reference-home .trf-news-heading h2,
        .trf-reference-home .trf-newsletter label,
        .trf-reference-home .trf-accreditations-section .mock-richtext h2 {
            width: 100%;
            height: auto;
            font-size: 36px;
            line-height: 1.2;
        }

        .trf-reference-home .trf-reference-copy p,
        .trf-reference-home .trf-reference-section-heading p,
        .trf-reference-home .trf-recycling-section .mock-section-heading p,
        .trf-reference-home .trf-accreditations-section .mock-richtext p {
            width: 100%;
            max-width: 100%;
            font-size: 16px;
        }

        .trf-reference-home .trf-reference-refurb .trf-reference-copy__buttons {
            flex-wrap: wrap;
        }

        .trf-reference-home .trf-reference-services h2 {
            margin-bottom: 56px;
        }

        .trf-reference-home .trf-reference-services .mock-service-icons {
            width: min(620px, 100%);
            margin-inline: auto;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 54px 46px;
        }

            .trf-reference-home .trf-reference-services .mock-service-icons a {
                width: 100%;
                gap: 24px;
            }

        .trf-reference-home .trf-reference-services .mock-round-icon {
            width: 200px;
            height: 200px;
            max-width: 100%;
        }

        .trf-reference-home .trf-reference-services .mock-service-icons strong {
            width: 100%;
            height: 46px;
            min-height: 46px;
            font-size: 14px;
            line-height: 1.2;
        }

        .trf-reference-home .trf-reference-itad .trf-reference-section-heading--with-controls {
            align-items: end;
            gap: 24px;
            margin-bottom: 30px;
        }

        .trf-reference-home .trf-reference-itad .trf-reference-section-heading p {
            width: 100%;
        }

        .trf-reference-home .trf-reference-itad .trf-card-carousel__viewport {
            width: 100%;
            gap: 20px;
            padding: 8px 0 18px;
        }

    .trf-reference-home .trf-reference-itad-card {
        flex: 0 0 min(340px, 42vw);
        width: min(340px, 42vw);
        min-width: min(340px, 42vw);
        max-width: min(340px, 42vw);
    }

        .trf-reference-home .trf-reference-itad-card img {
            width: 100%;
            height: 330px;
            object-fit: cover;
        }

    .trf-reference-home .trf-reference-returns .trf-reference-copy h2,
    .trf-reference-home .trf-reference-returns .trf-reference-copy p {
        width: 100%;
        max-width: 100%;
    }

    .trf-reference-home .trf-recycling-section .mock-section-heading {
        margin-bottom: 76px;
    }

    .trf-reference-home .trf-recycling-section .mock-hover-cards {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 78px 24px;
    }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > img,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a::after {
            width: 100%;
            height: 380px;
            min-height: 380px;
        }

            .trf-reference-home .trf-recycling-section .mock-hover-cards > a:last-child {
                grid-column: 1 / -1;
                width: calc((100% - 24px) / 2);
                justify-self: center;
            }

        .trf-reference-home .trf-recycling-section .mock-hover-cards .mock-round-icon {
            top: -52px;
            width: 116px;
            height: 116px;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > strong {
            top: 96px;
            bottom: auto;
            width: 86%;
            font-size: 24px;
            line-height: 1.15;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards .trf-card-copy {
            top: 146px;
            bottom: auto;
            width: 82%;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > em {
            top: 260px;
            bottom: auto;
        }

    .trf-reference-home .trf-accreditations-section .mock-split {
        padding-top: 0;
    }

    .trf-reference-home .trf-accreditations-section .trf-reference-copy,
    .trf-reference-home .trf-accreditations-section .mock-richtext,
    .trf-reference-home .trf-accreditations-section .mock-badge-cluster,
    .trf-reference-home .trf-accreditations-section .mock-badge-cluster > img {
        width: 100%;
        max-width: 100%;
    }

        .trf-reference-home .trf-accreditations-section .mock-richtext p {
            line-height: 1.75;
        }

    .trf-reference-home .trf-accreditations-section .mock-badge-cluster {
        height: auto;
        height: auto;
        min-height: 108px;
    }

        .trf-reference-home .trf-accreditations-section .mock-badge-cluster > img {
            height: auto;
            object-fit: contain;
        }

    .trf-reference-home .trf-news-section > .mock-shell {
        padding-top: 0;
    }

    .trf-reference-home .trf-news-row {
        width: 100%;
        height: auto;
        height: auto;
        min-height: 108px;
        gap: 20px;
        padding: 10px 4px 20px;
    }

        .trf-reference-home .trf-news-row article {
            flex: 0 0 min(360px, 44vw);
            width: min(360px, 44vw);
            min-width: min(360px, 44vw);
            height: 520px;
            min-height: 520px;
        }

    .trf-reference-home .trf-news-section .trf-news-row article > img {
        width: 100%;
        height: 230px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article h3 {
        width: 100%;
        height: auto;
        min-height: 88px;
        margin: 0;
        padding: 26px 24px 10px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article p {
        width: auto;
        height: auto;
        min-height: 48px;
        margin: 0 24px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article > a {
        margin: 24px 0 24px 24px;
    }

    .trf-reference-home .trf-newsletter {
        width: min(760px, 100%);
        height: auto;
        padding: 46px 0 0;
    }

        .trf-reference-home .trf-newsletter label,
        .trf-reference-home .trf-newsletter > div {
            width: 100%;
        }

        .trf-reference-home .trf-newsletter > div {
            height: 58px;
            grid-template-columns: minmax(0, 1fr) 190px;
        }

        .trf-reference-home .trf-newsletter input,
        .trf-reference-home .trf-newsletter button {
            width: 100%;
            height: 58px;
            min-height: 58px;
        }

    .trf-mock-footer .mock-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 56px;
        padding: 56px 0 50px;
    }
}

@media (max-width: 860px) {

    .trf-mock-header .mock-contact-divider,
    .trf-mock-header .mock-social {
        display: none;
    }

    .trf-reference-home .trf-reference-hero,
    .trf-reference-home .trf-reference-hero__inner {
        min-height: 730px;
    }

    .trf-reference-home .trf-reference-hero__inner {
        align-items: flex-start;
        padding-top: 42px;
    }

    .trf-reference-home .trf-reference-hero__bg {
        background-size: auto 52%;
        background-position: center bottom;
    }

        .trf-reference-home .trf-reference-hero__bg::after {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0 56%, rgba(255, 255, 255, 0.72) 72%, rgba(255, 255, 255, 0.12) 100%);
        }

    .trf-reference-home .trf-reference-hero__copy {
        width: 100%;
        max-width: 650px;
    }

    .trf-reference-home .trf-reference-hero h1 {
        font-size: 38px;
    }

    .trf-reference-home .trf-reference-hero p {
        max-width: 620px;
    }

    .trf-reference-home .trf-reference-itad-card {
        flex-basis: min(330px, 72vw);
        width: min(330px, 72vw);
        min-width: min(330px, 72vw);
        max-width: min(330px, 72vw);
    }

    .trf-reference-home .trf-news-row article {
        flex-basis: min(360px, 70vw);
        width: min(360px, 70vw);
        min-width: min(360px, 70vw);
    }
}

@media (max-width: 560px) {
    .trf-mock-header .mock-topbar__inner,
    .trf-mock-header .mock-brandbar,
    .trf-reference-home .mock-shell,
    .trf-mock-footer .mock-shell {
        width: calc(100% - 28px);
    }

    .trf-reference-home .trf-reference-hero,
    .trf-reference-home .trf-reference-hero__inner {
        min-height: 760px;
    }

    .trf-reference-home .trf-reference-hero__inner {
        padding-top: 34px;
    }

    .trf-reference-home .trf-reference-hero__bg {
        background-size: auto 44%;
    }

    .trf-reference-home .trf-reference-hero h1 {
        font-size: 32px;
        line-height: 1.16;
    }

    .trf-reference-home .trf-reference-hero p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.5;
    }

    .trf-reference-home .trf-reference-hero .trf-reference-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .trf-reference-home .trf-reference-hero .trf-outline-button,
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: 100%;
        min-height: 46px;
        margin: 0;
        transform: none;
    }

    .trf-reference-home .trf-reference-proof,
    .trf-reference-home .trf-reference-refurb,
    .trf-reference-home .trf-reference-services,
    .trf-reference-home .trf-reference-itad,
    .trf-reference-home .trf-reference-returns,
    .trf-reference-home .trf-recycling-section,
    .trf-reference-home .trf-accreditations-section,
    .trf-reference-home .trf-news-section {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .trf-reference-home .trf-reference-range {
        width: calc(100% - 28px);
        margin-bottom: 26px;
    }

    .trf-reference-home .trf-reference-stats {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
    }

        .trf-reference-home .trf-reference-stats > div {
            min-height: 116px;
            padding: 20px 16px;
            border-right: 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

            .trf-reference-home .trf-reference-stats > div:last-child {
                border-bottom: 0;
            }

        .trf-reference-home .trf-reference-stats strong {
            font-size: 32px;
        }

        .trf-reference-home .trf-reference-stats span {
            font-size: 16px;
        }

    .trf-reference-home .trf-reference-refurb__inner,
    .trf-reference-home .trf-reference-returns__inner,
    .trf-reference-home .trf-accreditations-section .mock-split {
        width: calc(100% - 28px) !important;
        gap: 30px;
    }

    .trf-reference-home .trf-reference-copy h2,
    .trf-reference-home .trf-reference-section-heading h2,
    .trf-reference-home .trf-recycling-section .mock-section-heading h2,
    .trf-reference-home .trf-news-heading h2,
    .trf-reference-home .trf-newsletter label,
    .trf-reference-home .trf-accreditations-section .mock-richtext h2 {
        font-size: 31px;
    }

    .trf-reference-home .trf-reference-copy p,
    .trf-reference-home .trf-reference-section-heading p,
    .trf-reference-home .trf-recycling-section .mock-section-heading p,
    .trf-reference-home .trf-accreditations-section .mock-richtext p {
        font-size: 15px;
        line-height: 1.65;
    }

    .trf-reference-home .trf-reference-refurb .trf-reference-copy__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trf-reference-home .trf-reference-refurb .trf-outline-button {
        width: 100%;
    }

    .trf-reference-home .trf-reference-services h2 {
        margin-bottom: 44px;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 16px;
    }

        .trf-reference-home .trf-reference-services .mock-service-icons a {
            gap: 16px;
        }

    .trf-reference-home .trf-reference-services .mock-round-icon {
        width: 132px;
        height: 132px;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons strong {
        height: 48px;
        min-height: 48px;
        padding-inline: 8px;
        font-size: 13px;
    }

    .trf-reference-home .trf-reference-itad .trf-reference-section-heading--with-controls {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .trf-reference-home .trf-reference-itad-card {
        flex-basis: calc(100vw - 56px);
        width: calc(100vw - 56px);
        min-width: calc(100vw - 56px);
        max-width: 360px;
    }

        .trf-reference-home .trf-reference-itad-card img {
            height: 300px;
        }

    .trf-reference-home .trf-reference-returns__image img {
        width: min(320px, 100%);
    }

    .trf-reference-home .trf-reference-returns .trf-reference-shop,
    .trf-reference-home .trf-accreditations-section .trf-reference-shop {
        max-width: 100%;
    }

    .trf-reference-home .trf-recycling-section .mock-section-heading {
        margin-bottom: 72px;
    }

    .trf-reference-home .trf-recycling-section .mock-hover-cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 76px;
    }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a:last-child {
            grid-column: auto;
            width: 100%;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > img {
            height: 340px;
            min-height: 340px;
        }

            /* Green overlay */
            .trf-reference-home .trf-recycling-section .mock-hover-cards > a::after,
            .trf-reference-home .trf-recycling-section .mock-hover-cards > a:hover::after,
            .trf-reference-home .trf-recycling-section .mock-hover-cards > a:focus-visible::after,
            .trf-reference-home .trf-recycling-section .mock-hover-cards > a.is-active::after {
                content: "" !important;
                position: absolute !important;
                top: 18px !important;
                right: 18px !important;
                bottom: 18px !important;
                left: 18px !important;
                width: auto !important;
                height: auto !important;
                min-height: 0 !important;
                max-height: none !important;
                border-radius: 10px !important;
                background: rgba(0, 105, 53, 0.72) !important;
                opacity: 0.74 !important;
            }

        /* Circle badge */
        .trf-reference-home .trf-recycling-section .mock-hover-cards .mock-round-icon {
            top: -48px;
            width: 106px;
            height: 106px;
            display: grid;
            place-items: center;
            overflow: hidden;
        }

        /* Icon inside circle */
        .trf-reference-home .trf-recycling-section .mock-hover-cards .mock-round-icon--asset img {
            width: 66px !important;
            height: 66px !important;
            min-height: 0 !important;
            border-radius: 0 !important;
            object-fit: contain !important;
            background: transparent !important;
            box-shadow: none !important;
            transform: none !important;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a:hover .mock-round-icon--asset img,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a:focus-visible .mock-round-icon--asset img,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a.is-active .mock-round-icon--asset img {
            transform: none !important;
        }

        /* Text */
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > strong,
        .trf-reference-home .trf-recycling-section .mock-hover-cards .trf-card-copy,
        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > em {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > strong {
            top: 80px;
            font-size: 22px;
            color: #fff;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards .trf-card-copy {
            top: 124px;
            width: 84%;
            font-size: 14px;
        }

        .trf-reference-home .trf-recycling-section .mock-hover-cards > a > em {
            top: 244px;
        }

    .trf-reference-home .trf-news-row article {
        flex-basis: calc(100vw - 48px);
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        max-width: 360px;
        height: 510px;
        min-height: 510px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article > img {
        height: 220px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article h3 {
        min-height: 90px;
        padding: 24px 20px 10px;
        font-size: 18px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article p {
        margin-inline: 20px;
        font-size: 15px;
    }

    .trf-reference-home .trf-news-section .trf-news-row article > a {
        margin: 22px 0 22px 20px;
    }

    .trf-reference-home .trf-newsletter {
        margin-top: 34px;
        padding-top: 34px;
    }

        .trf-reference-home .trf-newsletter > div {
            height: auto;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .trf-reference-home .trf-newsletter input,
        .trf-reference-home .trf-newsletter button {
            border-radius: 29px;
        }

        .trf-reference-home .trf-newsletter input {
            border-right-width: 1px;
        }

    .trf-mock-footer .mock-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 0 40px;
    }

        .trf-mock-footer .mock-footer-grid h2 {
            margin-bottom: 14px;
            font-size: 22px;
        }

    .trf-mock-footer .mock-footer-bottom {
        padding: 24px 0 36px;
    }
}

@media (max-width: 380px) {
    .trf-reference-home .trf-reference-services .mock-service-icons {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (hover: none) and (pointer: coarse) {
    .trf-reference-home .trf-recycling-section .mock-hover-cards > a::after {
        opacity: 0.74;
    }

    .trf-reference-home .trf-recycling-section .mock-hover-cards > a > strong,
    .trf-reference-home .trf-recycling-section .mock-hover-cards .trf-card-copy,
    .trf-reference-home .trf-recycling-section .mock-hover-cards > a > em {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


/* Responsive correction pass 57: mobile media and CTA geometry */
@media (max-width: 1100px) {
    .trf-reference-home .trf-reference-services .mock-service-icons a:nth-child(1) .mock-round-icon img,
    .trf-reference-home .trf-reference-services .mock-service-icons a:nth-child(2) .mock-round-icon img {
        width: 78%;
        height: 78%;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons a:nth-child(3) .mock-round-icon img {
        width: 92%;
        height: 92%;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons a:nth-child(4) .mock-round-icon img {
        width: 86%;
        height: 86%;
    }

    .trf-reference-home .trf-reference-services .mock-round-icon img {
        height: auto;
        min-height: 108px;
        max-width: 100%;
        object-fit: contain;
    }

    .trf-reference-home .trf-reference-proof > .trf-reference-shop {
        display: flex;
        width: 213px;
        min-width: 0;
        max-width: calc(100% - 40px);
        margin: 32px auto 0;
    }

    .trf-reference-home .trf-accreditations-section .mock-badge-cluster > img {
        display: block;
        width: min(600px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 560px) {

    .trf-reference-home .trf-reference-hero .trf-outline-button,
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(3) {
        width: min(100%, 320px);
        justify-self: start;
        padding-inline: 14px;
        font-size: 13px;
    }

    .trf-reference-home .trf-reference-range {
        width: min(calc(100% - 28px), 360px);
    }

    .trf-reference-home .trf-reference-refurb__image img {
        display: block;
        width: min(340px, 100%);
        margin-inline: auto;
    }

    .trf-reference-home .trf-reference-refurb .trf-outline-button {
        width: min(100%, 280px);
        justify-self: start;
    }

    .trf-reference-home .trf-reference-services .mock-round-icon {
        justify-self: center;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons strong {
        justify-self: center;
        max-width: 170px;
    }

    .trf-reference-home .trf-reference-returns__image img {
        display: block;
        width: min(300px, 100%);
        margin-inline: auto;
    }

    .trf-reference-home .trf-reference-returns .trf-reference-shop,
    .trf-reference-home .trf-accreditations-section .trf-reference-shop {
        min-width: 0;
        margin-left: 0;
    }

    .trf-reference-home .trf-accreditations-section .mock-badge-cluster > img {
        width: min(360px, 100%);
    }

    .trf-reference-home .trf-news-section .trf-news-row article > a {
        min-width: 0;
    }
}


/* Responsive correction pass 58: visually centre each phone hero artwork */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__bg:nth-child(1) {
        background-position: 90% bottom;
    }

    .trf-reference-home .trf-reference-hero__bg:nth-child(2) {
        background-position: 84% bottom;
    }

    .trf-reference-home .trf-reference-hero__bg:nth-child(3) {
        background-position: 62% bottom;
    }
}

@media (max-width: 430px) {
    .trf-reference-home .trf-reference-hero__bg:nth-child(1) {
        background-position: 80% bottom;
    }

    .trf-reference-home .trf-reference-hero__bg:nth-child(2) {
        background-position: 76% bottom;
    }

    .trf-reference-home .trf-reference-hero__bg:nth-child(3) {
        background-position: 59% bottom;
    }
}


/* Responsive correction pass 59: centre phone hero actions and contain artwork */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__bg {
        background-size: auto 37%;
    }

    .trf-reference-home .trf-reference-hero .trf-reference-buttons {
        justify-items: center;
    }

    .trf-reference-home .trf-reference-hero .trf-outline-button,
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(1),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(2),
    .trf-reference-home .trf-reference-hero .trf-outline-button:nth-child(3) {
        justify-self: center;
    }
}

@media (max-width: 430px) {
    .trf-reference-home .trf-reference-hero__bg {
        background-size: auto 35%;
    }

        .trf-reference-home .trf-reference-hero__bg:nth-child(1) {
            background-position: 88% bottom;
        }

        .trf-reference-home .trf-reference-hero__bg:nth-child(2) {
            background-position: 82% bottom;
        }

        .trf-reference-home .trf-reference-hero__bg:nth-child(3) {
            background-position: 61% bottom;
        }
}


/* Responsive correction pass 60: centre the second phone hero slide */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__bg:nth-child(2) {
        background-position: 96% bottom;
    }
}


/* Responsive correction pass 61: use one calibrated centre for all hero slides */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__bg:nth-child(1),
    .trf-reference-home .trf-reference-hero__bg:nth-child(2),
    .trf-reference-home .trf-reference-hero__bg:nth-child(3) {
        background-position: 90% bottom;
    }
}

@media (max-width: 430px) {
    .trf-reference-home .trf-reference-hero__bg:nth-child(1),
    .trf-reference-home .trf-reference-hero__bg:nth-child(2),
    .trf-reference-home .trf-reference-hero__bg:nth-child(3) {
        background-position: 78% bottom;
    }
}

/* Responsive correction pass 62: section geometry from phone screenshots */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-refurb .trf-reference-copy__buttons {
        justify-items: center;
    }

    .trf-reference-home .trf-reference-refurb .trf-outline-button {
        width: min(100%, 264px);
        justify-self: center;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 16px;
    }

        .trf-reference-home .trf-reference-services .mock-service-icons > a {
            width: 100% !important;
            min-width: 0;
            max-width: 100%;
        }

    .trf-reference-home .trf-reference-services .mock-round-icon {
        width: 120px;
        height: 120px;
        max-width: 100%;
    }

    .trf-reference-home .trf-reference-services .mock-service-icons > a > strong {
        width: 100% !important;
        min-width: 0;
        max-width: 100%;
        height: 46px;
        padding-inline: 6px;
        font-size: 12px;
    }

    .trf-reference-home .trf-reference-itad .trf-card-carousel__viewport {
        scroll-padding-inline: 0;
    }

    .trf-reference-home .trf-reference-itad-card {
        flex: 0 0 min(310px, calc(100vw - 88px));
        width: min(310px, calc(100vw - 88px));
        min-width: min(310px, calc(100vw - 88px));
        max-width: 310px;
        overflow: hidden;
    }

        .trf-reference-home .trf-reference-itad-card img {
            width: 100%;
            height: 280px;
        }

    .trf-reference-home .trf-reference-returns__image img {
        width: min(260px, 100%);
    }

    .trf-reference-home .trf-reference-returns .trf-reference-shop {
        margin: 24px auto 0;
    }

    .trf-reference-home .trf-accreditations-section .mock-badge-cluster {
        order: -1;
        width: min(300px, 100%);
        margin-inline: auto;
    }

        .trf-reference-home .trf-accreditations-section .mock-badge-cluster > img {
            width: 100%;
        }

    .trf-reference-home .trf-accreditations-section .trf-reference-shop {
        margin: 28px auto 0;
    }
}
/* Responsive correction pass 63: simplify the phone hero and tighten section flow */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__slides {
        display: none;
    }

    .trf-reference-home .trf-reference-hero,
    .trf-reference-home .trf-reference-hero__inner {
        height: auto;
        min-height: 108px;
    }

    .trf-reference-home .trf-reference-hero {
        background: #fff;
    }

    .trf-reference-home .trf-reference-hero__inner {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .trf-reference-home .trf-reference-proof {
        padding-bottom: 8px;
    }

    .trf-reference-home .trf-reference-refurb {
        padding-top: 8px;
    }

    .trf-reference-home .trf-reference-refurb__inner {
        gap: 18px;
    }

    .trf-reference-home .trf-reference-refurb__image img {
        margin-top: -12px;
        margin-bottom: -8px;
    }
}
/* Responsive correction pass 64: close the phone hero-to-range gap */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__inner {
        padding-bottom: 12px;
    }

    .trf-reference-home .trf-reference-proof {
        padding-top: 4px;
    }

    .trf-reference-home .trf-reference-range {
        margin-top: -8px;
    }
}
/* Responsive correction pass 65: one touch-swipable ITAD card per phone viewport */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-itad .trf-carousel-controls {
        display: none;
    }

    .trf-reference-home .trf-reference-itad .trf-card-carousel__viewport {
        width: 100%;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        overscroll-behavior-x: contain;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .trf-reference-home .trf-reference-itad-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

        .trf-reference-home .trf-reference-itad-card img {
            width: 100%;
            max-width: 100%;
        }
}
/* Responsive correction pass 66: centre lower-page phone headings and CTAs */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-returns .trf-reference-copy h2,
    .trf-reference-home .trf-recycling-section .mock-section-heading h2,
    .trf-reference-home .trf-accreditations-section .mock-richtext h2 {
        text-align: center;
    }

    .trf-reference-home .trf-reference-returns .trf-reference-shop,
    .trf-reference-home .trf-accreditations-section .trf-reference-shop {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center;
        text-align: center;
    }
}
/* Responsive correction pass 67: centred mobile contact, social and brand header */
@media (max-width: 560px) {
    .trf-mock-header .mock-topbar,
    .trf-mock-header .mock-topbar__inner {
        height: auto;
        min-height: 108px;
    }

    .trf-mock-header .mock-topbar__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 8px 0 6px;
    }

    .trf-mock-header .mock-contact-line {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 7px;
        white-space: nowrap;
    }

        .trf-mock-header .mock-contact-line a:last-child {
            display: inline-flex;
        }

        .trf-mock-header .mock-contact-line .mock-contact-divider {
            display: block;
            width: 1px;
            min-width: 1px;
            height: 18px;
            margin: 0 4px;
        }

    .trf-mock-header .mock-social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: auto;
        gap: 0;
        transform: none;
    }

    .trf-mock-header .mock-brandbar {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
    }

    .trf-mock-header .mock-brand {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        width: 190px;
    }

        .trf-mock-header .mock-brand img {
            grid-column: auto;
            width: 190px;
            max-width: 100%;
        }

    .trf-mock-header .nav-toggle {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
}
/* Responsive correction pass 68: centre remaining phone headings and copy */
@media (max-width: 560px) {
    .trf-reference-home .trf-reference-hero__copy,
    .trf-reference-home .trf-reference-refurb .trf-reference-copy,
    .trf-reference-home .trf-reference-itad .trf-reference-section-heading,
    .trf-reference-home .trf-reference-returns .trf-reference-copy,
    .trf-reference-home .trf-recycling-section .mock-section-heading,
    .trf-reference-home .trf-accreditations-section .mock-richtext,
    .trf-reference-home .trf-news-heading,
    .trf-reference-home .trf-newsletter {
        text-align: center;
    }

        .trf-reference-home .trf-reference-services h2,
        .trf-reference-home .trf-reference-itad h2,
        .trf-reference-home .trf-news-heading h2,
        .trf-reference-home .trf-newsletter label {
            text-align: center;
        }

        .trf-reference-home .trf-reference-hero p,
        .trf-reference-home .trf-reference-refurb .trf-reference-copy p,
        .trf-reference-home .trf-reference-itad .trf-reference-section-heading p,
        .trf-reference-home .trf-reference-returns .trf-reference-copy p,
        .trf-reference-home .trf-recycling-section .mock-section-heading p,
        .trf-reference-home .trf-accreditations-section .mock-richtext p {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

    .trf-reference-home .trf-reference-itad-card strong,
    .trf-reference-home .trf-reference-itad-card span,
    .trf-reference-home .trf-news-row article h3,
    .trf-reference-home .trf-news-row article p {
        text-align: center;
    }
}
/* Responsive correction pass 69: enforce centring across every phone section */
@media (max-width: 560px) {
    .trf-reference-home > section,
    .trf-reference-home > section .trf-reference-copy,
    .trf-reference-home > section .trf-reference-section-heading,
    .trf-reference-home > section .mock-section-heading,
    .trf-reference-home > section .trf-news-heading,
    .trf-reference-home > section .mock-richtext {
        text-align: center;
    }

        .trf-reference-home > section h1,
        .trf-reference-home > section h2,
        .trf-reference-home > section h3,
        .trf-reference-home > section p,
        .trf-reference-home > section label,
        .trf-reference-home > section .trf-reference-itad-card strong,
        .trf-reference-home > section .trf-reference-itad-card span {
            width: 100%;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            text-align: center !important;
        }

        .trf-reference-home > section .trf-reference-buttons,
        .trf-reference-home > section .trf-reference-copy__buttons,
        .trf-reference-home > section .trf-carousel-controls {
            justify-content: center;
            justify-items: center;
        }

        .trf-reference-home > section .trf-reference-shop,
        .trf-reference-home > section .trf-outline-button,
        .trf-reference-home > section .trf-news-row article > a {
            margin-left: auto !important;
            margin-right: auto !important;
            justify-content: center;
            text-align: center;
        }
}
/* Footer certification link alignment */
.trf-mock-footer .mock-footer-link--certifications {
    white-space: nowrap;
}

/* Company Overview subpage: supplied mockup layout */
.trf-company-page {
    --company-green: #007a3d;
    color: #4d4d4d;
    background: #fff;
}

.trf-company-section {
    padding: 70px 0 78px;
}

.trf-company-shell {
    width: min(calc(100% - 48px), 1380px) !important;
    margin-inline: auto;
    text-align: center;
}

.trf-company-section h2 {
    width: 100%;
    margin: 0 0 42px;
    color: #4d4d4d;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: 0;
}

    .trf-company-section h2 strong,
    .trf-company-copy strong,
    .trf-company-story__copy strong {
        color: var(--company-green);
        font-weight: 700;
    }

.trf-company-wide-image,
.trf-company-story__media {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.trf-company-wide-image {
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center 46%;
}

.trf-company-copy,
.trf-company-story__copy {
    max-width: 1120px;
    margin: 34px auto 0;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
}

    .trf-company-copy p,
    .trf-company-story__copy p {
        margin: 0;
    }

        .trf-company-copy p + p,
        .trf-company-story__copy p + p {
            margin-top: 24px;
        }

    .trf-company-copy a {
        color: var(--company-green);
        font-weight: 700;
    }

.trf-company-story,
.trf-company-mission {
    background: #eeeeee;
}

.trf-company-story {
    padding-bottom: 42px;
}

.trf-company-story__media {
    position: relative;
    aspect-ratio: 16 / 7;
}

    .trf-company-story__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 48%;
    }

.trf-company-story__play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 116px;
    height: 78px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background: #ed1c24;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .trf-company-story__play span {
        width: 0;
        height: 0;
        margin-left: 7px;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 28px solid #fff;
    }

    .trf-company-story__play:hover,
    .trf-company-story__play:focus-visible {
        transform: translate(-50%, -50%) scale(1.04);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    }

.trf-company-story__copy {
    max-width: 1120px;
    margin-top: 0;
    padding: 30px 42px 34px;
    border: 2px solid #5d5d5d;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
}

.trf-company-mission {
    padding-top: 62px;
    padding-bottom: 88px;
}

    .trf-company-mission h2 {
        margin-bottom: 28px;
    }

    .trf-company-mission .trf-company-copy {
        margin-top: 0;
        max-width: 1220px;
    }

.trf-company-mission__cta {
    width: 218px;
    min-width: 218px;
    min-height: 50px;
    margin: 38px auto 0;
    justify-content: center;
}

@media (max-width: 900px) {
    .trf-company-section {
        padding: 56px 0 62px;
    }

        .trf-company-section h2 {
            margin-bottom: 30px;
            font-size: 42px;
        }

    .trf-company-copy,
    .trf-company-story__copy {
        font-size: 18px;
    }

    .trf-company-wide-image,
    .trf-company-story__media {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 560px) {
    .trf-company-shell {
        width: calc(100% - 28px) !important;
    }

    .trf-company-section {
        padding: 42px 0 48px;
    }

        .trf-company-section h2 {
            margin-bottom: 24px;
            font-size: 32px;
        }

    .trf-company-wide-image,
    .trf-company-story__media {
        aspect-ratio: 4 / 3;
    }

    .trf-company-copy,
    .trf-company-story__copy {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.6;
    }

    .trf-company-story__copy {
        margin-top: 0;
        padding: 24px 18px 26px;
    }

    .trf-company-story__play {
        width: 82px;
        height: 56px;
    }

        .trf-company-story__play span {
            border-top-width: 12px;
            border-bottom-width: 12px;
            border-left-width: 20px;
        }

    .trf-company-mission__cta {
        width: min(100%, 218px);
        min-width: 0;
    }
}

/* Company Overview header: exact artwork with crisp HTML title */
.trf-company-banner-crisp {
    position: relative;
    display: block;
    height: auto;
    min-height: 108px;
    overflow: hidden;
}

    .trf-company-banner-crisp > img {
        display: block;
        width: 100%;
        height: auto;
        height: auto;
        min-height: 108px;
        object-fit: contain;
        object-position: center;
    }

.trf-company-banner-crisp__content {
    position: absolute;
    left: 17.55%;
    top: 48%;
    z-index: 2;
    transform: translateY(-50%);
    font-family: var(--trf-font-primary);
    text-align: left;
}

    .trf-company-banner-crisp__content h1 {
        margin: 0;
        color: #4d4d4d;
        font-size: 44px;
        line-height: 1.04;
        font-weight: 400;
        letter-spacing: 0;
    }

        .trf-company-banner-crisp__content h1 strong {
            color: #006935;
            font-weight: 700;
        }

    .trf-company-banner-crisp__content p {
        margin: 7px 0 0;
        color: #4d4d4d;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 400;
    }

@media (max-width: 1500px) {
    .trf-company-banner-crisp__content h1 {
        font-size: 40px;
    }

    .trf-company-banner-crisp__content p {
        font-size: 18px;
    }
}

@media (max-width: 1100px) {
    .trf-company-banner-crisp__content h1 {
        font-size: 34px;
    }

    .trf-company-banner-crisp__content p {
        margin-top: 5px;
        font-size: 16px;
    }
}

@media (max-width: 760px) {
    .trf-company-banner-crisp {
        height: 176px;
    }

        .trf-company-banner-crisp > img {
            height: 176px;
            object-fit: cover;
            object-position: 18% center;
        }

    .trf-company-banner-crisp__content {
        left: 50%;
        top: 50%;
        width: calc(100% - 36px);
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .trf-company-banner-crisp__content h1 {
            font-size: 32px;
        }

        .trf-company-banner-crisp__content p {
            max-width: 320px;
            margin: 7px auto 0;
            font-size: 15px;
        }
}
/* Our Commitments subpage: supplied mockup layout */
.trf-commitments-banner {
    display: grid;
    grid-template-columns: 17% 1fr;
    min-height: 220px;
    overflow: hidden;
    background: #fff;
}

.trf-commitments-banner__icon {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    background: #fff;
}

    .trf-commitments-banner__icon img {
        display: block;
        width: 158px;
        height: 158px;
        border-radius: 50%;
        object-fit: cover;
    }

.trf-commitments-banner__panel {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 30px 6vw 30px 68px;
    isolation: isolate;
    background-color: #d7d7d7;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .78) 0%, rgba(238, 238, 238, .42) 42%, rgba(190, 190, 190, .08) 100%), url('/images/subpages/our-commitments-banner-background.png'), linear-gradient(90deg, #f7f7f7 0%, #d1d1d1 62%, #c2c2c2 100%);
    background-position: center, center, center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .trf-commitments-banner__panel::before {
        content: '';
        position: absolute;
        z-index: -1;
        left: -230px;
        top: 50%;
        width: 360px;
        height: 360px;
        transform: translateY(-50%);
        border: 9px solid #00783d;
        border-left-color: transparent;
        border-radius: 50%;
        background-image: radial-gradient(circle, rgba(0, 120, 61, .25) 1.5px, transparent 1.7px);
        background-size: 12px 12px;
    }

.trf-commitments-banner__content {
    position: relative;
    z-index: 2;
    font-family: var(--trf-font-primary);
}

    .trf-commitments-banner__content h1 {
        margin: 0;
        color: #4d4d4d;
        font-size: 44px;
        line-height: 1.05;
        font-weight: 400;
        letter-spacing: 0;
    }

        .trf-commitments-banner__content h1 strong {
            color: #00783d;
            font-weight: 700;
        }

    .trf-commitments-banner__content p {
        margin: 9px 0 0;
        color: #4d4d4d;
        font-size: 20px;
        line-height: 1.3;
        font-weight: 400;
    }

.trf-commitments-page {
    --commitments-green: #00783d;
    color: #4d4d4d;
    background: #fff;
}

.trf-commitments-shell {
    width: min(100% - 48px, 1360px);
}

.trf-commitments-intro {
    padding: 50px 0 50px;
    background: #fff;
}

.trf-commitments-intro__copy {
    width: min(100%, 1050px);
    margin: 0 auto;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 1.72;
    text-align: center;
}

    .trf-commitments-intro__copy p {
        margin: 0;
    }

    .trf-commitments-intro__copy strong {
        color: var(--commitments-green);
        font-weight: 700;
    }

.trf-commitments-gradient {
    padding: 106px 0 112px;
    background: linear-gradient(90deg, #fff 0%, #f2f2f2 31%, #e0e0e0 66%, #c9c9c9 100%);
}

.trf-commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 142px 116px;
}

.trf-commitment-card {
    position: relative;
    min-height: 338px;
    padding: 106px 48px 42px;
    border-radius: 28px;
    color: #fff;
    text-align: center;
    background: var(--commitments-green);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .12);
}

.trf-commitment-card__icon {
    position: absolute;
    left: 50%;
    top: -89px;
    width: 178px;
    height: 178px;
    transform: translateX(-50%);
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

    .trf-commitment-card__icon img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.trf-commitment-card h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
}

.trf-commitment-card p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}

.trf-commitments-video {
    margin-top: 136px;
}

    .trf-commitments-video > h2 {
        margin: 0 0 44px;
        color: #4d4d4d;
        font-size: 48px;
        line-height: 1.15;
        font-weight: 400;
        letter-spacing: 0;
        text-align: center;
    }

        .trf-commitments-video > h2 strong {
            color: var(--commitments-green);
            font-weight: 700;
        }

.trf-commitments-video__frame {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 1280px);
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    border: 6px solid #5a5a5a;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

    .trf-commitments-video__frame > img {
        display: block;
        width: 86%;
        height: 86%;
        object-fit: contain;
    }

.trf-commitments-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 150px;
    height: 104px;
    transform: translate(-50%, -50%);
    border-radius: 25px;
    background: #f51d27;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
    transition: transform .2s ease, background-color .2s ease;
}

    .trf-commitments-video__play span {
        width: 0;
        height: 0;
        margin-left: 10px;
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 39px solid #fff;
    }

.trf-commitments-video__frame:hover .trf-commitments-video__play,
.trf-commitments-video__frame:focus-visible .trf-commitments-video__play {
    transform: translate(-50%, -50%) scale(1.07);
    background: #d90f19;
}

.trf-commitments-video__frame:focus-visible {
    outline: 4px solid #95c11f;
    outline-offset: 5px;
}

@media (max-width: 1100px) {
    .trf-commitments-banner {
        grid-template-columns: 20% 1fr;
    }

    .trf-commitments-banner__icon img {
        width: 138px;
        height: 138px;
    }

    .trf-commitments-banner__panel {
        padding-left: 54px;
    }

    .trf-commitments-banner__content h1 {
        font-size: 38px;
    }

    .trf-commitments-banner__content p {
        font-size: 18px;
    }

    .trf-commitments-grid {
        gap: 126px 56px;
    }

    .trf-commitment-card {
        min-height: 360px;
        padding-inline: 34px;
    }

        .trf-commitment-card h2 {
            font-size: 36px;
        }

    .trf-commitments-video > h2 {
        font-size: 42px;
    }
}

@media (max-width: 760px) {
    .trf-commitments-banner {
        display: block;
        min-height: 184px;
    }

    .trf-commitments-banner__icon {
        display: none;
    }

    .trf-commitments-banner__panel {
        min-height: 184px;
        justify-content: center;
        padding: 28px 20px;
        background-position: center;
    }

        .trf-commitments-banner__panel::before {
            left: -220px;
            width: 330px;
            height: 330px;
            opacity: .55;
        }

    .trf-commitments-banner__content {
        width: 100%;
        text-align: center;
    }

        .trf-commitments-banner__content h1 {
            font-size: 32px;
        }

        .trf-commitments-banner__content p {
            max-width: 330px;
            margin: 8px auto 0;
            font-size: 15px;
        }

    .trf-commitments-shell {
        width: min(100% - 36px, 1360px);
    }

    .trf-commitments-intro {
        padding: 48px 0 92px;
    }

    .trf-commitments-intro__copy {
        font-size: 16px;
        line-height: 1.65;
    }

    .trf-commitments-gradient {
        padding: 86px 0 72px;
        background: linear-gradient(180deg, #fff 0%, #ededed 52%, #d1d1d1 100%);
    }

    .trf-commitments-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 112px;
    }

    .trf-commitment-card {
        height: auto;
        min-height: 108px;
        padding: 80px 24px 34px;
        border-radius: 22px;
    }

    .trf-commitment-card__icon {
        top: -65px;
        width: 130px;
        height: 130px;
        border-width: 5px;
    }

    .trf-commitment-card h2 {
        margin-bottom: 16px;
        font-size: 32px;
    }

    .trf-commitment-card p {
        font-size: 15px;
        line-height: 1.58;
    }

    .trf-commitments-video {
        margin-top: 92px;
    }

        .trf-commitments-video > h2 {
            margin-bottom: 28px;
            font-size: 32px;
        }

    .trf-commitments-video__frame {
        border-width: 4px;
        border-radius: 16px;
    }

        .trf-commitments-video__frame > img {
            width: 92%;
            height: 92%;
        }

    .trf-commitments-video__play {
        width: 76px;
        height: 54px;
        border-radius: 14px;
    }

        .trf-commitments-video__play span {
            margin-left: 5px;
            border-top-width: 13px;
            border-bottom-width: 13px;
            border-left-width: 21px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .trf-commitments-video__play {
        transition: none;
    }
}
/* Our Commitments header: approved Company Overview proportions */
.trf-commitments-banner-crisp {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 108px;
    aspect-ratio: 1920 / 195;
    overflow: hidden;
    background-color: #d0d0d0;
    background-image: url('/images/subpages/our-commitments-banner-background.png'), linear-gradient(90deg, #fff 0%, #f8f8f8 21%, #e5e5e5 52%, #c5c5c5 100%);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: 100% auto, cover;
}

    .trf-commitments-banner-crisp::before {
        content: '';
        position: absolute;
        left: -6.05%;
        top: 50%;
        z-index: 1;
        width: 22.9%;
        aspect-ratio: 1;
        transform: translateY(-50%);
        border: 7px solid #00783d;
        border-radius: 50%;
        background-color: #fff;
        background-image: linear-gradient(90deg, #fff 0%, #fff 64%, transparent 64%), radial-gradient(circle, rgba(0, 120, 61, .28) 1.4px, transparent 1.7px);
        background-size: 100% 100%, 12px 12px;
    }

.trf-commitments-banner-crisp__icon {
    position: absolute;
    left: 2.55%;
    top: 50%;
    z-index: 3;
    width: 6.7%;
    aspect-ratio: 1;
    transform: translateY(-50%);
    overflow: hidden;
    padding: 3px;
    border: 2px solid #00783d;
    border-radius: 50%;
    background: #fff;
}

    .trf-commitments-banner-crisp__icon img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.trf-commitments-banner-crisp__content {
    position: absolute;
    left: 17.55%;
    top: 48%;
    z-index: 4;
    transform: translateY(-50%);
    font-family: var(--trf-font-primary);
    text-align: left;
}

    .trf-commitments-banner-crisp__content h1 {
        margin: 0;
        color: #4d4d4d;
        font-size: 44px;
        line-height: 1.04;
        font-weight: 400;
        letter-spacing: 0;
    }

        .trf-commitments-banner-crisp__content h1 strong {
            color: #006935;
            font-weight: 700;
        }

    .trf-commitments-banner-crisp__content p {
        margin: 7px 0 0;
        color: #4d4d4d;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 400;
    }

@media (max-width: 1500px) {
    .trf-commitments-banner-crisp__content h1 {
        font-size: 40px;
    }

    .trf-commitments-banner-crisp__content p {
        font-size: 18px;
    }
}

@media (max-width: 1100px) {
    .trf-commitments-banner-crisp::before {
        border-width: 5px;
    }

    .trf-commitments-banner-crisp__content h1 {
        font-size: 34px;
    }

    .trf-commitments-banner-crisp__content p {
        margin-top: 5px;
        font-size: 16px;
    }
}

@media (max-width: 760px) {
    .trf-commitments-banner-crisp {
        height: 176px;
        aspect-ratio: auto;
        background-position: center;
        background-size: auto 410px, cover;
    }

        .trf-commitments-banner-crisp::before,
        .trf-commitments-banner-crisp__icon {
            display: none;
        }

    .trf-commitments-banner-crisp__content {
        left: 50%;
        top: 50%;
        width: calc(100% - 36px);
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .trf-commitments-banner-crisp__content h1 {
            font-size: 32px;
        }

        .trf-commitments-banner-crisp__content p {
            max-width: 330px;
            margin: 7px auto 0;
            font-size: 15px;
        }
}
/* Our Commitments: distinct commitment icons */
.trf-commitment-card__icon--renew,
.trf-commitment-card__icon--refurbish,
.trf-commitment-card__icon--remanufacture,
.trf-commitment-card__icon--recycle {
    display: grid;
    place-items: center;
    padding: 22px;
}

    .trf-commitment-card__icon--renew img,
    .trf-commitment-card__icon--refurbish img,
    .trf-commitment-card__icon--remanufacture img,
    .trf-commitment-card__icon--recycle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.trf-commitment-card__icon--remanufacture {
    padding: 16px;
    background: #00783d;
}

@media (max-width: 760px) {
    .trf-commitment-card__icon--renew,
    .trf-commitment-card__icon--refurbish,
    .trf-commitment-card__icon--recycle {
        padding: 16px;
    }

    .trf-commitment-card__icon--remanufacture {
        padding: 12px;
    }
}
/* Accreditations subpage: supplied mockup layout */
.trf-accreditations-page {
    --accreditations-green: #00783d;
    color: #4d4d4d;
    background: #fff;
}

.trf-accreditations-shell {
    width: min(100% - 48px, 1120px);
}

.trf-accreditations-intro {
    padding: 76px 0 112px;
    text-align: center;
    background: #fff;
}

    .trf-accreditations-intro h2 {
        max-width: 1370px;
        margin: 0 auto 24px;
        color: #4d4d4d;
        font-size: 34px;
        line-height: 1.22;
        font-weight: 400;
        letter-spacing: 0;
    }

        .trf-accreditations-intro h2 strong {
            color: var(--accreditations-green);
            font-weight: 700;
        }

    .trf-accreditations-intro > .trf-accreditations-shell > div {
        max-width: 940px;
        margin: 0 auto;
        font-size: 17px;
        line-height: 1.62;
    }

    .trf-accreditations-intro p,
    .trf-accreditation-card p,
    .trf-accreditations-contact p {
        margin: 0;
    }

    .trf-accreditations-intro strong {
        color: var(--accreditations-green);
    }

.trf-accreditations-list {
    padding: 72px 0 126px;
    background: #fff;
}

    .trf-accreditations-list .trf-accreditations-shell {
        display: grid;
        gap: 142px;
        width: min(100% - 48px, 1020px);
    }

.trf-accreditation-card {
    position: relative;
    min-height: 260px;
    padding: 100px 48px 42px;
    border-radius: 0 18px 0 18px;
    color: #fff;
    text-align: center;
    background: var(--accreditations-green);
    box-shadow: 0 13px 28px rgba(0, 0, 0, .1);
}

.trf-accreditation-card__logo {
    position: absolute;
    left: 50%;
    top: -92px;
    display: grid;
    place-items: center;
    width: 184px;
    height: 184px;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 22px;
    border: 3px solid var(--accreditations-green);
    border-radius: 50%;
    background: #fff;
}

    .trf-accreditation-card__logo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.trf-accreditation-card h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 31px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: 0;
}

.trf-accreditation-card > div:last-child {
    max-width: 900px;
    margin: 0 auto;
}

.trf-accreditation-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.58;
}

    .trf-accreditation-card p strong {
        color: #fff;
        font-weight: 700;
    }

.trf-accreditations-contact {
    padding: 48px 0;
    text-align: center;
    background: #f1f1f1;
}

    .trf-accreditations-contact .trf-accreditations-shell {
        max-width: 1000px;
        font-size: 16px;
        line-height: 1.55;
    }

    .trf-accreditations-contact a {
        color: var(--accreditations-green);
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

        .trf-accreditations-contact a:hover,
        .trf-accreditations-contact a:focus-visible {
            color: #005c2f;
        }

@media (max-width: 900px) {
    .trf-accreditations-intro h2 {
        font-size: 30px;
    }

    .trf-accreditations-list .trf-accreditations-shell {
        width: min(100% - 40px, 1020px);
    }

    .trf-accreditation-card {
        padding-inline: 34px;
    }
}

@media (max-width: 760px) {
    .trf-accreditations-shell,
    .trf-accreditations-list .trf-accreditations-shell {
        width: min(100% - 36px, 1120px);
    }

    .trf-accreditations-intro {
        padding: 48px 0 86px;
    }

        .trf-accreditations-intro h2 {
            margin-bottom: 20px;
            font-size: 28px;
        }

        .trf-accreditations-intro > .trf-accreditations-shell > div {
            font-size: 15px;
            line-height: 1.6;
        }

    .trf-accreditations-list {
        padding: 62px 0 84px;
    }

        .trf-accreditations-list .trf-accreditations-shell {
            gap: 108px;
        }

    .trf-accreditation-card {
        height: auto;
        min-height: 108px;
        padding: 76px 22px 30px;
        border-radius: 0 14px 0 14px;
    }

    .trf-accreditation-card__logo {
        top: -64px;
        width: 128px;
        height: 128px;
        padding: 16px;
        border-width: 2px;
    }

    .trf-accreditation-card h2 {
        margin-bottom: 15px;
        font-size: 26px;
    }

    .trf-accreditation-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .trf-accreditations-contact {
        padding: 38px 0;
    }

        .trf-accreditations-contact .trf-accreditations-shell {
            font-size: 14px;
        }
}

.trf-mock-header .mock-social {
    align-self: center;
    flex-wrap: nowrap;
    transform: none;
    line-height: 1;
}

    .trf-mock-header .mock-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 36px;
        cursor: pointer;
        transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    }

        .trf-mock-header .mock-social a:hover,
        .trf-mock-header .mock-social a:focus-visible {
            color: #95c11f;
            transform: translateY(-2px);
            opacity: 1;
        }

        .trf-mock-header .mock-social a:focus-visible {
            outline: 2px solid currentColor;
            outline-offset: 2px;
            border-radius: 50%;
        }

@media (max-width: 560px) {
    .trf-mock-header .mock-social {
        width: auto;
        flex-direction: row;
    }
}
/* Keep every social symbol on the same optical centre line. */
.trf-mock-header .mock-social-link--youtube::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.trf-mock-header .mock-social-link--youtube::after {
    left: 50%;
    top: 50%;
    transform: translate(-25%, -50%);
}

.trf-mock-header .mock-social-link--instagram::before {
    inset: auto;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
}

.trf-mock-header .mock-social-link--instagram::after {
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
}

.trf-mock-header .mock-social .mock-social-link--x::before,
.trf-mock-header .mock-social .mock-social-link--tumblr::before {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Resellers page: supplied recycling-page mock-up. */
.trf-recycling-page-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 18%) minmax(0, 1fr);
    align-items: center;
    min-height: clamp(220px, 15vw, 310px);
    overflow: hidden;
    background: #f3f3f3 url("/images/subpages/recycling-banner-white.png") center / cover no-repeat;
}

    .trf-recycling-page-banner::before {
        content: "";
        position: absolute;
        left: 14%;
        top: 50%;
        width: clamp(250px, 18vw, 360px);
        aspect-ratio: 1;
        border: 6px solid var(--trf-green);
        border-radius: 50%;
        background-image: radial-gradient(circle, rgba(0, 122, 61, 0.22) 1.5px, transparent 1.7px);
        background-size: 9px 9px;
        transform: translate(-50%, -50%);
    }

.trf-recycling-page-banner__icon,
.trf-recycling-page-banner__content {
    position: relative;
    z-index: 1;
}

.trf-recycling-page-banner__icon {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
}

    .trf-recycling-page-banner__icon img {
        display: block;
        width: min(132px, 62%);
        height: auto;
    }

.trf-recycling-page-banner__content {
    padding: 34px clamp(34px, 9vw, 170px);
}

    .trf-recycling-page-banner__content h1 {
        margin: 0;
        color: var(--trf-green);
        font-family: "Poppins", sans-serif;
        font-size: clamp(44px, 4vw, 70px);
        font-weight: 600;
        line-height: 1.05;
    }

    .trf-recycling-page-banner__content p {
        margin: 10px 0 0;
        color: #4d4d4d;
        font-size: clamp(18px, 1.45vw, 26px);
        line-height: 1.35;
    }

.trf-reseller-page {
    background: #f4f4f4;
    color: #4d4d4d;
}

    .trf-reseller-page h2 {
        margin: 0;
        color: #4d4d4d;
        font-size: clamp(34px, 3vw, 52px);
        font-weight: 400;
        line-height: 1.16;
        letter-spacing: 0;
    }

        .trf-reseller-page h2 strong,
        .trf-reseller-page p strong,
        .trf-reseller-page a:not(.mock-pill) {
            color: var(--trf-green);
            font-weight: 700;
        }

.trf-reseller-intro {
    padding: 88px 0 62px;
    text-align: center;
}

    .trf-reseller-intro .mock-shell {
        max-width: 1320px;
    }

    .trf-reseller-intro p {
        max-width: 1230px;
        margin: 34px auto 0;
        font-size: clamp(17px, 1.25vw, 22px);
        line-height: 1.65;
    }

.trf-reseller-envelope {
    padding: 28px 0 58px;
}

.trf-reseller-envelope__panel {
    padding: 42px 46px 48px;
    border-radius: 8px;
    background: var(--trf-green);
    color: #fff;
}

    .trf-reseller-envelope__panel h2 {
        color: #fff;
        font-size: clamp(30px, 2.45vw, 44px);
        text-align: center;
    }

        .trf-reseller-envelope__panel h2 strong {
            color: #fff;
            font-weight: 700;
        }

.trf-reseller-envelope__content {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 4vw, 72px);
    align-items: center;
    margin-top: 38px;
}

    .trf-reseller-envelope__content img {
        display: block;
        width: 100%;
        aspect-ratio: 1.65;
        border-radius: 4px;
        object-fit: cover;
        object-position: center;
    }

    .trf-reseller-envelope__content p {
        margin: 0;
        color: #fff;
        font-size: clamp(17px, 1.2vw, 21px);
        line-height: 1.62;
    }

        .trf-reseller-envelope__content p strong {
            color: #fff;
        }

.trf-reseller-envelope__button {
    display: flex;
    width: max-content;
    min-width: 260px;
    min-height: 56px;
    margin: 28px auto 0;
    justify-content: center;
    text-align: center;
}

.trf-reseller-revenue {
    padding: 26px 0 96px;
    text-align: center;
}

    .trf-reseller-revenue .mock-shell {
        max-width: 1320px;
    }

.trf-reseller-revenue__icon {
    display: block;
    width: 136px;
    height: 136px;
    margin: 44px auto 36px;
    object-fit: contain;
}

.trf-reseller-revenue p {
    max-width: 1180px;
    margin: 0 auto 26px;
    font-size: clamp(17px, 1.2vw, 21px);
    line-height: 1.62;
}

.trf-reseller-revenue .trf-reseller-revenue__note {
    margin-top: 46px;
    font-size: 14px;
}

.trf-reseller-revenue .trf-reseller-revenue__contact {
    margin-top: 46px;
    margin-bottom: 0;
}

.trf-reseller-revenue a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .trf-recycling-page-banner {
        grid-template-columns: 124px minmax(0, 1fr);
    }

        .trf-recycling-page-banner::before {
            left: 120px;
            width: 250px;
            opacity: 0.72;
        }

    .trf-recycling-page-banner__content {
        padding: 30px 34px 30px 64px;
    }

    .trf-reseller-envelope__content {
        grid-template-columns: 1fr;
    }

        .trf-reseller-envelope__content img {
            max-width: 720px;
            margin-inline: auto;
        }
}

@media (max-width: 600px) {
    .trf-recycling-page-banner {
        grid-template-columns: 90px minmax(0, 1fr);
        min-height: 200px;
    }

        .trf-recycling-page-banner::before {
            left: 88px;
            width: 190px;
            border-width: 4px;
            background-size: 7px 7px;
        }

    .trf-recycling-page-banner__icon img {
        width: 62px;
    }

    .trf-recycling-page-banner__content {
        padding: 24px 18px 24px 30px;
    }

        .trf-recycling-page-banner__content h1 {
            font-size: 36px;
        }

        .trf-recycling-page-banner__content p {
            font-size: 15px;
        }

    .trf-reseller-intro {
        padding: 58px 0 38px;
    }

    .trf-reseller-page h2 {
        font-size: 29px;
    }

    .trf-reseller-intro p,
    .trf-reseller-envelope__content p,
    .trf-reseller-revenue p {
        font-size: 16px;
        line-height: 1.58;
    }

    .trf-reseller-intro p {
        margin-top: 24px;
    }

    .trf-reseller-envelope {
        padding: 20px 0 44px;
    }

    .trf-reseller-envelope__panel {
        padding: 28px 20px 24px;
    }

        .trf-reseller-envelope__panel h2 {
            font-size: 27px;
        }

    .trf-reseller-envelope__content {
        gap: 24px;
        margin-top: 26px;
    }

        .trf-reseller-envelope__content img {
            aspect-ratio: 1.3;
        }

    .trf-reseller-envelope__button {
        width: min(100%, 290px);
        min-width: 0;
    }

    .trf-reseller-revenue {
        padding: 22px 0 68px;
    }

    .trf-reseller-revenue__icon {
        width: 112px;
        height: 112px;
        margin: 32px auto 28px;
    }

    .trf-reseller-revenue .trf-reseller-revenue__note,
    .trf-reseller-revenue .trf-reseller-revenue__contact {
        margin-top: 34px;
    }
}

/* Resellers page: live demo measurements correction. */
.trf-recycling-page-banner {
    grid-template-columns: 18% minmax(0, 1fr);
    min-height: 250px;
    height: 250px;
}

.trf-recycling-page-banner__content {
    padding: 34px 40px 34px 0;
}

    .trf-recycling-page-banner__content h1 {
        font-size: 50px;
        line-height: 1.08;
    }

    .trf-recycling-page-banner__content p {
        margin-top: 8px;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
    }

.trf-reseller-page {
    background: #e6e6e6;
}

    .trf-reseller-page h2 {
        font-size: 32px;
        line-height: 38.4px;
    }

.trf-reseller-intro {
    padding: 50px 0 37px;
}

    .trf-reseller-intro .mock-shell {
        width: min(1245px, calc(100% - 20px));
        max-width: 1245px;
    }

    .trf-reseller-intro p {
        max-width: 1180px;
        margin-top: 20px;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
    }

.trf-reseller-envelope {
    padding: 0 0 20px;
}

    .trf-reseller-envelope .mock-shell {
        max-width: 1140px;
    }

.trf-reseller-envelope__panel {
    min-height: 360px;
    padding: 25px;
    border-radius: 20px;
    background: #006935;
}

    .trf-reseller-envelope__panel h2 {
        font-size: 30px;
        line-height: 36px;
    }

.trf-reseller-envelope__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.85fr);
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
}

    .trf-reseller-envelope__content img {
        height: auto;
        aspect-ratio: 1.69;
    }

    .trf-reseller-envelope__content p {
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
    }

.trf-reseller-envelope__button {
    width: 228px;
    min-width: 228px;
    min-height: 46px;
    height: 46px;
    margin: 60px auto 20px;
    padding: 15px 30px;
    border-radius: 30px;
    background: #006935;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.trf-reseller-revenue {
    padding: 0 0 50px;
}

    .trf-reseller-revenue .mock-shell {
        width: min(1245px, calc(100% - 20px));
        max-width: 1245px;
    }

    .trf-reseller-revenue h2 {
        font-size: 32px;
        line-height: 38.4px;
    }

.trf-reseller-revenue__icon {
    width: 92.5px;
    height: 92.5px;
    margin: 36px auto;
}

.trf-reseller-revenue p {
    max-width: 1245px;
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.trf-reseller-revenue .trf-reseller-revenue__note {
    margin-top: 40px;
    font-size: 12px;
}

.trf-reseller-revenue .trf-reseller-revenue__contact {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .trf-recycling-page-banner {
        grid-template-columns: 124px minmax(0, 1fr);
        height: 250px;
    }

    .trf-recycling-page-banner__content {
        padding: 30px 34px 30px 64px;
    }

    .trf-reseller-envelope__panel {
        height: auto;
        min-height: 108px;
    }

    .trf-reseller-envelope__content {
        grid-template-columns: 1fr;
    }

    .trf-reseller-envelope__button {
        margin-top: 36px;
    }
}

@media (max-width: 600px) {
    .trf-recycling-page-banner {
        grid-template-columns: 90px minmax(0, 1fr);
        min-height: 200px;
        height: 200px;
    }

    .trf-recycling-page-banner__content {
        padding: 24px 18px 24px 30px;
    }

        .trf-recycling-page-banner__content h1 {
            font-size: 36px;
        }

        .trf-recycling-page-banner__content p {
            font-size: 15px;
            line-height: 1.35;
        }

    .trf-reseller-intro {
        padding: 44px 0 34px;
    }

    .trf-reseller-page h2,
    .trf-reseller-envelope__panel h2,
    .trf-reseller-revenue h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .trf-reseller-intro p,
    .trf-reseller-envelope__content p,
    .trf-reseller-revenue p {
        font-size: 16px;
        line-height: 1.58;
    }

    .trf-reseller-envelope__panel {
        padding: 20px;
        border-radius: 12px;
    }

    .trf-reseller-envelope__content {
        gap: 24px;
        padding: 0;
    }

        .trf-reseller-envelope__content img {
            aspect-ratio: 1.3;
        }

    .trf-reseller-envelope__button {
        width: min(100%, 228px);
        min-width: 0;
    }

    .trf-reseller-revenue__icon {
        width: 92.5px;
        height: 92.5px;
    }
}
/* Resellers page: exact supplied banner and demo copy correction. */
.trf-recycling-page-banner {
    background: #cfcfcf url("/images/subpages/recycling-banner-design.png") center / cover no-repeat;
}

    .trf-recycling-page-banner::before {
        display: none;
    }

.trf-recycling-page-banner__icon {
    background: transparent;
}

    .trf-recycling-page-banner__icon img {
        width: 112px;
        max-width: 62%;
    }
/* Resellers page: layered banner matched to supplied full-page artwork. */
.trf-recycling-page-banner {
    min-height: 220px;
    height: 220px;
    background-color: #cfcfcf;
    background-image: url("/images/subpages/recycling-banner-white.png"), url("/images/subpages/recycling-banner-design.png");
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}

.trf-recycling-page-banner__content {
    padding: 26px 40px 26px 0;
}

@media (max-width: 900px) {
    .trf-recycling-page-banner {
        min-height: 220px;
        height: 220px;
    }
}

@media (max-width: 600px) {
    .trf-recycling-page-banner {
        min-height: 180px;
        height: 180px;
    }
}
/* Resellers page: render the exact supplied 1920x195 banner crop. */
.trf-reseller-page-banner img {
    width: 100%;
    height: auto;
    height: auto;
    min-height: 108px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 760px) {
    .trf-reseller-page-banner img {
        height: auto;
        height: auto;
        min-height: 108px;
        object-fit: contain;
        object-position: center;
    }
}
/* Resellers page: increase desktop banner depth without cropping. */
@media (min-width: 761px) {
    .trf-reseller-page-banner img {
        height: clamp(195px, 11.45vw, 220px);
        object-fit: fill;
    }
}
/* Resellers page: fixed 250px desktop banner from visual comparison. */
@media (min-width: 761px) {
    .trf-reseller-page-banner img {
        height: 250px;
        object-fit: fill;
    }
}
/* Resellers page: definitive measurements from the supplied master artwork. */
.trf-reseller-page {
    background: #f2f2f2;
    color: #4d4d4d;
}

    .trf-reseller-page strong,
    .trf-reseller-page a {
        color: #006938;
    }

@media (min-width: 901px) {
    .trf-reseller-page-banner {
        display: block;
        height: auto;
        min-height: 108px;
        height: auto;
        overflow: hidden;
        border: 0;
    }

        .trf-reseller-page-banner img {
            display: block;
            width: 100%;
            height: auto;
            height: auto;
            min-height: 108px;
            object-fit: contain;
            object-position: center;
        }

    .trf-reseller-page h2 {
        margin: 0;
        color: #4d4d4d;
        font-size: 32px;
        font-weight: 400;
        line-height: 38px;
        letter-spacing: 0;
    }

    .trf-reseller-intro {
        padding: 50px 0 50px;
        text-align: center;
    }

        .trf-reseller-intro .mock-shell,
        .trf-reseller-revenue .mock-shell {
            width: min(1245px, calc(100% - 40px));
            max-width: 1245px;
        }

        .trf-reseller-intro p {
            max-width: 1180px;
            margin: 20px auto 0;
            color: #4d4d4d;
            font-size: 18px;
            font-weight: 500;
            line-height: 27px;
            letter-spacing: 0;
        }

    .trf-reseller-envelope {
        padding: 0;
    }

        .trf-reseller-envelope .mock-shell {
            width: min(1165px, calc(100% - 40px));
            max-width: 1165px;
        }

    .trf-reseller-envelope__panel {
        min-height: 340px;
        padding: 25px;
        border-radius: 20px;
        background: #016938;
    }

        .trf-reseller-envelope__panel h2 {
            color: #fff;
            font-size: 30px;
            font-weight: 400;
            line-height: 36px;
            text-align: center;
        }

            .trf-reseller-envelope__panel h2 strong {
                color: #fff;
            }

    .trf-reseller-envelope__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.76fr);
        align-items: center;
        gap: 20px;
        margin-top: 25px;
        padding: 5px;
    }

        .trf-reseller-envelope__content img {
            display: block;
            width: 100%;
            height: 215px;
            object-fit: cover;
            border-radius: 0;
        }

        .trf-reseller-envelope__content p {
            margin: 0;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            line-height: 27px;
            letter-spacing: 0;
        }

    .trf-reseller-envelope__button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 228px;
        min-width: 228px;
        min-height: 52px;
        height: 52px;
        margin: 46px auto 40px;
        padding: 0 30px;
        border-radius: 26px;
        background: #016938;
        color: #fff;
        font-size: 16px;
        line-height: 1;
        text-align: center;
    }

        .trf-reseller-envelope__button:hover,
        .trf-reseller-envelope__button:focus-visible {
            color: #fff;
        }

    .trf-reseller-revenue {
        padding: 0 0 36px;
        text-align: center;
    }

        .trf-reseller-revenue h2 {
            margin: 0;
        }

    .trf-reseller-revenue__icon {
        display: block;
        width: 105px;
        height: 105px;
        margin: 26px auto 28px;
        object-fit: contain;
    }

    .trf-reseller-revenue p {
        max-width: 1245px;
        margin: 0 auto 22px;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        letter-spacing: 0;
    }

    .trf-reseller-revenue .trf-reseller-revenue__note {
        margin: 34px auto 0;
        font-size: 12px;
        line-height: 18px;
    }

    .trf-reseller-revenue .trf-reseller-revenue__contact {
        margin: 29px auto 0;
    }
}
/* Resellers master banner: original layered source artwork. */
.trf-reseller-page-banner {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 108px;
    height: 213px;
    overflow: hidden;
    border: 0;
    background: #cfcfcf;
}

    .trf-reseller-page-banner::before,
    .trf-reseller-page-banner::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: auto;
        height: auto;
        height: auto;
        min-height: 108px;
        aspect-ratio: auto;
        border: 0;
        border-radius: 0;
        transform: none;
        pointer-events: none;
    }

    .trf-reseller-page-banner::before {
        z-index: -2;
        left: 9.25vw;
        right: -9.25vw;
        background: url("/images/subpages/recycling-banner-design.png") left center / 100% 100% no-repeat;
    }

    .trf-reseller-page-banner::after {
        z-index: -1;
        left: 0;
        right: 0;
        background: url("/images/subpages/recycling-banner-white.png") center / 100% 100% no-repeat;
    }

    .trf-reseller-page-banner .trf-recycling-page-banner__icon,
    .trf-reseller-page-banner .trf-recycling-page-banner__content {
        position: relative;
        z-index: 1;
    }

    .trf-reseller-page-banner .trf-recycling-page-banner__icon {
        display: grid;
        place-items: center;
        width: 240px;
        height: 213px;
        background: transparent;
    }

        .trf-reseller-page-banner .trf-recycling-page-banner__icon img {
            display: block;
            width: 110px;
            max-width: none;
            height: auto;
            height: auto;
            min-height: 108px;
            object-fit: contain;
        }

    .trf-reseller-page-banner .trf-recycling-page-banner__content {
        padding: 0 40px 0 100px;
    }

        .trf-reseller-page-banner .trf-recycling-page-banner__content h1 {
            margin: 0;
            color: #006938;
            font-family: "Poppins", sans-serif;
            font-size: 50px;
            font-weight: 600;
            line-height: 54px;
            letter-spacing: 0;
        }

        .trf-reseller-page-banner .trf-recycling-page-banner__content p {
            margin: 8px 0 0;
            color: #4d4d4d;
            font-size: 18px;
            font-weight: 500;
            line-height: 27px;
            letter-spacing: 0;
        }

@media (max-width: 900px) {
    .trf-reseller-page-banner {
        grid-template-columns: 120px minmax(0, 1fr);
        height: 170px;
    }

        .trf-reseller-page-banner::before {
            left: 8vw;
            right: -8vw;
        }

        .trf-reseller-page-banner .trf-recycling-page-banner__icon {
            width: 120px;
            height: 170px;
        }

            .trf-reseller-page-banner .trf-recycling-page-banner__icon img {
                width: 76px;
            }

        .trf-reseller-page-banner .trf-recycling-page-banner__content {
            padding: 0 18px 0 28px;
        }

            .trf-reseller-page-banner .trf-recycling-page-banner__content h1 {
                font-size: 34px;
                line-height: 39px;
            }

            .trf-reseller-page-banner .trf-recycling-page-banner__content p {
                margin-top: 5px;
                font-size: 14px;
                line-height: 20px;
            }
}
/* Shared subpage banners: grey bar + separate semi-circle artwork. */
.trf-subpage-banner {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-trf.png");
    --trf-banner-semi: url("/images/subpage-banners/banner-semi-circle.png");
    --trf-banner-height: clamp(150px, 10.8vw, 218px);
    --trf-banner-icon-col: clamp(96px, 7.5vw, 170px);
    --trf-banner-icon-gap: clamp(18px, 1.6vw, 38px);
    --trf-banner-semi-width: clamp(98px, 7.1vw, 144px);
    --trf-banner-copy-extra: clamp(8px, 1vw, 24px);
    --trf-banner-semi-left: calc(var(--trf-banner-icon-col) + var(--trf-banner-icon-gap));
    --trf-banner-pattern-left: var(--trf-banner-semi-left);
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: var(--trf-banner-icon-col) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    height: var(--trf-banner-height);
    min-height: var(--trf-banner-height);
    margin-top: -6px;
    overflow: hidden;
    border: 0;
    background: #fff;
}

    .trf-subpage-banner::before,
    .trf-subpage-banner::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        pointer-events: none;
    }

    .trf-subpage-banner::before {
        z-index: -1;
        inset: 0;
        background: var(--trf-banner-semi) var(--trf-banner-semi-left) center / var(--trf-banner-semi-width) 100% no-repeat;
    }

    .trf-subpage-banner::after {
        z-index: -2;
        left: var(--trf-banner-pattern-left);
        right: 0;
        background:
            var(--trf-banner-pattern) left center / auto 88% repeat,
            linear-gradient(90deg, #f8f8f8 0%, #eeeeee 42%, #cfcfcf 100%);
    }

.trf-subpage-banner--trf {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-trf.png");
}

.trf-subpage-banner--commitments {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-commitments.png");
}

.trf-subpage-banner--accreditations {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-accreditations.png");
}

.trf-subpage-banner--recycling {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-recycling.png");
}

.trf-subpage-banner--itad {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-itad.png");
}

.trf-subpage-banner--returns {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-returns.png");
}

.trf-subpage-banner--refurbishing {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-refurbishing.png");
}

.trf-subpage-banner--trade {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-trade.png");
}

.trf-subpage-banner__icon,
.trf-subpage-banner__content {
    position: relative;
    z-index: 1;
}

.trf-subpage-banner__icon {
    display: grid;
    place-items: center;
    width: var(--trf-banner-icon-col);
    height: var(--trf-banner-height);
    background: transparent;
}

    .trf-subpage-banner__icon img {
        display: block;
        width: clamp(64px, 5.9vw, 132px);
        height: clamp(64px, 5.9vw, 132px);
        min-height: 0;
        max-width: 100%;
        object-fit: contain;
    }

.trf-subpage-banner--trf .trf-subpage-banner__icon img {
    width: clamp(72px, 6.5vw, 136px);
    height: auto;
    max-height: calc(var(--trf-banner-height) - 38px);
}

.trf-subpage-banner__content {
    min-width: 0;
    padding: 0 clamp(18px, 2.5vw, 56px) 0 calc(var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
}

    .trf-subpage-banner__content h1 {
        margin: 0;
        color: #016938;
        font-family: "Poppins", sans-serif;
        font-size: clamp(33px, 2.6vw, 50px);
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: 0;
    }

.trf-subpage-banner--service .trf-subpage-banner__content h1 {
    font-size: clamp(33px, 2.6vw, 50px);
    line-height: 1.08;
}

.trf-subpage-banner__content h1 strong {
    color: inherit;
    font-weight: inherit;
}

.trf-subpage-banner--company .trf-subpage-banner__content h1,
.trf-subpage-banner--commitments .trf-subpage-banner__content h1 {
    color: #4d4d4d;
    font-weight: 400;
}

    .trf-subpage-banner--company .trf-subpage-banner__content h1 strong,
    .trf-subpage-banner--commitments .trf-subpage-banner__content h1 strong {
        color: #016938;
        font-weight: 700;
    }

.trf-subpage-banner__content p {
    margin: 8px 0 0;
    max-width: 1180px;
    color: #4d4d4d;
    font-size: clamp(13px, 1.04vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .trf-subpage-banner {
        --trf-banner-height: 156px;
        --trf-banner-icon-col: 86px;
        --trf-banner-icon-gap: 16px;
        --trf-banner-semi-width: 100px;
        --trf-banner-copy-extra: 12px;
    }

    .trf-subpage-banner__icon {
        width: var(--trf-banner-icon-col);
        height: var(--trf-banner-height);
    }

        .trf-subpage-banner__icon img {
            width: 76px;
            height: 76px;
        }

    .trf-subpage-banner--trf .trf-subpage-banner__icon img {
        width: 94px;
        height: 76px;
    }

    .trf-subpage-banner__content {
        padding: 0 18px 0 calc(var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
    }

        .trf-subpage-banner__content h1,
        .trf-subpage-banner--service .trf-subpage-banner__content h1 {
            font-size: 34px;
            line-height: 39px;
        }

        .trf-subpage-banner__content p {
            margin-top: 5px;
            font-size: 14px;
            line-height: 20px;
        }
}

@media (max-width: 560px) {
    .trf-subpage-banner {
        --trf-banner-height: 132px;
        --trf-banner-icon-col: 70px;
        --trf-banner-icon-gap: 10px;
        --trf-banner-semi-width: 86px;
        --trf-banner-copy-extra: 8px;
    }

    .trf-subpage-banner__icon {
        width: var(--trf-banner-icon-col);
        height: var(--trf-banner-height);
    }

        .trf-subpage-banner__icon img {
            width: 48px;
            height: 48px;
        }

    .trf-subpage-banner--trf .trf-subpage-banner__icon img {
        width: 62px;
        height: auto;
    }

    .trf-subpage-banner__content {
        padding: 0 10px 0 calc(var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
    }

        .trf-subpage-banner__content h1,
        .trf-subpage-banner--service .trf-subpage-banner__content h1 {
            font-size: 22px;
            line-height: 26px;
        }

        .trf-subpage-banner__content p {
            font-size: 11.5px;
            line-height: 16px;
        }
}

@media (max-width: 380px) {
    .trf-subpage-banner {
        --trf-banner-height: 126px;
        --trf-banner-icon-col: 60px;
        --trf-banner-icon-gap: 8px;
        --trf-banner-semi-width: 76px;
        --trf-banner-copy-extra: 8px;
    }

        .trf-subpage-banner__icon img {
            width: 42px;
            height: 42px;
        }

    .trf-subpage-banner--trf .trf-subpage-banner__icon img {
        width: 50px;
    }

        .trf-subpage-banner__content h1,
        .trf-subpage-banner--service .trf-subpage-banner__content h1 {
            font-size: 20px;
            line-height: 23px;
        }

        .trf-subpage-banner__content p {
            margin-top: 4px;
            font-size: 10.5px;
            line-height: 14px;
        }
}
/* Subpage header stacking: prevent dropdown transition ghosting over banners. */
.trf-mock-header.site-header {
    z-index: 100;
}

.trf-subpage-banner {
    z-index: 0;
}

@media (min-width: 921px) {
    .trf-mock-header .mock-submenu {
        pointer-events: auto;
    }
}
/* Resellers page: keep the CTA label readable and frame the money icon. */
.trf-reseller-page .trf-reseller-envelope__button,
.trf-reseller-page .trf-reseller-envelope__button:hover,
.trf-reseller-page .trf-reseller-envelope__button:focus-visible {
    width: 300px;
    min-width: 300px;
    white-space: nowrap;
    color: #fff;
}

.trf-reseller-revenue__icon {
    box-sizing: border-box;
    padding: 19px;
    border: 2px solid #006938;
    border-radius: 50%;
    background: #fff;
}

/* Resellers page: match the larger demo money badge. */
.trf-reseller-revenue__icon {
    width: 142px;
    height: 142px;
    padding: 24px;
}

@media (max-width: 600px) {
    .trf-reseller-revenue__icon {
        width: 122px;
        height: 122px;
        padding: 21px;
    }
}

/* Product pages use the shared subpage banner, then product details below. */
.product-detail--under-banner {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) 320px;
    padding-top: 48px;
}

@media (max-width: 1100px) {
    .product-detail--under-banner {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

        .product-detail--under-banner .product-facts {
            grid-column: 1 / -1;
            max-width: 520px;
        }
}

@media (max-width: 860px) {
    .product-detail--under-banner {
        grid-template-columns: 1fr;
    }

        .product-detail--under-banner .product-facts {
            max-width: none;
        }
}

/* Business & Schools page: demo-matched middle content. */
.trf-business-schools-page {
    background: #f2f2f2;
    color: #4d4d4d;
}

    .trf-business-schools-page strong,
    .trf-business-schools-page a,
    .trf-business-schools-page .green {
        color: #006b3f;
    }

    .trf-business-schools-page .green {
        font-weight: 700;
    }

.trf-business-schools-intro {
    padding: 72px 0 42px;
    text-align: center;
}

    .trf-business-schools-intro .mock-shell,
    .trf-business-schools-grid .mock-shell,
    .trf-business-schools-note .mock-shell {
        width: min(1450px, calc(100% - 40px));
        max-width: 1450px;
    }

    .trf-business-schools-intro p {
        max-width: 1180px;
        margin: 0 auto;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        letter-spacing: 0;
    }

.trf-business-schools-grid {
    padding: 0 0 22px;
}

    .trf-business-schools-grid .mock-shell {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        align-items: stretch;
    }

.trf-business-schools-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 3px solid #006b3f;
    border-radius: 55px 0 55px 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.trf-business-schools-page .info-card-header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    padding: 20px 30px;
    text-align: center;
}

    .trf-business-schools-page .info-card-header h2 {
        margin: 0;
        color: #4d4d4d;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.15;
        letter-spacing: 0;
    }

.trf-business-schools-page .info-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

    .trf-business-schools-page .info-card-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.trf-business-schools-page .info-card-body {
    padding: 40px 45px 55px;
    text-align: center;
}

    .trf-business-schools-page .info-card-body p {
        max-width: 660px;
        margin: 0 auto;
        color: #4d4d4d;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.75;
        letter-spacing: 0;
    }

.trf-business-schools-note {
    padding: 6px 0 82px;
    text-align: center;
}

    .trf-business-schools-note p {
        margin: 0;
        color: #4d4d4d;
        font-size: 17px;
        font-weight: 500;
        line-height: 18px;
    }

@media (max-width: 900px) {
    .trf-business-schools-intro {
        padding: 54px 0 34px;
    }

    .trf-business-schools-grid .mock-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .trf-business-schools-card {
        border-radius: 42px 0 42px 0;
    }

    .trf-business-schools-page .info-card-header {
        height: auto;
        min-height: 108px;
    }

    .trf-business-schools-page .info-card-image {
        height: auto;
        max-height: 460px;
    }

        .trf-business-schools-page .info-card-image img {
            height: auto;
        }
}

@media (max-width: 600px) {
    .trf-business-schools-intro .mock-shell,
    .trf-business-schools-grid .mock-shell,
    .trf-business-schools-note .mock-shell {
        width: min(100% - 28px, 1450px);
    }

    .trf-business-schools-card {
        border-width: 2px;
        border-radius: 30px 0 30px 0;
    }

    .trf-business-schools-intro p,
    .trf-business-schools-page .info-card-body p {
        font-size: 16px;
        line-height: 1.58;
    }

    .trf-business-schools-page .info-card-header {
        min-height: 0;
        padding: 24px 18px 18px;
    }

        .trf-business-schools-page .info-card-header h2 {
            font-size: 24px;
            line-height: 1.18;
        }

    .trf-business-schools-page .info-card-body {
        padding: 30px 20px 38px;
    }

    .trf-business-schools-note {
        padding-bottom: 62px;
    }
}




/* Public Sector page: demo-matched middle content. */
.trf-public-sector-page {
    --green: #006b3f;
    --green-light: #007a45;
    --dark: #303640;
    --text: #333846;
    background: #fff;
    color: #4d4d4d;
}

    .trf-public-sector-page .mock-shell {
        width: min(1200px, calc(100% - 48px));
        max-width: 1200px;
    }

    .trf-public-sector-page .page-section {
        padding: 0px 0;
        text-align: center;
    }

    .trf-public-sector-page .intro-section {
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .trf-public-sector-page .compact-section {
        padding-top: 0px;
        padding-bottom: 38px;
    }

    .trf-public-sector-page .section-title {
        max-width: 1100px;
        margin: 0 auto 24px;
        color: #4d4d4d;
        font-size: 38px;
        font-weight: 400;
        line-height: 1.18;
        letter-spacing: 0;
    }

        .trf-public-sector-page .section-title span,
        .trf-public-sector-page .section-text strong,
        .trf-public-sector-page .section-text a,
        .trf-public-sector-page .bottom-text strong,
        .trf-public-sector-page .bottom-text a {
            color: var(--green);
            font-weight: 700;
        }

    .trf-public-sector-page .smaller-title {
        font-size: 34px;
    }

    .trf-public-sector-page .section-text {
        max-width: 1040px;
        margin: 0 auto 18px;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.55;
        letter-spacing: 0;
    }

    .trf-public-sector-page .hero-product-img {
        display: block;
        width: min(1200px, 100%);
        height: auto;
        margin: 25px auto 25px;
        object-fit: contain;
    }

    .trf-public-sector-page .revenue-cards {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        gap: 24px;
        margin: 30px auto 28px;
    }

    .trf-public-sector-page .revenue-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 340px;
        min-height: 220px;
        padding: 28px 28px 26px;
        background: var(--green-light);
        color: #fff;
        border-radius: 18px;
        box-shadow: 0 7px 16px rgba(0, 0, 0, 0.25);
        text-align: center;
    }

        .trf-public-sector-page .revenue-card img {
            display: block;
            width: 72px;
            height: 72px;
            margin: 0 auto 22px;
            object-fit: contain;
        }

        .trf-public-sector-page .revenue-card p,
        .trf-public-sector-page .revenue-card strong {
            margin: 0;
            color: #fff !important;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.55;
        }

    .trf-public-sector-page .small-note {
        max-width: 850px;
        margin: 25px auto 0;
        color: #4d4d4d;
        font-size: 17px;
        line-height: 1.45;
    }

    .trf-public-sector-page .rounded-image {
        display: block;
        width: min(850px, 100%);
        height: 290px;
        margin: 38px auto 28px;
        object-fit: cover;
        object-position: center;
        border-radius: 16px;
    }

    .trf-public-sector-page .bottom-text {
        max-width: 900px;
    }

@media (max-width: 1100px) {
    .trf-public-sector-page .section-title {
        font-size: 34px;
    }

    .trf-public-sector-page .section-text {
        font-size: 16px;
    }

    .trf-public-sector-page .hero-product-img {
        width: min(820px, 100%);
        margin-top: 60px;
    }
}

@media (max-width: 850px) {
    .trf-public-sector-page .mock-shell {
        width: min(100% - 36px, 1200px);
    }

    .trf-public-sector-page .section-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .trf-public-sector-page .mock-shell {
        width: min(100% - 28px, 1200px);
    }

    .trf-public-sector-page .section-title {
        font-size: 26px;
    }

    .trf-public-sector-page .section-text {
        font-size: 15px;
    }

    .trf-public-sector-page .hero-product-img {
        margin-top: 45px;
    }

    .trf-public-sector-page .revenue-card {
        width: 100%;
    }

    .trf-public-sector-page .rounded-image {
        height: 220px;
    }
}


/* How To Recycle page: supplied middle content layout. */
.trf-how-to-recycle-page {
    --green: #08733f;
    --lime: #8bc316;
    --text: #3d3d3d;
    --muted: #707070;
    --light-grey: #dddddd;
    --white: #ffffff;
    background: var(--white);
    color: #4d4d4d;
}


    .trf-how-to-recycle-page a {
        color: inherit;
        text-decoration: none;
    }

    .trf-how-to-recycle-page select {
        font: inherit;
    }

    .trf-how-to-recycle-page strong,
    .trf-how-to-recycle-page .introduction-content strong,
    .trf-how-to-recycle-page .recycling-process strong,
    .trf-how-to-recycle-page .cartridge-information strong {
        color: var(--green);
    }

    .trf-how-to-recycle-page .recycle-introduction {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
        padding-top: 62px;
        text-align: center;
    }

    .trf-how-to-recycle-page .cartridge-checker {
        width: min(420px, 100%);
        margin: 0 auto 58px;
        overflow: hidden;
        border: 1px solid #555555;
        border-radius: 22px;
        background: var(--white);
        box-shadow: 0 8px 14px rgba(0, 0, 0, 0.14);
    }

        .trf-how-to-recycle-page .cartridge-checker h2 {
            margin: 0;
            padding: 19px 15px;
            background: var(--green);
            color: var(--white);
            font-size: 23px;
        }

    .trf-how-to-recycle-page .checker-fields {
        display: grid;
        gap: 15px;
        padding: 18px 74px 22px;
    }

        .trf-how-to-recycle-page .checker-fields label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .trf-how-to-recycle-page .checker-fields select {
            width: 100%;
            height: 38px;
            padding: 0 12px;
            border: 1px solid #999999;
            border-radius: 2px;
            background: var(--white);
            color: #4d4d4d;
            font-size: 16px;
            cursor: pointer;
        }

            .trf-how-to-recycle-page .checker-fields select:focus {
                border-color: var(--green);
                outline: 2px solid rgba(8, 115, 63, 0.18);
                outline-offset: 2px;
            }

    .trf-how-to-recycle-page .recycling-process--image {
        width: min(1280px, calc(100% - 40px));
        padding: 46px 0 60px;
        text-align: center;
    }

    .trf-how-to-recycle-page .recycling-process-image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    .trf-how-to-recycle-page .introduction-content {
        max-width: 820px;
        margin: 0 auto;
    }

        .trf-how-to-recycle-page .introduction-content h2 {
            margin: 0 0 15px;
            font-size: 22px;
            font-weight: 400;
        }

        .trf-how-to-recycle-page .introduction-content p {
            margin: 10px 0;
            font-size: 18px;
            line-height: 1.55;
        }

    .trf-how-to-recycle-page .recycling-process {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
        padding: 42px 0 75px;
    }

        .trf-how-to-recycle-page .recycling-process > h2 {
            margin: 0 0 50px;
            text-align: center;
            font-size: 26px;
            font-weight: 400;
        }

    .trf-how-to-recycle-page .recycling-steps {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

        .trf-how-to-recycle-page .recycling-steps::before {
            content: "";
            position: absolute;
            top: 104px;
            right: 8%;
            left: 8%;
            height: 5px;
            border-radius: 5px;
            background: var(--light-grey);
            transform: rotate(-2deg);
        }

    .trf-how-to-recycle-page .recycling-step {
        position: relative;
        min-height: 275px;
        text-align: center;
    }

        .trf-how-to-recycle-page .recycling-step:nth-child(2) {
            transform: translateY(-38px);
        }

    .trf-how-to-recycle-page .step-number {
        position: absolute;
        top: -30px;
        left: 50%;
        color: rgba(8, 115, 63, 0.08);
        font-size: 60px;
        font-weight: 700;
        transform: translateX(-50%);
        -webkit-text-stroke: 1px rgba(8, 115, 63, 0.18);
    }

    .trf-how-to-recycle-page .step-icon {
        position: relative;
        z-index: 2;
        display: grid;
        width: 145px;
        height: 145px;
        margin: 0 auto;
        place-items: center;
        border: 10px solid var(--white);
        border-radius: 50%;
        background: var(--light-grey);
        box-shadow: 0 7px 15px rgba(0, 0, 0, 0.14);
        color: #4d4d4d;
        font-size: 34px;
        font-weight: 700;
    }

    .trf-how-to-recycle-page .recycling-step:nth-child(2) .step-icon {
        background: linear-gradient(145deg, var(--lime), var(--green));
        color: var(--white);
    }

    .trf-how-to-recycle-page .step-content h3 {
        margin: 14px 0 7px;
        color: #4d4d4d;
        font-size: 20px;
    }

    .trf-how-to-recycle-page .step-content p {
        max-width: 260px;
        margin: 0 auto;
        color: #4d4d4d;
        font-size: 18px;
        line-height: 1.6;
    }

    .trf-how-to-recycle-page .cartridge-information {
        width: min(1120px, calc(100% - 40px));
        margin: 0 auto;
        padding-bottom: 82px;
    }

        .trf-how-to-recycle-page .cartridge-information > h2 {
            margin: 0 0 42px;
            text-align: center;
            font-size: 27px;
            font-weight: 400;
            line-height: 1.35;
        }

    .trf-how-to-recycle-page .cartridge-definition {
        max-width: 760px;
        margin: 0 auto 30px;
    }

        .trf-how-to-recycle-page .cartridge-definition h3 {
            margin: 0 0 10px 10px;
            color: var(--green);
            font-size: 24px;
        }

        .trf-how-to-recycle-page .cartridge-definition ul {
            margin: 0;
            padding: 15px 30px 15px 42px;
            border: 2px solid var(--green);
            border-radius: 12px;
        }

        .trf-how-to-recycle-page .cartridge-definition li {
            padding: 2px 0;
            font-size: 18px;
            line-height: 1.8;
        }

    .trf-how-to-recycle-page .reorder-button {
        display: block;
        width: max-content;
        max-width: 100%;
        margin: 48px auto 35px;
        padding: 11px 24px;
        border: 2px solid var(--green);
        border-radius: 24px;
        color: var(--green);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        transition: background-color 180ms ease, color 180ms ease;
    }

        .trf-how-to-recycle-page .reorder-button:hover,
        .trf-how-to-recycle-page .reorder-button:focus-visible {
            background: var(--green);
            color: var(--white);
        }

        .trf-how-to-recycle-page .reorder-button:focus-visible {
            outline: 3px solid rgba(139, 195, 22, 0.35);
            outline-offset: 3px;
        }

    .trf-how-to-recycle-page .recycling-notices {
        text-align: center;
    }

        .trf-how-to-recycle-page .recycling-notices p {
            margin: 4px 0;
            font-size: 18px;
            line-height: 1.45;
        }

    .trf-how-to-recycle-page .recycling-contact {
        margin: 36px 0 0;
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }

        .trf-how-to-recycle-page .recycling-contact a {
            color: var(--green);
            font-weight: 700;
        }

@media (max-width: 850px) {
    .trf-how-to-recycle-page .recycling-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .trf-how-to-recycle-page .recycling-steps::before {
            display: none;
        }

    .trf-how-to-recycle-page .recycling-step,
    .trf-how-to-recycle-page .recycling-step:nth-child(2) {
        display: grid;
        grid-template-columns: 120px 1fr;
        min-height: 145px;
        align-items: center;
        text-align: left;
        transform: none;
    }

    .trf-how-to-recycle-page .step-icon {
        width: 110px;
        height: 110px;
        margin: 0;
        font-size: 28px;
    }

    .trf-how-to-recycle-page .step-number {
        top: 0;
        left: 105px;
        transform: none;
    }

    .trf-how-to-recycle-page .step-content h3 {
        margin-top: 0;
    }

    .trf-how-to-recycle-page .step-content p {
        max-width: 420px;
        margin: 0;
    }
}

@media (max-width: 550px) {
    .trf-how-to-recycle-page .recycle-introduction,
    .trf-how-to-recycle-page .recycling-process,
    .trf-how-to-recycle-page .cartridge-information {
        width: calc(100% - 28px);
    }

    .trf-how-to-recycle-page .recycle-introduction {
        padding-top: 42px;
    }

    .trf-how-to-recycle-page .cartridge-checker {
        margin-bottom: 42px;
    }

        .trf-how-to-recycle-page .cartridge-checker h2 {
            font-size: 20px;
        }

    .trf-how-to-recycle-page .checker-fields {
        padding: 18px 28px 22px;
    }

    .trf-how-to-recycle-page .introduction-content h2,
    .trf-how-to-recycle-page .cartridge-information > h2 {
        font-size: 24px;
    }

    .trf-how-to-recycle-page .recycling-process {
        padding-bottom: 55px;
    }

    .trf-how-to-recycle-page .recycling-step,
    .trf-how-to-recycle-page .recycling-step:nth-child(2) {
        grid-template-columns: 92px 1fr;
    }

    .trf-how-to-recycle-page .step-icon {
        width: 84px;
        height: 84px;
        border-width: 6px;
        font-size: 22px;
    }

    .trf-how-to-recycle-page .step-number {
        left: 70px;
        font-size: 46px;
    }

    .trf-how-to-recycle-page .cartridge-definition h3 {
        font-size: 22px;
    }

    .trf-how-to-recycle-page .cartridge-definition ul {
        padding-left: 34px;
    }

    .trf-how-to-recycle-page .reorder-button {
        width: 100%;
    }
}


.trf-tesco-ink-page {
    --tesco-blue: #00539f;
    --tesco-red: #e30613;
    --tesco-peach: #f7ded0;
    --tesco-light: #f2f5f8;
    --tesco-text: #303640;
    background: #ffffff;
    color: #4d4d4d;
    font-size: 18px;
}

    .trf-tesco-ink-page .mock-shell {
        width: min(1180px, calc(100% - 40px));
    }

    .trf-tesco-ink-page a {
        color: var(--tesco-blue);
        font-weight: 700;
    }

    .trf-tesco-ink-page .tesco-brand-intro {
        padding: 44px 0 22px;
    }

    .trf-tesco-ink-page .tesco-brand-intro__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .trf-tesco-ink-page .tesco-brand-title {
        display: flex;
        align-items: center;
        gap: 22px;
        color: var(--tesco-blue);
        font-size: clamp(31px, 3.4vw, 52px);
        font-weight: 700;
        line-height: 1.05;
    }

        .trf-tesco-ink-page .tesco-brand-title img {
            width: 165px;
            max-width: 34vw;
        }

    .trf-tesco-ink-page .tesco-clubcard {
        width: 170px;
        max-width: 24vw;
    }

    .trf-tesco-ink-page .tesco-hero-panel {
        padding: 12px 0 38px;
    }

    .trf-tesco-ink-page .tesco-hero-panel__inner {
        display: grid;
        grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
        align-items: center;
        overflow: hidden;
        border: 2px solid rgba(0, 83, 159, 0.18);
        border-radius: 0 48px 0 48px;
        background: var(--tesco-peach);
        box-shadow: 0 7px 16px rgba(0, 0, 0, 0.13);
    }

    .trf-tesco-ink-page .tesco-hero-panel__image {
        display: grid;
        min-height: 330px;
        place-items: center;
        background: #ffffff;
    }

        .trf-tesco-ink-page .tesco-hero-panel__image img {
            width: min(300px, 72%);
        }

    .trf-tesco-ink-page .tesco-hero-panel__copy {
        padding: 44px 54px;
        text-align: center;
    }

        .trf-tesco-ink-page .tesco-hero-panel__copy h2 {
            margin: 0 auto 30px;
            max-width: 620px;
            color: var(--tesco-blue);
            font-size: clamp(28px, 3vw, 46px);
            font-weight: 400;
            line-height: 1.16;
        }

        .trf-tesco-ink-page .tesco-hero-panel__copy strong {
            font-weight: 800;
        }

    .trf-tesco-ink-page .tesco-button {
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        padding: 12px 30px;
        border: 2px solid var(--tesco-blue);
        border-radius: 28px;
        background: #ffffff;
        color: var(--tesco-blue);
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-transform: uppercase;
        transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
    }

        .trf-tesco-ink-page .tesco-button:hover,
        .trf-tesco-ink-page .tesco-button:focus-visible,
        .trf-tesco-ink-page .tesco-button--primary {
            border-color: var(--tesco-red);
            background: var(--tesco-red);
            color: #ffffff;
        }

            .trf-tesco-ink-page .tesco-button--primary:hover,
            .trf-tesco-ink-page .tesco-button--primary:focus-visible {
                border-color: var(--tesco-blue);
                background: var(--tesco-blue);
            }

    .trf-tesco-ink-page .tesco-how-it-works {
        padding: 18px 0 48px;
        text-align: center;
    }

    .trf-tesco-ink-page .tesco-thank-you {
        margin: 0 0 18px;
        color: var(--tesco-blue);
        font-size: 22px;
        font-weight: 800;
    }

    .trf-tesco-ink-page .tesco-how-it-works h2 {
        margin: 0 0 24px;
        color: #ffffff;
        border-radius: 36px 36px 0 0;
        background: var(--tesco-blue);
        padding: 16px 24px;
        font-size: 34px;
        font-weight: 800;
    }

    .trf-tesco-ink-page .tesco-step-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        overflow: hidden;
        border: 2px solid var(--tesco-blue);
        border-top: 0;
        border-radius: 0 0 28px 28px;
        background: var(--tesco-light);
    }

        .trf-tesco-ink-page .tesco-step-grid article {
            padding: 24px 20px 26px;
            border-left: 1px solid rgba(0, 83, 159, 0.18);
        }

            .trf-tesco-ink-page .tesco-step-grid article:first-child {
                border-left: 0;
            }

    .trf-tesco-ink-page .tesco-step-image {
        display: grid;
        height: 145px;
        margin-bottom: 18px;
        place-items: center;
        border-radius: 14px;
        background: #ffffff;
    }

        .trf-tesco-ink-page .tesco-step-image img {
            max-width: 128px;
            max-height: 118px;
            object-fit: contain;
        }

    .trf-tesco-ink-page .tesco-step-grid p,
    .trf-tesco-ink-page .tesco-slip-note {
        margin: 0;
        font-size: 18px;
        line-height: 1.55;
    }

    .trf-tesco-ink-page .tesco-slip-note {
        margin: 26px auto 22px;
        max-width: 1370px;
    }

    .trf-tesco-ink-page .tesco-little-helps {
        display: block;
        width: min(560px, 90%);
        margin: 0 auto 24px;
    }

    .trf-tesco-ink-page .tesco-do-not-post {
        display: grid;
        grid-template-columns: 190px 1fr;
        max-width: 760px;
        margin: 0 auto;
        align-items: center;
        gap: 26px;
        color: var(--tesco-red);
        font-size: clamp(38px, 6vw, 76px);
        line-height: 1;
        text-align: left;
    }

        .trf-tesco-ink-page .tesco-do-not-post img {
            width: 100%;
        }

    .trf-tesco-ink-page .tesco-eligible-card {
        padding: 40px 0 36px;
        background: #f3f3f3;
    }

    .trf-tesco-ink-page .tesco-eligible-card__panel {
        width: min(560px, 100%);
        margin: 0 auto;
        overflow: hidden;
        border: 2px solid var(--tesco-blue);
        border-radius: 26px 0 26px 0;
        background: #ffffff;
        box-shadow: 0 9px 18px rgba(0, 0, 0, 0.16);
        text-align: center;
    }

        .trf-tesco-ink-page .tesco-eligible-card__panel h2 {
            margin: 0;
            padding: 18px 24px;
            background: var(--tesco-blue);
            color: #ffffff;
            font-size: 26px;
            font-weight: 800;
        }

    .trf-tesco-ink-page .tesco-checker-fields {
        display: grid;
        gap: 14px;
        padding: 26px 52px 12px;
    }

        .trf-tesco-ink-page .tesco-checker-fields select {
            width: 100%;
            height: 46px;
            padding: 0 14px;
            border: 1px solid #aeb7c1;
            background: #ffffff;
            color: #4d4d4d;
            font-size: 16px;
        }

    .trf-tesco-ink-page .tesco-eligible-card__panel p {
        margin: 0;
        padding: 0 42px 28px;
        color: #4d4d4d;
        font-size: 15px;
        line-height: 1.45;
    }

    .trf-tesco-ink-page .tesco-buttons-section {
        padding: 42px 0 30px;
        text-align: center;
    }

    .trf-tesco-ink-page .tesco-button-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 22px;
        max-width: 800px;
        margin: 0 auto 28px;
    }

    .trf-tesco-ink-page .tesco-everylittlehelps {
        display: block;
        width: min(250px, 70%);
        margin: 0 auto;
    }

    .trf-tesco-ink-page .tesco-terms {
        padding: 36px 0 76px;
    }

        .trf-tesco-ink-page .tesco-terms .mock-shell {
            padding: 34px 42px;
            border: 2px solid rgba(0, 83, 159, 0.2);
            border-radius: 0 36px 0 36px;
            background: #ffffff;
            box-shadow: 0 5px 14px rgba(0, 0, 0, 0.09);
        }

        .trf-tesco-ink-page .tesco-terms h2 {
            margin: 0 0 14px;
            color: var(--tesco-blue);
            font-size: 30px;
            font-weight: 800;
        }

        .trf-tesco-ink-page .tesco-terms p,
        .trf-tesco-ink-page .tesco-terms li {
            font-size: 17px;
            line-height: 1.62;
        }

        .trf-tesco-ink-page .tesco-terms ul {
            margin: 16px 0 0;
            padding-left: 24px;
        }

        .trf-tesco-ink-page .tesco-terms li::marker {
            color: var(--tesco-red);
        }

@media (max-width: 950px) {
    .trf-tesco-ink-page .tesco-hero-panel__inner,
    .trf-tesco-ink-page .tesco-step-grid {
        grid-template-columns: 1fr 1fr;
    }

        .trf-tesco-ink-page .tesco-step-grid article:nth-child(odd) {
            border-left: 0;
        }

        .trf-tesco-ink-page .tesco-step-grid article:nth-child(n + 3) {
            border-top: 1px solid rgba(0, 83, 159, 0.18);
        }
}

@media (max-width: 680px) {
    .trf-tesco-ink-page .mock-shell {
        width: calc(100% - 28px);
    }

    .trf-tesco-ink-page .tesco-brand-intro__inner,
    .trf-tesco-ink-page .tesco-brand-title,
    .trf-tesco-ink-page .tesco-do-not-post {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .trf-tesco-ink-page .tesco-clubcard {
        max-width: 170px;
    }

    .trf-tesco-ink-page .tesco-hero-panel__inner,
    .trf-tesco-ink-page .tesco-step-grid,
    .trf-tesco-ink-page .tesco-button-row {
        grid-template-columns: 1fr;
    }

    .trf-tesco-ink-page .tesco-hero-panel__image {
        min-height: 210px;
    }

    .trf-tesco-ink-page .tesco-hero-panel__copy {
        padding: 32px 24px 38px;
    }

    .trf-tesco-ink-page .tesco-step-grid article,
    .trf-tesco-ink-page .tesco-step-grid article:nth-child(n) {
        border-left: 0;
        border-top: 1px solid rgba(0, 83, 159, 0.18);
    }

        .trf-tesco-ink-page .tesco-step-grid article:first-child {
            border-top: 0;
        }

    .trf-tesco-ink-page .tesco-checker-fields {
        padding: 22px 28px 12px;
    }

    .trf-tesco-ink-page .tesco-do-not-post img {
        width: min(180px, 70%);
        margin: 0 auto;
    }

    .trf-tesco-ink-page .tesco-terms .mock-shell {
        padding: 28px 24px;
    }
}

.trf-tesco-ink-page .tesco-t-and-c-list p {
    position: relative;
    margin: 0 0 9px;
    padding-left: 24px;
}

    .trf-tesco-ink-page .tesco-t-and-c-list p::before {
        content: "â–¼";
        position: absolute;
        left: 0;
        top: 0.08em;
        color: var(--tesco-red);
        font-size: 13px;
    }

.trf-tesco-legacy-page {
    --tesco-blue: rgb(8, 84, 160);
    --tesco-red: rgb(238, 28, 46);
    --tesco-grey: rgb(246, 246, 246);
    background: #ffffff;
    color: rgb(8, 84, 160);
    font-family: Poppins, Arial, sans-serif;
    font-size: 18px;
}

    .trf-tesco-legacy-page .tesco-page-wrapper {
        padding: 34px 0 70px;
    }

    .trf-tesco-legacy-page .tesco-container {
        width: min(960px, calc(100% - 30px));
        margin-right: auto;
        margin-left: auto;
    }

    .trf-tesco-legacy-page .tesco-row {
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .trf-tesco-legacy-page .tesco-col {
        min-width: 0;
        flex: 1 1 100%;
    }

    .trf-tesco-legacy-page .flex-middle {
        display: flex;
        align-items: center;
    }

    .trf-tesco-legacy-page .text-center,
    .trf-tesco-legacy-page .atext-center {
        text-align: center;
    }

    .trf-tesco-legacy-page .bold {
        font-weight: 800;
    }

    .trf-tesco-legacy-page .img-responsive {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-tesco-legacy-page .margin-auto {
        margin-right: auto;
        margin-left: auto;
    }

    .trf-tesco-legacy-page .margin-top {
        margin-top: 25px;
    }

    .trf-tesco-legacy-page .tesco-header {
        margin-bottom: 22px;
    }

    .trf-tesco-legacy-page .tesco-blue-fg {
        color: var(--tesco-blue);
        font-size: 30px;
        font-weight: 700;
    }

    .trf-tesco-legacy-page .tesco-logo {
        width: 145px;
        margin-right: 15px;
    }

    .trf-tesco-legacy-page .tesco-clubcard {
        max-height: 88px;
        margin-left: auto;
    }

    .trf-tesco-legacy-page .tesco-col-main {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .trf-tesco-legacy-page .tesco-col-card {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .trf-tesco-legacy-page .tesco-peach {
        background: #ecd8c2;
        color: var(--tesco-blue);
    }

    .trf-tesco-legacy-page .fifty-fifty {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .trf-tesco-legacy-page .pad-a-bit {
        padding-right: 7.5%;
        padding-left: 7.5%;
    }

    .trf-tesco-legacy-page .tesco-banner h1 {
        margin: 0;
        color: var(--tesco-blue);
        font-size: 28px;
        font-weight: 400;
        line-height: 1.28;
    }

    .trf-tesco-legacy-page .tesco-banner strong {
        color: var(--tesco-blue) !important;
        -webkit-text-fill-color: var(--tesco-blue) !important;
        font-weight: 900;
    }

    .trf-tesco-legacy-page .tesco-banner-button-peach {
        display: inline-block;
        margin-top: 25px;
        padding: 15px;
        border: 1px solid var(--tesco-blue);
        background: var(--tesco-blue);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
    }

        .trf-tesco-legacy-page .tesco-banner-button-peach:hover,
        .trf-tesco-legacy-page .tesco-banner-button-peach:focus-visible {
            border-color: var(--tesco-red);
            background: var(--tesco-red);
            color: #ffffff;
            text-decoration: none;
        }

    .trf-tesco-legacy-page .thank-you {
        width: 100%;
        margin-top: -15px;
        color: var(--tesco-blue);
        font-size: 28px;
    }

    .trf-tesco-legacy-page .tesco-blue {
        width: 100%;
        background: var(--tesco-blue);
        color: #ffffff;
    }

    .trf-tesco-legacy-page .tesco-how-it-works h2,
    .trf-tesco-legacy-page .tesco-eligible-inline h2 {
        margin: 10px;
        color: inherit;
        font-size: 24px;
        font-weight: 800;
    }

    .trf-tesco-legacy-page .tesco-grey {
        background: var(--tesco-grey);
        color: var(--tesco-blue);
    }

    .trf-tesco-legacy-page .border-blue {
        margin-top: -15px !important;
        border: 1px solid var(--tesco-blue);
    }

    .trf-tesco-legacy-page .tesco-steps-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .trf-tesco-legacy-page .tesco-step-col {
        min-width: 0;
        padding: 0 15px 18px;
        text-align: center;
    }

    .trf-tesco-legacy-page .bg-white {
        margin-right: -15px;
        margin-left: -15px;
        padding: 15px;
        background: #ffffff;
    }

    .trf-tesco-legacy-page .tesco-step-col img {
        max-height: 145px;
        object-fit: contain;
    }

    .trf-tesco-legacy-page .tesco-how-it-works p {
        margin: 0;
        padding-top: 15px;
        color: var(--tesco-blue);
        font-weight: 600;
        line-height: 1.45;
    }

    .trf-tesco-legacy-page a {
        color: var(--tesco-blue);
        font-weight: 700;
    }

    .trf-tesco-legacy-page .tesco-slip-panel {
        margin-top: 0;
    }

    .trf-tesco-legacy-page .little-helps {
        width: min(650px, 100%);
    }

    .trf-tesco-legacy-page .do-not-post-row {
        align-items: center;
    }

    .trf-tesco-legacy-page .tesco-no-post-image {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .trf-tesco-legacy-page .do-not-post {
        flex: 0 0 66.666%;
        max-width: 66.666%;
        color: var(--tesco-red);
        font-size: clamp(48px, 7vw, 100px);
        font-weight: 900;
        line-height: 1;
    }

    .trf-tesco-legacy-page .tesco-button-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trf-tesco-legacy-page .tesco-button {
        display: block;
        min-height: 0;
        padding: 15px;
        border: 0;
        border-radius: 0;
        background: var(--tesco-blue);
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
    }

        .trf-tesco-legacy-page .tesco-button:hover,
        .trf-tesco-legacy-page .tesco-button:focus-visible {
            background: var(--tesco-red);
            color: #ffffff;
            text-decoration: none;
        }

    .trf-tesco-legacy-page .everylittlehelps {
        width: 195px;
    }

    .trf-tesco-legacy-page .tesco-t-and-c {
        color: #4d4d4d;
        font-size: 12px;
        line-height: 1.55;
    }

        .trf-tesco-legacy-page .tesco-t-and-c h3 {
            margin: 0 0 12px;
            color: #4d4d4d;
            font-size: 18px;
            font-weight: 800;
        }

        .trf-tesco-legacy-page .tesco-t-and-c p {
            margin: 0 0 10px;
        }

    .trf-tesco-legacy-page .tesco-t-and-c-list span {
        display: block;
        position: relative;
        margin-bottom: 4px;
        padding-left: 18px;
    }

        .trf-tesco-legacy-page .tesco-t-and-c-list span::before {
            content: "â–¼";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--tesco-red);
            font-size: 10px;
        }

    .trf-tesco-legacy-page .tesco-eligible-inline {
        margin-top: 35px;
        border: 1px solid var(--tesco-blue);
        background: #ffffff;
        text-align: center;
    }

    .trf-tesco-legacy-page .tesco-modal-body {
        display: grid;
        gap: 15px;
        max-width: 430px;
        margin: 0 auto;
        padding: 24px 15px 28px;
    }

        .trf-tesco-legacy-page .tesco-modal-body select {
            height: 46px;
            padding: 0 12px;
            border: 1px solid #b8b8b8;
            color: #4d4d4d;
            font-size: 16px;
        }

    .trf-tesco-legacy-page .small-print {
        margin: 0;
        color: #4d4d4d;
        font-size: 12px;
        text-transform: uppercase;
    }

@media (max-width: 991px) {
    .trf-tesco-legacy-page .thank-you {
        font-size: 20px;
    }

    .trf-tesco-legacy-page .tesco-button,
    .trf-tesco-legacy-page .tesco-banner-button-peach {
        font-size: 14px;
    }

    .trf-tesco-legacy-page .tesco-banner h1 {
        font-size: 20px;
    }

    .trf-tesco-legacy-page .tesco-steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .trf-tesco-legacy-page .hidden-xs {
        display: none !important;
    }

    .trf-tesco-legacy-page .tesco-col-main,
    .trf-tesco-legacy-page .fifty-fifty,
    .trf-tesco-legacy-page .tesco-no-post-image,
    .trf-tesco-legacy-page .do-not-post {
        flex-basis: 100%;
        max-width: 100%;
    }

    .trf-tesco-legacy-page .flex-middle {
        justify-content: center;
    }

    .trf-tesco-legacy-page .text-center-xs {
        text-align: center;
    }

    .trf-tesco-legacy-page .tesco-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .trf-tesco-legacy-page .tesco-blue-fg {
        display: block;
        font-size: 24px;
    }

    .trf-tesco-legacy-page .fifty-fifty {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .trf-tesco-legacy-page .tesco-steps-row,
    .trf-tesco-legacy-page .tesco-button-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trf-tesco-legacy-page .tesco-button {
        margin-bottom: 15px;
    }

    .trf-tesco-legacy-page .no-margin-bottom-xs {
        margin-bottom: 0;
    }

    .trf-tesco-legacy-page .do-not-post {
        font-size: 48px;
    }
}

/* Tesco legacy Umbraco partial compatibility */
.trf-tesco-legacy-page .page-wrapper {
    padding: 38px 0 70px;
    color: rgb(8, 84, 160);
    font-family: TESCOModern-Light-final, sans-serif;
    font-size: 18px;
}

.trf-tesco-legacy-page .container {
    width: min(1170px, calc(100% - 30px));
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.trf-tesco-legacy-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -15px;
}

.trf-tesco-legacy-page [class*="col-"] {
    position: relative;
    min-width: 0;
    padding-right: 15px;
    padding-left: 15px;
}

.trf-tesco-legacy-page .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.trf-tesco-legacy-page .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.trf-tesco-legacy-page .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.trf-tesco-legacy-page .margin-auto {
    margin-right: auto;
    margin-left: auto;
}

.trf-tesco-legacy-page .pull-right {
    margin-left: auto;
}

.trf-tesco-legacy-page .text-center {
    text-align: center;
}

.trf-tesco-legacy-page .text-left {
    text-align: left;
}

.trf-tesco-legacy-page .text-right {
    text-align: right;
}

.trf-tesco-legacy-page .hidden {
    display: none !important;
}

.trf-tesco-legacy-page .flex-middle {
    display: flex;
    align-items: center;
}

.trf-tesco-legacy-page .bold {
    font-weight: 800;
}

.trf-tesco-legacy-page .tesco-header {
    margin-bottom: 28px;
}

.trf-tesco-legacy-page .tesco-blue-fg {
    color: rgb(8, 84, 160);
    font-size: 30px;
    font-weight: 500;
}

.trf-tesco-legacy-page .tesco-logo {
    width: 165px;
    margin-right: 15px;
}

.trf-tesco-legacy-page .tesco-clubcard {
    max-height: 88px;
    float: right;
}

.trf-tesco-legacy-page .fifty-fifty {
    min-width: 0;
}

.trf-tesco-legacy-page .tesco-peach {
    background: url('/images/subpages/tesco/tesco-new-bg.png');
    color: rgb(8, 84, 160);
}

.trf-tesco-legacy-page .tesco-banner .row {
    margin-top: 0;
    margin-bottom: 0;
}

.trf-tesco-legacy-page .tesco-banner h1 {
    margin: 0;
    color: rgb(8, 84, 160);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
}

.trf-tesco-legacy-page .pad-a-bit {
    padding-right: 7.5%;
    padding-left: 7.5%;
}

.trf-tesco-legacy-page .atext-center {
    text-align: center;
}

.trf-tesco-legacy-page .tesco-banner-button,
.trf-tesco-legacy-page .tesco-banner-button-peach {
    display: inline-block;
    margin-top: 25px;
    padding: 15px;
    border: 1px solid rgb(8, 84, 160);
    background: rgb(8, 84, 160);
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

    .trf-tesco-legacy-page .tesco-banner-button:hover,
    .trf-tesco-legacy-page .tesco-banner-button:active,
    .trf-tesco-legacy-page .tesco-banner-button:focus,
    .trf-tesco-legacy-page .tesco-banner-button-peach:hover,
    .trf-tesco-legacy-page .tesco-banner-button-peach:active,
    .trf-tesco-legacy-page .tesco-banner-button-peach:focus {
        border-color: rgb(238, 28, 46);
        background: rgb(238, 28, 46);
        color: #ffffff !important;
        text-decoration: none;
    }

.trf-tesco-legacy-page .thank-you {
    width: 100%;
    margin-top: -15px;
    color: #4d4d4d;
    font-size: 28px;
}

.trf-tesco-legacy-page .tesco-blue {
    width: 100%;
    background: rgb(8, 84, 160);
    color: #ffffff;
}

.trf-tesco-legacy-page .tesco-how-it-works h2 {
    margin: 10px;
    color: inherit;
    font-size: 24px;
    font-weight: 500;
}

.trf-tesco-legacy-page .tesco-grey {
    background: rgb(246, 246, 246);
    color: rgb(8, 84, 160);
}

.trf-tesco-legacy-page .border-blue {
    margin-top: -15px !important;
    border: 1px solid rgb(8, 84, 160);
}

.trf-tesco-legacy-page .bg-white {
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px;
    background: #ffffff;
}

.trf-tesco-legacy-page .tesco-how-it-works p {
    margin: 0;
    padding-top: 15px;
    color: rgb(8, 84, 160);
    font-weight: 600;
    line-height: 1.45;
}

.trf-tesco-legacy-page .tesco-how-it-works a {
    color: rgb(8, 84, 160);
    font-weight: 700;
}

.trf-tesco-legacy-page .tesco-button {
    display: block;
    padding: 15px;
    background: rgb(8, 84, 160);
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

    .trf-tesco-legacy-page .tesco-button:hover,
    .trf-tesco-legacy-page .tesco-button:active,
    .trf-tesco-legacy-page .tesco-button:focus {
        background: rgb(238, 28, 46);
        color: #ffffff;
        text-decoration: none;
    }

.trf-tesco-legacy-page .margin-top {
    margin-top: 25px;
}

.trf-tesco-legacy-page .do-not-post {
    color: rgb(238, 28, 46);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 1;
}

.trf-tesco-legacy-page .tesco-t-and-c {
    color: #4d4d4d;
    font-size: 12px;
    line-height: 1.55;
}

    .trf-tesco-legacy-page .tesco-t-and-c h3 {
        margin: 0 0 10px;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 800;
    }

.trf-tesco-legacy-page .tesco-t-and-c-list span {
    display: block;
    position: relative;
    padding-left: 18px;
}

    .trf-tesco-legacy-page .tesco-t-and-c-list span::before {
        content: "â–¼ ";
        position: absolute;
        left: 0;
        color: rgb(238, 28, 46);
    }

.trf-tesco-legacy-page #eligible-cartridges-modal {
    position: static;
    display: block;
    opacity: 1;
    overflow: visible;
    margin: 34px auto 0;
}

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-dialog {
        width: min(560px, 100%);
        margin: 0 auto;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-content {
        border: 1px solid rgb(8, 84, 160);
        border-radius: 0;
        box-shadow: none;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-header,
    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-footer {
        padding: 14px 20px;
        border: 0;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-title {
        margin: 0;
        color: #ffffff;
        font-size: 22px;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .close {
        display: none;
    }

.trf-tesco-legacy-page .form-control {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #b8b8b8;
    background: #ffffff;
    color: #4d4d4d;
    font-size: 16px;
}

.trf-tesco-legacy-page .form-group {
    margin: 0 0 15px;
}

.trf-tesco-legacy-page .small-print {
    color: #4d4d4d;
    font-size: 12px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .trf-tesco-legacy-page .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .trf-tesco-legacy-page .col-sm-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .trf-tesco-legacy-page .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .trf-tesco-legacy-page .col-sm-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .trf-tesco-legacy-page .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .trf-tesco-legacy-page .fifty-fifty {
        width: 50%;
        float: left;
    }
}

@media (min-width: 992px) {
    .trf-tesco-legacy-page .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 991px) {
    .trf-tesco-legacy-page .thank-you {
        font-size: 20px;
    }

    .trf-tesco-legacy-page .tesco-button {
        font-size: 14px;
    }

    .trf-tesco-legacy-page .tesco-banner h1 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .trf-tesco-legacy-page .hidden-xs {
        display: none !important;
    }

    .trf-tesco-legacy-page .fifty-fifty {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .trf-tesco-legacy-page .tesco-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .trf-tesco-legacy-page .text-center-xs {
        text-align: center;
    }

    .trf-tesco-legacy-page .tesco-blue-fg {
        display: block;
        font-size: 24px;
    }

    .trf-tesco-legacy-page .tesco-button {
        margin-bottom: 15px;
    }

    .trf-tesco-legacy-page .no-margin-bottom-xs {
        margin-bottom: 0;
    }

    .trf-tesco-legacy-page .do-not-post {
        font-size: 48px;
    }
}

/* Tesco eligible cartridges popup */
body.tesco-modal-open {
    overflow: hidden;
}

.trf-tesco-legacy-page #eligible-cartridges-modal.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 48px 16px;
    background: rgba(0, 0, 0, 0.52);
    opacity: 1;
}

    .trf-tesco-legacy-page #eligible-cartridges-modal.modal.is-open {
        display: flex !important;
        align-items: flex-start;
        justify-content: center;
    }

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-dialog {
    width: min(560px, 100%);
    margin: 72px auto 0;
    transform: none;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-header,
.trf-tesco-legacy-page #eligible-cartridges-modal .modal-footer {
    border: 0;
    background: rgb(8, 84, 160);
    color: #ffffff;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-title {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .close {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    opacity: 1;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-body {
    padding: 18px 16px 6px;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .form-control {
    height: 46px;
    color: #4d4d4d;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .input-group {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: stretch;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .input-group-addon {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #b8b8b8;
    border-left: 0;
    background: #f6f6f6;
    color: rgb(8, 84, 160);
}

    .trf-tesco-legacy-page #eligible-cartridges-modal .input-group-addon:first-child {
        border-left: 1px solid #b8b8b8;
    }

.trf-tesco-legacy-page #eligible-cartridges-modal .bg-colour-1 {
    background: rgb(8, 84, 160);
    color: #ffffff;
    cursor: pointer;
}

.trf-tesco-legacy-page #eligible-cartridges-modal .modal-footer {
    padding: 22px;
}

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-footer .tesco-banner-button {
        margin-top: 0;
        border-color: rgb(238, 28, 46);
        background: rgb(238, 28, 46);
    }

@media (max-width: 640px) {
    .trf-tesco-legacy-page #eligible-cartridges-modal.modal {
        padding: 20px 12px;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .modal-dialog {
        margin-top: 34px;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .input-group {
        grid-template-columns: 1fr;
    }

    .trf-tesco-legacy-page #eligible-cartridges-modal .input-group-addon,
    .trf-tesco-legacy-page #eligible-cartridges-modal .input-group-addon:first-child {
        border: 1px solid #b8b8b8;
        border-top: 0;
    }
}

/* Tesco suggested hero layout */
.trf-tesco-legacy-page {
    --tesco-blue: #00539f;
    --tesco-red: #ee1c2e;
    --recycle-yellow: #f0e500;
    --recycle-pink: #e50065;
    --paper: #f5ead9;
    --white: #ffffff;
}

    .trf-tesco-legacy-page .tesco-recycling-page {
        width: min(1170px, calc(100% - 40px));
        margin: 0 auto;
        padding: 15px 0 0;
        color: #4d4d4d;
        font-family: Arial, Helvetica, sans-serif;
    }

    .trf-tesco-legacy-page .tesco-heading {
        display: flex;
        min-height: 115px;
        align-items: center;
        gap: 20px;
    }

    .trf-tesco-legacy-page .tesco-logo-text {
        position: relative;
        flex: 0 0 auto;
        padding-bottom: 18px;
        color: var(--tesco-red);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 74px;
        font-weight: 700;
        letter-spacing: -3px;
        line-height: 0.8;
    }

        .trf-tesco-legacy-page .tesco-logo-text::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 295px;
            height: 15px;
            background: linear-gradient(135deg, transparent 0 18%, var(--tesco-blue) 18% 38%, transparent 38% 45%, var(--tesco-blue) 45% 65%, transparent 65% 72%, var(--tesco-blue) 72% 92%, transparent 92%);
        }

    .trf-tesco-legacy-page .tesco-heading h1 {
        margin: 0;
        color: var(--tesco-blue);
        font-size: 29px;
        font-weight: 400;
        line-height: 1.2;
    }

    .trf-tesco-legacy-page .clubcard-logo {
        display: grid;
        width: 130px;
        min-height: 82px;
        margin-left: auto;
        place-items: center;
        border: 3px solid var(--tesco-red);
        border-radius: 14px;
        background: var(--tesco-blue);
        color: var(--white);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
    }

    .trf-tesco-legacy-page .recycling-hero {
        display: grid;
        width: 100%;
        min-height: 390px;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .trf-tesco-legacy-page .recycling-hero-graphic {
        display: flex;
        min-width: 0;
        min-height: 390px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: var(--recycle-yellow);
        color: var(--recycle-pink);
    }

    .trf-tesco-legacy-page .recycle-letter {
        margin: -10px 0 0;
        font-size: 370px;
        font-weight: 800;
        letter-spacing: -25px;
        line-height: 0.78;
    }

    .trf-tesco-legacy-page .recycle-word {
        margin: 16px 0 0;
        font-size: 55px;
        font-weight: 800;
        line-height: 1;
    }

    .trf-tesco-legacy-page .recycling-hero-content {
        display: flex;
        min-width: 0;
        min-height: 390px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 55px 70px;
        background-color: var(--paper);
        background-image: linear-gradient(rgb(255 255 255 / 32%), rgb(255 255 255 / 32%)), radial-gradient(#d7c8b5 0.7px, transparent 0.7px);
        background-size: auto, 5px 5px;
    }

        .trf-tesco-legacy-page .recycling-hero-content h2 {
            max-width: 430px;
            margin: 0 0 34px;
            color: var(--tesco-blue);
            font-size: 29px;
            font-weight: 400;
            line-height: 1.08;
        }

        .trf-tesco-legacy-page .recycling-hero-content strong {
            font-weight: 700;
        }

        .trf-tesco-legacy-page .recycling-hero-content .tesco-button {
            display: inline-flex;
            min-height: 58px;
            align-items: center;
            justify-content: center;
            padding: 14px 18px;
            border: 0;
            background: var(--tesco-blue);
            color: var(--white);
            cursor: pointer;
            font-size: 17px;
            text-align: center;
            text-decoration: none;
        }

            .trf-tesco-legacy-page .recycling-hero-content .tesco-button:hover,
            .trf-tesco-legacy-page .recycling-hero-content .tesco-button:focus-visible {
                background: #003f7d;
                color: var(--white);
            }

    .trf-tesco-legacy-page .thank-you-heading {
        margin: 18px 0 16px;
        color: #4d4d4d;
        font-size: 28px;
        font-weight: 700;
        text-align: center;
    }

    .trf-tesco-legacy-page .page-wrapper {
        padding-top: 0;
    }

        .trf-tesco-legacy-page .page-wrapper > .tesco-how-it-works.container > .row:first-child {
            display: none;
        }

@media (max-width: 900px) {
    .trf-tesco-legacy-page .tesco-logo-text {
        font-size: 57px;
    }

        .trf-tesco-legacy-page .tesco-logo-text::after {
            width: 225px;
        }

    .trf-tesco-legacy-page .tesco-heading h1 {
        font-size: 23px;
    }

    .trf-tesco-legacy-page .recycle-letter {
        font-size: 290px;
    }

    .trf-tesco-legacy-page .recycle-word {
        font-size: 43px;
    }

    .trf-tesco-legacy-page .recycling-hero-content {
        padding: 40px;
    }

        .trf-tesco-legacy-page .recycling-hero-content h2 {
            font-size: 25px;
        }
}

@media (max-width: 650px) {
    .trf-tesco-legacy-page .tesco-recycling-page {
        width: calc(100% - 24px);
    }

    .trf-tesco-legacy-page .tesco-heading {
        min-height: 125px;
        flex-wrap: wrap;
    }

    .trf-tesco-legacy-page .tesco-logo-text {
        font-size: 48px;
    }

        .trf-tesco-legacy-page .tesco-logo-text::after {
            width: 190px;
        }

    .trf-tesco-legacy-page .tesco-heading h1 {
        order: 3;
        width: 100%;
        font-size: 22px;
    }

    .trf-tesco-legacy-page .clubcard-logo {
        width: 94px;
        min-height: 64px;
        font-size: 14px;
    }

    .trf-tesco-legacy-page .recycling-hero {
        grid-template-columns: 1fr;
    }

    .trf-tesco-legacy-page .recycling-hero-graphic {
        min-height: 300px;
    }

    .trf-tesco-legacy-page .recycle-letter {
        font-size: 270px;
    }

    .trf-tesco-legacy-page .recycle-word {
        font-size: 42px;
    }

    .trf-tesco-legacy-page .recycling-hero-content {
        min-height: 270px;
        align-items: center;
        padding: 38px 24px;
        text-align: center;
    }

        .trf-tesco-legacy-page .recycling-hero-content h2 {
            margin-bottom: 26px;
        }

    .trf-tesco-legacy-page .thank-you-heading {
        font-size: 23px;
    }
}

/* Tesco approved legacy sizing overrides. Matches the copied live Tesco HTML/Bootstrap layout. */
.trf-tesco-legacy-page .page-wrapper {
    color: #4d4d4d !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
}

    .trf-tesco-legacy-page .page-wrapper .container {
        box-sizing: border-box !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .row {
        box-sizing: border-box !important;
        margin-top: 15px !important;
        margin-right: -15px !important;
        margin-bottom: 15px !important;
        margin-left: -15px !important;
    }

        .trf-tesco-legacy-page .page-wrapper .row::before,
        .trf-tesco-legacy-page .page-wrapper .row::after {
            display: table !important;
            content: " " !important;
        }

        .trf-tesco-legacy-page .page-wrapper .row::after {
            clear: both !important;
        }

    .trf-tesco-legacy-page .page-wrapper [class*="col-"] {
        box-sizing: border-box !important;
        position: relative !important;
        min-height: 1px !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-xs-12 {
        width: 100% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-xs-6 {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-xs-4 {
        width: 33.33333333% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .flex-middle {
        display: flex !important;
        align-items: center !important;
    }

    .trf-tesco-legacy-page .page-wrapper .img-responsive {
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .trf-tesco-legacy-page .page-wrapper .text-center {
        text-align: center !important;
    }

    .trf-tesco-legacy-page .page-wrapper .text-left {
        text-align: left !important;
    }

    .trf-tesco-legacy-page .page-wrapper .text-right {
        text-align: right !important;
    }

    .trf-tesco-legacy-page .page-wrapper .pull-right {
        float: right !important;
    }

    .trf-tesco-legacy-page .page-wrapper .margin-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .trf-tesco-legacy-page .page-wrapper .hidden {
        display: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-logo {
        width: auto !important;
        margin-right: 15px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-clubcard {
        width: auto !important;
        max-height: 88px !important;
        float: right !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-banner.container {
        color: #4d4d4d !important;
        font-size: 18px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-banner .row.flex-middle {
        display: flex !important;
        align-items: center !important;
        min-height: 390px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .fifty-fifty {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-banner .hidden-xs.fifty-fifty {
        padding: 0 !important;
    }

        .trf-tesco-legacy-page .page-wrapper .tesco-banner .hidden-xs.fifty-fifty img {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
        }

    .trf-tesco-legacy-page .page-wrapper .tesco-peach {
        background: url('/images/subpages/tesco/tesco-new-bg.png') !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-banner h1 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        color: rgb(8, 84, 160) !important;
        font-size: 28px !important;
        font-weight: 400 !important;
        line-height: normal !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-banner-button,
    .trf-tesco-legacy-page .page-wrapper .tesco-banner-button-peach,
    .trf-tesco-legacy-page .page-wrapper .tesco-button {
        color: rgb(255,255,255) !important;
        font-weight: 400 !important;
        text-decoration: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .row:first-child {
        display: block !important;
    }

    .trf-tesco-legacy-page .page-wrapper .thank-you {
        margin-top: -15px !important;
        color: #4d4d4d !important;
        font-family: TESCOModern-Bold, sans-serif !important;
        font-size: 28px !important;
        font-weight: bold !important;
    }

@media (min-width: 1200px) {
    .trf-tesco-legacy-page .page-wrapper .container {
        width: 1170px !important;
        max-width: 1170px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .trf-tesco-legacy-page .page-wrapper .container {
        width: 970px !important;
        max-width: 970px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-md-3 {
        width: 25% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .trf-tesco-legacy-page .page-wrapper .container {
        width: 750px !important;
        max-width: 750px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-3 {
        width: 25% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-4 {
        width: 33.33333333% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-6 {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-8 {
        width: 66.66666667% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-9 {
        width: 75% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }
}

@media (min-width: 768px) {
    .trf-tesco-legacy-page .page-wrapper .col-sm-3 {
        width: 25% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-4 {
        width: 33.33333333% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-6 {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-8 {
        width: 66.66666667% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .col-sm-9 {
        width: 75% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .hidden-xs {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .trf-tesco-legacy-page .page-wrapper .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .trf-tesco-legacy-page .page-wrapper .hidden-xs {
        display: none !important;
    }

    .trf-tesco-legacy-page .page-wrapper .fifty-fifty {
        width: 100% !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .trf-tesco-legacy-page .page-wrapper .text-center-xs {
        text-align: center !important;
    }
}
/* Tesco approved "Here's how it works" row exact legacy container. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container {
    color: #4d4d4d !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue {
        display: block !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        margin-top: -15px !important;
        margin-right: -15px !important;
        margin-bottom: 15px !important;
        margin-left: -15px !important;
        border: 1px solid rgb(8,84,160) !important;
        background: rgb(246,246,246) !important;
        color: rgb(8,84,160) !important;
        font-family: TESCOModern-Light-final, sans-serif !important;
        font-size: 18px !important;
        line-height: normal !important;
    }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue::before,
        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue::after {
            display: table !important;
            content: " " !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue::after {
            clear: both !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-xs-12,
        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-sm-6,
        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-md-3 {
            position: relative !important;
            min-height: 1px !important;
            padding-right: 15px !important;
            padding-left: 15px !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue .bg-white {
            margin-right: -15px !important;
            margin-left: -15px !important;
            padding: 15px !important;
            background: #ffffff !important;
            text-align: center !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue img.img-responsive {
            display: block !important;
            max-width: 100% !important;
            height: auto !important;
            margin-right: auto !important;
            margin-left: auto !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p {
            margin: 0 0 10px !important;
            padding-top: 15px !important;
            color: rgb(8,84,160) !important;
            font-size: 18px !important;
            font-weight: 600 !important;
            line-height: normal !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue a {
            color: rgb(8,84,160) !important;
            font-size: 18px !important;
            font-weight: 600 !important;
            line-height: normal !important;
            text-decoration: none !important;
        }

@media (min-width: 992px) {
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-md-3 {
        width: 25% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-sm-6 {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }
}

@media (max-width: 767px) {
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > .col-xs-12 {
        width: 100% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
    }
}
/* Tesco how-it-works body copy should be black like the approved page inspection. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue a,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white a {
    color: #4d4d4d !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
    line-height: normal !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue a {
    font-weight: 600 !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white a {
    font-weight: 400 !important;
}
/* Tesco envelope note below how-it-works row: exact white block, no banner background bleed. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white {
    display: block !important;
    width: auto !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    margin-right: -15px !important;
    margin-bottom: 0 !important;
    margin-left: -15px !important;
    padding: 15px !important;
    background: #ffffff !important;
    color: #4d4d4d !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
    line-height: normal !important;
    text-align: center !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white p {
        margin: 0 0 10px !important;
        padding: 0 !important;
        background: transparent !important;
        color: #4d4d4d !important;
        font-family: TESCOModern-Light-final, sans-serif !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        line-height: normal !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white a,
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white u {
        background: transparent !important;
        color: #4d4d4d !important;
        font-family: TESCOModern-Light-final, sans-serif !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        line-height: normal !important;
    }
    /* Tesco download slip note: bold black copy with visible blue link. */
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white p {
        font-weight: 700 !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white a,
    .trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container > .text-center.bg-white a u {
        color: rgb(8,84,160) !important;
        font-weight: 700 !important;
        text-decoration: underline !important;
    }
/* Tesco Little Helps strip: force the approved full-width image row visible. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .tesco-little-helps-row {
    display: block !important;
    width: 100% !important;
    float: left !important;
    flex: none !important;
    max-width: none !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .tesco-little-helps-strip {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: auto !important;
    margin-left: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Tesco bottom section: buttons, Every Little Helps, and T&C match copied live page. */
.trf-tesco-legacy-page .page-wrapper .tesco-buttons.container,
.trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container {
    background: #ffffff !important;
    color: #4d4d4d !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .row,
    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .row {
        display: block !important;
        margin-top: 15px !important;
        margin-right: -15px !important;
        margin-bottom: 15px !important;
        margin-left: -15px !important;
    }

        .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .row::before,
        .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .row::after,
        .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .row::before,
        .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .row::after {
            display: table !important;
            content: " " !important;
        }

        .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .row::after,
        .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .row::after {
            clear: both !important;
        }

    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .col-xs-12,
    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .col-xs-12 {
        width: 100% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

@media (min-width: 768px) {
    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .col-sm-6 {
        width: 50% !important;
        float: left !important;
        flex: none !important;
        max-width: none !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

.trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .tesco-button {
    display: block !important;
    padding: 15px !important;
    background: rgb(8,84,160) !important;
    color: rgb(255,255,255) !important;
    font-family: TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .tesco-button:hover,
    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .tesco-button:active,
    .trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .tesco-button:focus {
        background: rgb(238,28,46) !important;
        color: rgb(255,255,255) !important;
    }

.trf-tesco-legacy-page .page-wrapper .tesco-buttons.container .margin-top {
    margin-top: 25px !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-buttons.container img[alt="Every little helps"] {
    display: block !important;
    width: 220px !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container {
    font-size: 12px !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container h3 {
        margin: 20px 0 10px !important;
        color: #4d4d4d !important;
        font-family: TESCOModern-Light-final, sans-serif !important;
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 1.1 !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container p,
    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container span {
        margin: 0 0 10px !important;
        color: #4d4d4d !important;
        font-family: TESCOModern-Light-final, sans-serif !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        line-height: normal !important;
    }

    .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .tesco-t-and-c-list span {
        display: inline !important;
        position: static !important;
        padding-left: 0 !important;
    }

        .trf-tesco-legacy-page .page-wrapper .tesco-t-and-c.container .tesco-t-and-c-list span::before {
            position: static !important;
            content: "â–  " !important;
            color: #4d4d4d !important;
        }
/* Tesco how-it-works captions: blue, centered, bold. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue a,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue u {
    color: rgb(8,84,160) !important;
    font-family: TESCOModern-Bold, TESCOModern-Light-final, sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: center !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p {
    margin: 0 0 10px !important;
    padding-top: 15px !important;
}

.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > [class*="col-"] {
    text-align: center !important;
}
/* Tesco how-it-works captions: left aligned per latest direction. */
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue p,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue a,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue u,
.trf-tesco-legacy-page .page-wrapper .tesco-how-it-works.container .row.tesco-grey.border-blue > [class*="col-"] {
    text-align: left !important;
}
/* Tesco banner right copy: align text and button to the left edge of the half-column. */
.trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit {
    padding-left: 0 !important;
    padding-right: 7.5% !important;
    text-align: left !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit h1,
    .trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit .tesco-banner-button-peach {
        margin-left: 0 !important;
        text-align: left !important;
    }
/* Tesco banner right panel: left-aligned content with approved inset. */
.trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit {
    padding-left: 7.5% !important;
    padding-right: 7.5% !important;
    text-align: left !important;
}

    .trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit h1,
    .trf-tesco-legacy-page .page-wrapper .tesco-banner .fifty-fifty.atext-center.pad-a-bit .tesco-banner-button-peach {
        margin-left: 0 !important;
        text-align: left !important;
    }
/* Data Destruction page */
.trf-data-destruction-page {
    --data-green: #00743f;
    --data-lime: #8dbb1f;
    --data-text: #3f4043;
    --data-background: #e9e9e9;
    --data-white: #ffffff;
    color: #4d4d4d;
}

    .trf-data-destruction-page *,
    .trf-data-destruction-page *::before,
    .trf-data-destruction-page *::after {
        box-sizing: border-box;
    }

    .trf-data-destruction-page .data-destruction {
        min-height: 100vh;
        padding: 48px 20px;
        background: var(--data-background);
    }

    .trf-data-destruction-page .data-container {
        width: min(1140px, 100%);
        margin: 0 auto;
    }

    .trf-data-destruction-page .data-introduction {
        max-width: 930px;
        margin: 0 auto;
        text-align: center;
    }

        .trf-data-destruction-page .data-introduction h1 {
            margin: 0 0 16px;
            color: #4d4d4d;
            font-size: clamp(32px, 4vw, 43px);
            font-weight: 400;
            line-height: 1.15;
        }

            .trf-data-destruction-page .data-introduction h1 strong,
            .trf-data-destruction-page .section-heading strong,
            .trf-data-destruction-page .contact-message strong {
                color: var(--data-green);
                font-weight: 700;
            }

        .trf-data-destruction-page .data-introduction p {
            margin: 0 auto 13px;
            color: #4d4d4d;
            font-size: 15px;
            line-height: 1.45;
        }

    .trf-data-destruction-page .section-heading {
        max-width: 1370px;
        margin: 52px auto 50px;
        color: #4d4d4d;
        font-size: clamp(32px, 4vw, 43px);
        font-weight: 400;
        line-height: 1.12;
        text-align: center;
    }

    .trf-data-destruction-page .benefit-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .trf-data-destruction-page .benefit-card {
        display: flex;
        min-height: 330px;
        flex-direction: column;
        align-items: center;
        padding: 17px 22px 20px;
        border-radius: 15px;
        background: var(--data-green);
        box-shadow: 0 3px 7px rgb(0 0 0 / 30%);
        color: var(--data-white);
        text-align: center;
    }

        .trf-data-destruction-page .benefit-card h3 {
            margin: 0 0 18px;
            color: var(--data-white);
            font-size: 28px;
            line-height: 0.98;
        }

        .trf-data-destruction-page .benefit-card p {
            min-height: 65px;
            margin: 0;
            color: var(--data-white);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.55;
        }

    .trf-data-destruction-page .card-icon {
        position: relative;
        width: 130px;
        height: 125px;
        margin-top: auto;
        color: var(--data-lime);
    }

    .trf-data-destruction-page .lock-handle {
        position: absolute;
        top: 5px;
        left: 36px;
        width: 62px;
        height: 63px;
        border: 5px solid var(--data-lime);
        border-bottom: 0;
        border-radius: 34px 34px 0 0;
    }

    .trf-data-destruction-page .lock-body {
        position: absolute;
        right: 9px;
        bottom: 4px;
        width: 84px;
        height: 69px;
        border: 5px solid var(--data-lime);
        border-radius: 6px;
    }

    .trf-data-destruction-page .keyhole {
        position: absolute;
        top: 22px;
        right: 24px;
        width: 12px;
        height: 23px;
        border-radius: 8px;
        background: var(--data-lime);
    }

        .trf-data-destruction-page .keyhole::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--data-lime);
        }

    .trf-data-destruction-page .shield {
        position: absolute;
        top: 10px;
        left: -33px;
        display: grid;
        width: 45px;
        height: 52px;
        place-items: center;
        border: 5px solid var(--data-lime);
        border-radius: 5px 5px 20px 20px;
        background: var(--data-green);
        color: var(--data-lime);
        font-size: 23px;
        font-weight: 700;
    }

    .trf-data-destruction-page .checklist-icon {
        width: 105px;
        border: 5px solid var(--data-lime);
        border-radius: 3px;
    }

    .trf-data-destruction-page .clipboard-top {
        position: absolute;
        top: -15px;
        left: 29px;
        width: 42px;
        height: 24px;
        border: 5px solid var(--data-lime);
        border-radius: 12px 12px 0 0;
        background: var(--data-green);
    }

    .trf-data-destruction-page .check-row {
        display: block;
        position: relative;
        margin: 18px 0 0 16px;
        color: var(--data-lime);
        font-size: 20px;
        font-weight: 700;
        text-align: left;
    }

        .trf-data-destruction-page .check-row::after {
            content: "";
            position: absolute;
            top: 10px;
            left: 28px;
            width: 42px;
            height: 4px;
            background: var(--data-lime);
        }

    .trf-data-destruction-page .check-badge {
        position: absolute;
        right: -17px;
        bottom: -15px;
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border: 5px solid var(--data-lime);
        border-radius: 50%;
        background: var(--data-green);
        color: var(--data-lime);
        font-size: 27px;
        font-weight: 700;
    }

    .trf-data-destruction-page .certificate-seal {
        position: absolute;
        top: 5px;
        left: 28px;
        display: grid;
        width: 78px;
        height: 78px;
        place-items: center;
        border: 5px double var(--data-lime);
        border-radius: 45% 55% 48% 52%;
        color: var(--data-lime);
        font-size: 40px;
        font-weight: 700;
        transform: rotate(-8deg);
    }

        .trf-data-destruction-page .certificate-seal::before,
        .trf-data-destruction-page .certificate-seal::after {
            content: "";
            position: absolute;
            inset: 7px;
            border: 2px solid var(--data-lime);
            border-radius: 50%;
        }

        .trf-data-destruction-page .certificate-seal::after {
            inset: 15px;
        }

    .trf-data-destruction-page .ribbon {
        position: absolute;
        bottom: 2px;
        width: 34px;
        height: 54px;
        border: 5px solid var(--data-lime);
        border-top: 0;
    }

    .trf-data-destruction-page .ribbon-left {
        left: 34px;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 48% 73%, 10% 100%);
        transform: rotate(18deg);
    }

    .trf-data-destruction-page .ribbon-right {
        right: 26px;
        clip-path: polygon(0 0, 100% 0, 90% 100%, 52% 73%, 15% 100%);
        transform: rotate(-18deg);
    }

    .trf-data-destruction-page .globe-icon {
        width: 116px;
        height: 116px;
        border: 5px solid var(--data-lime);
        border-radius: 50%;
    }

    .trf-data-destruction-page .globe-land {
        position: absolute;
        border: 5px solid var(--data-lime);
    }

    .trf-data-destruction-page .land-one {
        top: 20px;
        right: 2px;
        width: 35px;
        height: 30px;
        border-right: 0;
        border-radius: 15px 0 0 15px;
    }

    .trf-data-destruction-page .land-two {
        bottom: 5px;
        left: 30px;
        width: 42px;
        height: 27px;
        border-bottom: 0;
        border-radius: 18px 18px 0 0;
    }

    .trf-data-destruction-page .globe-leaf {
        position: absolute;
        top: -7px;
        left: 0;
        width: 43px;
        height: 25px;
        border: 5px solid var(--data-lime);
        border-radius: 100% 0 100% 0;
        background: var(--data-green);
        transform: rotate(-30deg);
    }

    .trf-data-destruction-page .contact-message {
        max-width: 940px;
        margin: 53px auto 0;
        color: #4d4d4d;
        font-size: 15px;
        line-height: 1.45;
        text-align: center;
    }

        .trf-data-destruction-page .contact-message a {
            color: var(--data-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-data-destruction-page .contact-message a:hover {
                text-decoration: underline;
            }

@media (max-width: 950px) {
    .trf-data-destruction-page .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trf-data-destruction-page .benefit-card {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .trf-data-destruction-page .data-destruction {
        padding: 35px 16px;
    }

    .trf-data-destruction-page .data-introduction h1 {
        font-size: 32px;
    }

    .trf-data-destruction-page .data-introduction p {
        font-size: 14px;
    }

    .trf-data-destruction-page .section-heading {
        margin: 42px auto 35px;
        font-size: 31px;
    }

    .trf-data-destruction-page .benefit-grid {
        grid-template-columns: 1fr;
    }

    .trf-data-destruction-page .benefit-card {
        min-height: 310px;
    }

    .trf-data-destruction-page .contact-message {
        margin-top: 40px;
        font-size: 14px;
    }
}
/* Data Destruction screenshot match fixes. */
.trf-data-destruction-page .benefit-grid {
    max-width: 1272px;
    margin: 0 auto;
    gap: 18px !important;
}

.trf-data-destruction-page .benefit-card {
    min-height: 370px !important;
    padding: 19px 30px 34px !important;
    border-radius: 15px !important;
}

    .trf-data-destruction-page .benefit-card h3 {
        margin-bottom: 25px !important;
        font-size: 31px !important;
        line-height: 1.03 !important;
    }

    .trf-data-destruction-page .benefit-card p {
        min-height: 80px !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

.trf-data-destruction-page .card-icon {
    margin-top: auto !important;
}

.trf-data-destruction-page .section-heading {
    margin-bottom: 58px !important;
}
/* Data Destruction heading format match. */
.trf-data-destruction-page .section-heading {
    max-width: 1180px !important;
    white-space: normal !important;
    text-align: center !important;
}

    .trf-data-destruction-page .section-heading strong {
        display: inline !important;
        white-space: nowrap !important;
    }
/* Data Destruction heading: override global .section-heading flex layout. */
.trf-data-destruction-page h2.section-heading {
    display: block !important;
    align-items: initial !important;
    justify-content: initial !important;
    flex-direction: initial !important;
    width: min(1180px, 100%) !important;
    max-width: 1180px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}
/* Data Destruction standalone heading, isolated from global .section-heading flex rules. */
.trf-data-destruction-page .data-section-heading {
    display: block;
    width: min(1180px, 100%);
    max-width: 1180px;
    margin: 52px auto 58px;
    color: #4d4d4d;
    font-size: clamp(32px, 4vw, 43px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
}

    .trf-data-destruction-page .data-section-heading strong {
        display: inline;
        color: var(--data-green);
        font-weight: 700;
        white-space: nowrap;
    }

@media (max-width: 680px) {
    .trf-data-destruction-page .data-section-heading {
        margin: 42px auto 35px;
        font-size: 31px;
    }
}
/* Data Destruction cards use approved ITAD image icons instead of CSS-built icons. */
.trf-data-destruction-page .data-benefit-icon {
    display: block;
    width: 138px;
    height: 138px;
    margin-top: auto;
    object-fit: contain;
}

.trf-data-destruction-page .benefit-card:nth-child(2) .data-benefit-icon {
    width: 132px;
    height: 132px;
}
/* IT Asset Disposal page */
.trf-itad-disposal-page {
    --itad-green: #00743f;
    --itad-dark-green: #006b39;
    --itad-text: #404144;
    --itad-background: #e9e9e9;
    --itad-white: #ffffff;
    color: #4d4d4d;
}

    .trf-itad-disposal-page * {
        box-sizing: border-box;
    }

    .trf-itad-disposal-page .itad-section {
        min-height: 100vh;
        padding: 16px 20px 55px;
        background: var(--itad-background);
    }

/* Remove tiny white gap between ITAD banner and first section */
.trf-subpage-banner--itad {
    border-bottom: 1px solid #e9e9e9;
}

.trf-itad-disposal-page .itad-section {
    margin-top: -1px;
}

    .trf-itad-disposal-page .itad-layout {
        display: grid;
        width: min(1280px, 100%);
        margin: 0 auto;
        grid-template-columns: 50% 50%;
        align-items: start;
    }

    .trf-itad-disposal-page .itad-services-panel {
        position: relative;
        z-index: 2;
        padding: 30px 70px 45px;
        border: 4px solid var(--itad-green);
        border-radius: 95px 0 0 95px;
        background: var(--itad-white);
        box-shadow: 0 4px 8px rgb(0 0 0 / 22%);
    }

    .trf-itad-disposal-page .itad-intro {
        margin-bottom: 26px;
        text-align: center;
    }

        .trf-itad-disposal-page .itad-intro h1 {
            margin: 0 0 18px;
            color: #4d4d4d;
            font-size: clamp(36px, 4vw, 47px);
            font-weight: 400;
            line-height: 1.15;
        }

            .trf-itad-disposal-page .itad-intro h1 strong {
                color: var(--itad-green);
                font-weight: 700;
            }

        .trf-itad-disposal-page .itad-intro p {
            margin: 0;
            color: #4d4d4d;
            font-size: 17px;
        }

    .trf-itad-disposal-page .itad-service-list {
        display: grid;
        gap: 30px;
    }

    .trf-itad-disposal-page .itad-service {
        max-width: 470px;
        margin: 0 auto;
        text-align: center;
    }

        .trf-itad-disposal-page .itad-service h2 {
            margin: 15px 0;
            color: var(--itad-green);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.08;
        }

        .trf-itad-disposal-page .itad-service p {
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.45;
        }

    .trf-itad-disposal-page .service-icon {
        display: grid;
        width: 120px;
        height: 120px;
        margin: 0 auto;
        place-items: center;
        overflow: hidden;
        border: 12px solid var(--itad-green);
        border-radius: 50%;
        background: var(--itad-green);
        box-shadow: inset 0 0 0 2px var(--itad-green);
    }

        .trf-itad-disposal-page .service-icon img {
            display: block;
            width: 78px;
            height: 78px;
            object-fit: contain;
        }

    .trf-itad-disposal-page .itad-service:nth-child(3) .service-icon img {
        width: 86px;
        height: 76px;
    }

    .trf-itad-disposal-page .itad-service:nth-child(4) .service-icon img {
        width: 82px;
        height: 82px;
    }

    .trf-itad-disposal-page .itad-benefits-panel {
        position: relative;
        z-index: 1;
        margin-top: 115px;
        padding: 38px 48px 44px;
        border-radius: 0 90px 90px 0;
        background: var(--itad-green);
        color: var(--itad-white);
    }

    .trf-itad-disposal-page .benefit-group h2 {
        max-width: 590px;
        margin: 0 0 24px;
        color: var(--itad-white);
        font-size: clamp(34px, 4vw, 46px);
        font-weight: 700;
        line-height: 1.17;
    }

    .trf-itad-disposal-page .itad-benefits {
        display: grid;
        gap: 29px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .trf-itad-disposal-page .itad-benefits li {
            position: relative;
            padding-left: 27px;
        }

            .trf-itad-disposal-page .itad-benefits li::before {
                content: "";
                position: absolute;
                top: 9px;
                left: 0;
                width: 11px;
                height: 11px;
                border-radius: 50%;
                background: var(--itad-white);
            }

        .trf-itad-disposal-page .itad-benefits h3 {
            margin: 0 0 4px;
            color: var(--itad-white);
            font-size: 18px;
            font-weight: 700;
        }

        .trf-itad-disposal-page .itad-benefits p {
            margin: 0;
            color: var(--itad-white);
            font-size: 14px;
            line-height: 1.45;
        }

    .trf-itad-disposal-page .why-choose {
        margin-top: 44px;
        padding-top: 34px;
        border-top: 1px solid rgb(255 255 255 / 75%);
    }

    .trf-itad-disposal-page .itad-contact {
        max-width: 1250px;
        margin: 48px auto 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.45;
        text-align: center;
    }

        .trf-itad-disposal-page .itad-contact strong,
        .trf-itad-disposal-page .itad-contact a {
            color: var(--itad-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-itad-disposal-page .itad-contact a:hover {
                text-decoration: underline;
            }

@media (max-width: 1000px) {
    .trf-itad-disposal-page .itad-layout {
        grid-template-columns: 48% 52%;
    }

    .trf-itad-disposal-page .itad-services-panel {
        padding-right: 35px;
        padding-left: 35px;
    }

    .trf-itad-disposal-page .itad-benefits-panel {
        padding-right: 32px;
        padding-left: 32px;
    }

    .trf-itad-disposal-page .benefit-group h2 {
        font-size: 35px;
    }
}

@media (max-width: 760px) {
    .trf-itad-disposal-page .itad-section {
        padding: 12px 14px 40px;
    }

    .trf-itad-disposal-page .itad-layout {
        display: block;
    }

    .trf-itad-disposal-page .itad-services-panel {
        padding: 35px 22px 42px;
        border-width: 3px;
        border-radius: 55px 55px 0 0;
    }

    .trf-itad-disposal-page .itad-intro h1 {
        font-size: 36px;
    }

    .trf-itad-disposal-page .itad-service-list {
        gap: 40px;
    }

    .trf-itad-disposal-page .itad-service h2 {
        font-size: 25px;
    }

    .trf-itad-disposal-page .itad-service p {
        font-size: 15px;
    }

    .trf-itad-disposal-page .itad-benefits-panel {
        margin-top: 0;
        padding: 38px 25px 45px;
        border-radius: 0 0 55px 55px;
    }

    .trf-itad-disposal-page .benefit-group h2 {
        font-size: 34px;
    }

    .trf-itad-disposal-page .itad-benefits {
        gap: 25px;
    }

    .trf-itad-disposal-page .itad-contact {
        margin-top: 35px;
        font-size: 14px;
    }
}
/* Items We Collect page */
.trf-items-collect-page {
    --items-green: #00743f;
    --items-dark-green: #006638;
    --items-text: #3f4043;
    --items-white: #ffffff;
    --items-light-grey: #f4f4f4;
    --items-medium-grey: #dedede;
    background: var(--items-white);
    color: #4d4d4d;
}

    .trf-items-collect-page * {
        box-sizing: border-box;
    }

    .trf-items-collect-page img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-items-collect-page .content-width {
        width: min(1320px, calc(100% - 40px));
        margin-right: auto;
        margin-left: auto;
    }

    .trf-items-collect-page .items-intro {
        padding: 40px 0 38px;
        text-align: center;
    }

        .trf-items-collect-page .items-intro h1 {
            margin: 0 0 20px;
            color: #4d4d4d;
            font-size: clamp(38px, 4vw, 49px);
            font-weight: 400;
            line-height: 1.15;
        }

            .trf-items-collect-page .items-intro h1 strong {
                color: var(--items-green);
                font-weight: 700;
            }

        .trf-items-collect-page .items-intro p {
            max-width: 1260px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.5;
        }

    .trf-items-collect-page .section-title {
        margin: 0;
        padding: 20px;
        background: linear-gradient(100deg, #f7f7f7 0%, #e4e4e4 48%, #cccccc 100%);
        color: var(--items-green);
        font-size: clamp(36px, 4vw, 44px);
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
    }

    .trf-items-collect-page .collection-content {
        padding: 55px 0 42px;
        text-align: center;
    }

    .trf-items-collect-page .category-hero {
        width: auto;
        max-width: min(800px, 90%);
        margin: 0 auto;
        object-fit: contain;
    }

    .trf-items-collect-page .category-hero-laptop {
        display: block;
        width: min(100%, 1240px);
        max-width: none;
        max-height: none;
        height: auto;
        margin: 20px auto 42px;
        transform: none;
    }

    .trf-items-collect-page .category-hero-mobile {
        display: block;
        width: min(100%, 1240px);
        max-width: none;
        max-height: none;
        height: auto;
        margin: 20px auto 42px;
        transform: none;
    }

    .trf-items-collect-page .category-hero-printer {
        max-height: 340px;
    }

    .trf-items-collect-page .category-hero-cartridge {
        max-height: 350px;
    }

    .trf-items-collect-page .collection-lead {
        margin: 30px auto 48px;
        color: #4d4d4d;
        font-size: 17px;
    }

    .trf-items-collect-page .collection-note {
        margin: 45px auto 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.5;
    }

    .trf-items-collect-page .item-grid {
        display: grid;
        max-width: 1200px;
        margin: 0 auto;
        justify-content: center;
        gap: 24px;
    }

    .trf-items-collect-page .item-grid-five {
        grid-template-columns: repeat(5, minmax(150px, 1fr));
    }

    .trf-items-collect-page .item-grid-four {
        max-width: 960px;
        grid-template-columns: repeat(4, minmax(170px, 1fr));
    }

    .trf-items-collect-page .item-grid-two {
        max-width: 520px;
        grid-template-columns: repeat(2, minmax(190px, 1fr));
    }

    .trf-items-collect-page .item-card {
        position: relative;
        min-width: 0;
        padding-bottom: 28px;
    }

    .trf-items-collect-page .item-image {
        display: flex;
        aspect-ratio: 1 / 1;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffffff 0%, #eeeeee 58%, #cfcfcf 100%);
    }

    .trf-items-collect-page .brand-card .item-image {
        border: 1.5px solid var(--items-green);
        background: var(--items-white);
    }

    .trf-items-collect-page .item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .trf-items-collect-page .brand-card .item-image img {
        width: 72%;
        height: 72%;
    }

    .trf-items-collect-page .item-card h3 {
        position: absolute;
        right: 0%;
        bottom: 0;
        left: 0%;
        height: 56px;
        min-height: 56px;
        max-height: 56px;
        margin: 0;
        padding: 5px 18px;
        border-radius: 50px;
        background: var(--items-green);
        color: var(--items-white);
        font-size: clamp(16px, 1.45vw, 21px);
        font-weight: 400;
        line-height: 1.08;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trf-items-collect-page .eligible-button {
        display: inline-flex;
        min-width: 225px;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        margin-top: 45px;
        padding: 12px 24px;
        border: 2px solid var(--items-green);
        border-radius: 28px;
        background: var(--items-green);
        color: var(--items-white);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: background-color 180ms ease, color 180ms ease;
    }

        .trf-items-collect-page .eligible-button:hover,
        .trf-items-collect-page .eligible-button:focus-visible {
            background: var(--items-white);
            color: var(--items-green);
        }

        .trf-items-collect-page .eligible-button:focus-visible {
            outline: 3px solid rgb(0 116 63 / 25%);
            outline-offset: 3px;
        }

    .trf-items-collect-page .benefits-section {
        padding-bottom: 55px;
        background: var(--items-light-grey);
    }

    .trf-items-collect-page .benefits-title {
        margin: 0 0 55px;
        padding: 20px;
        background: linear-gradient(100deg, #f7f7f7 0%, #e4e4e4 48%, #cccccc 100%);
        color: #4d4d4d;
        font-size: clamp(25px, 3vw, 37px);
        font-weight: 400;
        line-height: 1.25;
        text-align: center;
    }

        .trf-items-collect-page .benefits-title strong {
            color: var(--items-green);
            font-weight: 700;
        }

    .trf-items-collect-page .benefit-grid {
        display: grid;
        max-width: 1220px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .trf-items-collect-page .benefit-card {
        display: flex;
        min-height: 345px;
        flex-direction: column;
        align-items: center;
        padding: 28px 25px 25px;
        border-radius: 16px;
        background: var(--items-green);
        box-shadow: 0 4px 8px rgb(0 0 0 / 25%);
        color: var(--items-white);
        text-align: center;
    }

        .trf-items-collect-page .benefit-card h3 {
            margin: 0 0 20px;
            color: var(--items-white);
            font-size: clamp(23px, 2.2vw, 30px);
            font-weight: 700;
            line-height: 1.05;
        }

        .trf-items-collect-page .benefit-card p {
            margin: 0;
            color: var(--items-white);
            font-size: 15px;
            line-height: 1.5;
        }

    .trf-items-collect-page .benefit-icon {
        width: 125px;
        height: 125px;
        margin-top: auto;
        object-fit: contain;
    }

    .trf-items-collect-page .contact-text {
        max-width: 1050px;
        margin-top: 45px;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

        .trf-items-collect-page .contact-text strong,
        .trf-items-collect-page .contact-text a {
            color: var(--items-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-items-collect-page .contact-text a:hover {
                text-decoration: underline;
            }

@media (max-width: 1050px) {
    .trf-items-collect-page .item-grid-five {
        grid-template-columns: repeat(3, minmax(170px, 1fr));
    }

    .trf-items-collect-page .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trf-items-collect-page .benefit-card {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    .trf-items-collect-page .content-width {
        width: calc(100% - 28px);
    }

    .trf-items-collect-page .items-intro {
        padding: 32px 0;
    }

        .trf-items-collect-page .items-intro p {
            font-size: 15px;
        }

    .trf-items-collect-page .section-title {
        padding: 17px;
        font-size: 34px;
    }

    .trf-items-collect-page .collection-content {
        padding-top: 40px;
    }

    .trf-items-collect-page .category-hero {
        max-width: 100%;
    }

    .trf-items-collect-page .item-grid-five,
    .trf-items-collect-page .item-grid-four,
    .trf-items-collect-page .item-grid-two {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
    }

    .trf-items-collect-page .item-card h3 {
        right: 3%;
        left: 3%;
        min-height: 46px;
        padding: 10px;
        font-size: 15px;
    }

    .trf-items-collect-page .collection-lead {
        margin-bottom: 35px;
    }

    .trf-items-collect-page .benefit-grid {
        grid-template-columns: 1fr;
    }

    .trf-items-collect-page .benefit-card {
        min-height: 310px;
    }
}

@media (max-width: 460px) {
    .trf-items-collect-page .items-intro h1 {
        font-size: 35px;
    }

    .trf-items-collect-page .item-grid-five,
    .trf-items-collect-page .item-grid-four,
    .trf-items-collect-page .item-grid-two {
        max-width: 280px;
        grid-template-columns: 1fr;
    }

    .trf-items-collect-page .item-card h3 {
        right: 8%;
        left: 8%;
        font-size: 18px;
    }

    .trf-items-collect-page .collection-note,
    .trf-items-collect-page .contact-text {
        font-size: 14px;
    }

    .trf-items-collect-page .benefits-title {
        font-size: 25px;
    }
}

@media (max-width: 760px) {
    .trf-items-collect-page .item-card h3 {
        height: 52px;
        min-height: 52px;
        max-height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .trf-items-collect-page .item-card h3 {
        height: 54px;
        min-height: 54px;
        max-height: 54px;
        font-size: 16px;
    }
}
/* Data Shredding page */
.trf-data-shredding-page {
    --shred-green: #00743f;
    --shred-lime: #8fc31f;
    --shred-text: #424347;
    --shred-background: #e8e8e8;
    --shred-white: #ffffff;
    background: var(--shred-background);
    color: #4d4d4d;
}

    .trf-data-shredding-page * {
        box-sizing: border-box;
    }

    .trf-data-shredding-page img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-data-shredding-page .content-width {
        width: min(1440px, calc(100% - 40px));
        margin-right: auto;
        margin-left: auto;
    }

    .trf-data-shredding-page .data-shredding-page {
        padding: 56px 0 70px;
        background: var(--shred-background);
    }

    .trf-data-shredding-page .shredding-intro strong,
    .trf-data-shredding-page .process-introduction strong,
    .trf-data-shredding-page .security-section strong {
        color: var(--shred-green);
        font-weight: 700;
    }

    .trf-data-shredding-page .shredding-intro {
        text-align: center;
    }

        .trf-data-shredding-page .shredding-intro h1 {
            max-width: 1280px;
            margin: 0 auto 22px;
            color: #4d4d4d;
            font-size: clamp(29px, 2.5vw, 35px);
            font-weight: 400;
            line-height: 1.2;
        }

        .trf-data-shredding-page .shredding-intro p {
            max-width: 1220px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.45;
        }

    .trf-data-shredding-page .device-image {
        width: min(880px, 80%);
        max-height: 390px;
        margin: 62px auto 40px;
        object-fit: contain;
    }

    .trf-data-shredding-page .shredding-process {
        text-align: center;
    }

    .trf-data-shredding-page .process-introduction h2 {
        margin: 0 0 25px;
        color: #4d4d4d;
        font-size: clamp(30px, 2.7vw, 38px);
        font-weight: 400;
        line-height: 1.2;
    }

    .trf-data-shredding-page .process-introduction p {
        max-width: 1230px;
        margin: 0 auto;
        color: #4d4d4d;
        font-size: 17px;
        line-height: 1.45;
    }

    .trf-data-shredding-page .process-grid {
        display: grid;
        max-width: 1235px;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin: 65px auto 0;
    }

    .trf-data-shredding-page .process-card {
        display: flex;
        min-height: 470px;
        flex-direction: column;
        align-items: center;
        padding: 27px 30px 32px;
        border: 4px solid var(--shred-green);
        border-radius: 20px;
        background: var(--shred-white);
        text-align: center;
    }

        .trf-data-shredding-page .process-card h3 {
            margin: 0 0 22px;
            color: var(--shred-green);
            font-size: clamp(29px, 2.7vw, 43px);
            font-weight: 700;
            line-height: 1.05;
        }

        .trf-data-shredding-page .process-card p {
            max-width: 330px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.45;
        }

    .trf-data-shredding-page .process-icon {
        width: 180px;
        height: 180px;
        margin-top: auto;
        object-fit: contain;
    }

    .trf-data-shredding-page .process-icon--white {
        padding: 28px;
        border-radius: 50%;
        background: var(--shred-green);
    }

    .trf-data-shredding-page .security-section {
        margin-top: 62px;
        text-align: center;
    }

        .trf-data-shredding-page .security-section h2 {
            margin: 0 0 25px;
            color: #4d4d4d;
            font-size: clamp(29px, 2.6vw, 37px);
            font-weight: 400;
            line-height: 1.2;
        }

        .trf-data-shredding-page .security-section > p {
            max-width: 1230px;
            margin: 0 auto 20px;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.45;
        }

        .trf-data-shredding-page .security-section .contact-text {
            max-width: 1080px;
            margin-top: 44px;
        }

    .trf-data-shredding-page .contact-text a {
        color: var(--shred-green);
        font-weight: 700;
        text-decoration: none;
    }

        .trf-data-shredding-page .contact-text a:hover {
            text-decoration: underline;
        }

@media (max-width: 1100px) {
    .trf-data-shredding-page .process-card {
        min-height: 430px;
        padding-right: 22px;
        padding-left: 22px;
    }

        .trf-data-shredding-page .process-card h3 {
            font-size: 30px;
        }

        .trf-data-shredding-page .process-card p {
            font-size: 15px;
        }

    .trf-data-shredding-page .process-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 850px) {
    .trf-data-shredding-page .data-shredding-page {
        padding-top: 45px;
    }

    .trf-data-shredding-page .shredding-intro p,
    .trf-data-shredding-page .process-introduction p,
    .trf-data-shredding-page .security-section > p {
        font-size: 16px;
    }

    .trf-data-shredding-page .device-image {
        width: 90%;
        margin-top: 45px;
    }

    .trf-data-shredding-page .process-grid {
        max-width: 600px;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 45px;
    }

    .trf-data-shredding-page .process-card {
        min-height: 390px;
    }

        .trf-data-shredding-page .process-card h3 {
            font-size: 34px;
        }

        .trf-data-shredding-page .process-card p {
            max-width: 440px;
            font-size: 16px;
        }
}

@media (max-width: 550px) {
    .trf-data-shredding-page .content-width {
        width: calc(100% - 28px);
    }

    .trf-data-shredding-page .data-shredding-page {
        padding: 35px 0 50px;
    }

    .trf-data-shredding-page .shredding-intro h1,
    .trf-data-shredding-page .process-introduction h2,
    .trf-data-shredding-page .security-section h2 {
        font-size: 29px;
    }

    .trf-data-shredding-page .shredding-intro p,
    .trf-data-shredding-page .process-introduction p,
    .trf-data-shredding-page .security-section > p {
        font-size: 14px;
    }

    .trf-data-shredding-page .device-image {
        width: 100%;
        margin: 38px auto 30px;
    }

    .trf-data-shredding-page .process-grid {
        margin-top: 38px;
    }

    .trf-data-shredding-page .process-card {
        min-height: 370px;
        padding: 25px 18px;
        border-width: 3px;
    }

        .trf-data-shredding-page .process-card h3 {
            font-size: 30px;
        }

        .trf-data-shredding-page .process-card p {
            font-size: 15px;
        }

    .trf-data-shredding-page .process-icon {
        width: 145px;
        height: 145px;
    }

    .trf-data-shredding-page .security-section {
        margin-top: 48px;
    }

        .trf-data-shredding-page .security-section .contact-text {
            margin-top: 35px;
        }
}
/* GDPR Compliance page */
.trf-gdpr-compliance-page {
    --gdpr-green: #00743f;
    --gdpr-dark-green: #006638;
    --gdpr-text: #424347;
    --gdpr-background: #e8e8e8;
    --gdpr-white: #ffffff;
    background: var(--gdpr-background);
    color: #4d4d4d;
}

    .trf-gdpr-compliance-page * {
        box-sizing: border-box;
    }

    .trf-gdpr-compliance-page img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-gdpr-compliance-page .gdpr-page {
        min-height: 100vh;
        padding: 60px 20px 65px;
        background: var(--gdpr-background);
    }

    .trf-gdpr-compliance-page .gdpr-container {
        width: min(1440px, 100%);
        margin: 0 auto;
    }

    .trf-gdpr-compliance-page .gdpr-introduction {
        text-align: center;
    }

        .trf-gdpr-compliance-page .gdpr-introduction h1 {
            max-width: 1100px;
            margin: 0 auto 24px;
            color: #4d4d4d;
            font-size: clamp(27px, 2.3vw, 34px);
            font-weight: 400;
            line-height: 1.25;
        }

            .trf-gdpr-compliance-page .gdpr-introduction h1 strong,
            .trf-gdpr-compliance-page .measures-introduction h2 strong,
            .trf-gdpr-compliance-page .gdpr-introduction p strong,
            .trf-gdpr-compliance-page .gdpr-contact strong {
                color: var(--gdpr-green);
                font-weight: 700;
            }

        .trf-gdpr-compliance-page .gdpr-introduction p {
            max-width: 1160px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.55;
        }

    .trf-gdpr-compliance-page .gdpr-measures {
        margin-top: 58px;
    }

    .trf-gdpr-compliance-page .measures-introduction {
        text-align: center;
    }

        .trf-gdpr-compliance-page .measures-introduction h2 {
            margin: 0 0 22px;
            color: #4d4d4d;
            font-size: clamp(29px, 2.5vw, 36px);
            font-weight: 400;
            line-height: 1.2;
        }

        .trf-gdpr-compliance-page .measures-introduction p {
            max-width: 950px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.5;
        }

    .trf-gdpr-compliance-page .measure-grid {
        display: grid;
        margin-top: 50px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .trf-gdpr-compliance-page .measure-item {
        position: relative;
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        padding-bottom: 48px;
    }

    .trf-gdpr-compliance-page .measure-number {
        margin-bottom: 4px;
        color: var(--gdpr-green);
        font-size: 58px;
        font-weight: 700;
        line-height: 1;
    }

    .trf-gdpr-compliance-page .measure-card {
        width: 100%;
        min-height: 350px;
        padding: 27px 24px 65px;
        border: 5px solid var(--gdpr-green);
        border-radius: 20px;
        background: var(--gdpr-white);
        text-align: center;
    }

        .trf-gdpr-compliance-page .measure-card h3 {
            margin: 0 0 25px;
            color: var(--gdpr-green);
            font-size: clamp(24px, 2vw, 29px);
            font-weight: 700;
            line-height: 1.2;
        }

        .trf-gdpr-compliance-page .measure-card p {
            margin: 0;
            color: #4d4d4d;
            font-size: 16px;
            line-height: 1.55;
        }

    .trf-gdpr-compliance-page .measure-icon {
        position: absolute;
        bottom: 0;
        left: 50%;
        display: grid;
        width: 100px;
        height: 100px;
        place-items: center;
        overflow: hidden;
        border: 6px solid var(--gdpr-green);
        border-radius: 50%;
        background: var(--gdpr-green);
        transform: translateX(-50%);
    }

        .trf-gdpr-compliance-page .measure-icon img {
            width: 72%;
            height: 72%;
            object-fit: contain;
        }

    .trf-gdpr-compliance-page .gdpr-contact {
        max-width: 1120px;
        margin: 55px auto 0;
        color: #4d4d4d;
        font-size: 17px;
        line-height: 1.5;
        text-align: center;
    }

        .trf-gdpr-compliance-page .gdpr-contact a {
            color: var(--gdpr-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-gdpr-compliance-page .gdpr-contact a:hover {
                text-decoration: underline;
            }

@media (max-width: 1150px) {
    .trf-gdpr-compliance-page .measure-grid {
        max-width: 800px;
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 35px;
        margin-right: auto;
        margin-left: auto;
    }

    .trf-gdpr-compliance-page .measure-card {
        min-height: 330px;
    }
}

@media (max-width: 750px) {
    .trf-gdpr-compliance-page .gdpr-page {
        padding-top: 45px;
    }

    .trf-gdpr-compliance-page .gdpr-introduction p,
    .trf-gdpr-compliance-page .measures-introduction p,
    .trf-gdpr-compliance-page .gdpr-contact {
        font-size: 15px;
    }

    .trf-gdpr-compliance-page .measure-grid {
        max-width: 480px;
        grid-template-columns: 1fr;
    }

    .trf-gdpr-compliance-page .measure-card {
        min-height: auto;
        padding-bottom: 75px;
    }

        .trf-gdpr-compliance-page .measure-card p {
            font-size: 15px;
        }
}

@media (max-width: 500px) {
    .trf-gdpr-compliance-page .gdpr-page {
        padding: 35px 14px 50px;
    }

    .trf-gdpr-compliance-page .gdpr-introduction h1,
    .trf-gdpr-compliance-page .measures-introduction h2 {
        font-size: 28px;
    }

    .trf-gdpr-compliance-page .gdpr-measures {
        margin-top: 45px;
    }

    .trf-gdpr-compliance-page .measure-grid {
        margin-top: 38px;
    }

    .trf-gdpr-compliance-page .measure-number {
        font-size: 48px;
    }

    .trf-gdpr-compliance-page .measure-card {
        padding: 24px 18px 70px;
        border-width: 3px;
        border-radius: 16px;
    }

        .trf-gdpr-compliance-page .measure-card h3 {
            font-size: 25px;
        }

    .trf-gdpr-compliance-page .measure-icon {
        width: 88px;
        height: 88px;
        border-width: 4px;
    }

    .trf-gdpr-compliance-page .gdpr-contact {
        margin-top: 42px;
    }
}
/* Resale & Remarketing page */
.trf-remarketing-page {
    --remarketing-green: #00743f;
    --remarketing-dark-green: #006638;
    --remarketing-text: #444548;
    --remarketing-background: #eeeeee;
    --remarketing-white: #ffffff;
    background: var(--remarketing-background);
    color: #4d4d4d;
}

    .trf-remarketing-page * {
        box-sizing: border-box;
    }

    .trf-remarketing-page img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-remarketing-page .remarketing-page {
        min-height: 100vh;
        padding: 50px 20px 65px;
        background: var(--remarketing-background);
    }

    .trf-remarketing-page .remarketing-container {
        width: min(1120px, 100%);
        margin: 0 auto;
    }

    .trf-remarketing-page .remarketing-introduction {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

        .trf-remarketing-page .remarketing-introduction h1 {
            margin: 0 0 20px;
            color: #4d4d4d;
            font-size: clamp(34px, 4vw, 45px);
            font-weight: 400;
            line-height: 1.15;
        }

            .trf-remarketing-page .remarketing-introduction h1 strong,
            .trf-remarketing-page .remarketing-introduction p strong,
            .trf-remarketing-page .benefits-introduction h2 strong {
                color: var(--remarketing-green);
                font-weight: 700;
            }

        .trf-remarketing-page .remarketing-introduction p {
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 16px;
            line-height: 1.5;
        }

    .trf-remarketing-page .remarketing-benefits {
        position: relative;
        margin-top: 55px;
        padding: 45px 42px 0;
        border: 4px solid var(--remarketing-green);
        border-radius: 75px 75px 0 0;
        background: var(--remarketing-white);
        box-shadow: 0 3px 8px rgb(0 0 0 / 20%);
    }

    .trf-remarketing-page .benefits-introduction {
        max-width: 950px;
        margin: 0 auto 28px;
        text-align: center;
    }

        .trf-remarketing-page .benefits-introduction h2 {
            margin: 0 0 12px;
            color: #4d4d4d;
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 400;
            line-height: 1.25;
        }

        .trf-remarketing-page .benefits-introduction p {
            max-width: 770px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 15px;
            line-height: 1.45;
        }

    .trf-remarketing-page .benefit-row {
        display: grid;
        justify-content: center;
        gap: 22px;
    }

    .trf-remarketing-page .benefit-row-three {
        grid-template-columns: repeat(3, 1fr);
    }

    .trf-remarketing-page .benefit-row-two {
        max-width: 670px;
        grid-template-columns: repeat(2, 1fr);
        margin: 32px auto 0;
    }

    .trf-remarketing-page .remarketing-benefit-item {
        position: relative;
        padding-top: 65px;
    }

    .trf-remarketing-page .remarketing-benefit-card {
        min-height: 265px;
        padding: 45px 20px 24px;
        border: 2px solid var(--remarketing-green);
        border-radius: 45px 0 45px 0;
        background: var(--remarketing-white);
        text-align: center;
    }

        .trf-remarketing-page .remarketing-benefit-card h3 {
            margin: 0 0 16px;
            color: var(--remarketing-green);
            font-size: 20px;
            line-height: 1.15;
        }

        .trf-remarketing-page .remarketing-benefit-card p {
            margin: 0;
            color: #4d4d4d;
            font-size: 12px;
            line-height: 1.45;
        }

    .trf-remarketing-page .remarketing-benefit-icon {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 50%;
        display: grid;
        width: 105px;
        height: 105px;
        place-items: center;
        overflow: hidden;
        border: 7px solid var(--remarketing-green);
        border-radius: 50%;
        background: var(--remarketing-green);
        box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
        transform: translateX(-50%);
    }

        .trf-remarketing-page .remarketing-benefit-icon::after {
            content: "";
            position: absolute;
            inset: 8px;
            border: 2px solid var(--remarketing-white);
            border-radius: 50%;
        }

        .trf-remarketing-page .remarketing-benefit-icon img {
            position: relative;
            z-index: 2;
            width: 70%;
            height: 70%;
            object-fit: contain;
        }

    .trf-remarketing-page .partner-panel {
        margin: -20px -42px 0;
        padding: 55px 70px 35px;
        border-radius: 0 0 75px 75px;
        background: var(--remarketing-green);
        color: var(--remarketing-white);
        text-align: center;
    }

        .trf-remarketing-page .partner-panel h2 {
            margin: 0 0 20px;
            color: var(--remarketing-white);
            font-size: clamp(25px, 3vw, 33px);
            font-weight: 400;
            line-height: 1.25;
        }

        .trf-remarketing-page .partner-panel p {
            max-width: 850px;
            margin: 0 auto;
            color: var(--remarketing-white);
            font-size: 14px;
            line-height: 1.5;
        }

    .trf-remarketing-page .remarketing-contact {
        max-width: 930px;
        margin: 55px auto 0;
        color: #4d4d4d;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

        .trf-remarketing-page .remarketing-contact a {
            color: var(--remarketing-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-remarketing-page .remarketing-contact a:hover {
                text-decoration: underline;
            }

@media (max-width: 950px) {
    .trf-remarketing-page .remarketing-benefits {
        padding-right: 25px;
        padding-left: 25px;
    }

    .trf-remarketing-page .benefit-row-three {
        grid-template-columns: repeat(2, 1fr);
    }

        .trf-remarketing-page .benefit-row-three .remarketing-benefit-item:last-child {
            grid-column: 1 / -1;
            width: calc(50% - 11px);
            justify-self: center;
        }

    .trf-remarketing-page .partner-panel {
        margin-right: -25px;
        margin-left: -25px;
    }
}

@media (max-width: 720px) {
    .trf-remarketing-page .remarketing-page {
        padding-top: 40px;
    }

    .trf-remarketing-page .remarketing-benefits {
        padding: 38px 18px 0;
        border-width: 3px;
        border-radius: 50px 50px 0 0;
    }

    .trf-remarketing-page .benefit-row-three,
    .trf-remarketing-page .benefit-row-two {
        max-width: 450px;
        grid-template-columns: 1fr;
        margin-right: auto;
        margin-left: auto;
    }

        .trf-remarketing-page .benefit-row-three .remarketing-benefit-item:last-child {
            grid-column: auto;
            width: 100%;
        }

    .trf-remarketing-page .remarketing-benefit-card {
        min-height: 250px;
    }

        .trf-remarketing-page .remarketing-benefit-card p {
            font-size: 13px;
        }

    .trf-remarketing-page .partner-panel {
        margin: 30px -18px 0;
        padding: 40px 25px 32px;
        border-radius: 0 0 50px 50px;
    }
}

@media (max-width: 480px) {
    .trf-remarketing-page .remarketing-page {
        padding: 32px 12px 50px;
    }

    .trf-remarketing-page .remarketing-introduction h1 {
        font-size: 34px;
    }

    .trf-remarketing-page .remarketing-introduction p {
        font-size: 14px;
    }

    .trf-remarketing-page .remarketing-benefits {
        margin-top: 40px;
        border-radius: 35px 35px 0 0;
    }

    .trf-remarketing-page .benefits-introduction h2 {
        font-size: 26px;
    }

    .trf-remarketing-page .benefits-introduction p {
        font-size: 14px;
    }

    .trf-remarketing-page .remarketing-benefit-item {
        padding-top: 58px;
    }

    .trf-remarketing-page .remarketing-benefit-icon {
        width: 95px;
        height: 95px;
    }

    .trf-remarketing-page .remarketing-benefit-card {
        padding: 42px 16px 22px;
        border-radius: 35px 0 35px 0;
    }

        .trf-remarketing-page .remarketing-benefit-card h3 {
            font-size: 19px;
        }

    .trf-remarketing-page .partner-panel {
        border-radius: 0 0 35px 35px;
    }

        .trf-remarketing-page .partner-panel p,
        .trf-remarketing-page .remarketing-contact {
            font-size: 14px;
        }
}
/* Resale & Remarketing page v2 */
.trf-remarketing-page--v2 {
    --green: #00743f;
    --green-dark: #005e33;
    --lime: #8fbd22;
    --charcoal: #4b4b4b;
    --body: #5f5f5f;
    --muted: #505050;
    --bg: #eeeeee;
    color: #4d4d4d;
    background: var(--bg);
}

    .trf-remarketing-page--v2 *,
    .trf-remarketing-page--v2 *::before,
    .trf-remarketing-page--v2 *::after {
        box-sizing: border-box;
    }

    .trf-remarketing-page--v2 img {
        display: block;
        max-width: 100%;
    }

    .trf-remarketing-page--v2 .remarketing-v2 {
        background: var(--bg);
        color: #4d4d4d;
    }

    .trf-remarketing-page--v2 a {
        color: inherit;
        text-decoration: none;
    }

    .trf-remarketing-page--v2 .green {
        color: var(--green);
    }

    .trf-remarketing-page--v2 .bold {
        font-weight: 700;
    }

    .trf-remarketing-page--v2 .trf {
        color: var(--green);
        font-weight: 600;
    }

    .trf-remarketing-page--v2 .intro {
        max-width: 1180px;
        margin: 0 auto;
        padding: 56px 24px 34px;
        text-align: center;
    }

        .trf-remarketing-page--v2 .intro h2 {
            margin: 0;
            color: #4d4d4d;
            font-size: clamp(26px, 2.4vw, 34px);
            font-weight: 700;
            line-height: 1.2;
        }

        .trf-remarketing-page--v2 .intro p {
            max-width: 1120px;
            margin: 14px auto 0;
            color: #4d4d4d;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.35;
        }

    .trf-remarketing-page--v2 .panel-wrap {
        position: relative;
        padding: 0 24px 96px;
    }

    .trf-remarketing-page--v2 .panel {
        position: relative;
        z-index: 2;
        max-width: 1290px;
        margin: 0 auto;
        padding: 56px clamp(24px, 5vw, 64px) 80px;
        border: 6px solid var(--green);
        border-radius: 52px;
        background: #fff;
        box-shadow: 0 10px 30px rgb(0 0 0 / 6%);
    }

    .trf-remarketing-page--v2 .panel-head {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }

        .trf-remarketing-page--v2 .panel-head h2 {
            margin: 0;
            color: #4d4d4d;
            font-size: 28px;
            font-weight: 400;
            line-height: 1.25;
        }

        .trf-remarketing-page--v2 .panel-head p {
            max-width: 900px;
            margin: 16px auto 0;
            color: #4d4d4d;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.45;
        }

    .trf-remarketing-page--v2 .cards {
        display: grid;
        justify-items: center;
        column-gap: 18px;
        row-gap: 96px;
        margin-top: 109px;
    }

    .trf-remarketing-page--v2 .cards-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trf-remarketing-page--v2 .cards-2 {
        max-width: 820px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 96px auto 0;
    }

    .trf-remarketing-page--v2 .card {
        position: relative;
        width: 100%;
        max-width: 380px;
        padding: 108px 28px 36px;
        border: 2px solid var(--green);
        background: #fff;
        box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
    }

    .trf-remarketing-page--v2 .card-tl-br {
        border-radius: 64px 6px 64px 6px;
    }

    .trf-remarketing-page--v2 .card-bl-br {
        border-radius: 6px 6px 64px 64px;
    }

    .trf-remarketing-page--v2 .card-tr-bl {
        border-radius: 6px 64px 6px 64px;
    }

    .trf-remarketing-page--v2 .card h3 {
        margin: 0;
        color: var(--green);
        font-size: 24px;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
    }

    .trf-remarketing-page--v2 .card p {
        margin: 16px 0 0;
        color: #4d4d4d;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.38;
        text-align: center;
    }

    .trf-remarketing-page--v2 .badge {
        position: absolute;
        top: -67px;
        left: 50%;
        display: grid;
        width: 134px;
        height: 134px;
        place-items: center;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 4px #fff;
        transform: translateX(-50%);
    }

    .trf-remarketing-page--v2 .badge-inner {
        display: grid;
        width: 116px;
        height: 116px;
        place-items: center;
        border: 2px solid #fff;
        border-radius: 50%;
    }

        .trf-remarketing-page--v2 .badge-inner img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

    .trf-remarketing-page--v2 .callout {
        position: relative;
        z-index: 1;
        max-width: 1080px;
        margin: -64px auto 0;
        padding: 96px 24px 48px;
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
        background: var(--green);
        color: #fff;
        box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
        text-align: center;
    }

        .trf-remarketing-page--v2 .callout h3 {
            margin: 0;
            color: #fff;
            font-size: clamp(20px, 2vw, 26px);
            font-weight: 700;
            line-height: 1.25;
        }

        .trf-remarketing-page--v2 .callout p {
            max-width: 900px;
            margin: 16px auto 0;
            color: rgb(255 255 255 / 95%);
            font-size: 15px;
            line-height: 1.5;
        }

    .trf-remarketing-page--v2 .enquiry {
        padding: 0 24px 80px;
    }

        .trf-remarketing-page--v2 .enquiry p {
            max-width: 900px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 16px;
            line-height: 1.55;
            text-align: center;
        }

        .trf-remarketing-page--v2 .enquiry a {
            color: var(--green);
            font-weight: 600;
        }

            .trf-remarketing-page--v2 .enquiry a:hover {
                text-decoration: underline;
            }

@media (max-width: 1024px) {
    .trf-remarketing-page--v2 .cards-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .trf-remarketing-page--v2 .callout {
        padding: 80px 20px 40px;
    }
}

@media (max-width: 640px) {
    .trf-remarketing-page--v2 .cards-3,
    .trf-remarketing-page--v2 .cards-2 {
        grid-template-columns: 1fr;
    }
}
/* Resale & Remarketing page v2 sizing tweaks */
.trf-remarketing-page--v2 .intro h2 {
    font-size: 50px;
    color: #4d4d4d;
}

.trf-remarketing-page--v2 .intro p {
    max-width: 1180px;
    margin: 14.4px auto 0;
    font-size: 18px;
}

@media (max-width: 720px) {
    .trf-remarketing-page--v2 .intro h2 {
        font-size: 34px;
    }
}
/* Resale & Remarketing page v3 */
.trf-remarketing-page--v3 {
    --green: #00743f;
    --charcoal: #4b4b4b;
    --body: #5f5f5f;
    --page: #ededed;
    --white: #fff;
    color: #4d4d4d;
    background: var(--page);
}

    .trf-remarketing-page--v3 *,
    .trf-remarketing-page--v3 *::before,
    .trf-remarketing-page--v3 *::after {
        box-sizing: border-box;
    }

    .trf-remarketing-page--v3 .remarketing-v3 {
        background: var(--page);
    }

    .trf-remarketing-page--v3 h1,
    .trf-remarketing-page--v3 h2,
    .trf-remarketing-page--v3 h3,
    .trf-remarketing-page--v3 p {
        margin-top: 0;
    }

    .trf-remarketing-page--v3 .accent {
        color: var(--green);
        font-weight: 700;
    }

    .trf-remarketing-page--v3 .intro {
        width: min(1180px, calc(100% - 40px));
        margin: auto;
        padding: 54px 0 34px;
        text-align: center;
    }

        .trf-remarketing-page--v3 .intro h2 {
            margin-bottom: 14px;
            color: #4d4d4d;
            font-size: clamp(32px, 3vw, 46px);
            font-weight: 400;
            line-height: 1.15;
        }

            .trf-remarketing-page--v3 .intro h2 strong {
                color: var(--green);
                font-weight: 700;
            }

        .trf-remarketing-page--v3 .intro p {
            margin-bottom: 0;
            color: #4d4d4d;
            font-size: 18px;
            line-height: 1.35;
        }

    .trf-remarketing-page--v3 .benefits-wrap {
        width: min(1290px, calc(100% - 32px));
        margin: auto;
        padding-bottom: 60px;
    }

    .trf-remarketing-page--v3 .benefits {
        position: relative;
        z-index: 2;
        padding: 55px 62px 80px;
        border: 6px solid var(--green);
        border-radius: 52px;
        background: var(--white);
        box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    }

    .trf-remarketing-page--v3 .benefits__header {
        text-align: center;
    }

        .trf-remarketing-page--v3 .benefits__header h2 {
            margin-bottom: 16px;
            color: #4d4d4d;
            font-size: 28px;
            font-weight: 400;
            line-height: 1.25;
        }

            .trf-remarketing-page--v3 .benefits__header h2 strong {
                color: var(--green);
                font-weight: 700;
            }

        .trf-remarketing-page--v3 .benefits__header p {
            max-width: 900px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 16px;
            line-height: 1.45;
        }

    .trf-remarketing-page--v3 .cards {
        display: grid;
        justify-content: center;
        gap: 96px 18px;
    }

    .trf-remarketing-page--v3 .cards--top {
        grid-template-columns: repeat(3, minmax(0, 380px));
        margin-top: 109px;
    }

    .trf-remarketing-page--v3 .cards--bottom {
        grid-template-columns: repeat(2, minmax(0, 380px));
        margin-top: 96px;
    }

    .trf-remarketing-page--v3 .card {
        position: relative;
        min-width: 0;
        padding: 106px 28px 36px;
        border: 2px solid var(--green);
        background: var(--white);
        text-align: center;
    }

    .trf-remarketing-page--v3 .card--left {
        border-radius: 64px 0 64px 0;
    }

    .trf-remarketing-page--v3 .card--middle {
        border-radius: 0 0 64px 64px;
    }

    .trf-remarketing-page--v3 .card--right {
        border-radius: 0 64px 0 64px;
    }

    .trf-remarketing-page--v3 .badge {
        position: absolute;
        top: -67px;
        left: 50%;
        display: grid;
        width: 134px;
        height: 134px;
        place-items: center;
        padding: 9px;
        border: 5px solid var(--white);
        border-radius: 50%;
        background: var(--green);
        transform: translateX(-50%);
    }

        .trf-remarketing-page--v3 .badge::before {
            content: "";
            position: absolute;
            inset: 9px;
            border: 3px solid var(--white);
            border-radius: 50%;
        }

        .trf-remarketing-page--v3 .badge img {
            position: relative;
            z-index: 1;
            display: block;
            width: 68px;
            height: 68px;
            object-fit: contain;
        }

    .trf-remarketing-page--v3 .card h3 {
        margin-bottom: 17px;
        color: var(--green);
        font-size: 24px;
        font-weight: 700;
        line-height: 1.1;
    }

    .trf-remarketing-page--v3 .card p {
        margin-bottom: 0;
        color: #4d4d4d;
        font-size: 18px;
        line-height: 1.38;
    }

    .trf-remarketing-page--v3 .callout {
        position: relative;
        z-index: 1;
        width: min(1080px, calc(100% - 80px));
        margin: -64px auto 0;
        padding: 104px 60px 42px;
        border-radius: 0 0 40px 40px;
        background: var(--green);
        color: var(--white);
        box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
        text-align: center;
    }

        .trf-remarketing-page--v3 .callout h2 {
            margin-bottom: 18px;
            color: var(--white);
            font-size: 26px;
            line-height: 1.25;
        }

        .trf-remarketing-page--v3 .callout p {
            margin-bottom: 0;
            color: var(--white);
            font-size: 16px;
            line-height: 1.5;
        }

    .trf-remarketing-page--v3 .enquiry {
        width: min(900px, calc(100% - 40px));
        margin: 0 auto;
        padding: 0 0 68px;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.55;
        text-align: center;
    }

        .trf-remarketing-page--v3 .enquiry a:hover {
            text-decoration: underline;
        }

@media (max-width: 1050px) {
    .trf-remarketing-page--v3 .benefits {
        padding-right: 34px;
        padding-left: 34px;
    }

    .trf-remarketing-page--v3 .cards--top,
    .trf-remarketing-page--v3 .cards--bottom {
        grid-template-columns: repeat(2, minmax(0, 380px));
    }
}

@media (max-width: 720px) {
    .trf-remarketing-page--v3 .intro {
        padding-top: 42px;
    }

    .trf-remarketing-page--v3 .benefits {
        padding: 42px 18px 62px;
        border-width: 4px;
        border-radius: 34px;
    }

    .trf-remarketing-page--v3 .benefits__header h2 {
        font-size: 24px;
    }

    .trf-remarketing-page--v3 .cards--top,
    .trf-remarketing-page--v3 .cards--bottom {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 100px;
        gap: 100px;
    }

    .trf-remarketing-page--v3 .card {
        width: min(100%, 420px);
        padding: 78px 22px 32px;
    }

        .trf-remarketing-page--v3 .card h3 {
            font-size: 21px;
        }

        .trf-remarketing-page--v3 .card p {
            font-size: 17px;
        }

    .trf-remarketing-page--v3 .badge {
        top: -49px;
        width: 98px;
        height: 98px;
    }

        .trf-remarketing-page--v3 .badge img {
            width: 50px;
            height: 50px;
        }

    .trf-remarketing-page--v3 .callout {
        width: calc(100% - 24px);
        padding: 90px 24px 36px;
    }
}
/* Returns Management page */
.trf-returns-page--v1 {
    --returns-green: #00743f;
    --returns-green-dark: #005b32;
    --returns-charcoal: #4b4b4b;
    --returns-body: #5f5f5f;
    --returns-page: #ededed;
    --returns-white: #fff;
    color: #4d4d4d;
    background: var(--returns-page);
}

    .trf-returns-page--v1 *,
    .trf-returns-page--v1 *::before,
    .trf-returns-page--v1 *::after {
        box-sizing: border-box;
    }

    .trf-returns-page--v1 .returns-management-v1 {
        background: var(--returns-page);
    }

    .trf-returns-page--v1 h1,
    .trf-returns-page--v1 h2,
    .trf-returns-page--v1 h3,
    .trf-returns-page--v1 p {
        margin-top: 0;
    }

    .trf-returns-page--v1 .accent {
        color: var(--returns-green);
        font-weight: 700;
    }

    .trf-returns-page--v1 a.accent:hover {
        text-decoration: underline;
    }

    .trf-returns-page--v1 img {
        display: block;
        max-width: 100%;
    }

    .trf-returns-page--v1 .intro {
        width: min(1080px, calc(100% - 40px));
        margin: auto;
        padding: 62px 0 48px;
        text-align: center;
    }

        .trf-returns-page--v1 .intro h2,
        .trf-returns-page--v1 .intro h3,
        .trf-returns-page--v1 .benefits__heading h2,
        .trf-returns-page--v1 .contact h2 {
            color: #4d4d4d;
            font-size: clamp(29px, 3vw, 42px);
            font-weight: 400;
            line-height: 1.2;
        }

            .trf-returns-page--v1 .intro h2 strong,
            .trf-returns-page--v1 .intro h3 strong,
            .trf-returns-page--v1 .benefits h2 strong,
            .trf-returns-page--v1 .contact h2 strong {
                color: var(--returns-green);
                font-weight: 700;
            }

        .trf-returns-page--v1 .intro h2 {
            margin-bottom: 22px;
        }

        .trf-returns-page--v1 .intro h3 {
            margin: 46px 0 17px;
        }

        .trf-returns-page--v1 .intro p {
            margin-bottom: 14px;
            color: #4d4d4d;
            font-size: 18px;
            line-height: 1.5;
        }

    .trf-returns-page--v1 .services {
        display: grid;
        width: min(1160px, calc(100% - 40px));
        gap: 30px;
        margin: 0 auto 70px;
    }

    .trf-returns-page--v1 .service {
        display: grid;
        min-height: 290px;
        grid-template-columns: 42% 58%;
        overflow: hidden;
        border: 2px solid var(--returns-green);
        border-radius: 52px 0 52px 0;
        background: var(--returns-white);
        box-shadow: 0 3px 9px rgb(0 0 0 / 12%);
    }

    .trf-returns-page--v1 .service--reverse {
        grid-template-columns: 58% 42%;
        border-radius: 0 52px 0 52px;
    }

        .trf-returns-page--v1 .service--reverse .service__media {
            order: 2;
        }

    .trf-returns-page--v1 .service__media {
        min-height: 290px;
        background: linear-gradient(145deg, var(--returns-green), var(--returns-green-dark));
    }

        .trf-returns-page--v1 .service__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .trf-returns-page--v1 .service__copy {
        position: relative;
        align-content: center;
        padding: 44px 54px;
    }

    .trf-returns-page--v1 .service__number {
        position: absolute;
        top: 16px;
        right: 28px;
        margin: 0;
        color: rgb(0 116 63 / 12%);
        font-size: 70px;
        font-weight: 700;
        line-height: 1;
    }

    .trf-returns-page--v1 .service h2 {
        position: relative;
        margin-bottom: 15px;
        color: var(--returns-green);
        font-size: 27px;
        line-height: 1.2;
    }

    .trf-returns-page--v1 .service__copy > p:last-child {
        position: relative;
        margin-bottom: 0;
        color: #4d4d4d;
        font-size: 18px;
        line-height: 1.5;
    }

    .trf-returns-page--v1 .benefits {
        padding: 64px max(20px, calc((100% - 1180px) / 2)) 72px;
        background: linear-gradient(135deg, var(--returns-green-dark), var(--returns-green));
        color: var(--returns-white);
    }

    .trf-returns-page--v1 .benefits__heading {
        text-align: center;
    }

        .trf-returns-page--v1 .benefits__heading h2 {
            margin-bottom: 16px;
            color: var(--returns-white);
        }

            .trf-returns-page--v1 .benefits__heading h2 strong {
                color: #b7dc57;
            }

        .trf-returns-page--v1 .benefits__heading p {
            margin-bottom: 45px;
            color: rgb(255 255 255 / 94%);
            font-size: 18px;
        }

    .trf-returns-page--v1 .benefit-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }

    .trf-returns-page--v1 .benefit {
        grid-column: span 2;
        padding: 28px 22px 32px;
        border: 1px solid rgb(255 255 255 / 36%);
        border-radius: 34px 0 34px 0;
        background: rgb(255 255 255 / 8%);
        text-align: center;
    }

        .trf-returns-page--v1 .benefit:nth-child(4) {
            grid-column: 2 / span 2;
        }

        .trf-returns-page--v1 .benefit:nth-child(5) {
            grid-column: 4 / span 2;
        }

    .trf-returns-page--v1 .benefit__icon {
        display: grid;
        width: 84px;
        height: 84px;
        place-items: center;
        margin: 0 auto 20px;
        border: 3px solid var(--returns-white);
        border-radius: 50%;
    }

        .trf-returns-page--v1 .benefit__icon img {
            width: 56px;
            height: 56px;
            object-fit: contain;
        }

    .trf-returns-page--v1 .benefit h3 {
        margin-bottom: 12px;
        color: var(--returns-white);
        font-size: 21px;
    }

    .trf-returns-page--v1 .benefit p {
        margin-bottom: 0;
        color: rgb(255 255 255 / 90%);
        font-size: 16px;
        line-height: 1.48;
    }

    .trf-returns-page--v1 .contact {
        width: min(1040px, calc(100% - 40px));
        margin: auto;
        padding: 64px 0 72px;
        text-align: center;
    }

        .trf-returns-page--v1 .contact h2 {
            margin-bottom: 20px;
        }

        .trf-returns-page--v1 .contact p {
            margin-bottom: 0;
            color: #4d4d4d;
            font-size: 18px;
            line-height: 1.5;
        }

@media (max-width: 900px) {
    .trf-returns-page--v1 .service,
    .trf-returns-page--v1 .service--reverse {
        grid-template-columns: 40% 60%;
    }

        .trf-returns-page--v1 .service--reverse .service__media {
            order: 0;
        }

    .trf-returns-page--v1 .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trf-returns-page--v1 .benefit,
    .trf-returns-page--v1 .benefit:nth-child(4),
    .trf-returns-page--v1 .benefit:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 650px) {
    .trf-returns-page--v1 .intro {
        padding-top: 44px;
    }

    .trf-returns-page--v1 .service,
    .trf-returns-page--v1 .service--reverse {
        grid-template-columns: 1fr;
        border-radius: 34px 0 34px 0;
    }

    .trf-returns-page--v1 .service__media {
        min-height: 220px;
    }

    .trf-returns-page--v1 .service__copy {
        padding: 36px 24px;
        text-align: center;
    }

    .trf-returns-page--v1 .service__number {
        font-size: 54px;
    }

    .trf-returns-page--v1 .benefit-grid {
        grid-template-columns: 1fr;
    }
}
/* Returns Management page v3 */
.trf-returns-page--v3 {
    --returns-green: #006f3d;
    --returns-lime: #87c51f;
    --returns-charcoal: #414143;
    --returns-soft: #f2f2f2;
    --returns-line: #d6d7d7;
    color: #4d4d4d;
    background: #fff;
}

    .trf-returns-page--v3 *,
    .trf-returns-page--v3 *::before,
    .trf-returns-page--v3 *::after {
        box-sizing: border-box;
    }

    .trf-returns-page--v3 h1,
    .trf-returns-page--v3 h2,
    .trf-returns-page--v3 h3,
    .trf-returns-page--v3 p {
        margin-top: 0;
    }

    .trf-returns-page--v3 img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .trf-returns-page--v3 strong,
    .trf-returns-page--v3 em {
        color: var(--returns-green);
        font-style: normal;
        font-weight: 700;
    }

    .trf-returns-page--v3 .returns-wrap {
        width: min(1080px, calc(100% - 40px));
        margin-right: auto;
        margin-left: auto;
    }

    .trf-returns-page--v3 .returns-intro {
        padding: 65px 0 44px;
        text-align: center;
    }

        .trf-returns-page--v3 .returns-intro h2,
        .trf-returns-page--v3 .returns-benefits h2,
        .trf-returns-page--v3 .returns-contact h2 {
            margin-bottom: 13px;
            color: #4d4d4d;
            font-size: 40px;
            font-weight: 400;
            line-height: 1.2;
        }

            .trf-returns-page--v3 .returns-intro h2:first-child {
                font-size: 50px;
            }

        .trf-returns-page--v3 .returns-intro p {
            max-width: 1370px;
            margin: 0 auto 16px;
            color: #4d4d4d;
            font-size: 18px;
            line-height: 1.45;
        }

    .trf-returns-page--v3 .returns-offer {
        margin-top: 74px;
        margin-bottom: 8px;
    }

    .trf-returns-page--v3 .returns-wheel-section {
        min-height: 700px;
        display: grid;
        place-items: center;
        padding: 35px 20px;
        background-color: #d7d7d7;
        background-image: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.45) 28%, rgba(215,215,215,.2) 100%), url('/images/trf-source/reference/returns-management-bg.png');
        background-repeat: no-repeat, no-repeat;
        background-position: center, center;
        background-size: cover, cover;
    }

        .trf-returns-page--v3 .returns-wheel-section img {
            width: min(1280px, 96vw);
            height: auto;
        }

    .trf-returns-page--v3 .returns-service-flow {
        min-height: 1080px;
        position: relative;
        overflow: hidden;
        padding: 85px 0;
        background: url('/images/subpages/returns-management/returns-management-bg.png') center / cover no-repeat #fff;
    }

    .trf-returns-page--v3 .returns-flow-wave {
        position: absolute;
        left: -10%;
        width: 120%;
        height: 180px;
        border: 14px solid rgba(63,214,176,.11);
        border-radius: 50%;
        filter: blur(1px);
        transform: rotate(8deg);
    }

    .trf-returns-page--v3 .returns-flow-wave--one {
        top: 190px;
    }

    .trf-returns-page--v3 .returns-flow-wave--two {
        top: 690px;
        transform: rotate(-9deg);
    }

    .trf-returns-page--v3 .returns-service-list {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 58px;
    }

    .trf-returns-page--v3 .returns-service-card {
        position: relative;
        display: flex;
        width: 760px;
        height: 245px;
        overflow: visible;
        border: 2px solid var(--returns-green);
        border-radius: 14px;
        background: #fff;
    }

    .trf-returns-page--v3 .returns-service-card--left {
        margin-right: auto;
    }

    .trf-returns-page--v3 .returns-service-card--right {
        flex-direction: row-reverse;
        margin-left: auto;
        text-align: right;
    }

    .trf-returns-page--v3 .returns-repair,
    .trf-returns-page--v3 .returns-analytics {
        border-color: var(--returns-lime);
    }

    .trf-returns-page--v3 .returns-resale {
        border-color: #555;
    }

    .trf-returns-page--v3 .returns-service-visual {
        width: 310px;
        height: 100%;
        flex: 0 0 310px;
        overflow: hidden;
        background: linear-gradient(135deg, #213b34, #91aa81);
    }

    .trf-returns-page--v3 .returns-service-card--left .returns-service-visual {
        border-radius: 12px 0 0 12px;
    }

    .trf-returns-page--v3 .returns-service-card--right .returns-service-visual {
        border-radius: 0 12px 12px 0;
    }

    .trf-returns-page--v3 .returns-service-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .trf-returns-page--v3 .returns-service-copy {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        padding: 28px 22px;
    }

        .trf-returns-page--v3 .returns-service-copy h3 {
            margin-bottom: 10px;
            color: var(--returns-green);
            font-size: 23px;
            font-weight: 700;
            line-height: 1.15;
        }

        .trf-returns-page--v3 .returns-service-copy p {
            margin: 0;
            color: #4d4d4d;
            font-size: 17px;
            line-height: 1.35;
        }

    .trf-returns-page--v3 .returns-service-badge {
        position: absolute;
        top: 50%;
        display: grid;
        width: 82px;
        height: 82px;
        place-items: center;
        border: 7px solid white;
        border-radius: 50%;
        background: var(--returns-green);
        box-shadow: 0 3px 8px rgb(0 0 0 / 22%);
        transform: translateY(-50%);
    }

    .trf-returns-page--v3 .returns-service-card--left .returns-service-badge {
        left: -42px;
    }

    .trf-returns-page--v3 .returns-service-card--right .returns-service-badge {
        right: -42px;
        background: var(--returns-lime);
    }

    .trf-returns-page--v3 .returns-resale .returns-service-badge {
        background: #555;
    }

    .trf-returns-page--v3 .returns-service-badge img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

    .trf-returns-page--v3 .returns-benefits {
        padding: 60px 0 75px;
        background: linear-gradient(110deg, #f3f3f3 5%, #c8c8ca 95%);
        text-align: center;
    }


        .trf-returns-page--v3 .returns-benefits .returns-wrap {
            width: min(1440px, calc(100% - 40px));
        }

        .trf-returns-page--v3 .returns-benefits h2 {
            font-size: 50px;
        }

        .trf-returns-page--v3 .returns-benefits > .returns-wrap > p {
            margin-bottom: 43px;
            color: #4d4d4d;
            font-size: 18px;
        }

    .trf-returns-page--v3 .returns-benefit-grid {
        display: flex;
        max-width: 1370px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin: 0 auto;
    }

    .trf-returns-page--v3 .returns-benefit-card {
        width: 430px;
        height: 334px;
        padding: 28px 24px 30px;
        border-radius: 12px;
        background: var(--returns-green);
        box-shadow: 0 2px 5px #777;
        color: white;
    }

    .trf-returns-page--v3 .returns-benefit-icon {
        display: grid;
        width: 120px;
        height: 120px;
        place-items: center;
        margin: 0 auto 24px;
        border-radius: 50%;
        background: white;
    }

        .trf-returns-page--v3 .returns-benefit-icon img {
            width: 86px;
            height: 86px;
            object-fit: contain;
        }

    .trf-returns-page--v3 .returns-benefit-card h3 {
        margin-bottom: 16px;
        color: white;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.15;
    }

    .trf-returns-page--v3 .returns-benefit-card p {
        margin: 0;
        color: white;
        font-size: 16px;
        line-height: 1.35;
    }

    .trf-returns-page--v3 .returns-contact {
        padding: 48px 0 56px;
        background: #f4f4f4;
        text-align: center;
    }

        .trf-returns-page--v3 .returns-contact p {
            max-width: 865px;
            margin: 0 auto;
            color: #4d4d4d;
            font-size: 11px;
            line-height: 1.5;
        }


        .trf-returns-page--v3 .returns-contact h2 {
            font-size: 50px;
        }

        .trf-returns-page--v3 .returns-contact p {
            font-size: 16px;
        }

        .trf-returns-page--v3 .returns-contact a {
            color: var(--returns-green);
            font-weight: 700;
            text-decoration: none;
        }

            .trf-returns-page--v3 .returns-contact a:hover {
                text-decoration: underline;
            }

@media (max-width: 900px) {
    .trf-returns-page--v3 .returns-service-card {
        width: min(760px, calc(100% - 35px));
    }
}

@media (max-width: 600px) {
    .trf-returns-page--v3 .returns-wrap {
        width: min(100% - 28px, 1080px);
    }

    .trf-returns-page--v3 .returns-intro {
        padding: 46px 0 34px;
    }

        .trf-returns-page--v3 .returns-intro h2,
        .trf-returns-page--v3 .returns-benefits h2,
        .trf-returns-page--v3 .returns-contact h2 {
            font-size: 25px;
        }

            .trf-returns-page--v3 .returns-intro h2:first-child {
                font-size: 32px;
            }

        .trf-returns-page--v3 .returns-intro p {
            font-size: 16px;
        }

    .trf-returns-page--v3 .returns-offer {
        margin-top: 48px;
    }

    .trf-returns-page--v3 .desktop-break {
        display: none;
    }

    .trf-returns-page--v3 .returns-wheel-section {
        min-height: 410px;
    }

        .trf-returns-page--v3 .returns-wheel-section img {
            width: min(720px, 96vw);
        }

    .trf-returns-page--v3 .returns-service-flow {
        min-height: auto;
        padding: 60px 0;
    }

    .trf-returns-page--v3 .returns-service-list {
        gap: 38px;
    }

    .trf-returns-page--v3 .returns-service-card,
    .trf-returns-page--v3 .returns-service-card--right {
        width: calc(100% - 18px);
        height: auto;
        min-height: 260px;
        flex-direction: column;
        margin: 0 auto;
        text-align: left;
    }

    .trf-returns-page--v3 .returns-service-visual {
        width: 100%;
        height: 105px;
        flex: 0 0 105px;
        border-radius: 12px 12px 0 0 !important;
    }

    .trf-returns-page--v3 .returns-service-copy {
        padding: 24px;
    }

    .trf-returns-page--v3 .returns-service-badge,
    .trf-returns-page--v3 .returns-service-card--left .returns-service-badge,
    .trf-returns-page--v3 .returns-service-card--right .returns-service-badge {
        top: 72px;
        right: 18px;
        left: auto;
        width: 62px;
        height: 62px;
        border-width: 5px;
        transform: none;
    }

        .trf-returns-page--v3 .returns-service-badge img {
            width: 40px;
            height: 40px;
        }

    .trf-returns-page--v3 .returns-benefit-grid {
        gap: 20px;
    }

    .trf-returns-page--v3 .returns-benefit-card {
        width: min(100%, 430px);
        height: auto;
        min-height: 334px;
    }
}
/* Refurbishing Process page */
.trf-refurb-process-page {
    --refurb-green: #006f45;
    --refurb-green-dark: #005537;
    --refurb-lime: #79bb28;
    --refurb-ink: #232c29;
    --refurb-muted: #626a67;
    background: white;
    color: #4d4d4d;
}

    .trf-refurb-process-page strong {
        color: var(--refurb-green);
        font-weight: 700;
    }

.trf-refurb-process-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px 110px;
}

    .trf-refurb-process-section::before,
    .trf-refurb-process-section::after {
        position: absolute;
        z-index: 0;
        width: 700px;
        height: 220px;
        border-radius: 50%;
        background: repeating-radial-gradient(ellipse at center, rgba(73, 226, 185, 0.16) 0 3px, transparent 4px 18px);
        filter: blur(1px);
        content: "";
        pointer-events: none;
        transform: rotate(12deg);
    }

    .trf-refurb-process-section::before {
        top: 270px;
        left: -400px;
    }

    .trf-refurb-process-section::after {
        right: -370px;
        bottom: 170px;
        transform: rotate(18deg);
    }

.trf-refurb-intro,
.trf-refurb-list {
    position: relative;
    z-index: 1;
}

.trf-refurb-intro {
    width: min(100%, 1220px);
    margin: 0 auto 78px;
    text-align: center;
}

    .trf-refurb-intro h2 {
        margin: 0 0 20px;
        color: #4d4d4d;
        font-size: 50px;
        font-weight: 300;
        line-height: 1.15;
    }

    .trf-refurb-intro p {
        max-width: 1220px;
        margin: 0 auto;
        color: #4d4d4d;
        font-size: 18px;
        line-height: 1.4;
    }

.trf-refurb-list {
    width: min(100%, 1220px);
    margin: auto;
}

.trf-refurb-step {
    position: relative;
    display: grid;
    min-height: 290px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

    .trf-refurb-step::after {
        position: absolute;
        top: calc(50% + 92px);
        bottom: calc(-50% + 92px);
        left: 50%;
        width: 1px;
        background: #75817c;
        content: "";
    }

    .trf-refurb-step:last-child::after {
        display: none;
    }

.trf-refurb-step__content {
    position: relative;
    display: flex;
    width: 486px;
    min-height: 210px;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    margin-right: 124px;
    padding: 10px;
    text-align: right;
}

.trf-refurb-step__number {
    position: absolute;
    top: 2px;
    right: 90px;
    z-index: -1;
    color: #4d4d4d;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.trf-refurb-step__content h3 {
    margin: 0 0 8px;
    color: #4d4d4d;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.18;
}

.trf-refurb-step__content p {
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.55;
}

.trf-refurb-step__visual {
    overflow: hidden;
    width: 500px;
    height: 188px;
    margin-left: 50px;
    border-radius: 0 28px 28px 0;
    background: #ddd;
    box-shadow: 0 13px 35px rgba(30, 50, 42, 0.08);
}

    .trf-refurb-step__visual img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.trf-refurb-step__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 184px;
    height: 184px;
    place-items: center;
    padding: 20px;
    border-radius: 50%;
    background: var(--refurb-green);
    box-shadow: 0 0 0 8px white;
    transform: translate(-50%, -50%);
}

    .trf-refurb-step__icon::before {
        position: absolute;
        inset: 20px;
        border: 2px solid white;
        border-radius: 50%;
        content: "";
    }

    .trf-refurb-step__icon img {
        position: relative;
        z-index: 1;
        width: 106px;
        height: 106px;
        object-fit: contain;
    }

.trf-refurb-step--reverse .trf-refurb-step__visual {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    margin-right: 50px;
    margin-left: 0;
    border-radius: 28px 0 0 28px;
}

.trf-refurb-step--reverse .trf-refurb-step__content {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin-right: 0;
    margin-left: 124px;
    text-align: left;
}

.trf-refurb-step--reverse .trf-refurb-step__number {
    right: auto;
    left: 90px;
}

.trf-refurb-impact {
    display: flex;
    width: min(calc(100% - 40px), 1120px);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 0 auto 90px;
    padding: 42px 48px;
    border-radius: 24px;
    background: linear-gradient(120deg, var(--refurb-green-dark), var(--refurb-green));
    color: white;
}

    .trf-refurb-impact p {
        margin: 0 0 8px;
        color: #bfe3d1;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .trf-refurb-impact h2 {
        margin: 0;
        color: white;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.15;
    }

.trf-refurb-impact__button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--refurb-green-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1320px) and (min-width: 761px) {
    .trf-refurb-list {
        width: min(100%, 930px);
    }

    .trf-refurb-step {
        min-height: 270px;
    }

        .trf-refurb-step::after {
            top: calc(50% + 76px);
            bottom: calc(-50% + 76px);
        }

    .trf-refurb-step__content,
    .trf-refurb-step--reverse .trf-refurb-step__content {
        width: auto;
        min-height: 205px;
    }

    .trf-refurb-step__content {
        margin-right: 98px;
    }

    .trf-refurb-step--reverse .trf-refurb-step__content {
        margin-left: 98px;
    }

    .trf-refurb-step__visual,
    .trf-refurb-step--reverse .trf-refurb-step__visual {
        width: calc(100% - 42px);
        height: 176px;
    }

    .trf-refurb-step__visual {
        margin-left: 42px;
    }

    .trf-refurb-step--reverse .trf-refurb-step__visual {
        margin-right: 42px;
    }

    .trf-refurb-step__icon {
        width: 154px;
        height: 154px;
        padding: 16px;
    }

        .trf-refurb-step__icon::before {
            inset: 16px;
        }

        .trf-refurb-step__icon img {
            width: 90px;
            height: 90px;
        }
}

@media (max-width: 760px) {
    .trf-refurb-process-section {
        padding: 64px 20px 80px;
    }

    .trf-refurb-intro {
        margin-bottom: 58px;
    }

        .trf-refurb-intro h2 {
            font-size: 36px;
        }

        .trf-refurb-intro p {
            font-size: 14px;
        }

    .trf-refurb-step,
    .trf-refurb-step--reverse {
        min-height: 420px;
        grid-template-columns: 1fr;
        align-content: center;
    }

        .trf-refurb-step::after {
            top: calc(50% + 60px);
            bottom: calc(-50% + 60px);
        }

        .trf-refurb-step__visual,
        .trf-refurb-step--reverse .trf-refurb-step__visual {
            grid-column: 1;
            grid-row: 1;
            width: calc(50% - 52px);
            height: 120px;
            margin: 0;
        }

        .trf-refurb-step .trf-refurb-step__visual {
            justify-self: end;
            border-radius: 0 20px 20px 0;
        }

        .trf-refurb-step--reverse .trf-refurb-step__visual {
            justify-self: start;
            border-radius: 20px 0 0 20px;
        }

        .trf-refurb-step__content,
        .trf-refurb-step--reverse .trf-refurb-step__content {
            grid-column: 1;
            grid-row: 2;
            width: auto;
            min-height: 0;
            margin: 0;
            padding: 36px 12px 18px;
            text-align: center;
        }

        .trf-refurb-step__number,
        .trf-refurb-step--reverse .trf-refurb-step__number {
            top: 9px;
            right: auto;
            left: 50%;
            transform: translateX(-50%);
        }

    .trf-refurb-step__icon {
        top: 36%;
        width: 120px;
        height: 120px;
        padding: 13px;
        box-shadow: 0 0 0 7px white;
    }

        .trf-refurb-step__icon::before {
            inset: 13px;
        }

        .trf-refurb-step__icon img {
            width: 74px;
            height: 74px;
        }

    .trf-refurb-impact {
        display: block;
        margin-bottom: 70px;
        padding: 34px 28px;
        text-align: center;
    }

        .trf-refurb-impact h2 {
            margin-bottom: 24px;
            font-size: 28px;
        }
}

@media (max-width: 480px) {
    .trf-refurb-process-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .trf-refurb-step__content h3 {
        font-size: 16px;
    }
}
/* Trade-In page */
.trf-trade-page {
    --trade-green: #007a3d;
    --trade-green-dark: #006333;
    --trade-green-light: #8cc63f;
    --trade-text: #404040;
    --trade-muted: #5f5f5f;
    --trade-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    background: white;
    color: #4d4d4d;
}

    .trf-trade-page strong,
    .trf-trade-page a {
        color: var(--trade-green);
        font-weight: 900;
    }

.trf-trade-container {
    width: min(1400px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.trf-trade-intro {
    padding: 70px 0 42px;
    text-align: center;
}

    .trf-trade-intro h2,
    .trf-trade-why h2 {
        margin: 0;
        color: #4d4d4d;
        font-size: 50px;
        font-weight: 500;
        line-height: 1.12;
    }

.trf-trade-lead {
    width: min(1180px, 100%);
    margin: 17px auto 0;
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.28;
}

.trf-trade-intro-text {
    width: min(1160px, 100%);
    margin: 28px auto 0;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.25;
}

.trf-trade-process {
    padding: 22px 0 86px;
    text-align: center;
}

    .trf-trade-process h3 {
        margin: 0 0 22px;
        color: #4d4d4d;
        font-size: 50px;
        font-weight: 500;
        line-height: 1.12;
    }

.trf-trade-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
    width: 100%;
    margin: 0 auto;
}

.trf-trade-step {
    position: relative;
    display: grid;
    justify-items: center;
}

.trf-trade-step__number {
    margin-bottom: 7px;
    color: var(--trade-green);
    font-size: 60px;
    font-weight: 900;
    line-height: 0.9;
}

.trf-trade-step__card {
    display: grid;
    width: 100%;
    min-height: 122px;
    place-items: center;
    padding: 19px 17px 25px;
    border: 4px solid var(--trade-green);
    border-radius: 9px;
    background: white;
    color: #4d4d4d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.38;
}

.trf-trade-step__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    margin-top: -35px;
    border: 5px solid white;
    border-radius: 50%;
    background: var(--trade-green);
    box-shadow: 0 0 0 1px rgba(0, 122, 61, 0.12);
}

    .trf-trade-step__icon img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

.trf-trade-why {
    padding: 40px 0 45px;
    background: #efefef;
    text-align: center;
}

.trf-trade-benefits {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 66px;
    margin: 40px auto 0;
}

.trf-trade-benefit {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 26px 27px 29px;
    border-radius: 10px;
    background: var(--trade-green);
    box-shadow: var(--trade-shadow);
    color: white;
}

    .trf-trade-benefit h4 {
        margin: 0;
        color: white;
        font-size: 36px;
        font-weight: 900;
        line-height: 1.02;
    }

    .trf-trade-benefit p {
        margin: 18px 0 10px;
        color: white;
        font-size: 17px;
        font-weight: 500;
        line-height: 1.16;
    }

    .trf-trade-benefit img {
        width: 180px;
        height: 180px;
        object-fit: contain;
        margin-top: auto;
    }

.trf-trade-cta {
    width: min(1180px, 100%);
    margin: 58px auto 0;
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.28;
}

@media (max-width: 980px) {
    .trf-trade-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trf-trade-benefits {
        max-width: 420px;
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 650px) {
    .trf-trade-container {
        width: min(100% - 28px, 1400px);
    }

    .trf-trade-intro {
        padding-top: 48px;
    }

        .trf-trade-intro h2,
        .trf-trade-process h3,
        .trf-trade-why h2 {
            font-size: 34px;
        }

    .trf-trade-lead,
    .trf-trade-intro-text,
    .trf-trade-cta {
        font-size: 16px;
    }

    .trf-trade-steps {
        grid-template-columns: 1fr;
    }

    .trf-trade-step__card {
        min-height: 112px;
    }

    .trf-trade-benefit {
        min-height: 310px;
    }
}
/* Charities & Non-Profits */
.trf-charities-page {
    --charity-green: #00743f;
    --charity-dark-green: #006638;
    --charity-lime: #8fc31f;
    --charity-text: #424347;
    --charity-muted: #686868;
    --charity-panel: #eeeeee;
    --charity-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #4d4d4d;
}

.trf-charities-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.trf-charities-page strong,
.trf-charities-page h2 strong {
    color: var(--charity-green);
    font-weight: 800;
}

.trf-charities-page h2 {
    margin: 0;
    color: #4d4d4d;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
}

.trf-charities-partners {
    padding: 70px 0 74px;
    background: var(--charity-panel);
    text-align: center;
}

.trf-charities-section-intro {
    width: min(920px, 100%);
    margin: 18px auto 0;
    color: #4d4d4d;
    font-size: 18px;
    line-height: 1.55;
}

.trf-charities-carousel-shell {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 22px;
    align-items: center;
    margin-top: 42px;
}

.trf-charities-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(165px, 1fr);
    gap: 12px;
    overflow-x: auto;
    padding: 4px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

    .trf-charities-carousel::-webkit-scrollbar {
        display: none;
    }

.trf-charities-tile {
    display: grid;
    min-height: 116px;
    place-items: center;
    gap: 8px;
    padding: 13px 12px 12px;
    border: 3px solid transparent;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
    color: #4d4d4d;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    scroll-snap-align: start;
    text-align: center;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

    .trf-charities-tile:hover,
    .trf-charities-tile.active {
        border-color: var(--charity-green);
        box-shadow: var(--charity-shadow);
        transform: translateY(-2px);
    }

    .trf-charities-tile img {
        width: 118px;
        height: 54px;
        object-fit: contain;
    }

.trf-charities-carousel-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--charity-green);
    cursor: pointer;
    position: relative;
}

    .trf-charities-carousel-arrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }

.trf-charities-carousel-arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.trf-charities-carousel-arrow--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.trf-charities-recycle-cta {
    padding: 64px 0 66px;
    background: var(--charity-panel);
    text-align: center;
}

    .trf-charities-recycle-cta p {
        width: min(920px, 100%);
        margin: 20px auto 0;
        color: #4d4d4d;
        font-size: 17px;
        line-height: 1.55;
    }

    .trf-charities-recycle-cta h2 {
        font-size: clamp(34px, 3.3vw, 44px);
    }

    .trf-charities-recycle-cta .trf-charities-button {
        margin-top: 28px;
    }

.trf-charities-cartridges {
    padding: 28px 0 72px;
    background: #fff;
    text-align: center;
}

    .trf-charities-cartridges h2 {
        font-size: clamp(34px, 3.3vw, 44px);
    }

    .trf-charities-cartridges p {
        width: min(920px, 100%);
        margin: 18px auto 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.5;
    }

.trf-charities-cartridge-image {
    display: block;
    width: min(560px, 100%);
    margin: 30px auto 34px;
    object-fit: contain;
}

.trf-charities-outline-button,
.trf-charities-button {
    display: inline-flex;
    min-width: 210px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.trf-charities-outline-button {
    border: 2px solid var(--charity-green);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: var(--charity-green);
}

    .trf-charities-outline-button:hover,
    .trf-charities-button:hover {
        background: var(--charity-dark-green);
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

.trf-charities-partner-cta {
    padding: 64px 0 72px;
    background: var(--charity-panel);
    text-align: center;
}

    .trf-charities-partner-cta p {
        width: min(980px, 100%);
        margin: 18px auto 0;
        color: #4d4d4d;
        font-size: 17px;
        line-height: 1.55;
    }

    .trf-charities-partner-cta .trf-charities-cta-line {
        margin-top: 30px;
        font-weight: 700;
    }

.trf-charities-button {
    margin-top: 24px;
    background: var(--charity-green);
    color: #fff;
}

@media (max-width: 980px) {
    .trf-charities-carousel-shell {
        grid-template-columns: 42px 1fr 42px;
        gap: 12px;
    }

    .trf-charities-carousel {
        grid-auto-columns: minmax(145px, 180px);
    }
}

@media (max-width: 640px) {
    .trf-charities-container {
        width: calc(100% - 28px);
    }

    .trf-charities-partners,
    .trf-charities-cartridges,
    .trf-charities-partner-cta {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .trf-charities-page h2 {
        font-size: 34px;
    }

    .trf-charities-section-intro,
    .trf-charities-under-construction span,
    .trf-charities-partner-cta p {
        font-size: 15px;
    }

    .trf-charities-carousel-shell {
        grid-template-columns: 1fr;
    }

    .trf-charities-carousel-arrow {
        display: none;
    }

    .trf-charities-under-construction {
        min-height: 170px;
        padding: 24px 16px;
    }

        .trf-charities-under-construction p {
            font-size: 38px;
        }
}
/* Charity partners numbered carousel */
.trf-charity-partners {
    width: 100%;
    padding: 34px 20px 48px;
    background: #fff;
    overflow: hidden;
}

.trf-charity-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.trf-charity-title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;
    color: #4d4d4d;
}

    .trf-charity-title span {
        color: #007a3d;
        font-weight: 700;
    }

.trf-charity-carousel-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    column-gap: 18px;
}

.trf-charity-swiper {
    width: 100%;
    min-height: 0;
    padding-bottom: 0;
}

    .trf-charity-swiper .swiper-slide {
        display: none;
    }

        .trf-charity-swiper .swiper-slide.is-active {
            display: block;
        }

.trf-charity-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(84px, 1fr));
    grid-auto-rows: 70px;
    align-items: center;
    gap: 18px 38px;
    width: 100%;
}

.trf-charity-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    text-decoration: none;
}

    .trf-charity-logo img {
        display: block;
        max-width: 120px;
        max-height: 62px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.trf-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #007a3d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.trf-charity-logo.is-missing img {
    display: none;
}

.trf-charity-logo.is-missing .trf-logo-fallback {
    display: flex;
}

.trf-charity-arrow {
    position: relative;
    width: 28px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .trf-charity-arrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 24px;
        height: 24px;
        border-top: 5px solid #007a3d;
        border-left: 5px solid #007a3d;
        transform: translate(-35%, -50%) rotate(-45deg);
    }

.trf-charity-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.trf-charity-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

    .trf-charity-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #cfcfcf;
        opacity: 1;
        cursor: pointer;
    }

    .trf-charity-pagination .swiper-pagination-bullet-active {
        background: #000;
    }

@media (max-width: 1000px) {
    .trf-charity-grid {
        grid-template-columns: repeat(4, minmax(90px, 1fr));
        grid-auto-rows: 74px;
        gap: 18px 24px;
    }
}

@media (max-width: 640px) {
    .trf-charity-partners {
        padding: 45px 14px 60px;
    }

    .trf-charity-title {
        font-size: 34px;
    }

    .trf-charity-carousel-wrap {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        column-gap: 8px;
    }

    .trf-charity-grid {
        grid-template-columns: repeat(2, minmax(90px, 1fr));
    }

    .trf-charity-logo img {
        max-width: 112px;
    }
}

.trf-charities-page .trf-charity-title {
    margin: 0 0 25px;
    font-size: 50px;
}

.trf-charities-page .trf-charity-carousel-wrap {
    margin-top: 0;
}
/* How To Recycle data-driven cartridge checker */
.trf-how-to-recycle-page .checker-result {
    display: none;
    gap: 10px;
    margin-top: 2px;
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

    .trf-how-to-recycle-page .checker-result.is-visible {
        display: grid;
    }

.trf-how-to-recycle-page .selected-cartridge {
    display: grid;
    place-items: center;
    min-height: 72px;
    padding: 10px 12px;
    border: 1px solid rgba(8, 115, 63, 0.22);
    border-radius: 4px;
    background: #ffffff;
}

.trf-how-to-recycle-page .selected-brand {
    margin-bottom: 4px;
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
}

.trf-how-to-recycle-page .selected-model {
    color: #4d4d4d;
    font-size: 15px;
}

.trf-how-to-recycle-page .price-panels {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(8, 115, 63, 0.18);
    border-radius: 4px;
}

.trf-how-to-recycle-page .price-panel {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 10px 12px;
    text-transform: uppercase;
}

    .trf-how-to-recycle-page .price-panel.virgin {
        background: #8bc316;
        color: #ffffff;
        font-weight: 700;
    }

    .trf-how-to-recycle-page .price-panel.non-virgin {
        background: #f0f0f0;
        color: #4d4d4d;
    }

.trf-how-to-recycle-page .checker-result .not-eligible {
    display: grid;
    min-height: 64px;
    place-items: center;
    padding: 12px;
    border: 1px solid rgba(8, 115, 63, 0.18);
    border-radius: 4px;
    background: #f7f7f7;
    color: #4d4d4d;
}
/* How To Recycle cartridge info block */
.trf-how-to-recycle-page .cartridge-info {
    margin-top: 8px;
    padding: 18px 20px 20px;
    border-top: 1px solid rgba(8, 115, 63, 0.18);
    border-radius: 0 0 14px 14px;
    background: #f7f7f7;
    color: #4d4d4d;
    text-align: left;
}

    .trf-how-to-recycle-page .cartridge-info h3 {
        margin: 0 0 14px;
        color: var(--green);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        text-align: center;
    }

    .trf-how-to-recycle-page .cartridge-info p {
        margin: 0 0 8px;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
    }

    .trf-how-to-recycle-page .cartridge-info ul {
        margin: 0 0 14px 20px;
        padding: 0;
        font-size: 15px;
        line-height: 1.45;
    }

    .trf-how-to-recycle-page .cartridge-info li {
        margin-bottom: 4px;
    }

@media (min-width: 700px) {
    .trf-how-to-recycle-page .checker-result.is-visible {
        grid-template-columns: 1fr 1.35fr;
    }
}
/* How To Recycle cartridge checker width override */
.trf-how-to-recycle-page .cartridge-checker {
    width: min(600px, calc(100% - 28px));
}

.trf-how-to-recycle-page .checker-fields {
    padding: 20px 34px 28px;
}

@media (max-width: 650px) {
    .trf-how-to-recycle-page .cartridge-checker {
        width: min(420px, calc(100% - 28px));
    }

    .trf-how-to-recycle-page .checker-fields {
        padding: 18px 24px 24px;
    }
}
/* Main content dark text normalization */
#main-content {
    --ink: #3d3d3d;
    --ink-soft: #3d3d3d;
    --text: #3d3d3d;
    --itad-text: #3d3d3d;
    --gdpr-text: #3d3d3d;
    color: #4d4d4d;
}

    #main-content :where( .trf-service-intro, .trf-service-intro *, .introduction-content, .introduction-content *, .cartridge-information, .cartridge-information *, .data-introduction, .data-introduction *, .section-heading, .contact-message, .gdpr-introduction, .gdpr-introduction *, .measures-introduction, .measures-introduction *, .gdpr-contact, .gdpr-contact *, .shredding-intro, .shredding-intro *, .process-introduction, .process-introduction *, .security-section, .security-section *, .items-intro, .items-intro *, .itad-intro, .itad-intro *, .itad-contact, .itad-contact *, .returns-intro, .returns-intro *, .returns-offer, .returns-offer *, .returns-contact, .returns-contact *, .remarketing-intro, .remarketing-intro *, .remarketing-contact, .remarketing-contact *, .trf-charities-page p, .trf-charities-page li, .trf-charities-page h1, .trf-charities-page h2, .trf-charities-page h3, .trf-charities-page h4, .trf-charities-page h5, .trf-charities-page h6 ) {
        color: #4d4d4d;
    }

    #main-content :where(strong, a, .green, .section-heading strong, .trf-charity-title strong) {
        color: var(--green);
    }

    /* Reseller envelope: keep all text inside green panel white */
    #main-content .trf-reseller-envelope__panel,
    #main-content .trf-reseller-envelope__panel :is(h2, p, strong, a) {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

        #main-content .trf-reseller-envelope__panel h2 strong {
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
        }

    /* Keep green pillow CTA text white after content text normalization */
    #main-content :where( .button--primary, .mock-pill--solid, .trf-reference-home .trf-outline-button, .trf-reference-home .trf-reference-shop, .trf-reseller-envelope__button, .trf-items-collect-page .eligible-button, .trf-items-collect-page .eligible-button:hover, .trf-items-collect-page .eligible-button:focus-visible, .trf-how-to-recycle-page .reorder-button:hover, .trf-how-to-recycle-page .reorder-button:focus-visible, .trf-refurb-impact__button, .trf-charities-button, .tesco-button, .tesco-banner-button, .tesco-banner-button-peach ) {
        color: #ffffff;
        -webkit-text-fill-color: #ffffff;
    }
    /* Home page green pillow text readability */
    #main-content .trf-reference-home .mock-service-icons strong,
    #main-content .trf-reference-home .trf-news-row article > a,
    #main-content .trf-reference-home .mock-news-row article > a,
    #main-content .trf-reference-home .trf-newsletter button,
    #main-content .trf-reference-home .trf-reference-shop,
    #main-content .trf-reference-home .mock-pill--solid,
    #main-content .trf-reference-home .trf-outline-button {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

        #main-content .trf-reference-home .mock-service-icons strong *,
        #main-content .trf-reference-home .trf-news-row article > a *,
        #main-content .trf-reference-home .mock-news-row article > a * {
            color: #ffffff !important;
            -webkit-text-fill-color: #ffffff !important;
        }

/* Contact page scoped layout - 2026-07-29 */
.trf-subpage-banner--contact-page {
    --trf-banner-pattern: url("/images/subpage-banners/pattern-trf.png");
    --trf-banner-semi: url("/images/subpage-banners/banner-semi-circle.png");
    --trf-banner-height: clamp(150px, 10.8vw, 218px);
    --trf-banner-icon-col: clamp(96px, 7.5vw, 170px);
    --trf-banner-icon-gap: clamp(18px, 1.6vw, 38px);
    --trf-banner-semi-width: clamp(98px, 7.1vw, 144px);
    --trf-banner-copy-extra: clamp(8px, 1vw, 24px);
    --trf-banner-semi-left: calc(var(--trf-banner-icon-col) + var(--trf-banner-icon-gap));
    --trf-banner-pattern-left: var(--trf-banner-semi-left);
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: clamp(150px, 11.35vw, 218px);
    overflow: hidden;
    background: #fff;
}

    .trf-subpage-banner--contact-page::before,
    .trf-subpage-banner--contact-page::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        pointer-events: none;
    }

    .trf-subpage-banner--contact-page::before {
        z-index: -1;
        inset: 0;
        background: var(--trf-banner-semi) var(--trf-banner-semi-left) center / var(--trf-banner-semi-width) 100% no-repeat;
    }

    .trf-subpage-banner--contact-page::after {
        z-index: -2;
        left: var(--trf-banner-pattern-left);
        right: 0;
        background:
            var(--trf-banner-pattern) left center / auto 88% repeat,
            linear-gradient(90deg, #f8f8f8 0%, #eeeeee 42%, #cfcfcf 100%);
    }

    .trf-subpage-banner--contact-page .trf-subpage-banner__content {
        position: relative;
        z-index: 1;
        width: 100%;
        margin: 0 auto;
        padding: 0 clamp(18px, 2.5vw, 56px) 0 calc(var(--trf-banner-icon-col) + var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
        text-align: left;
    }

        .trf-subpage-banner--contact-page .trf-subpage-banner__content::before {
            content: none;
        }

    .trf-subpage-banner--contact-page h1 {
        position: relative;
        z-index: 1;
        margin: 0;
        color: #4d4d4d;
        font-size: clamp(34px, 2.6vw, 50px);
        font-weight: 400;
        line-height: 1.05;
    }

        .trf-subpage-banner--contact-page h1 strong {
            color: #006935;
            font-weight: 700;
        }

    .trf-subpage-banner--contact-page p {
        position: relative;
        z-index: 1;
        margin: 12px 0 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.4;
    }

.trf-contact-page-section {
    padding: 96px 20px 88px;
    background: linear-gradient(to right, #fff 0%, #fff 52%, #e5e5e5 100%);
}

.trf-contact-page-card {
    width: min(1260px, calc(100% - 44px));
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(420px, 440px) minmax(520px, 1fr);
    gap: 56px;
    align-items: start;
    margin: 0 auto;
    padding: 54px 62px 42px;
    border: 4px solid #007a3d;
    border-radius: 36px;
    background: #fff;
}

.trf-contact-page-details {
    padding-top: 58px;
}

    .trf-contact-page-details h2 {
        margin: 0;
        color: #006935;
        font-size: 40px;
        line-height: 1.1;
    }

    .trf-contact-page-details > p {
        max-width: 430px;
        margin: 14px 0 20px;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.2;
    }

.trf-contact-page-list {
    display: grid;
    gap: 32px;
    margin-top: 90px;
}

.trf-contact-page-item {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    align-items: start;
}

    .trf-contact-page-item img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .trf-contact-page-item h3 {
        margin: 0 0 6px;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1;
    }

    .trf-contact-page-item p {
        max-width: 300px;
        margin: 0;
        color: #4d4d4d;
        font-size: 16px;
        line-height: 1.35;
        overflow-wrap: normal;
    }

    .trf-contact-page-item a {
        color: inherit;
        text-decoration: none;
    }

        .trf-contact-page-item a:hover {
            color: #006935;
            text-decoration: underline;
        }

.trf-contact-page-form {
    width: 100%;
    max-width: 620px;
    justify-self: end;
    display: grid;
    gap: 18px;
    padding: 48px 38px 40px;
    border-radius: 36px;
    background: #007a3d;
    color: #fff;
}

    .trf-contact-page-form label {
        display: grid;
        gap: 5px;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }

    .trf-contact-page-form input,
    .trf-contact-page-form textarea {
        width: 100%;
        min-height: 34px;
        padding: 0 10px;
        border: 2px solid #9acb37;
        border-radius: 5px;
        background: #fff;
        color: #4d4d4d;
        font: 14px/1.3 var(--trf-font-primary);
    }

    .trf-contact-page-form textarea {
        min-height: 150px;
        padding: 9px 10px;
        resize: vertical;
    }

    .trf-contact-page-form .mock-pill {
        justify-self: start;
        min-height: 38px;
        padding-inline: 28px;
        font-size: 12px;
    }

@media (max-width: 980px) {
    .trf-subpage-banner--contact-page {
        --trf-banner-height: 156px;
        --trf-banner-icon-col: 86px;
        --trf-banner-icon-gap: 16px;
        --trf-banner-semi-width: 100px;
        --trf-banner-copy-extra: 12px;
    }

    .trf-subpage-banner--contact-page .trf-subpage-banner__content {
        padding: 0 18px 0 calc(var(--trf-banner-icon-col) + var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
    }

    .trf-contact-page-card {
        grid-template-columns: 1fr;
        width: min(720px, 100%);
        gap: 42px;
        padding: 42px;
    }

    .trf-contact-page-form {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .trf-subpage-banner--contact-page {
        --trf-banner-height: 132px;
        --trf-banner-icon-col: 70px;
        --trf-banner-icon-gap: 10px;
        --trf-banner-semi-width: 86px;
        --trf-banner-copy-extra: 8px;
    }

    .trf-subpage-banner--contact-page .trf-subpage-banner__content {
        padding: 0 10px 0 calc(var(--trf-banner-icon-col) + var(--trf-banner-icon-gap) + var(--trf-banner-semi-width) + var(--trf-banner-copy-extra));
    }


    .trf-contact-page-section {
        padding: 60px 16px;
        background: #f5f5f5;
    }

    .trf-contact-page-card {
        padding: 32px 24px;
        border-radius: 34px;
    }
}

/* Latest News individual article page */
.trf-news-article-page {
    position: relative;
    overflow: hidden;
    padding: 84px 0 120px;
    background: url("/images/trf-source/reference/returns-management-bg.png") left 0 top 0 / 360px auto no-repeat, url("/images/trf-source/reference/returns-management-bg.png") right 7vw bottom 80px / 330px auto no-repeat, #fff;
}

.trf-news-article {
    max-width: 780px;
}

    .trf-news-article time {
        display: block;
        margin-bottom: 18px;
        color: var(--trf-green);
        font-size: 40px;
        font-weight: 700;
        line-height: 1.15;
    }

.trf-news-article__image {
    display: block;
    width: 100%;
    height: 255px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.trf-news-article h1 {
    margin: 24px 0 16px;
    color: #4d4d4d;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.trf-news-article p {
    margin: 0 0 22px;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .trf-news-article-page {
        padding: 52px 0 76px;
        background-size: 240px auto, 220px auto;
    }

    .trf-news-article time {
        font-size: 32px;
    }

    .trf-news-article__image {
        height: 220px;
    }

    .trf-news-article h1 {
        font-size: 24px;
    }
}

/* End contact page scoped layout */

/* ==========================================================
   TRF header responsive source of truth
   Replaces scattered .trf-mock-header layout overrides.
   Keep this block at the bottom of the stylesheet.
   ========================================================== */
.trf-mock-header {
    --trf-header-green: #00743f;
    --trf-header-text: #4d4d4d;
    position: relative;
    z-index: 100;
    background: #fff;
    color: var(--trf-header-text);
    font-family: Poppins, sans-serif;
}

.trf-mock-header .mock-shell {
    width: min(calc(100% - 48px), 1400px);
    margin-right: auto;
    margin-left: auto;
}

.trf-mock-header .mock-topbar {
    min-height: 38px;
    background: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(255,255,255,0));
    font-size: 13px;
    font-weight: 500;
}

.trf-mock-header .mock-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.trf-mock-header .mock-contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-width: 0;
}

.trf-mock-header .mock-brandbar {
    min-height: clamp(150px, 10.4vw, 200px);
    display: grid;
    grid-template-columns: clamp(210px, 17vw, 300px) minmax(320px, 1fr) minmax(390px, max-content);
    align-items: center;
    gap: clamp(18px, 2.2vw, 38px);
    padding: 12px 0 18px;
}

.trf-mock-header .mock-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.trf-mock-header .mock-brand img {
    display: block;
    width: clamp(190px, 15vw, 258px);
    max-width: 100%;
    height: auto;
}

.trf-mock-header .mock-search {
    width: min(100%, 560px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(92px, 7vw, 116px);
    align-items: center;
    gap: 10px;
    justify-self: center;
    min-width: 0;
}

.trf-mock-header .mock-search input {
    width: 100%;
    min-width: 0;
    height: clamp(40px, 3.2vw, 48px);
    padding: 0 22px;
    border: 1px solid #bcbcbc;
    border-radius: 999px;
    color: #4d4d4d;
    font: 400 clamp(13px, 0.9vw, 16px)/1.2 Poppins, sans-serif;
}

.trf-mock-header .mock-search button,
.trf-mock-header .mock-pill,
.trf-mock-header .mock-contact-button {
    min-height: clamp(40px, 3vw, 48px);
    border-radius: 999px;
    font: 600 clamp(12px, 0.86vw, 14px)/1.1 Poppins, sans-serif;
    white-space: nowrap;
}

.trf-mock-header .mock-search button {
    border: 2px solid var(--trf-header-green);
    background: var(--trf-header-green);
    color: #fff;
}

.trf-mock-header .mock-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.trf-mock-header .mock-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 clamp(16px, 1.45vw, 26px);
    text-transform: uppercase;
    text-decoration: none;
}

.trf-mock-header .mock-pill--outline {
    border: 2px solid var(--trf-header-green);
    background: #fff;
    color: var(--trf-header-green);
}

.trf-mock-header .mock-pill--solid,
.trf-mock-header .mock-contact-button {    
    border: 2px solid var(--trf-header-green);
    background: var(--trf-header-green);
    color: #fff;
}

.trf-mock-header .mock-button-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.trf-mock-header .nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 3px solid var(--trf-header-green);
    border-radius: 999px;
    background: #fff;
    color: var(--trf-header-green);
}

.trf-mock-header .nav-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.trf-mock-header .mock-nav-wrap {
    background: #e9e9e9;
}

.trf-mock-header .mock-nav {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(75px, 2.15vw, 42px);
}

.trf-mock-header .mock-nav > a,
.trf-mock-header .mock-nav-item > a {
    color: #4d4d4d;
    font: 600 clamp(12px, 0.84vw, 14px)/1.1 Poppins, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.trf-mock-header .mock-nav-item {
    position: relative;
}

.trf-mock-header .mock-nav > a:hover,
.trf-mock-header .mock-nav > a:focus-visible,
.trf-mock-header .mock-nav-item:hover > a,
.trf-mock-header .mock-nav-item:focus-within > a {
    color: var(--trf-header-green);
}

.trf-mock-header .mock-submenu {
    pointer-events: auto;
}

.trf-mock-header .mock-social-link--facebook {
    display: none !important;
}

.trf-mock-header .mock-social a[href*="facebook" i],
.trf-mock-footer .mock-social a[href*="facebook" i],
.trf-mock-header .mock-social a[aria-label*="facebook" i],
.trf-mock-footer .mock-social a[aria-label*="facebook" i],
.trf-mock-header .mock-social-link--fb,
.trf-mock-footer .mock-social-link--fb,
.trf-mock-footer .mock-social-link--facebook {
    display: none !important;
}

@media (min-width: 1600px) {
    .trf-mock-header .mock-shell {
        width: min(calc(100% - 72px), 1460px);
    }

    .trf-mock-header .mock-brandbar {
        grid-template-columns: 320px minmax(440px, 1fr) minmax(440px, max-content);
        min-height: 205px;
        gap: 42px;
    }

    .trf-mock-header .mock-search {
        width: 590px;
    }
}

@media (max-width: 1360px) {
    .trf-mock-header .mock-brandbar {
        grid-template-columns: 210px minmax(300px, 1fr) minmax(300px, max-content);
        gap: 14px;
    }

    .trf-mock-header .mock-brand img {
        width: 205px;
    }

    .trf-mock-header .mock-header-actions {
        gap: 7px;
    }

    .trf-mock-header .mock-pill {
        padding-inline: 13px;
        font-size: 11.5px;
    }

    .trf-mock-header .mock-nav {
        gap: clamp(16px, 1.35vw, 24px);
    }
}

@media (max-width: 1180px) {
    .trf-mock-header .mock-brandbar {
        grid-template-columns: 180px minmax(250px, 1fr) minmax(300px, max-content) 54px;
        min-height: 148px;
        gap: 12px;
    }

    .trf-mock-header .mock-brand img {
        width: 178px;
    }

    .trf-mock-header .mock-search {
        grid-template-columns: minmax(0, 1fr) 88px;
        gap: 8px;
    }

    .trf-mock-header .mock-header-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 320px);
    }

    .trf-mock-header .mock-pill {
        min-width: 0;
        padding-inline: 8px;
        font-size: 10.5px;
    }

    .trf-mock-header .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .trf-mock-header .mock-nav-wrap {
        display: none;
    }

    .trf-mock-header.is-nav-open .mock-nav-wrap,
    .trf-mock-header:has([data-nav-toggle][aria-expanded="true"]) .mock-nav-wrap {
        display: block;
    }

    .trf-mock-header .mock-nav {
        min-height: 0;
        padding: 18px 0 22px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 10px;
    }

    .trf-mock-header .mock-nav > a,
    .trf-mock-header .mock-nav-item > a,
    .trf-mock-header .mock-contact-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border-radius: 999px;
        background: #fff;
        color: #4d4d4d;
        text-align: center;
    }

    .trf-mock-header .mock-contact-button {
        background: var(--trf-header-green);
        color: #fff;
    }
}

@media (max-width: 900px) {
    .trf-mock-header .mock-shell {
        width: min(calc(100% - 32px), 720px);
    }

    .trf-mock-header .mock-social {
        display: none;
    }

    .trf-mock-header .mock-brandbar {
        grid-template-columns: minmax(0, 1fr) 54px;
        grid-template-areas:
            "brand toggle"
            "search search"
            "actions actions";
        gap: 14px;
        min-height: 0;
        padding: 18px 0 20px;
    }

    .trf-mock-header .mock-brand {
        grid-area: brand;
    }

    .trf-mock-header .mock-brand img {
        width: 170px;
    }

    .trf-mock-header .mock-search {
        grid-area: search;
        width: 100%;
        justify-self: stretch;
    }

    .trf-mock-header .mock-header-actions {
        grid-area: actions;
        width: 100%;
        max-width: none;
    }

    .trf-mock-header .nav-toggle {
        grid-area: toggle;
    }

    .trf-mock-header .mock-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .trf-mock-header .mock-shell {
        width: min(calc(100% - 24px), 430px);
    }

    .trf-mock-header .mock-topbar {
        display: none;
    }

    .trf-mock-header .mock-brandbar {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        grid-template-areas:
            ". brand toggle"
            "search search search"
            "actions actions actions";
        gap: 12px;
        padding: 14px 0 16px;
    }

    .trf-mock-header .mock-brand {
        justify-content: center;
    }

    .trf-mock-header .mock-brand img {
        width: min(210px, 64vw);
    }

    .trf-mock-header .nav-toggle {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }

    .trf-mock-header .mock-search {
        grid-template-columns: minmax(0, 1fr) 82px;
    }

    .trf-mock-header .mock-search input {
        height: 42px;
        padding-inline: 16px;
        font-size: 13px;
    }

    .trf-mock-header .mock-search button {
        min-height: 42px;
        font-size: 12px;
    }

    .trf-mock-header .mock-header-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .trf-mock-header .mock-pill {
        min-height: 42px;
        padding-inline: 8px;
        font-size: 10.5px;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .trf-mock-header .mock-search {
        grid-template-columns: 1fr;
    }

    .trf-mock-header .mock-header-actions {
        grid-template-columns: 1fr;
    }
}

/* Final recycling card overlay fix */
/* Normal card: image only */
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a::after {
    opacity: 0 !important;
}

main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a > strong,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards .trf-card-copy,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a > em {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hover / active card: show overlay and text */
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:hover::after,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:focus-visible::after,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a.is-active::after {
    content: "" !important;
    position: absolute !important;
    inset: 18px 18px 18px 18px !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 10px !important;
    background: rgba(0, 105, 53, 0.72) !important;
    opacity: 0.74 !important;
}

main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:hover > strong,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:focus-visible > strong,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a.is-active > strong,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:hover .trf-card-copy,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:focus-visible .trf-card-copy,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a.is-active .trf-card-copy,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:hover > em,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a:focus-visible > em,
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a.is-active > em {
    opacity: 1 !important;
    pointer-events: auto !important;
}

main.trf-reference-home section.trf-recycling-section .mock-hover-cards .mock-round-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    background: #fff !important;
}

main.trf-reference-home section.trf-recycling-section .mock-hover-cards .mock-round-icon--asset img {
    display: block !important;
    width: 72% !important;
    height: 72% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 72% !important;
    max-height: 72% !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Move only the charities card image crop slightly right. */
main.trf-reference-home section.trf-recycling-section .mock-hover-cards > a[href="/charity-non-profits/"] > img {
    object-position: 20% center !important;
}