/* ═══════════════════════════════════════════════════════════════════════════════
   HOME / LANDING PAGE — premium UI layer (same layout & palette as global.css)
   Loaded only from pages/home.blade.php
═══════════════════════════════════════════════════════════════════════════════ */

:root {
    --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Let browser skip heavy offscreen section rendering during initial load */
.home-defer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

/* ── Hero background slider (moved from inline — do not break carousel JS) ─── */
.hero__bg--slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-image: none !important;
    background-color: #0f172a;
}

.hero__bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 0.9s var(--home-ease);
}

/* Pan only on background-position so crossfade transforms still work */
.hero__bg-slide.is-active {
    opacity: 1;
    transform: scale(1);
    animation: home-hero-pan 40s ease-in-out infinite alternate;
}

.hero__bg-slide:not(.is-active) {
    animation: none;
}

@keyframes home-hero-pan {
    0% {
        background-position: 44% 48%;
    }
    100% {
        background-position: 56% 52%;
    }
}

.hero__overlay--clear {
    background: transparent !important;
    opacity: 0 !important;
}

.hero__nav-btn {
    position: absolute;
    top: auto;
    bottom: 24px;
    transform: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    transition:
        background 0.28s var(--home-ease),
        border-color 0.28s var(--home-ease),
        transform 0.28s var(--home-ease),
        box-shadow 0.28s var(--home-ease);
}

.hero__nav-btn:hover {
    background: rgba(0, 168, 150, 0.45);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    transform: scale(1.06);
}

.hero__nav-btn:active {
    transform: scale(0.98);
}

.hero__nav-btn--prev {
    left: 22px;
}

.hero__nav-btn--next {
    right: 22px;
}

@media (max-width: 768px) {
    .hero__nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero__nav-btn--prev {
        left: 10px;
    }

    .hero__nav-btn--next {
        right: 10px;
    }
}

/* Hero copy: badge + buttons; title = line-by-line */
#homeHeroSection .hero__badge {
    animation: home-fade-up 0.75s var(--home-ease) 0.05s both;
}

#homeHeroSection .hero__title {
    letter-spacing: -0.035em;
    text-shadow: 0 2px 48px rgba(0, 0, 0, 0.42);
}

/* One line at a time — clear text motion */
.hero__title-line {
    display: block;
    animation: home-line-in 0.95s var(--home-ease) both;
    opacity: 0;
}

.hero__title-line:nth-of-type(1) {
    animation-delay: 0.14s;
}

.hero__title-line:nth-of-type(2) {
    animation-delay: 0.28s;
}

.hero__title-line:nth-of-type(3) {
    animation-delay: 0.42s;
}

@keyframes home-line-in {
    from {
        opacity: 0;
        transform: translateY(36px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

#homeHeroSection .hero__actions {
    animation: home-fade-up 0.85s var(--home-ease) 0.52s both;
}

#homeHeroSection .hero__actions .btn {
    transition:
        transform 0.28s var(--home-ease),
        box-shadow 0.28s var(--home-ease),
        background 0.28s var(--home-ease),
        border-color 0.25s ease;
}

#homeHeroSection .hero__actions .btn:hover {
    transform: translateY(-2px);
}

#homeHeroSection .hero__actions .btn:active {
    transform: translateY(0);
}

@keyframes home-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#homeHeroSection .hero__badge {
    transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}

#homeHeroSection .hero__badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ── Trust bar — loads right after hero (feels fuller + connected) ───────── */
.trust-bar--home {
    position: relative;
    overflow: hidden;
}

.trust-bar--home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    pointer-events: none;
}

.trust-bar--home .trust-bar__text {
    animation: home-trust-text 1s var(--home-ease) 0.35s both;
}

