:root {
    --tdhome-green: #078f2f;
    --tdhome-green-dark: #046b24;
    --tdhome-green-soft: #eaf7ee;
    --tdhome-orange: #ff6900;
    --tdhome-orange-dark: #df5600;
    --tdhome-ink: #17211a;
    --tdhome-muted: #637067;
    --tdhome-line: #dfe8e1;
    --tdhome-surface: #f7faf7;
    --tdhome-white: #fff;
    --tdhome-radius: 18px;
    --tdhome-shadow: 0 18px 50px rgba(12, 71, 31, .12);
}

.tdhome-page {
    --aogfc-header-primary: var(--tdhome-green);
    --aogfc-header-accent: var(--tdhome-orange);
}

.tdhome-page .aogfc-main {
    display: block;
    min-height: 0;
}

.tdhome-front,
.tdhome-front * {
    box-sizing: border-box;
}

.tdhome-front {
    overflow: clip;
    color: var(--tdhome-ink);
    background: var(--tdhome-white);
    font-family: "Be Vietnam Pro", Arial, sans-serif;
}

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

.tdhome-container {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.tdhome-section {
    position: relative;
}

.tdhome-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--tdhome-orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tdhome-eyebrow::before {
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
    content: "";
}

.tdhome-front h1,
.tdhome-front h2,
.tdhome-front h3,
.tdhome-front p {
    overflow-wrap: anywhere;
}

.tdhome-front h1,
.tdhome-front h2,
.tdhome-front h3 {
    color: var(--tdhome-ink);
    font-family: inherit;
}

.tdhome-front h1 {
    margin: 0;
    font-size: clamp(36px, 9vw, 64px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.tdhome-front h2 {
    margin: 0;
    font-size: clamp(28px, 6.7vw, 46px);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.tdhome-front h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.tdhome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tdhome-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 19px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .025em;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tdhome-btn:hover,
.tdhome-btn:focus-visible {
    transform: translateY(-2px);
}

.tdhome-btn--primary {
    color: var(--tdhome-white);
    background: var(--tdhome-orange);
    box-shadow: 0 8px 22px rgba(255, 105, 0, .25);
}

.tdhome-btn--primary:hover,
.tdhome-btn--primary:focus-visible {
    color: var(--tdhome-white);
    background: var(--tdhome-orange-dark);
    box-shadow: 0 12px 28px rgba(255, 105, 0, .32);
}

.tdhome-btn--ghost {
    color: var(--tdhome-green-dark);
    border-color: var(--tdhome-green);
    background: var(--tdhome-white);
}

.tdhome-btn--ghost:hover,
.tdhome-btn--ghost:focus-visible {
    color: var(--tdhome-white);
    background: var(--tdhome-green);
}

.tdhome-text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--tdhome-green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
}

.tdhome-text-link::after {
    margin-left: 8px;
    content: "→";
    transition: transform .2s ease;
}

.tdhome-text-link:hover::after,
.tdhome-text-link:focus-visible::after {
    transform: translateX(5px);
}

.tdhome-hero-slider {
    width: 100%;
    background: #152116;
}

.tdhome-hero-slider__viewport {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 1;
}

.tdhome-hero-slider__track,
.tdhome-hero-slide,
.tdhome-hero-slide img {
    width: 100%;
    height: 100%;
}

.tdhome-hero-slider__track {
    position: relative;
}

.tdhome-hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .65s ease;
}

.tdhome-hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.tdhome-hero-slide img {
    object-fit: cover;
}

.tdhome-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .34);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color .2s ease, transform .2s ease;
}

.tdhome-hero-slider__arrow:hover,
.tdhome-hero-slider__arrow:focus-visible {
    background: rgba(4, 107, 36, .9);
    transform: translateY(-50%) scale(1.06);
}

