/* ==========================================================
   WHY US PAGE — Linecraft Child Theme
   Based on Figma: Linecraft Website - Renewal Design → Why Us
   Fonts: Red Rose (headings), Encode Sans Expanded (body)
   Primary: #202A4D | Accent: #FBD784 | Umber: #724031
   ========================================================== */

:root {
    --wu-navy: #202A4D;
    --wu-navy-70: rgba(32, 42, 77, 0.7);
    --wu-accent: #FBD784;
    --wu-umber: #724031;
    --wu-muted: #667394;
    --wu-white: #FFFFFE;
    --wu-light: #F4F4F4;
    --wu-font-h: "Red Rose", serif;
    --wu-font-b: "Encode Sans Expanded", system-ui, -apple-system, sans-serif;
    --wu-radius: 14px;
    --wu-radius-sm: 8px;
    --wu-radius-lg: 24px;
    --wu-container: 1280px;
    --wu-shadow: 0 4px 20px rgba(116, 124, 154, 0.29);
}

/* ===== PAGE WRAPPER ===== */
.lc-whyus {
    font-family: var(--wu-font-b);
    color: var(--wu-navy);
    background: #fff;
    overflow-x: hidden;
}

/* ===== SHARED TITLE COMPONENT ===== */
.wu-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
}

.wu-title--center {
    justify-content: center;
    flex-wrap: wrap;
}

.wu-title__light {
    font-family: var(--wu-font-b);
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: clamp(44px, 4vw, 57px);
    letter-spacing: -0.05em;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wu-title__light--dark {
    background: linear-gradient(95deg, rgba(116, 125, 154, 0.79) 0%, rgba(39, 42, 52, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wu-title__bold {
    font-family: var(--wu-font-h);
    font-weight: 700;
    font-size: clamp(32px, 3.3vw, 48px);
    line-height: clamp(44px, 4vw, 57px);
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wu-title__bold--dark {
    background: linear-gradient(93deg, #202A4D 0%, #747C9A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wu-title__line {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--wu-accent);
}

/* =====================================================================
   HERO SECTION — reuses .lc-hero-slider from hero-banner.css
   Figma: 1440 × 550   Content @ x:100 y:189   Nav @ y:430
   ===================================================================== */

/* Fixed-height viewport — Figma Hero Banner frame = 550px */
.wu-hero.lc-hero-slider .lc-hero-slider__viewport {
    height: 550px;
    position: relative;
}

/* All slides absolute, fill 550px viewport */
.wu-hero.lc-hero-slider .lc-hero-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .45s ease, transform .8s ease;
    z-index: 1;
    pointer-events: none;
}

.wu-hero.lc-hero-slider .lc-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

/* Content positioning — centered vertically in 550px banner */
.wu-hero.lc-hero-slider .lc-hero__inner {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 3;
}

/* Nav buttons — Figma: 60×60, bottom area */
.wu-hero.lc-hero-slider .lc-hero-slider__nav {
    top: auto;
    bottom: 30px;
    transform: none !important;
    width: 60px;
    height: 60px;
}

.wu-hero.lc-hero-slider .lc-hero-slider__nav.is-prev {
    left: 32px;
}

.wu-hero.lc-hero-slider .lc-hero-slider__nav.is-next {
    right: 32px;
}

/* Title component inside hero slides */
.wu-hero.lc-hero-slider .wu-title {
    gap: 10px;
    position: relative;
    margin: 0;
}

.wu-hero.lc-hero-slider .wu-title__light {
    font-size: 32px;
    line-height: 57px;
    letter-spacing: -1.6px;
}

.wu-hero.lc-hero-slider .wu-title__bold {
    font-size: 48px;
    line-height: 57px;
}

.wu-hero.lc-hero-slider .wu-title__line {
    bottom: -4px;
    left: 0;
}

.wu-hero.lc-hero-slider .lc-hero__sub {
    margin: 14px 0 0;
    font-family: var(--wu-font-b);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    max-width: 1001px;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.56));
}

.wu-hero.lc-hero-slider .wu-title__light,
.wu-hero.lc-hero-slider .wu-title__bold,
.wu-hero.lc-hero-slider .lc-hero__sub {
    text-transform: none !important;
}

/* Overlay — same as home page: top-left transparent → bottom-right dark */
.wu-hero.lc-hero-slider .lc-hero__overlay {
    background: linear-gradient(-18deg, rgba(11, 29, 38, 0) 14%, rgba(11, 29, 38, 0.86) 100%);
}

/* -- Statements + Stats wrapper -- */
.wu-heroBody {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--wu-white);
}

.wu-hero__effect {
    position: absolute;
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
}

.wu-hero__effect--top {
    width: 58%;
    top: -20px;
    left: 50%;
    transform: translateX(-40%);
    animation: wu-float-slow 14s ease-in-out infinite alternate;
}

.wu-hero__effect--bot {
    width: 25%;
    bottom: 10%;
    right: -2%;
    animation: wu-float-slow 12s ease-in-out 2s infinite alternate-reverse;
}

@keyframes wu-float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-8px, 6px) scale(1.02);
    }

    100% {
        transform: translate(4px, -4px) scale(0.98);
    }
}

