:root {
    --verro-coral: #F07F73;
    --verro-coral-dark: #D95F55;
    --verro-coral-hover: #C95148;
    --med-sage: #88A996;
    --med-sage-dark: #627F6D;
    --pale-sage: #E5EFE9;
    --soft-peach: #FBE2D8;
    --warm-cream: #FFF9F4;
    --petal-white: #FFFFFF;
    --deep-charcoal: #30403C;
    --muted-sand: #DCCBBB;
    --border-color: #E8E1D9;

    --font-heading: "DM Serif Display", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;

    --container-width: 1380px;
    --header-height: 104px;

    --shadow-soft: 0 14px 40px rgba(48, 64, 60, 0.08);
    --shadow-header: 0 10px 34px rgba(48, 64, 60, 0.09);
    --transition: 280ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--warm-cream);
    color: var(--deep-charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid rgba(217, 95, 85, 0.42);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 11px 18px;
    border-radius: 8px;
    background: var(--deep-charcoal);
    color: var(--petal-white);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Buttons */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.button i {
    font-size: 0.82rem;
    transition: transform var(--transition);
}

.button:hover i {
    transform: translateX(4px);
}

.button--primary {
    background: var(--verro-coral-dark);
    color: var(--petal-white);
    box-shadow: 0 10px 24px rgba(217, 95, 85, 0.2);
}

.button--primary:hover {
    background: var(--verro-coral-hover);
    box-shadow: 0 14px 28px rgba(217, 95, 85, 0.25);
    transform: translateY(-2px);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 249, 244, 0.96);
    border-bottom: 1px solid transparent;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 249, 244, 0.98);
    border-bottom-color: rgba(232, 225, 217, 0.8);
    box-shadow: var(--shadow-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    width: min(calc(100% - 64px), var(--container-width));
    min-height: var(--header-height);
    margin-inline: auto;
}

/* Logo */

.brand-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 15px;
    color: var(--deep-charcoal);
}

/* Image Logo */

.brand-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.brand-logo__image {
    display: block;
    width: clamp(210px, 19vw, 290px);
    max-width: 100%;
    height: auto;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

/* Tablet */

@media (max-width: 1100px) {
    .brand-logo__image {
        width: 215px;
        max-height: 58px;
    }
}

/* Mobile */

@media (max-width: 560px) {
    .brand-logo__image {
        width: 175px;
        max-height: 48px;
    }
}

/* Very small mobile screens */

@media (max-width: 370px) {
    .brand-logo__image {
        width: 152px;
        max-height: 44px;
    }
}

/* Desktop navigation */

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(30px, 3.4vw, 56px);
    flex: 1;
}

.primary-navigation__list {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.6vw, 42px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--deep-charcoal);
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition);
}

.primary-navigation__link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    border-radius: 20px;
    background: var(--verro-coral-dark);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.primary-navigation__link:hover,
.primary-navigation__link.is-active {
    color: var(--verro-coral-dark);
}

.primary-navigation__link:hover::after,
.primary-navigation__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-order-button {
    min-width: 150px;
}

.header-order-button.is-active {
    background: var(--verro-coral-hover);
    box-shadow:
        0 0 0 4px rgba(217, 95, 85, 0.12),
        0 12px 26px rgba(217, 95, 85, 0.22);
}

/* Mobile menu button */

.mobile-menu-toggle {
    position: relative;
    display: none;
    width: 49px;
    height: 49px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    background: var(--petal-white);
    color: var(--deep-charcoal);
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(48, 64, 60, 0.06);
}

