/* =============================================
   Hero Slider & Slideshow Styles
   ============================================= */

/* --- Hero Section Base --- */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #efe2cf 0%, #e5d2ba 30%, #eadccc 70%, #f8f3eb 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(222, 209, 194, 0.55);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.hero-content {
    padding: var(--space-5) 0;
    padding-left: max(calc((100vw - 1200px) / 2), 5vw);
    padding-right: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid transparent;
}

.hero-badge .icon {
    width: 0.9rem;
    height: 0.9rem;
}

.hero-badge--primary {
    background: rgba(255, 252, 248, 0.7);
    color: var(--color-primary-hover);
    border-color: rgba(179, 139, 98, 0.2);
}

.hero-badge--accent {
    background: rgba(255, 252, 248, 0.62);
    color: var(--color-secondary-hover);
    border-color: rgba(95, 111, 97, 0.18);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 3.5vw, var(--text-4xl));
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    max-width: 22ch;
}

.hero-seo-intro {
    max-width: 52ch;
    margin: 0 0 var(--space-4);
    color: rgba(42, 34, 26, 0.8);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.hero-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hero-usps li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: rgba(42, 34, 26, 0.78);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.hero-usps li .icon {
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    color: var(--color-primary);
}

.hero-usps li strong {
    color: #2a221a;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
}

.btn-cta-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-pill);
    border: none;
    font-size: var(--text-base);
    font-weight: 700;
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow-primary);
    cursor: pointer;
    transition:
        transform var(--motion-fast) var(--ease-spring),
        box-shadow var(--motion-base) var(--ease-standard),
        background var(--motion-base) var(--ease-standard);
}

.btn-cta-hero:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
    box-shadow: 0 14px 28px rgba(179, 139, 98, 0.28);
}

.btn-cta-hero:active {
    transform: translateY(0) scale(0.97);
}

.btn-cta-hero:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 139, 98, 0.35);
}

.hero-actions-divider {
    color: rgba(42, 34, 26, 0.45);
    font-size: var(--text-sm);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 108, 70, 0.22);
    font-size: var(--text-base);
    font-weight: 600;
    color: #2a221a;
    background: rgba(255, 252, 248, 0.58);
    cursor: pointer;
    transition:
        transform var(--motion-fast) var(--ease-spring),
        background var(--motion-base) var(--ease-standard),
        border-color var(--motion-base) var(--ease-standard);
}

.btn-outline-hero:hover {
    transform: translateY(-2px);
    background: rgba(255, 252, 248, 0.78);
    border-color: rgba(148, 108, 70, 0.32);
    box-shadow: 0 10px 22px rgba(36, 31, 26, 0.08);
}

.btn-outline-hero:active {
    transform: translateY(0) scale(0.97);
}

.btn-outline-hero:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 139, 98, 0.25);
}

/* --- Hero Media --- */

.hero-media {
    position: relative;
    overflow: hidden;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--motion-glacial) var(--ease-standard);
}

.hero-media:hover .hero-media__img {
    transform: scale(1.03);
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
}

.hero-play-btn__circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(36, 31, 26, 0.16);
    transition:
        transform var(--motion-base) var(--ease-spring),
        background var(--motion-base) var(--ease-standard),
        box-shadow var(--motion-base) var(--ease-standard);
}

.hero-play-btn:hover .hero-play-btn__circle {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(36, 31, 26, 0.2);
}

.hero-play-btn__icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    margin-left: 3px;
}

/* --- Video Modal --- */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--motion-base) var(--ease-standard),
        visibility var(--motion-base) var(--ease-standard);
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.video-modal__content {
    position: relative;
    width: 90vw;
    max-width: 960px;
    transform: scale(0.92);
    transition: transform var(--motion-base) var(--ease-spring);
}

.video-modal.is-open .video-modal__content {
    transform: scale(1);
}

.video-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--motion-fast) var(--ease-standard);
}

.video-modal__close:hover {
    opacity: 1;
}

.video-modal__player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Trust Badges --- */