.tdhome-hero-slider__arrow span {
    margin-top: -3px;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.tdhome-hero-slider__arrow--prev { left: 18px; }
.tdhome-hero-slider__arrow--next { right: 18px; }

.tdhome-hero-slider__dots {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tdhome-hero-slider__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(0, 0, 0, .25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .22);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background-color .2s ease;
}

.tdhome-hero-slider__dots button[aria-current="true"] {
    width: 28px;
    border-radius: 10px;
    background: var(--tdhome-orange);
}

.tdhome-hero__grid {
    display: grid;
    gap: 36px;
    align-items: center;
}

.tdhome-hero__subtitle {
    margin: 16px 0 0;
    color: var(--tdhome-green-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.tdhome-checklist {
    display: grid;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.tdhome-checklist li {
    position: relative;
    padding-left: 30px;
    color: #3b473e;
    font-size: 14px;
    line-height: 1.55;
}

.tdhome-checklist li::before {
    position: absolute;
    top: .12em;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--tdhome-white);
    background: var(--tdhome-green);
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.tdhome-hero__description {
    max-width: 630px;
    margin-top: 18px;
    color: var(--tdhome-muted);
    font-size: 14px;
    line-height: 1.72;
}

.tdhome-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
}

.tdhome-metrics > div {
    min-width: 0;
    padding: 12px 8px;
    border: 1px solid rgba(7, 143, 47, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .75);
    text-align: center;
}

.tdhome-metrics strong,
.tdhome-metrics span {
    display: block;
}

.tdhome-metrics strong {
    color: var(--tdhome-green-dark);
    font-size: 16px;
}

.tdhome-metrics span {
    margin-top: 3px;
    color: var(--tdhome-muted);
    font-size: 9px;
    line-height: 1.4;
}

.tdhome-hero__visual {
    position: relative;
    isolation: isolate;
    min-height: 350px;
}

.tdhome-hero__shape {
    position: absolute;
    inset: 8% 0 2% 9%;
    z-index: -2;
    border-radius: 48% 48% 20% 38%;
    background: linear-gradient(135deg, var(--tdhome-green), var(--tdhome-green-dark));
    transform: rotate(3deg);
}

.tdhome-hero__shape::after {
    position: absolute;
    right: -13px;
    bottom: -15px;
    width: 92px;
    height: 92px;
    border: 14px solid var(--tdhome-orange);
    border-radius: 50%;
    content: "";
    opacity: .9;
}

.tdhome-hero__image {
    width: calc(100% - 22px);
    height: 350px;
    margin-left: auto;
    border-radius: 42% 42% 18% 34%;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--tdhome-shadow);
}

.tdhome-hero__badge {
    position: absolute;
    bottom: 8px;
    left: 0;
    display: none;
    padding: 13px 18px;
    border-radius: 12px;
    color: var(--tdhome-white);
    background: var(--tdhome-orange);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.tdhome-hero__badge b,
.tdhome-hero__badge small {
    display: block;
}

.tdhome-intro {
    padding: 70px 0;
}

.tdhome-intro__grid {
    display: grid;
    gap: 42px;
    align-items: stretch;
}

.tdhome-intro__media {
    display: grid;
    gap: 18px;
}

.tdhome-intro__photo {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #e9f1eb;
    box-shadow: 0 16px 40px rgba(12, 71, 31, .13);
}

.tdhome-intro__photo img,
.tdhome-showcase__mosaic img,
.tdhome-category-card img,
.tdhome-collage img,
.tdhome-trust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .3s ease;
}

.tdhome-intro__heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px;
    align-items: start;
    gap: 18px;
}

.tdhome-intro__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
}

.tdhome-intro__heading-row h2 span {
    display: block;
}

.tdhome-intro__heading-main {
    color: var(--tdhome-green-dark);
    font-size: clamp(34px, 6vw, 54px);
    font-weight: 900;
    line-height: 1.03;
}