@keyframes home-trust-text {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-bar--home .trust-pill {
    animation: home-trust-text 0.85s var(--home-ease) both;
}

.trust-bar--home .trust-pill:nth-child(1) {
    animation-delay: 0.45s;
}

.trust-bar--home .trust-pill:nth-child(2) {
    animation-delay: 0.55s;
}

.trust-bar--home .trust-pill:nth-child(3) {
    animation-delay: 0.65s;
}

.trust-bar__inner {
    transition: transform 0.3s var(--home-ease);
}

.trust-pill {
    transition:
        transform 0.28s var(--home-ease),
        background 0.28s var(--home-ease),
        border-color 0.28s ease,
        box-shadow 0.28s var(--home-ease);
}

.trust-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* ── Product of the month / delivery blocks ──────────────────────────────── */
.potm__text .potm__title {
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.potm__text .potm__desc {
    max-width: 58ch;
    margin-top: 0;
    color: var(--gray-600);
}

.potm__img {
    transition: box-shadow 0.35s var(--home-ease), transform 0.35s var(--home-ease);
    box-shadow:
        0 14px 40px rgba(15, 36, 35, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.65) inset;
}

.potm__img:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 50px rgba(15, 36, 35, 0.14),
        0 2px 0 rgba(255, 255, 255, 0.65) inset;
}

.potm__img img {
    transition: transform 0.65s var(--home-ease);
}

/* ── Why section ───────────────────────────────────────────────────────────── */
.why .section-title {
    letter-spacing: -0.02em;
}

.why-card {
    transition:
        transform 0.35s var(--home-ease),
        box-shadow 0.35s var(--home-ease),
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 36, 35, 0.1);
}

.why-card__icon {
    transition:
        transform 0.35s var(--home-ease),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.35s var(--home-ease);
}

.why-card:hover .why-card__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 26px rgba(0, 168, 150, 0.28);
}

.why-card h4 {
    letter-spacing: -0.01em;
}

/* ── Featured strip ───────────────────────────────────────────────────────── */
.featured__title {
    letter-spacing: -0.025em;
}

.featured__track {
    transition: transform 0.55s var(--home-ease);
}

.featured__slide .tub-card {
    transition:
        transform 0.4s var(--home-ease),
        box-shadow 0.4s var(--home-ease);
}

.featured__slide .tub-card:hover {
    transform: translateY(-10px);
}

.featured__slide .tub-card__img img {
    transition: transform 0.65s var(--home-ease);
}

/* ── Brands slider ─────────────────────────────────────────────────────────── */
.brands {
    position: relative;
    width: 100%;
}

.brands .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: clamp(12px, 2.4vw, 26px);
    padding-right: clamp(12px, 2.4vw, 26px);
}

.brands .section-title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    letter-spacing: -0.03em;
}

.brands .section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #64748b;
}

.brands__slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 2rem;
    padding: 1rem 0.3rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6fb 100%);
    border: 1px solid #e4ebf2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 38px rgba(15, 23, 42, 0.08);
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brands__slider::-webkit-scrollbar {
    height: 0;
}

.brands__slider::before,
.brands__slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.brands__slider::before {
    left: 0;
    background: linear-gradient(90deg, #f4f8fd 0%, rgba(244, 248, 253, 0) 100%);
}

.brands__slider::after {
    right: 0;
    background: linear-gradient(270deg, #f4f8fd 0%, rgba(244, 248, 253, 0) 100%);
}

.brands__track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: home-brands-marquee 24s linear infinite;
    padding: 0 0.65rem;
}

.brands__slider:hover .brands__track {
    animation-play-state: paused;
}

.brand-tile {
    flex: 0 0 auto;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    background: #fff;
    transition:
        transform 0.3s var(--home-ease),
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.35s var(--home-ease);
}

.brand-tile--logo {
    min-width: clamp(220px, 22vw, 290px);
    display: inline-flex;
    align-items: center;
    gap: 1.05rem;
    padding: 1.1rem 1.1rem;
}

.brand-tile__logo {
    width: 112px;
    height: 72px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #0f172a;
    border: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: none;
    overflow: hidden;
}

.brand-tile__logo img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none;
}