.hero-trust-badges {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.trust-badge {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1.3;
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 26px rgba(36, 31, 26, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-badge--award {
    background: linear-gradient(180deg, rgba(179, 139, 98, 0.94) 0%, rgba(148, 108, 70, 0.94) 100%);
    color: #ffffff;
}

.trust-badge__label {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.trust-badge__title {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

.trust-badge__year {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.1;
    margin: 0.15rem 0;
}

.trust-badge__source {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 0.2rem;
}

.trust-badge--rating {
    background: rgba(255, 252, 248, 0.9);
    color: var(--color-text);
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.trust-stars .icon {
    width: 1rem;
    height: 1rem;
    color: #e0ae5d;
}

.trust-badge__score {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.trust-badge__detail {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-soft);
    font-weight: 500;
}

/* --- Hero Desktop Overrides --- */

.hero-section {
    background: #ffffff;
}

.hero-inner {
    height: 650px;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
}

.hero-content {
    background: #ffffff;
    border-right: 1px solid var(--color-border);
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
    padding-right: var(--space-6);
    overflow: visible;
}

.hero-content h1 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.12;
    max-width: 22ch;
    margin-bottom: var(--space-1);
    padding-top: 0;
}

.hero-seo-intro {
    margin-bottom: var(--space-1);
    font-size: 0.84rem;
    line-height: 1.48;
}

.hero-usps {
    gap: 0.35rem;
    margin-bottom: var(--space-2);
}

.hero-usps li {
    font-size: 0.84rem;
    line-height: 1.38;
}

.hero-actions {
    gap: var(--space-2);
}

.btn-cta-hero,
.btn-outline-hero {
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
}

.hero-badges {
    gap: 0.35rem;
    margin-bottom: var(--space-1);
}

.hero-badge--primary,
.hero-badge--accent {
    background: #fffdf9;
    color: var(--color-text);
    border-color: var(--color-border);
}

.hero-badge--primary .icon,
.hero-badge--accent .icon {
    color: var(--color-primary);
}

.hero-actions-divider {
    display: none;
}

.btn-outline-hero {
    background: #fffdf9;
}

.hero-media {
    border-left: none;
    background: #f8fbfb;
}

.hero-media__img {
    object-position: center center;
}

.hero-play-btn__circle {
    width: 60px;
    height: 60px;
}

.hero-play-btn__label {
    display: none;
}

.hero-trust-badges {
    display: flex;
    top: 1rem;
    right: 1rem;
    transform: none;
    gap: 0.6rem;
}

.hero-trust-badges .trust-badge {
    box-shadow: 0 10px 18px rgba(36, 31, 26, 0.14);
    border-color: rgba(255, 255, 255, 0.72);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-trust-badges .trust-badge--rating {
    background: rgba(255, 255, 255, 0.96);
}

/* --- Hero Responsive: min-width 1440px --- */

@media (min-width: 1440px) {
    .hero-inner {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }
}

/* --- Hero Responsive: max-width 900px --- */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .hero-media {
        order: -1;
        height: 200px;
        border-left: none;
    }

    .hero-content {
        order: 1;
        padding: var(--space-3) 5vw var(--space-3);
        text-align: left;
        background: #ffffff;
        border-right: none;
    }

    .hero-content h1 {
        max-width: none;
        font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    }

    .hero-play-btn__circle {
        width: 56px;
        height: 56px;
    }

    .hero-play-btn__icon {
        width: 22px;
        height: 22px;
    }

    .hero-play-btn {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .trust-badge {
        min-width: auto;
        padding: 0.4rem 0.5rem;
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    .trust-badge__label {
        font-size: var(--text-sm);
    }

    .trust-badge__title {
        font-size: 0.6rem;
    }

    .trust-badge__year {
        font-size: var(--text-xl);
    }

    .trust-badge__score {
        font-size: var(--text-base);
    }

    .trust-stars .icon {
        width: 0.7rem;
        height: 0.7rem;
    }

    .trust-badge__detail {
        font-size: 0.6rem;
    }

    .trust-badge__source {
        font-size: 0.55rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .btn-cta-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-seo-intro {
        margin-bottom: var(--space-2);
        font-size: 0.82rem;
    }

    .hero-usps {
        gap: 0.25rem;
        margin-bottom: var(--space-2);
    }

    .hero-usps li {
        font-size: 0.82rem;
    }

    .hero-trust-badges {
        display: flex;
        top: auto;
        left: auto;
        right: 0.5rem;
        bottom: 0.5rem;
        transform: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        z-index: 4;
    }

    .hero-trust-badges .trust-badge {
        transform: scale(0.7);
        transform-origin: bottom right;
        margin: 0;
    }

    .hero-trust-badges .trust-badge + .trust-badge {
        margin-top: -0.9rem;
    }

    .hero-fullimage {
        height: auto;
        min-height: 340px;
    }

    .hero-fullimage__content {
        padding: var(--space-3) 5vw;
    }

    .hero-fullimage__stats {
        gap: 0.65rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-badges--overlay {
        top: 1rem;
        left: 1rem;
        right: 5rem;
        max-width: none;
        gap: 0.35rem;
    }

    .hero-fullimage__center--studio {
        width: min(28rem, calc(100% - 2.75rem));
        gap: 0.75rem;
    }

    .hero-fullimage__logo {
        width: clamp(150px, 34vw, 230px);
    }

    .hero-fullimage__center-title--studio {
        font-size: clamp(1.45rem, 4.5vw, 2.2rem);
    }

    .hero-fullimage__center-text--studio {
        max-width: 30ch;
        font-size: 0.92rem;
    }

    .hero-fullimage__cta {
        width: auto;
    }
}

/* --- Hero Responsive: max-width 640px --- */

@media (max-width: 640px) {
    .hero-content {
        padding: var(--space-2) 4vw var(--space-2);
    }

    .hero-content h1 {
        font-size: clamp(1.1rem, 5vw, 1.35rem);
        margin-bottom: var(--space-2);
    }

    .hero-media {
        height: 110px;
    }

    .hero-play-btn__circle {
        width: 48px;
        height: 48px;
    }

    .hero-play-btn__icon {
        width: 18px;
        height: 18px;
    }

    .hero-trust-badges {
        right: 0.35rem;
        bottom: 0.35rem;
    }

    .hero-trust-badges .trust-badge {
        transform: scale(0.62);
    }

    .hero-trust-badges .trust-badge + .trust-badge {
        margin-top: -1.35rem;
    }

    .hero-badges--overlay {
        top: 0.85rem;
        left: 0.85rem;
        right: 4.6rem;
        gap: 0.3rem;
    }

    .hero-badges--overlay .hero-badge {
        padding: 0.32rem 0.58rem;
        font-size: 0.6rem;
    }

    .hero-fullimage__center--studio {
        width: calc(100% - 1.6rem);
        gap: 0.55rem;
    }

    .hero-fullimage__logo {
        width: clamp(130px, 36vw, 180px);
    }

    .hero-fullimage__center-title--studio {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .hero-fullimage__center-text--studio {
        max-width: 25ch;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .hero-fullimage__cta {
        padding: 0.7rem 1.2rem;
    }
}

/* =============================================
   Hero Slideshow (fragment-based)
   ============================================= */

.hero-slideshow {
    position: relative;
    padding-bottom: var(--space-4);
    overflow: hidden;
    border-bottom: none;
}

.hero-slideshow__viewport {
    overflow: hidden;
    border-bottom: 1px solid rgba(222, 209, 194, 0.55);
}

.hero-slideshow__track {
    display: flex;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    max-height: 650px;
    background: #ffffff;
    overflow: hidden;
}

.hero-slide[aria-hidden="true"] {
    pointer-events: none;
}

.hero-slideshow .hero-inner {
    height: 650px;
    min-height: 0;
    max-height: 650px;
}

.hero-slideshow .hero-content {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-slideshow .hero-content::-webkit-scrollbar {
    display: none;
}

.hero-slide__kicker {
    margin: 0 0 var(--space-1);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(42, 34, 26, 0.52);
}

.hero-slide__kicker--line {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-slide__kicker--line::before {
    content: '';
    width: 1.8rem;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

/* --- Slideshow Controls --- */

.hero-slideshow__controls {
    width: min(1200px, 94vw);
    margin: 0 auto;
    padding: 0.65rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.hero-slideshow__control {
    border: 1px solid rgba(148, 108, 70, 0.18);
    background: rgba(255, 253, 249, 0.72);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
    cursor: pointer;
    color: rgba(42, 34, 26, 0.82);
    transition:
        transform var(--motion-fast) var(--ease-spring),
        border-color var(--motion-base) var(--ease-standard),
        background var(--motion-base) var(--ease-standard),
        box-shadow var(--motion-base) var(--ease-standard);
}

.hero-slideshow__control:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 108, 70, 0.3);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(36, 31, 26, 0.05);
}

.hero-slideshow__control:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 139, 98, 0.22);
}

.hero-slideshow__control.is-active {
    border-color: rgba(148, 108, 70, 0.36);
    background: linear-gradient(135deg, rgba(179, 139, 98, 0.12) 0%, rgba(255, 253, 249, 0.92) 100%);
    box-shadow: 0 12px 22px rgba(36, 31, 26, 0.05);
}

.hero-slideshow__control-num {
    min-width: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.hero-slideshow__control-label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
}

/* --- Slideshow Dots --- */

.hero-slideshow__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.6rem;
}

.hero-slideshow__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(179, 139, 98, 0.3);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition:
        background var(--motion-base) var(--ease-standard),
        border-color var(--motion-base) var(--ease-standard),
        transform var(--motion-fast) var(--ease-spring);
}

.hero-slideshow__dot:hover {
    border-color: rgba(179, 139, 98, 0.55);
    transform: scale(1.15);
}

.hero-slideshow__dot.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* --- Slideshow Slide Components --- */

.hero-feature-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    margin: 0 0 var(--space-2);
}

.hero-feature-panel__item {
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(95, 111, 97, 0.18);
    background: rgba(246, 252, 249, 0.82);
    display: grid;
    gap: 0.1rem;
}

.hero-feature-panel__label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(46, 72, 60, 0.7);
    font-weight: 700;
}

.hero-feature-panel__item strong {
    font-size: 0.72rem;
    line-height: 1.15;
    color: #1f342c;
}

.hero-media__corner-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(18, 49, 39, 0.72);
    color: #ffffff;
    padding: 0.55rem 0.8rem;
    display: grid;
    gap: 0.05rem;
    box-shadow: 0 12px 26px rgba(17, 34, 27, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-media__corner-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.hero-media__corner-badge small {
    font-size: 0.66rem;
    opacity: 0.85;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0 0 var(--space-1);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(214, 166, 101, 0.28);
    background: rgba(255, 246, 231, 0.88);
    padding: 0.22rem 0.5rem;
    font-size: 0.66rem;
    font-weight: 700;
    color: #8a5a22;
}

.hero-start-steps {
    display: grid;
    gap: 0.3rem;
    margin: 0 0 var(--space-2);
}

.hero-start-steps__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
    align-items: center;
    padding: 0.35rem 0.55rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(214, 166, 101, 0.22);
    background: rgba(255, 249, 238, 0.85);
}

.hero-start-steps__num {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(217, 151, 70, 0.2), rgba(184, 118, 43, 0.14));
    color: #9c6124;
    font-weight: 800;
    font-size: 0.65rem;
}

.hero-start-steps__item strong {
    display: block;
    margin-bottom: 0;
    color: #5f3a15;
    font-size: 0.78rem;
}

.hero-start-steps__item p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.25;
    color: rgba(95, 58, 21, 0.8);
}

.hero-note-card {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    max-width: 220px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 249, 236, 0.92);
    box-shadow: 0 12px 24px rgba(106, 71, 28, 0.12);
    padding: 0.8rem 0.9rem;
}

.hero-note-card strong {
    display: block;
    font-size: 0.9rem;
    color: #7b4d1d;
}

.hero-note-card p {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: rgba(86, 56, 22, 0.85);
}

.hero-trust-badges--side {
    top: 1rem;
    right: 1rem;
    transform: none;
}

.hero-trust-badges--floating {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.65rem;
}

.hero-trust-badges--floating .trust-badge--rating {
    transform: translateY(0.35rem);
}

/* --- Slide Theme: Core --- */

.hero-slide--core {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-cream) 100%);
}

.hero-fullimage--studio {
    background: var(--color-bg-alt);
}

.hero-fullimage__img--studio {
    object-position: center center;
    filter: saturate(0.9) contrast(0.99) brightness(1.05);
}

.hero-fullimage__overlay--studio {
    background: var(--gradient-final-cta), var(--gradient-surface);
    opacity: 0.88;
}

.hero-badges--overlay {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 4;
    margin: 0;
    max-width: min(58%, 620px);
}

.hero-badges--overlay .hero-badge {
    background: var(--glass-bg-subtle);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-card-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-badges--overlay .hero-badge--primary,
.hero-badges--overlay .hero-badge--accent {
    color: var(--color-logo-ink);
}

.hero-badges--overlay .hero-badge .icon {
    color: var(--color-primary-hover);
}

.hero-trust-badges--overlay {
    top: 1.25rem;
    right: 1.25rem;
    bottom: auto;
    transform: none;
}

.hero-fullimage__center--studio {
    width: min(620px, calc(100% - 3rem));
    gap: 0.9rem;
}

.hero-fullimage__logo {
    width: clamp(180px, 22vw, 320px);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 8px 18px var(--overlay-medium));
}

.hero-fullimage__center-title--studio {
    max-width: 13ch;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-logo-ink);
    text-shadow: none;
}

.hero-fullimage__center-text--studio {
    max-width: 34ch;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: var(--color-text-muted);
    text-shadow: none;
}

.hero-fullimage__cta {
    margin-top: 0.15rem;
    min-width: 12rem;
    padding: 0.78rem 1.65rem;
}

.hero-fullimage__cta:hover {
    box-shadow: var(--shadow-card-strong);
}

/* --- Reformer Stats Component --- */

.reformer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin: var(--space-2) 0;
}