.tdhome-intro__heading-accent {
    margin-top: 8px;
    color: var(--tdhome-orange);
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.tdhome-intro__target {
    display: block;
    width: 76px;
    color: var(--tdhome-green);
}

.tdhome-intro__target svg {
    display: block;
    width: 100%;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tdhome-intro__brand-line {
    margin: 28px 0 0;
    color: var(--tdhome-green-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tdhome-intro__lead {
    margin: 10px 0 0;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--tdhome-green);
    color: var(--tdhome-green-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
}

.tdhome-richtext {
    margin-top: 18px;
    color: var(--tdhome-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tdhome-richtext > :first-child { margin-top: 0; }
.tdhome-richtext > :last-child { margin-bottom: 0; }

.tdhome-intro__content .tdhome-richtext > p {
    margin-block: 0 18px;
}

.tdhome-intro__content .tdhome-richtext > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.tdhome-intro__content .tdhome-richtext > ul > li {
    position: relative;
    min-height: 98px;
    padding: 17px 16px 16px 48px;
    border: 1px solid #dce9df;
    border-radius: 12px;
    background: #f8fbf8;
}

.tdhome-intro__content .tdhome-richtext > ul > li::before {
    position: absolute;
    top: 18px;
    left: 16px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--tdhome-green);
    content: "✓";
    font-size: 13px;
    font-weight: 900;
}

.tdhome-intro__content .tdhome-richtext > ul strong,
.tdhome-intro__content .tdhome-richtext > ul span {
    display: block;
}

.tdhome-intro__content .tdhome-richtext > ul strong {
    color: var(--tdhome-green-dark);
    font-size: 14px;
    line-height: 1.35;
}

.tdhome-intro__content .tdhome-richtext > ul span {
    margin-top: 5px;
    color: var(--tdhome-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tdhome-benefits {
    position: relative;
    overflow: hidden;
    padding: 78px 0 88px;
    color: var(--tdhome-white);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .13) 0, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 88% 84%, rgba(255, 122, 0, .18) 0, rgba(255, 122, 0, 0) 25%),
        linear-gradient(128deg, #04391f 0%, #06652f 48%, #078d3d 100%);
}

.tdhome-benefits::before,
.tdhome-benefits::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.tdhome-benefits::before {
    top: -190px;
    right: -125px;
    width: 420px;
    height: 420px;
}

.tdhome-benefits::after {
    bottom: -230px;
    left: -145px;
    width: 480px;
    height: 480px;
}

.tdhome-benefits__head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.tdhome-benefits__head > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffbd80;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .14em;
}

.tdhome-benefits__head > span::before,
.tdhome-benefits__head > span::after {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.tdhome-benefits__head h2 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.tdhome-benefits__head h2 span { display: block; }

.tdhome-benefits__head p {
    max-width: 650px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    line-height: 1.7;
}

.tdhome-benefits__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.tdhome-benefit {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 220px;
    padding: 26px 25px 24px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 20px;
    color: #172c20;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(1, 35, 17, .18);
    text-align: left;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.tdhome-benefit::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--tdhome-orange), #ffb45f);
    content: "";
    transform: scaleX(.28);
    transform-origin: left center;
    transition: transform .24s ease;
}

.tdhome-benefit:hover {
    transform: translateY(-7px);
    border-color: #fff;
    box-shadow: 0 25px 54px rgba(1, 35, 17, .27);
}

.tdhome-benefit:hover::after { transform: scaleX(1); }

.tdhome-benefit__number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(5, 101, 47, .1);
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
}

.tdhome-benefit__icon {
    display: grid;
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 0 24px;
    place-items: center;
    border: 1px solid #dcebe1;
    border-radius: 19px;
    color: var(--tdhome-green-dark);
    background: linear-gradient(145deg, #fff 0%, #eff9f2 100%);
    box-shadow: 0 10px 24px rgba(5, 101, 47, .12);
}

.tdhome-benefit__icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tdhome-benefit__icon .tdhome-icon-accent { stroke: var(--tdhome-orange); }
.tdhome-benefit__icon .tdhome-icon-dot {
    fill: var(--tdhome-orange);
    stroke: none;
}

.tdhome-benefit h3 {
    position: relative;
    margin: 0;
    color: var(--tdhome-green-dark);
    font-size: 18px;
    line-height: 1.35;
}
.tdhome-benefit p {
    position: relative;
    margin: 9px 0 0;
    color: #6a756d;
    font-size: 13px;
    line-height: 1.55;
}

.tdhome-categories {
    padding: 74px 0;
    background: var(--tdhome-surface);
}

.tdhome-section-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.tdhome-section-head h2::after {
    display: block;
    width: 62px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 4px;
    background: var(--tdhome-orange);
    content: "";
}

.tdhome-section-head p {
    margin: 16px 0 0;
    color: var(--tdhome-muted);
    font-size: 14px;
    line-height: 1.7;
}

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

.tdhome-category-card {
    overflow: hidden;
    border: 1px solid var(--tdhome-line);
    border-radius: 13px;
    color: var(--tdhome-white);
    background: var(--tdhome-green-dark);
    box-shadow: 0 8px 24px rgba(23, 33, 26, .08);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tdhome-category-card:hover,
.tdhome-category-card:focus-visible {
    transform: translateY(-5px);
    color: var(--tdhome-white);
    box-shadow: 0 16px 35px rgba(7, 91, 31, .18);
}

.tdhome-category-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #e8eee9;
}

.tdhome-category-card:hover img,
.tdhome-category-card:focus-visible img,
.tdhome-product-tile:hover img,
.tdhome-collage figure:hover img,
.tdhome-trust figure:hover img {
    transform: scale(1.055);
    filter: saturate(1.05);
}

.tdhome-category-card strong {
    display: grid;
    min-height: 60px;
    place-items: center;
    padding: 9px;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
}

.tdhome-quote {
    padding: 24px 0;
    border-block: 1px solid #e5eee7;
    background: #f5f8f5;
}

.tdhome-quote__inner {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px 16px;
    align-items: center;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    color: var(--tdhome-white);
    background:
        radial-gradient(circle at 88% 15%, rgba(255, 255, 255, .14), transparent 24%),
        linear-gradient(120deg, #035d22 0%, #078f2f 72%, #0b9e38 100%);
    box-shadow: 0 16px 38px rgba(4, 107, 36, .17);
}

.tdhome-quote__inner::after {
    position: absolute;
    top: -75px;
    right: 18%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.tdhome-quote__icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    color: var(--tdhome-orange);
    background: var(--tdhome-white);
    box-shadow: 0 10px 25px rgba(0, 48, 16, .18);
}

.tdhome-quote__icon svg {
    width: 29px;
    height: 29px;
}

.tdhome-quote__copy,
.tdhome-quote__action {
    position: relative;
    z-index: 1;
}

.tdhome-quote__copy > span {
    display: block;
    margin-bottom: 4px;
    color: #bde9ca;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tdhome-quote h2 {
    max-width: 700px;
    color: var(--tdhome-white);
    font-size: clamp(19px, 4.8vw, 28px);
    line-height: 1.24;
    letter-spacing: -.025em;
}

.tdhome-quote__action {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.tdhome-quote__action small {
    max-width: 145px;
    color: #d9f0df;
    font-size: 10px;
    line-height: 1.45;
}

.tdhome-quote__button {
    flex: 0 0 auto;
    min-height: 48px;
    gap: 12px;
    padding-inline: 20px;
    border: 0;
    cursor: pointer;
}

.tdhome-quote__button span,
.tdhome-quote-modal__submit span {
    font-size: 18px;
    transition: transform .2s ease;
}

.tdhome-quote__button:hover span,
.tdhome-quote__button:focus-visible span,
.tdhome-quote-modal__submit:hover span,
.tdhome-quote-modal__submit:focus-visible span {
    transform: translateX(3px);
}

body.tdhome-modal-open {
    overflow: hidden;
}

.tdhome-quote-modal {
    z-index: 1000;
    padding: 18px;
}

.tdhome-quote-modal .aogfc-popup__backdrop {
    background: rgba(2, 38, 14, .74);
    backdrop-filter: blur(8px);
}

.tdhome-quote-modal__dialog {
    display: grid;
    overflow: hidden;
    width: min(960px, 100%);
    max-height: calc(100vh - 36px);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 24px;
    background: var(--tdhome-white);
    box-shadow: 0 35px 100px rgba(0, 30, 10, .38);
}

.tdhome-quote-modal__close {
    z-index: 5;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #dce7df;
    border-radius: 50%;
    color: #31553b;
    background: rgba(255, 255, 255, .92);
    font-size: 25px;
    transition: transform .2s ease, color .2s ease, background-color .2s ease;
}

.tdhome-quote-modal__close:hover,
.tdhome-quote-modal__close:focus-visible {
    color: var(--tdhome-white);
    background: var(--tdhome-orange);
    transform: rotate(8deg);
}

.tdhome-quote-modal__brand {
    position: relative;
    display: none;
    overflow: hidden;
    padding: 44px 38px;
    color: var(--tdhome-white);
    background:
        radial-gradient(circle at 120% 10%, rgba(255, 255, 255, .15), transparent 32%),
        linear-gradient(150deg, #03551e 0%, #078f2f 100%);
}

.tdhome-quote-modal__brand::after {
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 42px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
    content: "";
}

.tdhome-quote-modal__brand-logo {
    position: relative;
    z-index: 1;
    display: inline-flex;
    max-width: 210px;
    min-height: 62px;
    align-items: center;
    margin-bottom: 52px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--tdhome-white);
    box-shadow: 0 12px 28px rgba(0, 36, 12, .2);
}

.tdhome-quote-modal__brand-logo img {
    width: auto;
    max-height: 42px;
}

.tdhome-quote-modal__eyebrow,
.tdhome-quote-modal__kicker {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 9px;
    color: #bceaca;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.tdhome-quote-modal__brand h3 {
    position: relative;
    z-index: 1;
    color: var(--tdhome-white);
    font-size: 31px;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.tdhome-quote-modal__brand p {
    position: relative;
    z-index: 1;
    margin: 16px 0 22px;
    color: #d8efde;
    font-size: 13px;
    line-height: 1.7;
}

.tdhome-quote-modal__brand ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
}

.tdhome-quote-modal__brand li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tdhome-quote-modal__brand li span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--tdhome-green-dark);
    background: #cdf2d7;
    font-size: 11px;
}

.tdhome-quote-modal__content {
    position: relative;
    overflow-y: auto;
    padding: 36px 24px 28px;
}

.tdhome-quote-modal__watermark {
    position: absolute;
    top: 70px;
    right: -36px;
    width: 310px;
    opacity: .035;
    pointer-events: none;
    transform: rotate(-8deg);
}

.tdhome-quote-modal__watermark img {
    width: 100%;
    height: auto;
}

.tdhome-quote-modal__kicker {
    color: var(--tdhome-orange);
}

.tdhome-quote-modal__content > h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 9px;
    color: var(--tdhome-green-dark);
    font-size: clamp(25px, 6.5vw, 34px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.035em;
    text-transform: none;
}

.tdhome-quote-modal__content > p {
    position: relative;
    z-index: 1;
    max-width: 570px;
    margin: 0 0 22px;
    color: var(--tdhome-muted);
    font-size: 12px;
    line-height: 1.65;
}

.tdhome-quote-modal__form {
    position: relative;
    z-index: 1;
    gap: 14px;
}

.tdhome-quote-modal__fields {
    display: grid;
    gap: 14px;
}

.tdhome-quote-modal__form label {
    display: grid;
    gap: 7px;
    color: #25442e;
    font-size: 11px;
    font-weight: 800;
}

.tdhome-quote-modal__form label > span {
    display: inline;
    color: var(--tdhome-orange);
}

.tdhome-quote-modal__form input,
.tdhome-quote-modal__form select,
.tdhome-quote-modal__form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #dbe5dd;
    border-radius: 10px;
    outline: none;
    color: var(--tdhome-ink);
    background: rgba(248, 251, 248, .94);
    font: inherit;
    font-weight: 500;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.tdhome-quote-modal__form textarea {
    min-height: 82px;
    resize: vertical;
}

.tdhome-quote-modal__form input:focus,
.tdhome-quote-modal__form select:focus,
.tdhome-quote-modal__form textarea:focus {
    border-color: var(--tdhome-green);
    background: var(--tdhome-white);
    box-shadow: 0 0 0 3px rgba(7, 143, 47, .11);
}

.tdhome-quote-modal__submit {
    width: 100%;
    min-height: 50px;
    gap: 12px;
    border: 0;
    cursor: pointer;
}

.tdhome-quote-modal__form .tdhome-quote-modal__note,
.tdhome-quote-modal__form .tdhome-quote-modal__success {
    margin: 0;
    color: #77827a;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.tdhome-quote-modal__form .tdhome-quote-modal__success {
    display: none;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--tdhome-green-dark);
    background: var(--tdhome-green-soft);
    font-size: 11px;
    font-weight: 700;
}

.tdhome-quote-modal__form.is-submitted .tdhome-quote-modal__success {
    display: block;
}

.tdhome-showcase {
    padding: 70px 0;
    border-top: 1px solid var(--tdhome-line);
}

.tdhome-showcase:nth-of-type(even) {
    background: #fbfdfb;
}

.tdhome-showcase__grid {
    display: grid;
    gap: 38px;
    align-items: center;
}

.tdhome-showcase__content {
    position: relative;
    min-width: 0;
}

.tdhome-showcase__content > :not(.tdhome-showcase__word, .tdhome-showcase__index) {
    position: relative;
    z-index: 1;
}

.tdhome-showcase .tdhome-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
}

.tdhome-showcase .tdhome-actions .tdhome-btn {
    width: 100%;
}

.tdhome-showcase__word,
.tdhome-showcase__index {
    display: none;
    pointer-events: none;
    user-select: none;
}

.tdhome-showcase__meta {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    align-self: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 24px;
    padding: 11px 12px;
    border: 1px solid #d8e9db;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #f5faf6 100%);
    box-shadow: 0 10px 24px rgba(7, 91, 32, .055);
}

.tdhome-showcase__meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 12px;
    border: 1px solid #d9e7dc;
    border-radius: 999px;
    color: #4e6254;
    background: rgba(247, 251, 248, .88);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
}

.tdhome-showcase__meta span:first-child {
    color: var(--tdhome-green-dark);
    border-color: #bee0c7;
    background: var(--tdhome-green-soft);
}

.tdhome-showcase__meta strong {
    color: var(--tdhome-orange);
    font-size: 11px;
}

.tdhome-showcase__mosaic {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tdhome-product-tile {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border: 5px solid var(--tdhome-green-dark);
    border-radius: 9px;
    color: var(--tdhome-white);
    background: var(--tdhome-green-dark);
    text-decoration: none;
}

.tdhome-product-tile__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.tdhome-product-tile strong {
    display: grid;
    min-height: 52px;
    place-items: center;
    padding: 7px;
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.tdhome-collage {
    padding: 74px 0;
    background: var(--tdhome-green-dark);
}

.tdhome-collage__grid {
    display: grid;
    grid-auto-rows: 150px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tdhome-collage figure,
.tdhome-trust figure {
    overflow: hidden;
    margin: 0;
    border-radius: 10px;
}

.tdhome-collage__item--1,
.tdhome-collage__item--4 { grid-row: span 2; }

.tdhome-trust__lead {
    padding: 66px 0 0;
    background: #f1f3f1;
}

.tdhome-trust__lead-inner {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.tdhome-trust__copy {
    display: grid;
    gap: 20px;
    max-width: 680px;
    padding-bottom: 24px;
    text-align: center;
}

.tdhome-trust__accent-image {
    position: relative;
    height: 170px;
    border: 5px solid var(--tdhome-white);
    border-radius: 18px;
    background: #dfe7e1;
    box-shadow: 0 16px 34px rgba(7, 70, 27, .12);
}

.tdhome-trust__accent-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(2, 40, 15, .68) 100%);
    content: "";
}

.tdhome-trust__accent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.tdhome-trust__accent-image figcaption {
    position: absolute;
    z-index: 1;
    right: 13px;
    bottom: 12px;
    left: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--tdhome-white);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.4;
}

.tdhome-trust__accent-image figcaption span {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--tdhome-green-dark);
    background: #d9f4e0;
    font-size: 10px;
}

.tdhome-trust__copy-body {
    padding-inline: 4px;
}

.tdhome-brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    place-items: center;
    border-radius: 50%;
    color: var(--tdhome-white);
    background: var(--tdhome-orange);
    font-weight: 900;
}

.tdhome-trust__copy p {
    margin: 14px 0 0;
    color: var(--tdhome-muted);
    font-size: 13px;
    line-height: 1.65;
}

.tdhome-trust__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
}