/* -- Statements container -- */
.wu-statements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: var(--wu-container);
    margin: 0 auto;
    padding: 48px 80px 40px;
    background: var(--wu-white);
    border-bottom: 1px solid rgba(32, 42, 77, 0.07);
}

.wu-statement {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wu-statement__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.wu-statement__text {
    font-family: var(--wu-font-b);
    font-weight: 400;
    font-size: clamp(10px, 1.8vw, 20px);
    line-height: 1.67;
    text-align: center;
    color: var(--wu-navy);
}

.wu-statement__text strong {
    font-weight: 700;
}

/* =====================================================================
   STATS SECTION
   ===================================================================== */
.wu-stats {
    position: relative;
    width: 100%;
    max-width: var(--wu-container);
    margin: 0 auto;
    padding: 50px 80px 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    display: none;
}

/* Left column: numbers */
.wu-stats__numbers {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.wu-stats__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

/* Subtitle — hidden by default, revealed on parent hover */
.wu-stats__subtitle {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(8px);
    font-size: 14px;
    color: var(--wu-muted);
    font-family: var(--wu-font-b);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0;
    transition:
        opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* Hover on the whole numbers column → show ALL subtitles at once */
.wu-stats__numbers:hover .wu-stats__subtitle {
    opacity: 1;
    max-height: 60px;
    transform: translateY(0);
    margin-top: 6px;
    pointer-events: auto;
}

/* Value scale animation on parent hover */
.wu-stats__value {
    transform-origin: left bottom;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wu-stats__numbers:hover .wu-stats__value {
    transform: scaleY(1.12);
}


.wu-stats__value {
    font-family: var(--wu-font-h);
    font-weight: 400;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1.15;
    color: var(--wu-navy);
}

.wu-stats__value::after {
    content: '+';
}

.wu-stats__label {
    font-family: var(--wu-font-b);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--wu-navy);
    margin-top: 2px;
}

/* Right column: gallery — absolute-position layout for smooth animation */
.wu-stats__gallery {
    flex: 1;
    position: relative;
    max-width: 50%;
    height: 520px;
    overflow: hidden;
}

/* Gap constant (used in calc) */
:root {
    --wu-gal-gap: 14px;
}

/* Shared transition for all gallery items */
.wu-stats__gallery .wu-gallery-img {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    filter: grayscale(0.9) brightness(0.7);
    transition:
        top 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: top, left, width, height, filter;
}

.wu-stats__gallery .wu-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== DEFAULT STATE (State 1) ==================== */
/* Image 1: full width top, ~56% height */
.wu-gallery-img[data-index="1"] {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(56.5% - var(--wu-gal-gap) / 2);
}

/* Image 2: bottom-left, ~43.5% height */
.wu-gallery-img[data-index="2"] {
    bottom: 0;
    left: 0;
    top: calc(56.5% + var(--wu-gal-gap) / 2);
    width: calc(50% - var(--wu-gal-gap) / 2);
    height: calc(43.5% - var(--wu-gal-gap) / 2);
}

/* Image 3: bottom-right, ~43.5% height */
.wu-gallery-img[data-index="3"] {
    top: calc(56.5% + var(--wu-gal-gap) / 2);
    left: calc(50% + var(--wu-gal-gap) / 2);
    width: calc(50% - var(--wu-gal-gap) / 2);
    height: calc(43.5% - var(--wu-gal-gap) / 2);
}

/* ==================== FILTER STATES ==================== */
.wu-gallery-img.is-gray {
    filter: grayscale(0.9) brightness(0.7);
}

.wu-gallery-img.is-active {
    filter: grayscale(0) brightness(1.05);
}

.wu-gallery-img.is-active img {
    transform: scale(1.06);
}

.wu-gallery-img.is-inactive {
    filter: grayscale(0.9) brightness(0.5);
}

.wu-gallery-img.is-inactive img {
    transform: scale(1);
}

/* ==================== HOVER IMAGE 1 ==================== */
/* Image 1: expands to ~80% height */
.wu-stats__gallery.hover-1 .wu-gallery-img[data-index="1"] {
    width: 100%;
    height: calc(80% - var(--wu-gal-gap) / 2);
}

/* Image 2: compressed bottom-left, wider */
.wu-stats__gallery.hover-1 .wu-gallery-img[data-index="2"] {
    top: calc(80% + var(--wu-gal-gap) / 2);
    left: 0;
    width: calc(60% - var(--wu-gal-gap) / 2);
    height: calc(20% - var(--wu-gal-gap) / 2);
}

/* Image 3: compressed bottom-right, narrower */
.wu-stats__gallery.hover-1 .wu-gallery-img[data-index="3"] {
    top: calc(80% + var(--wu-gal-gap) / 2);
    left: calc(60% + var(--wu-gal-gap) / 2);
    width: calc(40% - var(--wu-gal-gap) / 2);
    height: calc(20% - var(--wu-gal-gap) / 2);
}

/* ==================== HOVER IMAGE 2 ==================== */
/* Image 1: short top strip */
.wu-stats__gallery.hover-2 .wu-gallery-img[data-index="1"] {
    width: 100%;
    height: calc(22% - var(--wu-gal-gap) / 2);
}

/* Image 2: dominates bottom-left */
.wu-stats__gallery.hover-2 .wu-gallery-img[data-index="2"] {
    top: calc(22% + var(--wu-gal-gap) / 2);
    left: 0;
    width: calc(78% - var(--wu-gal-gap) / 2);
    height: calc(78% - var(--wu-gal-gap) / 2);
}

/* Image 3: thin right strip */
.wu-stats__gallery.hover-2 .wu-gallery-img[data-index="3"] {
    top: calc(22% + var(--wu-gal-gap) / 2);
    left: calc(78% + var(--wu-gal-gap) / 2);
    width: calc(22% - var(--wu-gal-gap) / 2);
    height: calc(78% - var(--wu-gal-gap) / 2);
}

/* ==================== HOVER IMAGE 3 ==================== */
/* Image 1: short top strip */
.wu-stats__gallery.hover-3 .wu-gallery-img[data-index="1"] {
    width: 100%;
    height: calc(22% - var(--wu-gal-gap) / 2);
}

/* Image 2: thin left strip */
.wu-stats__gallery.hover-3 .wu-gallery-img[data-index="2"] {
    top: calc(22% + var(--wu-gal-gap) / 2);
    left: 0;
    width: calc(22% - var(--wu-gal-gap) / 2);
    height: calc(78% - var(--wu-gal-gap) / 2);
}

/* Image 3: dominates bottom-right */
.wu-stats__gallery.hover-3 .wu-gallery-img[data-index="3"] {
    top: calc(22% + var(--wu-gal-gap) / 2);
    left: calc(22% + var(--wu-gal-gap) / 2);
    width: calc(78% - var(--wu-gal-gap) / 2);
    height: calc(78% - var(--wu-gal-gap) / 2);
}

/* =====================================================================
   WHY DIFFERENT
   ===================================================================== */
.wu-diff {
    padding: 30px 80px 50px;
}

.wu-diff__inner {
    max-width: var(--wu-container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.wu-diff__grid {
    display: flex;
    gap: 50px;
    width: 100%;
    align-items: stretch;
}

.wu-diff__img {
    flex: 1;
    border-radius: var(--wu-radius-lg);
    overflow: hidden;
    position: relative;
}

.wu-diff__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wu-diff__img:hover img {
    transform: scale(1.04);
}

/* Dark gradient overlay at bottom */
.wu-diff__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 42, 77, 0.09) 0%, rgba(10, 10, 9, 1) 100%);
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.wu-diff__img:hover::after {
    opacity: 0.2;
}

.wu-diff__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

/* Feature item */
.wu-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.wu-feature__iconWrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.wu-feature__iconWrap img {
    width: 80px;
    height: auto;
}

/* Connection line between icons */
.wu-feature:not(:last-child) .wu-feature__iconWrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 14px;
    background: #9B9B9B;
}

.wu-feature__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wu-feature__title {
    font-family: var(--wu-font-h);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.25;
    color: var(--wu-navy);
    margin: 0;
}

.wu-feature__desc {
    font-family: var(--wu-font-b);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57;
    color: var(--wu-muted);
    margin: 0;
}

/* =====================================================================
   OUR BELIEF
   ===================================================================== */
.wu-belief {
    padding: 60px 30px 30px;
    background: #fff;
}

.wu-belief__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.wu-belief__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 30px;
    align-items: stretch;
}

/* Belief card */
.wu-beliefCard {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wu-beliefCard:hover {
    transform: translateY(-4px);
}

/* Card image */
.wu-beliefCard__img {
    border-radius: 14px;
    overflow: hidden;
    height: 412px;
    flex-shrink: 0;
}

.wu-beliefCard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wu-beliefCard:hover .wu-beliefCard__img img {
    transform: scale(1.05);
}

/* Card text */
.wu-beliefCard__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 4px 10px;
    margin: 0;
}

.wu-beliefCard__light {
    font-family: var(--wu-font-b);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #202A4D;
}

.wu-beliefCard__bold {
    font-family: var(--wu-font-b);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    color: #202A4D;
}

/* Left card: centered text */
.wu-beliefCard--left .wu-beliefCard__text {
    text-align: center;
}

/* Center card: text on top, centered */
.wu-beliefCard--center .wu-beliefCard__text {
    text-align: center;
    padding: 10px 4px 18px;
    order: -1;
}

/* Right card: centered text */
.wu-beliefCard--right .wu-beliefCard__text {
    text-align: center;
}

/* =====================================================================
   BRAND BLOCK
   ===================================================================== */
.wu-brand {
    margin: 20px 30px;
    border-radius: var(--wu-radius-lg);
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, rgba(59, 40, 26, 1) 100%),
        url('../../img/why-us/kitchen-gallery-bg.png') center / cover;
}