.reformer-stat {
    padding: 0.7rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(59, 125, 99, 0.15);
    background: rgba(237, 247, 242, 0.55);
    text-align: center;
    transition: transform var(--motion-fast) var(--ease-spring),
                box-shadow var(--motion-base) var(--ease-standard);
}

.reformer-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(36, 83, 67, 0.08);
}

.reformer-stat__number {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: #245343;
    letter-spacing: -0.02em;
}

.reformer-stat__label {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.64rem;
    font-weight: 600;
    color: rgba(36, 83, 67, 0.65);
    line-height: 1.25;
}

/* --- Reformer Overlay Tag --- */

.hero-media__overlay-tag {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(36, 83, 67, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 22px rgba(17, 34, 27, 0.2);
    display: grid;
    gap: 0.1rem;
}

.hero-media__overlay-tag span {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero-media__overlay-tag small {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.72);
}

/* --- Beginner Journey Component --- */

.beginner-journey {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: var(--space-2) 0 0;
}

.beginner-journey__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.beginner-journey__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(217, 151, 70, 0.18), rgba(184, 118, 43, 0.1));
    border: 1px solid rgba(214, 166, 101, 0.28);
    color: #9c6124;
    transition: transform var(--motion-fast) var(--ease-spring),
                box-shadow var(--motion-base) var(--ease-standard);
}