.mobile-menu-toggle__line {
    position: absolute;
    left: 13px;
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition:
        top var(--transition),
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-toggle__line:nth-child(1) {
    top: 16px;
}

.mobile-menu-toggle__line:nth-child(2) {
    top: 23px;
}

.mobile-menu-toggle__line:nth-child(3) {
    top: 30px;
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
    transform: translateX(7px);
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

/* Responsive header */

@media (max-width: 1100px) {
    :root {
        --header-height: 88px;
    }

    .site-header__inner {
        width: min(calc(100% - 40px), var(--container-width));
    }

    .brand-logo__mark {
        width: 48px;
        height: 46px;
        flex-basis: 48px;
    }

    .brand-logo__leaf {
        width: 27px;
        height: 43px;
    }

    .brand-logo__name {
        font-size: 1.72rem;
    }

    .primary-navigation {
        gap: 25px;
    }

    .primary-navigation__list {
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        position: relative;
    }

    .mobile-menu-toggle {
        display: inline-block;
        flex: 0 0 49px;
        z-index: 1002;
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 20px;
        max-height: calc(100vh - var(--header-height));
        padding: 25px 24px 30px;
        overflow-y: auto;
        visibility: hidden;
        background:
            radial-gradient(
                circle at 95% 8%,
                rgba(240, 127, 115, 0.13),
                transparent 28%
            ),
            radial-gradient(
                circle at 4% 92%,
                rgba(136, 169, 150, 0.16),
                transparent 30%
            ),
            var(--warm-cream);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 24px 40px rgba(48, 64, 60, 0.12);
        opacity: 0;
        transform: translateY(-14px);
        pointer-events: none;
        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .primary-navigation__list {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
    }

    .primary-navigation__link {
        width: 100%;
        min-height: 54px;
        padding: 8px 15px;
        border-radius: 11px;
        font-size: 1rem;
    }

    .primary-navigation__link::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 0;
        width: 3px;
        height: auto;
        transform: scaleY(0);
        transform-origin: bottom;
    }

    .primary-navigation__link:hover,
    .primary-navigation__link.is-active {
        padding-left: 20px;
        background: rgba(229, 239, 233, 0.72);
    }

    .primary-navigation__link:hover::after,
    .primary-navigation__link.is-active::after {
        transform: scaleY(1);
        transform-origin: top;
    }

    .header-order-button {
        width: 100%;
        min-height: 56px;
        margin-top: 3px;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 78px;
    }

    .site-header__inner {
        width: calc(100% - 30px);
        gap: 15px;
    }

    .brand-logo {
        gap: 9px;
    }

    .brand-logo__mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brand-logo__leaf {
        width: 23px;
        height: 37px;
    }

    .brand-logo__name {
        font-size: clamp(1.25rem, 6.1vw, 1.52rem);
        letter-spacing: 0.015em;
    }

    .brand-logo__llc {
        margin-left: 6px;
        font-size: 0.52rem;
        letter-spacing: 0.17em;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .mobile-menu-toggle__line {
        left: 12px;
    }

    .mobile-menu-toggle__line:nth-child(1) {
        top: 15px;
    }

    .mobile-menu-toggle__line:nth-child(2) {
        top: 22px;
    }

    .mobile-menu-toggle__line:nth-child(3) {
        top: 29px;
    }

    .mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(1),
    .mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(3) {
        top: 22px;
    }

    .primary-navigation {
        padding-inline: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================================================
   HOME HERO SLIDER
================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip-path: inset(50%);
}

.mv-hero {
    position: relative;
    min-height: clamp(650px, calc(100vh - var(--header-height)), 810px);
    overflow: hidden;
    isolation: isolate;
    background: var(--warm-cream);
}

.mv-hero__slides {
    position: absolute;
    inset: 0;
}

.mv-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background-color: var(--warm-cream);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.035);
    transition:
        opacity 900ms ease,
        visibility 900ms ease,
        transform 7s ease;
}

.mv-hero__slide--one {
    background-image: url("../images/hero-mobility.webp");
    background-position: 65% center;
}

.mv-hero__slide--two {
    background-image: url("../images/hero-patient-care.webp");
    background-position: 67% center;
}

.mv-hero__slide--three {
    background-image: url("../images/hero-support.webp");
    background-position: 65% center;
}

.mv-hero__slide.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.mv-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255, 249, 244, 0.99) 0%,
            rgba(255, 249, 244, 0.97) 30%,
            rgba(255, 249, 244, 0.83) 47%,
            rgba(255, 249, 244, 0.25) 67%,
            rgba(255, 249, 244, 0.05) 100%
        ),
        linear-gradient(
            0deg,
            rgba(48, 64, 60, 0.13) 0%,
            transparent 35%
        );
}

.mv-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: min(calc(100% - 64px), var(--container-width));
    min-height: 100%;
    margin-inline: auto;
    padding: 86px 0 125px;
}

.mv-hero__content {
    width: min(620px, 52%);
}

.mv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;
    padding: 9px 15px;
    border: 1px solid rgba(136, 169, 150, 0.21);
    border-radius: 30px;
    background: rgba(229, 239, 233, 0.88);
    color: var(--med-sage-dark);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(48, 64, 60, 0.05);
}

.mv-hero__eyebrow i {
    color: var(--verro-coral-dark);
    font-size: 0.88rem;
}

.mv-hero__title {
    max-width: 650px;
    margin: 0;
    color: var(--deep-charcoal);
    font-family: var(--font-heading);
    font-size: clamp(3.3rem, 5.3vw, 5.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.mv-hero__title span {
    display: block;
    margin-top: 8px;
    color: var(--verro-coral-dark);
}

.mv-hero__description {
    max-width: 585px;
    margin: 25px 0 0;
    color: rgba(48, 64, 60, 0.87);
    font-size: clamp(1rem, 1.25vw, 1.13rem);
    line-height: 1.75;
}

.mv-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.mv-hero__actions .button {
    min-height: 58px;
    padding-inline: 28px;
}

.mv-hero__text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    color: var(--deep-charcoal);
    font-size: 0.95rem;
    font-weight: 700;
}

.mv-hero__text-link::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--med-sage-dark);
    content: "";
    transform: scaleX(0.55);
    transform-origin: left;
    transition: transform var(--transition);
}