.brand-tile__meta {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.brand-tile:hover {
    transform: translateY(-6px);
    border-color: #d8e2ec;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.brand-tile__name {
    letter-spacing: -0.01em;
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
}

.brand-tile__tag {
    font-size: 0.96rem;
    color: #64748b;
    font-weight: 600;
}

@keyframes home-brands-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* ── Guides ───────────────────────────────────────────────────────────────── */
.guide-card {
    transition:
        transform 0.32s var(--home-ease),
        background 0.32s ease,
        border-color 0.28s ease,
        box-shadow 0.35s var(--home-ease);
}

.guide-card:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.guide-card__icon {
    transition: transform 0.35s var(--home-ease), box-shadow 0.35s var(--home-ease);
}

.guide-card:hover .guide-card__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 168, 150, 0.35);
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stat-item {
    transition: transform 0.3s var(--home-ease);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item__number {
    letter-spacing: -0.03em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.stat-item__icon {
    transition:
        transform 0.35s var(--home-ease),
        background 0.3s ease,
        box-shadow 0.35s var(--home-ease);
}

.stat-item:hover .stat-item__icon {
    transform: scale(1.08);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ── Bottom CTA ────────────────────────────────────────────────────────────── */
.cta-home__text h2 {
    letter-spacing: -0.02em;
}

.cta-home__img {
    transition: transform 0.4s var(--home-ease);
}

.cta-home__img:hover {
    transform: translateY(-4px);
}

.cta-home__img img {
    transition: transform 0.6s var(--home-ease), filter 0.4s ease;
    filter: drop-shadow(0 16px 28px rgba(15, 36, 35, 0.12));
}

.cta-home__img:hover img {
    transform: scale(1.03);
}

/* Primary CTAs on home: slightly richer feedback */
.brands .btn--outline,
.cta-home .btn--outline,
.potm .btn {
    transition:
        transform 0.28s var(--home-ease),
        box-shadow 0.28s var(--home-ease),
        background 0.28s var(--home-ease),
        border-color 0.25s ease,
        color 0.22s ease;
}

.brands .btn--outline:hover,
.cta-home .btn--outline:hover,
.potm .btn:hover {
    transform: translateY(-2px);
}

/* ── Scroll reveal — JS adds .home-in-view (no blank flash: in-view check on load) ─ */

/* Section headings — subtle text motion */
.home-animate:not(.home-in-view) .section-title,
.home-animate:not(.home-in-view) .section-subtitle {
    opacity: 0;
    transform: translateY(22px);
}

.home-animate.home-in-view .section-title,
.home-animate.home-in-view .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s var(--home-ease),
        transform 0.75s var(--home-ease);
}

.home-animate.home-in-view .section-subtitle {
    transition-delay: 0.08s;
}

.home-animate:not(.home-in-view) .guides__heading h2,
.home-animate:not(.home-in-view) .guides__heading p {
    opacity: 0;
    transform: translateY(18px);
}

.home-animate.home-in-view .guides__heading h2,
.home-animate.home-in-view .guides__heading p {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s var(--home-ease),
        transform 0.75s var(--home-ease);
}

.home-animate.home-in-view .guides__heading p {
    transition-delay: 0.07s;
}

.home-animate:not(.home-in-view) .stats__title {
    opacity: 0;
    transform: translateY(18px);
}

.home-animate.home-in-view .stats__title {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s var(--home-ease),
        transform 0.7s var(--home-ease);
}

/* POTM + bottom CTA blocks */
.potm.home-animate:not(.home-in-view) > .potm__grid,
.cta-home.home-animate:not(.home-in-view) > .cta-home__layout {
    opacity: 0;
    transform: translateY(36px);
}

.potm.home-animate.home-in-view > .potm__grid,
.cta-home.home-animate.home-in-view > .cta-home__layout {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.85s var(--home-ease),
        transform 0.85s var(--home-ease);
}

.home-animate:not(.home-in-view) .brands .text-center {
    opacity: 0;
    transform: translateY(16px);
}

.home-animate.home-in-view .brands .text-center {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s var(--home-ease),
        transform 0.65s var(--home-ease);
    transition-delay: 0.28s;
}

/* Staggered children */
.home-animate:not(.home-in-view) .why-card {
    opacity: 0;
    transform: translateY(22px);
}

.home-animate.home-in-view .why-card {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.65s var(--home-ease),
        transform 0.65s var(--home-ease),
        box-shadow 0.35s var(--home-ease),
        border-color 0.3s ease;
}

.home-animate.home-in-view .why-card:nth-child(1) {
    transition-delay: 0.06s;
}

.home-animate.home-in-view .why-card:nth-child(2) {
    transition-delay: 0.12s;
}

.home-animate.home-in-view .why-card:nth-child(3) {
    transition-delay: 0.18s;
}

.home-animate.home-in-view .why-card:nth-child(4) {
    transition-delay: 0.24s;
}

.home-animate:not(.home-in-view) .brand-tile {
    opacity: 0;
    transform: translateY(18px);
}

.home-animate.home-in-view .brand-tile {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.55s var(--home-ease),
        transform 0.55s var(--home-ease),
        border-color 0.28s ease,
        box-shadow 0.35s var(--home-ease);
}

.home-animate.home-in-view .brand-tile:nth-child(1) {
    transition-delay: 0.04s;
}

.home-animate.home-in-view .brand-tile:nth-child(2) {
    transition-delay: 0.08s;
}

.home-animate.home-in-view .brand-tile:nth-child(3) {
    transition-delay: 0.12s;
}

.home-animate.home-in-view .brand-tile:nth-child(4) {
    transition-delay: 0.16s;
}

.home-animate.home-in-view .brand-tile:nth-child(5) {
    transition-delay: 0.2s;
}

.home-animate.home-in-view .brand-tile:nth-child(6) {
    transition-delay: 0.24s;
}

.home-animate:not(.home-in-view) .guide-card {
    opacity: 0;
    transform: translateX(-12px);
}

.home-animate.home-in-view .guide-card {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.6s var(--home-ease),
        transform 0.6s var(--home-ease),
        background 0.32s ease,
        box-shadow 0.35s var(--home-ease);
}

.home-animate.home-in-view .guide-card:nth-child(1) {
    transition-delay: 0.05s;
}

.home-animate.home-in-view .guide-card:nth-child(2) {
    transition-delay: 0.12s;
}

.home-animate.home-in-view .guide-card:nth-child(3) {
    transition-delay: 0.18s;
}

.home-animate:not(.home-in-view) .stat-item {
    opacity: 0;
    transform: translateY(16px);
}

.home-animate.home-in-view .stat-item {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s var(--home-ease),
        transform 0.6s var(--home-ease);
}

.home-animate.home-in-view .stat-item:nth-child(1) {
    transition-delay: 0.06s;
}

.home-animate.home-in-view .stat-item:nth-child(2) {
    transition-delay: 0.12s;
}

.home-animate.home-in-view .stat-item:nth-child(3) {
    transition-delay: 0.18s;
}

.home-animate:not(.home-in-view) .featured__heading,
.home-animate:not(.home-in-view) .featured__slider-container,
.home-animate:not(.home-in-view) .featured__dots {
    opacity: 0;
    transform: translateY(20px);
}

.home-animate.home-in-view .featured__heading {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s var(--home-ease),
        transform 0.75s var(--home-ease);
    transition-delay: 0.04s;
}

.home-animate.home-in-view .featured__slider-container {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s var(--home-ease),
        transform 0.75s var(--home-ease);
    transition-delay: 0.12s;
}

.home-animate.home-in-view .featured__dots {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s var(--home-ease),
        transform 0.6s var(--home-ease);
    transition-delay: 0.2s;
}

/* ── Featured product cards: rating pill (clear /5, stars) ─────────────────── */
.featured .tub-card__footer {
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.featured .tub-card__rating--home {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    margin-left: auto;
    padding: 0.38rem 0.72rem 0.38rem 0.55rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 55%, #fde68a 100%);
    border: 1px solid rgba(245, 158, 11, 0.42);
    box-shadow:
        0 2px 10px rgba(245, 158, 11, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.featured .tub-card__rating-stars {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: #d97706;
    line-height: 1;
    margin-right: 0.05rem;
}

.featured .tub-card__rating-value {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    font-size: 1rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.featured .tub-card__rating-out {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-500);
    opacity: 0.95;
}

.featured .tub-card:hover .tub-card__rating--home {
    transform: scale(1.03);
    box-shadow:
        0 4px 16px rgba(245, 158, 11, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.featured .tub-card__rating--home {
    transition:
        transform 0.3s var(--home-ease),
        box-shadow 0.3s var(--home-ease);
}

/* ── Richer landing density (same colours, slightly more depth) ─────────────── */
.why.home-animate {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
    background-color: var(--gray-50);
    background-image:
        radial-gradient(ellipse 70% 45% at 50% 0%, rgba(0, 168, 150, 0.06) 0%, transparent 60%);
}

.brands.home-animate {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.featured.home-animate {
    position: relative;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
}

.featured.home-animate::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0, 168, 150, 0.09) 0%, transparent 58%);
}

.featured.home-animate > * {
    position: relative;
    z-index: 1;
}

.guides.home-animate {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
}

.stats.home-animate {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
    position: relative;
}

.stats.home-animate::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
}

.stats.home-animate .container {
    position: relative;
    z-index: 1;
}

.cta-home.home-animate {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
    background-image: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.potm.home-animate {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (prefers-reduced-motion: reduce) {
    .brands__track {
        animation: none;
    }

    .hero__bg-slide.is-active {
        animation: none;
        background-position: center center;
    }

    #homeHeroSection .hero__badge,
    #homeHeroSection .hero__actions {
        animation: none;
    }

    .hero__title-line {
        animation: none;
        opacity: 1;
        filter: none;
        transform: none;
    }

    .trust-bar--home .trust-bar__text,
    .trust-bar--home .trust-pill {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .home-animate:not(.home-in-view) .section-title,
    .home-animate:not(.home-in-view) .section-subtitle,
    .home-animate:not(.home-in-view) .guides__heading h2,
    .home-animate:not(.home-in-view) .guides__heading p,
    .home-animate:not(.home-in-view) .stats__title,
    .potm.home-animate:not(.home-in-view) > .potm__grid,
    .cta-home.home-animate:not(.home-in-view) > .cta-home__layout,
    .home-animate:not(.home-in-view) .brands .text-center {
        opacity: 1;
        transform: none;
    }

    .home-animate:not(.home-in-view) .why-card,
    .home-animate:not(.home-in-view) .brand-tile,
    .home-animate:not(.home-in-view) .guide-card,
    .home-animate:not(.home-in-view) .stat-item,
    .home-animate:not(.home-in-view) .featured__heading,
    .home-animate:not(.home-in-view) .featured__slider-container,
    .home-animate:not(.home-in-view) .featured__dots {
        opacity: 1;
        transform: none;
    }

    .trust-pill:hover,
    .why-card:hover,
    .brand-tile:hover,
    .guide-card:hover,
    .stat-item:hover,
    .potm__img:hover,
    .cta-home__img:hover,
    #homeHeroSection .hero__actions .btn:hover {
        transform: none;
    }

    .featured__slide .tub-card:hover {
        transform: none;
    }

    .featured .tub-card:hover .tub-card__rating--home {
        transform: none;
    }
}

@media (max-width: 768px) {
    .brands__track {
        animation: none;
        width: max-content;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .brand-tile--logo {
        min-width: min(78vw, 250px);
        padding: 0.72rem 0.8rem;
        gap: 0.72rem;
    }

    .brand-tile__logo {
        width: 84px;
        height: 54px;
    }

    .brand-tile__name {
        font-size: 0.98rem;
    }

    .brand-tile__tag {
        font-size: 0.78rem;
    }
}