.beginner-journey__step:hover .beginner-journey__icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(184, 118, 43, 0.12);
}

.beginner-journey__icon .icon {
    width: 1rem;
    height: 1rem;
}

.beginner-journey__connector {
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(214, 166, 101, 0.15), rgba(214, 166, 101, 0.4), rgba(214, 166, 101, 0.15));
    margin-top: 1.2rem;
    flex-shrink: 0;
}

.beginner-journey__step strong {
    display: block;
    font-size: 0.76rem;
    color: #5f3a15;
}

.beginner-journey__step p {
    margin: 0;
    font-size: 0.65rem;
    line-height: 1.3;
    color: rgba(95, 58, 21, 0.72);
    max-width: 14ch;
}

/* --- Welcome Badge --- */

.hero-media__welcome-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 249, 236, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(214, 166, 101, 0.3);
    box-shadow: 0 8px 22px rgba(106, 71, 28, 0.12);
    max-width: 210px;
    display: grid;
    gap: 0.15rem;
}

.hero-media__welcome-badge-icon {
    display: flex;
    color: #c27d2d;
}

.hero-media__welcome-badge-icon .icon {
    width: 0.9rem;
    height: 0.9rem;
}

.hero-media__welcome-badge-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #7b4d1d;
    line-height: 1;
}