.tdhome-trust__facts span {
    display: grid;
    gap: 2px;
    padding: 11px 9px;
    border: 1px solid #d8e5da;
    border-radius: 10px;
    color: #607066;
    background: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 650;
    line-height: 1.4;
}

.tdhome-trust__facts strong {
    color: var(--tdhome-green-dark);
    font-size: 15px;
    line-height: 1.2;
}

.tdhome-trust__lead-image {
    overflow: hidden;
    height: 320px;
    border-radius: 18px 18px 0 0;
}

.tdhome-trust__gallery {
    display: grid;
    grid-auto-rows: 145px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-block: 10px 76px;
}

.tdhome-trust__gallery figure:nth-child(3n) {
    grid-column: span 2;
}

.tdhome-page .aogfc-site-footer,
.tdhome-page .aogfc-site-footer__main,
.tdhome-page .aogfc-site-footer__bottom {
    background-color: var(--tdhome-white);
}

.tdhome-page .aogfc-footer-newsletter {
    background: var(--tdhome-green-soft);
}

.tdhome-page .aogfc-site-footer__bottom {
    background-color: #f3f8f4;
}

.tdhome-page.tdhome-js .tdhome-front [data-tdhome-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.tdhome-page.tdhome-js .tdhome-front [data-tdhome-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 600px) {
    .tdhome-container { width: min(100% - 48px, 1180px); }
    .tdhome-showcase .tdhome-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tdhome-showcase__meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tdhome-benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .tdhome-benefit { padding: 28px 26px 26px; }
    .tdhome-categories__grid { gap: 20px; }
    .tdhome-category-card strong { font-size: 13px; }
    .tdhome-product-tile strong { font-size: 11px; }
    .tdhome-collage__grid { grid-auto-rows: 220px; }
    .tdhome-trust__gallery { grid-auto-rows: 210px; }
    .tdhome-quote-modal__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tdhome-quote-modal__content { padding: 42px 38px 32px; }
}

@media (min-width: 768px) {
    .tdhome-intro__grid,
    .tdhome-showcase__grid,
    .tdhome-trust__lead-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tdhome-metrics strong { font-size: 18px; }
    .tdhome-metrics span { font-size: 10px; }
    .tdhome-benefits__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .tdhome-categories__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .tdhome-showcase.is-reverse .tdhome-showcase__content { order: 2; }
    .tdhome-showcase.is-reverse .tdhome-showcase__mosaic { order: 1; }
    .tdhome-showcase__content { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding-block: 25px; }
    .tdhome-showcase__word { position: absolute; top: 15px; left: -3px; display: block; max-width: 100%; overflow: hidden; color: var(--tdhome-green-dark); font-size: clamp(50px, 6vw, 82px); font-weight: 950; line-height: .9; letter-spacing: -.065em; white-space: nowrap; opacity: .055; }
    .tdhome-showcase__index { position: absolute; top: 25px; right: 4px; display: inline-flex; align-items: center; gap: 9px; color: var(--tdhome-orange); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
    .tdhome-showcase__index::before { width: 32px; height: 1px; background: currentColor; content: ""; }
    .tdhome-showcase.is-reverse .tdhome-showcase__word { right: -3px; left: auto; text-align: right; }
    .tdhome-showcase.is-reverse .tdhome-showcase__index { right: auto; left: 4px; }
    .tdhome-showcase__meta { width: 100%; max-width: 100%; align-self: flex-start; }
    .tdhome-showcase.is-reverse .tdhome-showcase__meta { align-self: flex-start; }
    .tdhome-collage__grid { grid-auto-rows: 210px; grid-template-columns: repeat(12, 1fr); }
    .tdhome-collage__item--1 { grid-column: span 5; grid-row: span 2; }
    .tdhome-collage__item--2 { grid-column: span 7; }
    .tdhome-collage__item--3 { grid-column: span 4; }
    .tdhome-collage__item--4 { grid-column: span 3; grid-row: span 2; }
    .tdhome-collage__item--5 { grid-column: span 5; }
    .tdhome-collage__item--6 { grid-column: span 4; }
    .tdhome-trust__copy { align-self: stretch; grid-template-rows: 218px minmax(0, 1fr); gap: 22px; padding-bottom: 0; text-align: left; }
    .tdhome-trust__accent-image { height: 218px; }
    .tdhome-trust__copy-body { display: flex; min-height: 0; flex-direction: column; justify-content: center; padding: 0 12px 18px; }
    .tdhome-brand-mark { margin-left: 0; }
    .tdhome-trust__lead-image { height: 100%; min-height: 520px; }
    .tdhome-trust__gallery { grid-auto-rows: 280px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tdhome-trust__gallery figure:nth-child(3n) { grid-column: auto; }
    .tdhome-trust__gallery figure:nth-child(5n) { grid-column: span 2; }
    .tdhome-trust__gallery figure:last-child:nth-child(3n) { grid-column: span 2; }
    .tdhome-quote { padding-block: 22px; }
    .tdhome-quote__inner { grid-template-columns: 58px minmax(0, 1fr) auto; gap: 20px; padding: 22px 26px; }
    .tdhome-quote__icon { width: 58px; height: 58px; }
    .tdhome-quote__action { grid-column: auto; flex-direction: row; padding: 0 0 0 22px; border-top: 0; border-left: 1px solid rgba(255, 255, 255, .17); }
    .tdhome-quote__action small { max-width: 130px; }
    .tdhome-quote__button { min-height: 50px; padding-inline: 23px; }
    .tdhome-quote-modal__dialog { grid-template-columns: minmax(280px, .78fr) minmax(0, 1.35fr); }
    .tdhome-quote-modal__brand { display: block; }
}

@media (min-width: 1100px) {
    .tdhome-hero { min-height: 720px; display: flex; align-items: center; }
    .tdhome-hero__grid { grid-template-columns: 1.05fr .95fr; }
    .tdhome-intro { padding-block: 94px; }
    .tdhome-intro__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; }
    .tdhome-showcase { padding-block: 82px; }
    .tdhome-showcase__grid { gap: 76px; }
    .tdhome-categories { padding-block: 90px; }
    .tdhome-category-card strong { min-height: 68px; }
    .tdhome-collage { padding-block: 90px; }
    .tdhome-collage__grid { grid-auto-rows: 280px; }
    .tdhome-trust__gallery { grid-auto-rows: 350px; }
}

@media (max-width: 359px) {
    .tdhome-container { width: min(100% - 24px, 1180px); }
    .tdhome-actions { display: grid; }
    .tdhome-metrics { grid-template-columns: 1fr; }
    .tdhome-categories__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .tdhome-intro__heading-row { grid-template-columns: minmax(0, 1fr) 56px; gap: 10px; }
    .tdhome-intro__target { width: 56px; }
    .tdhome-intro__content .tdhome-richtext > ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .tdhome-page.tdhome-js .tdhome-front [data-tdhome-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .tdhome-front * {
        scroll-behavior: auto !important;
    }
}