.wu-brand__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}

.wu-brand__logo {
    max-width: 338px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.wu-brand__tagline .wu-brand__title {
    font-family: var(--wu-font-h);
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.25;
    color: #fff;
    margin: 0;
    text-align: center;
}

.wu-brand .wu-brand__tagline .wu-brand__subtitle {
    font-family: var(--wu-font-h);
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.94) !important;
    background: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.94) !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    margin: 12px 0 0;
    text-align: center;
    text-transform: none;
    filter: none;
    opacity: 1 !important;
    mix-blend-mode: normal;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 3;
}

/* =====================================================================
   CTA SECTION
   ===================================================================== */
.wu-cta {
    padding: 50px 30px;
}

.wu-cta__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wu-cta__head .wu-title {
    align-items: center;
}

.wu-cta__logoInline {
    height: 44px;
    width: auto;
}

/* CTA cards row */
.wu-cta__cards {
    display: flex;
    gap: 14px;
    width: 100%;
}

.wu-ctaCard {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.wu-ctaCard:hover {
    transform: translateY(-3px);
}

.wu-ctaCard:first-child {
    border-radius: 12px 0 0 12px;
}

.wu-ctaCard:last-child {
    border-radius: 0 12px 12px 0;
}

/* CTA card background */
.wu-ctaCard__bg {
    position: absolute;
    inset: 0;
}

.wu-ctaCard__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.wu-ctaCard:hover .wu-ctaCard__bg img {
    transform: scale(1.05);
}

.wu-ctaCard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 42, 77, 0.09) 0%, rgba(10, 10, 9, 0.85) 100%);
}