.hero-media__welcome-badge-text {
    font-size: 0.64rem;
    line-height: 1.35;
    color: rgba(86, 56, 22, 0.78);
}

/* --- Slide Theme: Reformer (Info Layout) --- */

.hero-slide--reformer {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, #f5ece0 100%);
}

.reformer-info {
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-3) var(--space-5);
    gap: 1rem;
    text-align: center;
    overflow-y: auto;
    scrollbar-width: none;
}

.reformer-info::-webkit-scrollbar {
    display: none;
}

/* Header */

.reformer-info__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 540px;
}

.reformer-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.72rem;
    border-radius: var(--radius-pill);
    background: rgba(179, 139, 98, 0.1);
    border: 1px solid rgba(179, 139, 98, 0.22);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.reformer-info__badge .icon {
    width: 0.72rem;
    height: 0.72rem;
    color: var(--color-primary);
}

.reformer-info__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    line-height: 1.1;
    color: #2a221a;
    letter-spacing: -0.02em;
}

.reformer-info__subtitle {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(42, 34, 26, 0.6);
    max-width: 48ch;
}

/* Stats */

.reformer-info__stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.reformer-info__stat {
    padding: 0.7rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(179, 139, 98, 0.06);
    border: 1px solid rgba(179, 139, 98, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    min-width: 100px;
    transition: transform var(--motion-fast) var(--ease-spring),
                box-shadow var(--motion-base) var(--ease-standard),
                background var(--motion-base) var(--ease-standard);
}

.reformer-info__stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(179, 139, 98, 0.1);
    background: rgba(179, 139, 98, 0.1);
}

.reformer-info__stat-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.reformer-info__stat-label {
    font-size: 0.58rem;
    font-weight: 600;
    color: rgba(42, 34, 26, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Cards */

.reformer-info__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 720px;
    width: 100%;
}

.reformer-info__feature {
    padding: 1rem 0.9rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(179, 139, 98, 0.12);
    box-shadow: 0 2px 8px rgba(42, 34, 26, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    transition: transform var(--motion-fast) var(--ease-spring),
                box-shadow var(--motion-base) var(--ease-standard);
}

.reformer-info__feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(179, 139, 98, 0.1);
}

.reformer-info__feature-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(179, 139, 98, 0.12), rgba(179, 139, 98, 0.06));
    border: 1px solid rgba(179, 139, 98, 0.15);
}

.reformer-info__feature-icon .icon {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--color-primary);
}

.reformer-info__feature strong {
    font-size: 0.78rem;
    color: #2a221a;
}

.reformer-info__feature p {
    margin: 0;
    font-size: 0.66rem;
    line-height: 1.4;
    color: rgba(42, 34, 26, 0.58);
}

/* Tag Badges */