.mv-hero__text-link i {
    color: var(--med-sage-dark);
    transition: transform var(--transition);
}

.mv-hero__text-link:hover::after {
    transform: scaleX(1);
}

.mv-hero__text-link:hover i {
    transform: translateX(5px);
}

/* Floating feature card */

.mv-hero__feature-card {
    position: absolute;
    right: 4%;
    bottom: 108px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 315px;
    padding: 13px 18px 13px 13px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(48, 64, 60, 0.16);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mv-hero__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: var(--soft-peach);
    color: var(--verro-coral-dark);
    font-size: 1.05rem;
}

.mv-hero__feature-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}

.mv-hero__feature-copy small {
    color: var(--med-sage-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mv-hero__feature-copy strong {
    color: var(--deep-charcoal);
    font-size: 0.84rem;
    font-weight: 700;
}

/* Content entrance animations */

.mv-hero__eyebrow,
.mv-hero__title,
.mv-hero__description,
.mv-hero__actions,
.mv-hero__feature-card {
    opacity: 0;
    transform: translateY(25px);
}

.mv-hero__slide.is-active .mv-hero__eyebrow {
    animation: mvHeroReveal 700ms 150ms forwards;
}

.mv-hero__slide.is-active .mv-hero__title {
    animation: mvHeroReveal 800ms 260ms forwards;
}

.mv-hero__slide.is-active .mv-hero__description {
    animation: mvHeroReveal 800ms 390ms forwards;
}

.mv-hero__slide.is-active .mv-hero__actions {
    animation: mvHeroReveal 800ms 510ms forwards;
}

.mv-hero__slide.is-active .mv-hero__feature-card {
    animation: mvHeroCardReveal 850ms 650ms forwards;
}

@keyframes mvHeroReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mvHeroCardReveal {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Organic decorative shapes */

.mv-hero__shape {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    will-change: transform, border-radius;
}

.mv-hero__shape--sage {
    top: -145px;
    right: -105px;
    width: 410px;
    height: 365px;
    border-radius: 48% 52% 62% 38% / 44% 38% 62% 56%;
    background:
        radial-gradient(
            circle at 36% 38%,
            rgba(229, 239, 233, 0.85),
            rgba(136, 169, 150, 0.46) 70%
        );
    animation: mvSageShapeMove 9s ease-in-out infinite alternate;
}

.mv-hero__shape--coral {
    bottom: -155px;
    left: 31%;
    width: 390px;
    height: 295px;
    border-radius: 58% 42% 48% 52% / 52% 58% 42% 48%;
    background:
        radial-gradient(
            circle at 55% 35%,
            rgba(251, 226, 216, 0.92),
            rgba(240, 127, 115, 0.3) 72%
        );
    animation: mvCoralShapeMove 11s ease-in-out infinite alternate;
}

@keyframes mvSageShapeMove {
    0% {
        border-radius: 48% 52% 62% 38% / 44% 38% 62% 56%;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        border-radius: 58% 42% 46% 54% / 52% 62% 38% 48%;
        transform: translate3d(-18px, 14px, 0) rotate(4deg) scale(1.035);
    }

    100% {
        border-radius: 42% 58% 55% 45% / 60% 43% 57% 40%;
        transform: translate3d(10px, 24px, 0) rotate(-3deg) scale(0.98);
    }
}

@keyframes mvCoralShapeMove {
    0% {
        border-radius: 58% 42% 48% 52% / 52% 58% 42% 48%;
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        border-radius: 44% 56% 60% 40% / 60% 43% 57% 40%;
        transform: translate3d(22px, -15px, 0) rotate(-4deg) scale(1.04);
    }

    100% {
        border-radius: 62% 38% 42% 58% / 43% 56% 44% 57%;
        transform: translate3d(-14px, -25px, 0) rotate(3deg) scale(0.97);
    }
}

/* Slider navigation */

.mv-hero__navigation {
    position: absolute;
    right: 32px;
    bottom: 27px;
    left: 32px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 64px), var(--container-width));
    margin-inline: auto;
}

.mv-hero__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-hero__dot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(48, 64, 60, 0.55);
    font-family: var(--font-body);
    cursor: pointer;
}

.mv-hero__dot-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mv-hero__dot-line {
    position: relative;
    display: block;
    width: 25px;
    height: 2px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(48, 64, 60, 0.2);
    transition: width var(--transition);
}