/* CTA card content */
.wu-ctaCard__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.wu-ctaCard__title {
    font-family: var(--wu-font-h);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25;
    color: var(--wu-navy);
    margin: 0;
}

.wu-ctaCard__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 120px;
    border: 1px solid rgba(32, 42, 77, 0.3);
    background: var(--wu-navy);
    color: #fff;
    font-family: var(--wu-font-b);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wu-ctaCard__btn:hover {
    background: var(--wu-umber);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.wu-ctaCard__btn svg {
    transition: transform 0.25s ease;
}

.wu-ctaCard__btn:hover svg {
    transform: translateX(3px);
}

/* =====================================================================
   ANIMATED COUNTER (JS helper)
   ===================================================================== */
.wu-stats__value.is-counting {
    transition: none;
}

/* =====================================================================
   SCROLL-TRIGGERED PARALLAX HINT
   ===================================================================== */
.wu-hero__effect {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1200px) {
    .wu-stats {
        padding: 40px 40px 50px;
        gap: 40px;
    }

    .wu-stats__numbers {
        min-width: 220px;
    }

    .wu-stats__gallery {
        height: 400px;
    }

    .wu-diff {
        padding: 30px 40px 50px;
    }

    .wu-statements {
        padding: 30px 40px 24px;
    }
}

@media (max-width: 1024px) {
    .wu-hero.lc-hero-slider .lc-hero__inner {
        left: 40px;
    }

    .wu-diff__grid {
        flex-direction: column;
        gap: 30px;
    }

    .wu-diff__img {
        height: 350px;
    }

    .wu-stats {
        flex-direction: column;
    }

    .wu-stats__numbers {
        flex-direction: row;
        gap: 30px;
        min-width: 0;
        width: 100%;
        justify-content: space-around;
    }

    .wu-stats__gallery {
        height: 380px;
        width: 100%;
        max-width: 100%;
    }

    .wu-belief__cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wu-beliefCard__img {
        height: 300px;
    }

    .wu-cta__cards {
        flex-direction: column;
    }

    .wu-ctaCard:first-child,
    .wu-ctaCard:last-child {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .wu-hero.lc-hero-slider .lc-hero-slider__viewport {
        height: 420px;
    }

    .wu-beliefCard--left {
        flex-direction: column-reverse;
    }
    .wu-beliefCard--right {
        flex-direction: column-reverse;
    }

    .wu-hero.lc-hero-slider .lc-hero__inner {
        left: 20px;
        right: 20px;
    }

    .wu-hero.lc-hero-slider .lc-hero-slider__nav {
        width: 44px;
        height: 44px;
        bottom: 30px;
    }

    .wu-statements {
        padding: 24px 20px 16px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .wu-statement__text {
        font-size: 0.8rem;
        text-align: center;
        width: 70%;
    }

    .wu-stats {
        padding: 30px 20px;
    }

    .wu-stats__numbers {
        flex-direction: column;
        gap: 16px;
    }

    .wu-stats__gallery {
        height: 300px;
    }

    .wu-diff {
        padding: 30px 20px;
    }

    .wu-feature {
        flex-direction: column;
        gap: 12px;
    }

    .wu-feature__iconWrap::after {
        display: none;
    }

    .wu-belief {
        padding: 30px 16px;
    }

    .wu-brand {
        margin: 16px;
    }

    .wu-brand__logo {
        max-width: 220px;
    }

    .wu-cta {
        padding: 30px 16px;
    }

    .wu-ctaCard {
        min-height: 220px;
    }

    .wu-hero__effect--top {
        width: 80%;
    }

    .wu-hero__effect--bot {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .wu-hero.lc-hero-slider .lc-hero-slider__viewport {
        height: 340px;
    }

    .wu-title__light {
        font-size: 20px;
    }

    .wu-title__bold {
        font-size: 28px;
    }

    .wu-stats__value {
        font-size: 48px;
    }

    .wu-feature__title {
        font-size: 20px;
    }

    .wu-ctaCard__title {
        font-size: 24px;
    }

}

/* =====================================================================
   PRINT
   ===================================================================== */
@media print {

    .wu-hero__effect {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .wu-hero.lc-hero-slider .lc-hero-slider__viewport {
        height: clamp(500px, 72vh, 620px);
    }

    .wu-hero.lc-hero-slider .lc-hero__inner {
        left: 22px;
        right: 22px;
        top: 46%;
        transform: translateY(-50%);
        max-width: 92%;
    }

    .wu-hero.lc-hero-slider .wu-title {
        gap: 8px;
    }

    .wu-hero.lc-hero-slider .wu-title__light {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .wu-hero.lc-hero-slider .wu-title__bold {
        font-size: 48px;
        line-height: 1.05;
    }

    .wu-hero.lc-hero-slider .lc-hero__sub {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.48;
        max-width: 100%;
    }

    .wu-hero.lc-hero-slider .lc-hero-slider__nav {
        width: 56px;
        height: 56px;
        bottom: 22px;
    }

    .wu-hero.lc-hero-slider .lc-hero-slider__nav.is-prev {
        left: 14px;
    }

    .wu-hero.lc-hero-slider .lc-hero-slider__nav.is-next {
        right: 14px;
    }
}

@media (max-width: 480px) {
    .wu-hero.lc-hero-slider .lc-hero-slider__viewport {
        height: clamp(460px, 70vh, 540px);
    }

    .wu-hero.lc-hero-slider .wu-title__light {
        font-size: 28px;
    }

    .wu-hero.lc-hero-slider .wu-title__bold {
        font-size: 44px;
    }

    .wu-hero.lc-hero-slider .lc-hero__sub {
        font-size: 14px;
        line-height: 1.45;
    }
}