.reformer-info__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.reformer-info__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.62rem;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1px solid rgba(179, 139, 98, 0.16);
    box-shadow: 0 1px 4px rgba(42, 34, 26, 0.04);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(42, 34, 26, 0.65);
    letter-spacing: 0.02em;
    transition: transform var(--motion-fast) var(--ease-spring),
                border-color var(--motion-base) var(--ease-standard);
}

.reformer-info__tag:hover {
    transform: translateY(-1px);
    border-color: rgba(179, 139, 98, 0.35);
}

.reformer-info__tag .icon {
    width: 0.62rem;
    height: 0.62rem;
    color: var(--color-primary);
}

/* Trust Badges */

.reformer-info__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.reformer-info__trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.64rem;
    font-weight: 600;
    color: rgba(42, 34, 26, 0.55);
}

.reformer-info__trust-item .icon {
    width: 0.82rem;
    height: 0.82rem;
    color: var(--color-primary);
    opacity: 0.75;
}

/* CTA */

.reformer-info__cta {
    display: flex;
    justify-content: center;
}

.reformer-info__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform var(--motion-fast) var(--ease-spring),
                box-shadow var(--motion-base) var(--ease-standard),
                background var(--motion-base) var(--ease-standard);
}

.reformer-info__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(179, 139, 98, 0.3);
    background: var(--color-primary-hover);
}

.reformer-info__cta-btn .icon {
    width: 0.78rem;
    height: 0.78rem;
    transition: transform var(--motion-fast) var(--ease-spring);
}

.reformer-info__cta-btn:hover .icon {
    transform: translateX(3px);
}

/* Footer */

.reformer-info__footer {
    padding-top: 0.3rem;
    border-top: 1px solid rgba(179, 139, 98, 0.12);
}

.reformer-info__footer span {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(42, 34, 26, 0.4);
    letter-spacing: 0.04em;
}

/* --- Fullimage: Top Badge --- */

