.th-home-hero {
    padding-block: 74px 58px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(23,105,232,.12),
            transparent 42%
        ),
        #fff;
}

.th-hero-content {
    max-width: 760px;
    margin-inline: auto;
}

.th-hero-label {
    display: inline-flex;

    margin-bottom: 16px;

    padding: 6px 12px;

    border:
        1px solid
        rgba(23,105,232,.18);

    border-radius: 999px;

    background:
        rgba(23,105,232,.06);

    color: var(--th-blue);

    font-size: 14px;
    font-weight: 800;
}

.th-hero-content h1 {
    margin: 0;

    color: var(--th-dark);

    font-size: clamp(44px, 5vw, 68px);

    line-height: 1.18;

    letter-spacing: -1.4px;
}

.th-hero-content h1 span {
    color: var(--th-blue);
}

.th-hero-content > p {
    max-width: 610px;

    margin:
        18px auto 0;

    color: var(--th-muted);

    font-size: 17px;
}

.th-hero-buttons {
    margin-top: 26px;

    display: flex;
    justify-content: center;
    gap: 10px;
}

.th-hero-mini-features {
    margin-top: 26px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;

    color: var(--th-muted);

    font-size: 10px;
}

.th-hero-mini-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.th-hero-mini-features b {
    color: var(--th-green);
}


/* categories */

.th-category-strip {
    padding-bottom: 58px;

    background: #fff;

    border-bottom:
        1px solid
        var(--th-border);
}

.th-category-scroll {
    display: flex;
    justify-content: center;
    gap: 10px;

    overflow-x: auto;

    padding: 3px 2px 12px;

    scrollbar-width: none;
}

.th-category-scroll::-webkit-scrollbar {
    display: none;
}

.th-category-item {
    flex: 0 0 105px;

    min-height: 112px;

    padding: 14px 8px;

    border:
        1px solid
        var(--th-border);

    border-radius: 14px;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;

    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.th-category-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(23,105,232,.32);

    box-shadow:
        0 10px 30px
        rgba(16,24,40,.05);
}

.th-category-logo {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--th-bg);

    overflow: hidden;
}

.th-category-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.th-category-logo svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: var(--th-blue);
    stroke-width: 1.6;
}

.th-category-item strong {
    max-width: 100%;

    color: #344054;

    font-size: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* savings */

.th-savings-section {
    background: #fff;
}

.th-savings-box {
    min-height: 350px;

    padding: 42px;

    border-radius: 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 54px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 90%,
            rgba(23,105,232,.28),
            transparent 30%
        ),
        var(--th-dark-deep);

    color: #fff;

    box-shadow:
        0 30px 60px
        rgba(16,24,40,.12);
}

.th-dark-label {
    display: inline-flex;

    padding: 5px 10px;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 999px;

    color: rgba(255,255,255,.62);

    font-size: 10px;
}

.th-savings-copy h3 {
    margin: 14px 0 12px;

    max-width: 470px;

    font-size:
        clamp(29px, 4vw, 45px);

    line-height: 1.3;
}

.th-savings-copy h3 span {
    color: #75aaff;
}

.th-savings-copy p {
    max-width: 470px;

    margin:
        0 0 24px;

    color: rgba(255,255,255,.56);

    font-size: 14px;
}

.th-saving-stats {
    display: grid;
    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;
}

.th-saving-stats div {
    min-height: 115px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 14px;

    background:
        rgba(255,255,255,.045);
}

.th-saving-stats strong,
.th-saving-stats span {
    display: block;
}

.th-saving-stats strong {
    color: #75aaff;

    font-size: 22px;
}

.th-saving-stats span {
    margin-top: 4px;

    color: rgba(255,255,255,.67);

    font-size: 14px;
}


/* products */

.th-products-home {
    background: var(--th-bg);
}

.th-product-shortcode {
    width: 100%;
}

.th-product-shortcode ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* featured */

.th-featured-banner-section {
    padding-top: 30px;

    background: #fff;
}

.th-featured-banner {
    min-height: 255px;

    padding: 30px 42px;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 30px;

    border:
        1px solid
        var(--th-border);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f9fbff,
            #eef5ff
        );
}

.th-featured-label {
    display: inline-flex;

    margin-bottom: 8px;

    color: var(--th-blue);

    font-size: 10px;
    font-weight: 800;
}

.th-featured-content h2 {
    max-width: 600px;

    margin:
        0 0 8px;

    font-size:
        clamp(24px, 3vw, 34px);

    line-height: 1.35;
}

.th-featured-price {
    margin-bottom: 20px;

    color: var(--th-blue);

    font-size: 21px;
    font-weight: 900;
}

.th-featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-featured-image img {
    max-height: 190px;
    width: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 14px 25px
            rgba(16,24,40,.09)
        );
}


/* how */

.th-how-section {
    background: #fff;
}

.th-how-grid {
    display: grid;
    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.th-how-grid article {
    position: relative;

    min-height: 210px;

    padding: 26px;

    border:
        1px solid
        var(--th-border);

    border-radius: 16px;

    background: #fff;
}

.th-step-number {
    position: absolute;
    left: 20px;
    top: 18px;

    color: #d0d5dd;

    font-size: 14px;
    font-weight: 900;
}

.th-step-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--th-blue-soft);

    color: var(--th-blue);
}

.th-step-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.th-how-grid h3 {
    margin: 0 0 8px;

    font-size: 17px;
}

.th-how-grid p {
    margin: 0;

    color: var(--th-muted);

    font-size: 14px;
}


/* trust */

.th-trust-section {
    padding-block: 30px 70px;

    background: #fff;
}

.th-trust-grid {
    display: grid;
    grid-template-columns:
        repeat(4,1fr);

    border:
        1px solid
        var(--th-border);

    border-radius: 16px;

    overflow: hidden;
}

.th-trust-grid article {
    padding: 22px;

    text-align: center;

    border-left:
        1px solid
        var(--th-border);
}

.th-trust-grid article:last-child {
    border-left: 0;
}

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

.th-trust-grid strong {
    font-size: 14px;
}

.th-trust-grid span {
    margin-top: 3px;

    color: var(--th-muted);

    font-size: 10px;
}


/* final CTA */

.th-final-cta-section {
    padding-top: 10px;
    padding-bottom: 80px;

    background: #fff;
}

.th-final-cta {
    min-height: 190px;

    padding: 35px 42px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background:
        linear-gradient(
            135deg,
            #1769e8,
            #104cad
        );

    color: #fff;

    box-shadow:
        0 24px 50px
        rgba(23,105,232,.18);
}

.th-final-cta span {
    color: rgba(255,255,255,.68);

    font-size: 14px;
}

.th-final-cta h2 {
    margin: 6px 0 0;

    font-size:
        clamp(25px,3vw,37px);
}

.th-final-cta h2 strong {
    color: #fff;
}

/* Copy hierarchy refinement */

.th-hero-label {
    font-size: 14px;
    padding: 7px 14px;
}

.th-how-grid h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.th-how-grid p {
    font-size: 14px;
    line-height: 1.9;
}

.th-how-grid article {
    min-height: 220px;
}

.th-step-number {
    font-size: 14px;
}


@media (max-width: 1024px) {
    .th-product-shortcode ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .th-product-shortcode ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