.mv-hero__dot-line::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--verro-coral-dark);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms ease;
}

.mv-hero__dot:hover,
.mv-hero__dot.is-active {
    color: var(--deep-charcoal);
}

.mv-hero__dot.is-active .mv-hero__dot-line {
    width: 50px;
}

.mv-hero__dot.is-active .mv-hero__dot-line::after {
    transform: scaleX(1);
}

.mv-hero__arrows {
    display: flex;
    gap: 9px;
}

.mv-hero__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(232, 225, 217, 0.95);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--deep-charcoal);
    box-shadow: 0 9px 25px rgba(48, 64, 60, 0.1);
    cursor: pointer;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.mv-hero__arrow:hover {
    border-color: var(--verro-coral-dark);
    background: var(--verro-coral-dark);
    color: var(--petal-white);
    transform: translateY(-2px);
}

/* Autoplay progress */

.mv-hero__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    height: 3px;
    overflow: hidden;
    background: rgba(48, 64, 60, 0.09);
}

.mv-hero__progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--verro-coral-dark);
    transform: scaleX(0);
    transform-origin: left;
}

.mv-hero.is-playing .mv-hero__progress-bar {
    animation: mvHeroProgress 4000ms linear forwards;
}

@keyframes mvHeroProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Tablet */

@media (max-width: 1050px) {
    .mv-hero {
        min-height: 710px;
    }

    .mv-hero__container {
        width: min(calc(100% - 40px), var(--container-width));
    }

    .mv-hero__content {
        width: 59%;
    }

    .mv-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 249, 244, 0.98) 0%,
                rgba(255, 249, 244, 0.93) 45%,
                rgba(255, 249, 244, 0.34) 78%,
                rgba(255, 249, 244, 0.12) 100%
            ),
            linear-gradient(0deg, rgba(48, 64, 60, 0.12), transparent 40%);
    }

    .mv-hero__title {
        font-size: clamp(3.3rem, 6vw, 4.5rem);
    }

    .mv-hero__feature-card {
        right: 20px;
    }

    .mv-hero__navigation {
        right: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}

/* Mobile */

@media (max-width: 767px) {
    .mv-hero {
        min-height: 760px;
    }

    .mv-hero__slide {
        align-items: flex-end;
        background-position: 68% top;
    }

    .mv-hero__slide--one,
    .mv-hero__slide--two,
    .mv-hero__slide--three {
        background-position: 67% top;
    }

    .mv-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(255, 249, 244, 1) 0%,
                rgba(255, 249, 244, 0.99) 52%,
                rgba(255, 249, 244, 0.7) 72%,
                rgba(255, 249, 244, 0.1) 100%
            );
    }

    .mv-hero__container {
        align-items: flex-end;
        width: calc(100% - 34px);
        padding: 245px 0 115px;
    }

    .mv-hero__content {
        width: 100%;
    }

    .mv-hero__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 0.66rem;
        letter-spacing: 0.11em;
    }

    .mv-hero__title {
        font-size: clamp(2.65rem, 12.5vw, 3.75rem);
        line-height: 1.01;
    }

    .mv-hero__title span {
        margin-top: 3px;
    }

    .mv-hero__description {
        margin-top: 17px;
        font-size: 0.94rem;
        line-height: 1.66;
    }

    .mv-hero__actions {
        gap: 16px 22px;
        margin-top: 23px;
    }

    .mv-hero__actions .button {
        min-height: 54px;
        padding: 13px 20px;
    }

    .mv-hero__feature-card {
        display: none;
    }

    .mv-hero__shape--sage {
        top: -75px;
        right: -95px;
        width: 245px;
        height: 220px;
        opacity: 0.7;
    }

    .mv-hero__shape--coral {
        display: none;
    }

    .mv-hero__navigation {
        right: 17px;
        bottom: 18px;
        left: 17px;
        width: calc(100% - 34px);
    }

    .mv-hero__dot-number {
        display: none;
    }

    .mv-hero__dot-line {
        width: 20px;
    }

    .mv-hero__dot.is-active .mv-hero__dot-line {
        width: 38px;
    }

    .mv-hero__arrow {
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 420px) {
    .mv-hero {
        min-height: 790px;
    }

    .mv-hero__container {
        padding-top: 220px;
    }

    .mv-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .mv-hero__actions .button {
        width: 100%;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .mv-hero__slide {
        transform: none;
    }

    .mv-hero__eyebrow,
    .mv-hero__title,
    .mv-hero__description,
    .mv-hero__actions,
    .mv-hero__feature-card {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .mv-hero__shape,
    .mv-hero__progress-bar {
        animation: none !important;
    }
}