.hero-fullimage__top-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.hero-fullimage__top-badge .icon {
    width: 0.8rem;
    height: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Fullimage: Center Content --- */

.hero-fullimage__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.hero-fullimage__center-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-fullimage__center-tagline {
    margin: 0;
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-fullimage__center-line {
    width: 3rem;
    height: 2px;
    margin: 0.4rem 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 1px;
}

.hero-fullimage__center-text {
    margin: 0;
    max-width: 32ch;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Fullimage: Info Card --- */

.hero-fullimage__info-card {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    max-width: 220px;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-fullimage__info-card strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.hero-fullimage__info-card p {
    margin: 0;
    font-size: 0.66rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

/* --- Fullimage: Feature List --- */

.hero-fullimage__features {
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.hero-fullimage__features li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.hero-fullimage__features li .icon {
    width: 0.75rem;
    height: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

/* --- Fullimage: Session Badge --- */

.hero-fullimage__session-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    display: grid;
    gap: 0.05rem;
}

.hero-fullimage__session-badge-label {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.hero-fullimage__session-badge-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hero-fullimage__session-badge-detail {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Fullimage Base (shared by Beginner) --- */

.hero-slide--fullimage {
    background: #1a1a1a;
}

.hero-fullimage {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-fullimage__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.05) contrast(1.04);
}

.hero-fullimage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 46, 35, 0.12) 0%,
        rgba(15, 46, 35, 0.25) 40%,
        rgba(15, 46, 35, 0.72) 100%
    );
    z-index: 1;
}

.hero-fullimage__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: var(--space-4) var(--space-5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

/* --- Slide Theme: Beginner (Full-Image warm) --- */

.hero-fullimage--warm {
    background: #3d2510;
}

.hero-fullimage__overlay--warm {
    background: linear-gradient(
        180deg,
        rgba(61, 37, 16, 0.1) 0%,
        rgba(61, 37, 16, 0.22) 40%,
        rgba(61, 37, 16, 0.7) 100%
    );
}

.hero-fullimage__top-badge--warm {
    background: rgba(217, 151, 70, 0.18);
    border-color: rgba(217, 151, 70, 0.28);
    color: rgba(255, 235, 200, 0.9);
}

.hero-fullimage__top-badge--warm .icon {
    color: rgba(255, 215, 150, 0.7);
}

.hero-fullimage__info-card--warm {
    background: rgba(217, 151, 70, 0.12);
    border-color: rgba(217, 151, 70, 0.2);
}

.hero-fullimage__center-line--warm {
    background: rgba(217, 151, 70, 0.4);
}

/* --- Fullimage: Steps Component --- */

.hero-fullimage__steps {
    display: flex;
    gap: 0.5rem;
}

.hero-fullimage__step {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-fullimage__step-num {
    min-width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 800;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.hero-fullimage__step strong {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.15;
}

.hero-fullimage__step p {
    margin: 0;
    font-size: 0.6rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.55);
}

.hero-fullimage__session-badge--warm {
    background: rgba(217, 151, 70, 0.15);
    border-color: rgba(217, 151, 70, 0.22);
}

/* --- Slideshow Media Overrides --- */

.hero-slideshow .hero-media {
    height: 100%;
    overflow: hidden;
}

.hero-slideshow .hero-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow .hero-media__img--beginner {
    transition: transform var(--motion-glacial) var(--ease-standard);
}

.hero-slideshow .hero-slide:not(.is-active) .hero-play-btn {
    pointer-events: none;
}

/* --- Slideshow Responsive --- */

@media (prefers-reduced-motion: reduce) {
    .hero-slideshow__track {
        transition: none;
    }

    .hero-slideshow__control {
        transition: none;
    }
}

@media (max-width: 1100px) {
    .hero-feature-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-slideshow {
        padding-bottom: 0;
    }

    .hero-slideshow .hero-inner {
        height: auto;
        max-height: none;
    }

    .hero-slideshow .hero-slide {
        max-height: none;
        overflow: visible;
    }

    .hero-slideshow .hero-media {
        height: 300px;
    }

    .hero-slideshow__dots {
        padding-bottom: var(--space-2);
    }

    .hero-media__corner-badge,
    .hero-note-card {
        top: 0.65rem;
        left: 0.65rem;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .hero-trust-badges--floating {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
    }

    .hero-trust-badges--floating .trust-badge--rating {
        transform: none;
    }

    /* ── Slide 2: Reformer-Info responsive 900px ── */
    .reformer-info {
        height: auto;
        min-height: 100%;
        overflow-y: visible;
        padding: var(--space-4) var(--space-4);
        gap: 0.75rem;
    }

    .hero-slide--reformer {
        display: flex;
        flex-direction: column;
    }

    .reformer-info__title {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .reformer-info__subtitle {
        font-size: 0.78rem;
    }

    .reformer-info__stats {
        gap: 0.4rem;
    }

    .reformer-info__stat {
        padding: 0.5rem 0.8rem;
        min-width: 80px;
    }

    .reformer-info__stat-num {
        font-size: 1.2rem;
    }

    .reformer-info__feature {
        padding: 0.7rem 0.6rem;
    }

    .reformer-info__feature-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .reformer-info__feature-icon .icon {
        width: 0.75rem;
        height: 0.75rem;
    }

    .reformer-info__feature strong {
        font-size: 0.72rem;
    }

    .reformer-info__feature p {
        font-size: 0.6rem;
    }

    .reformer-info__trust {
        gap: 0.8rem;
    }

    .reformer-info__trust-item {
        font-size: 0.6rem;
    }

    .reformer-info__footer span {
        font-size: 0.56rem;
    }

    /* ── Slide 3: Beginner fullimage responsive 900px ── */
    .hero-fullimage__steps {
        gap: 0.4rem;
    }

    .hero-fullimage__step {
        padding: 0.4rem 0.5rem;
    }

    .hero-fullimage__step strong {
        font-size: 0.65rem;
    }

    .hero-fullimage__step p {
        font-size: 0.54rem;
    }

    .hero-fullimage__step-num {
        min-width: 1.2rem;
        height: 1.2rem;
        font-size: 0.52rem;
    }

    .hero-fullimage__top-badge {
        top: 0.85rem;
        left: 0.85rem;
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-fullimage__info-card {
        top: 0.85rem;
        right: 0.85rem;
        max-width: 180px;
        padding: 0.55rem 0.65rem;
    }

    .hero-fullimage__info-card strong {
        font-size: 0.7rem;
    }

    .hero-fullimage__info-card p {
        font-size: 0.6rem;
    }

    .hero-fullimage__session-badge {
        position: absolute;
        bottom: 0.85rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 0.4rem 0.6rem;
        z-index: 4;
    }

    .hero-fullimage__session-badge-label {
        font-size: 0.5rem;
    }

    .hero-fullimage__content {
        padding-bottom: 2.8rem;
        align-items: center;
    }

    .hero-fullimage__steps {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-fullimage__step {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-fullimage__center-title {
        font-size: clamp(1.4rem, 4.5vw, 2.2rem);
    }

    .hero-fullimage__center-tagline {
        font-size: clamp(0.72rem, 1.2vw, 0.9rem);
    }

    .hero-fullimage__center-text {
        font-size: 0.76rem;
        max-width: 28ch;
    }
}

@media (max-width: 640px) {
    .hero-chip {
        font-size: 0.69rem;
        padding: 0.3rem 0.58rem;
    }

    .hero-note-card {
        max-width: 170px;
        padding: 0.65rem 0.75rem;
    }

    .hero-media__corner-badge {
        padding: 0.45rem 0.65rem;
    }

    /* ── Slide 2: Reformer-Info responsive 640px ── */
    .reformer-info {
        padding: var(--space-3) var(--space-3);
        gap: 0.6rem;
    }

    .reformer-info__header {
        gap: 0.35rem;
    }

    .reformer-info__badge {
        font-size: 0.56rem;
        padding: 0.25rem 0.55rem;
    }

    .reformer-info__title {
        font-size: clamp(1rem, 4.5vw, 1.35rem);
    }

    .reformer-info__subtitle {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .reformer-info__tags {
        gap: 0.3rem;
    }

    .reformer-info__tag {
        font-size: 0.54rem;
        padding: 0.22rem 0.48rem;
    }

    .reformer-info__tag .icon {
        width: 0.5rem;
        height: 0.5rem;
    }

    .reformer-info__stats {
        gap: 0.35rem;
    }

    .reformer-info__stat {
        padding: 0.4rem 0.65rem;
        min-width: 70px;
    }

    .reformer-info__stat-num {
        font-size: 1rem;
    }

    .reformer-info__stat-label {
        font-size: 0.5rem;
    }

    .reformer-info__features {
        gap: 0.45rem;
    }

    .reformer-info__feature {
        padding: 0.55rem 0.5rem;
        gap: 0.25rem;
    }

    .reformer-info__feature-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .reformer-info__feature-icon .icon {
        width: 0.65rem;
        height: 0.65rem;
    }

    .reformer-info__feature strong {
        font-size: 0.65rem;
    }

    .reformer-info__feature p {
        font-size: 0.55rem;
    }

    .reformer-info__trust {
        gap: 0.6rem;
    }

    .reformer-info__trust-item {
        font-size: 0.55rem;
        gap: 0.25rem;
    }

    .reformer-info__trust-item .icon {
        width: 0.7rem;
        height: 0.7rem;
    }

    .reformer-info__cta-btn {
        padding: 0.48rem 1.1rem;
        font-size: 0.7rem;
    }

    .reformer-info__footer {
        padding-top: 0.2rem;
    }

    .reformer-info__footer span {
        font-size: 0.52rem;
    }

    /* ── Slide 3: Beginner fullimage responsive 640px ── */
    .hero-fullimage {
        min-height: 280px;
    }

    .hero-fullimage__top-badge {
        top: 0.6rem;
        left: 0.6rem;
        font-size: 0.52rem;
        padding: 0.25rem 0.5rem;
    }

    .hero-fullimage__top-badge .icon {
        width: 0.65rem;
        height: 0.65rem;
    }

    .hero-fullimage__info-card {
        top: 0.6rem;
        right: 0.6rem;
        max-width: 150px;
        padding: 0.45rem 0.55rem;
    }

    .hero-fullimage__info-card strong {
        font-size: 0.62rem;
        margin-bottom: 0.15rem;
    }

    .hero-fullimage__info-card p {
        font-size: 0.52rem;
    }

    .hero-fullimage__center {
        gap: 0.2rem;
    }

    .hero-fullimage__center-title {
        font-size: clamp(1.15rem, 5.5vw, 1.6rem);
    }

    .hero-fullimage__center-tagline {
        font-size: clamp(0.62rem, 2vw, 0.78rem);
        letter-spacing: 0.04em;
    }

    .hero-fullimage__center-line {
        width: 2rem;
        margin: 0.25rem 0;
    }

    .hero-fullimage__center-text {
        font-size: 0.7rem;
        max-width: 24ch;
        line-height: 1.38;
    }

    .hero-fullimage__content {
        padding: var(--space-2) var(--space-3);
        padding-bottom: 2.4rem;
        align-items: center;
    }

    .hero-fullimage__steps {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        overflow-x: visible;
        width: 100%;
        max-width: 240px;
        padding-bottom: 0;
    }

    .hero-fullimage__steps::-webkit-scrollbar {
        display: none;
    }

    .hero-fullimage__step {
        padding: 0.35rem 0.45rem;
        min-width: 0;
        width: 100%;
        flex-shrink: 1;
        justify-content: flex-start;
    }

    .hero-fullimage__step strong {
        font-size: 0.58rem;
    }

    .hero-fullimage__step p {
        font-size: 0.48rem;
        line-height: 1.2;
    }

    .hero-fullimage__step-num {
        min-width: 1rem;
        height: 1rem;
        font-size: 0.46rem;
    }

    .hero-fullimage__session-badge {
        position: absolute;
        bottom: 0.6rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 0.35rem 0.5rem;
        z-index: 4;
    }

    .hero-fullimage__session-badge-label {
        font-size: 0.44rem;
    }
}
