.home {
    --home-black: #101010;
    --home-text: #111111;
    --home-muted: #707070;
    --home-border: #dedede;
    --home-soft: #f5f5f3;
    --home-white: #ffffff;

    width: 100%;
    background: var(--home-white);
    color: var(--home-text);
}

.home *,
.home *::before,
.home *::after {
    box-sizing: border-box;
}

.home img {
    display: block;
    max-width: 100%;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border: 1px solid #111111;
    border-radius: 0;
    background: #111111;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.home-button:hover {
    background: #ffffff;
    color: #111111 !important;
}

.home-button--light {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111 !important;
}

.home-button--light:hover {
    background: transparent;
    color: #ffffff !important;
}

.home-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-section-title {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    padding: 30px;
    background: linear-gradient(135deg, #e8e8e6 0%, #f7f7f5 100%);
    color: #929292;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #111111;
}

.home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.54) 0%,
            rgba(0, 0, 0, 0.24) 46%,
            rgba(0, 0, 0, 0.04) 75%
        );
}

.home-hero__image {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    object-position: center;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: 650px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.home-hero__content {
    width: min(100%, 620px);
    color: #ffffff;
}

.home-hero__title {
    max-width: 600px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6.2vw, 84px);
    font-weight: 500;
    line-height: 0.93;
    letter-spacing: -0.05em;
}

.home-hero__description {
    max-width: 520px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.55;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.home-trust {
    border-bottom: 1px solid var(--home-border);
    background: #ffffff;
}

.home-trust__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-trust__item {
    position: relative;
    padding: 21px 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
}

.home-trust__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30%;
    right: 0;
    width: 1px;
    height: 40%;
    background: var(--home-border);
}

.home-products {
    padding: 95px 0 110px;
    background: #ffffff;
}

.home-products__heading {
    margin-bottom: 42px;
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-product {
    position: relative;
    min-width: 0;
}

.home-product__media {
    position: relative;
    width: 100%;
    aspect-ratio: 0.86 / 1;
    overflow: hidden;
    background: #f1f1ef;
}

.home-product__image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-product:hover .home-product__image {
    transform: scale(1.025);
}

.home-product__badge {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    background: #111111;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-product__content {
    padding: 18px 2px 0;
}

.home-product__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.home-product__title a {
    color: inherit !important;
    text-decoration: none !important;
}

.home-product__price {
    margin-top: 6px;
    color: #696969;
    font-size: 14px;
    line-height: 1.4;
}

.home-product__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: 3px;
    border-bottom: 1px solid #111111;
    color: #111111 !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.home-how {
    padding: 90px 0 0;
    background: #111111;
    color: #ffffff;
}

.home-how__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 45px;
}

.home-how__header > div {
    flex: 1 1 auto;
}

.home-how__title {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-how__description {
    flex: 0 0 min(100%, 400px);
    width: min(100%, 400px);
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.home-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    overflow: hidden;
    background: #242424;
}

.home-video video,
.home-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.home-video__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.home-video__label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-features {
    padding: 80px 0 105px;
    background: #111111;
    color: #ffffff;
}

.home-features__title {
    max-width: 750px;
    margin: 0 0 55px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.045em;
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.home-feature {
    padding: 37px 35px 10px 0;
}

.home-feature:not(:last-child) {
    margin-right: 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.home-feature__number {
    display: block;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.home-feature__title {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}

.home-feature__text {
    max-width: 340px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.65;
}

.home-difference {
    padding: 110px 0;
    background: #ffffff;
}

.home-difference__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.home-difference__intro {
    max-width: 440px;
    margin: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.6;
}

.home-difference__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-difference__card {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: #efefed;
}

.home-difference__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-difference__placeholder {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.home-difference__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 80px 35px 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
    color: #ffffff;
}

.home-difference__title {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.home-difference__text {
    max-width: 430px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
}

.home-reviews {
    padding: 105px 0 115px;
    background: #f2f2ef;
}

.home-reviews__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.home-reviews__score {
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

.home-reviews__score strong {
    font-size: 17px;
}

.home-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.home-review {
    display: flex;
    flex-direction: column;
    min-height: 370px;
    padding: 28px;
    background: #ffffff;
}

.home-review__stars {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.home-review__text {
    flex: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.home-review__bottom {
    padding-top: 30px;
}

.home-review__name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.home-review__verified {
    display: block;
    margin-top: 6px;
    color: #777777;
    font-size: 11px;
    line-height: 1.4;
}

.home-faq {
    padding: 110px 0;
    background: #ffffff;
}

.home-faq__grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 0.7fr)
        minmax(0, 1.3fr);
    gap: 90px;
}

.home-faq__sidebar {
    position: sticky;
    top: 130px;
    align-self: start;
}

.home-faq__eyebrow {
    margin: 0 0 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-faq__title {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.home-faq__description {
    margin: 22px 0 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
}

.home-faq__contact {
    display: inline-block;
    margin-top: 27px;
    padding-bottom: 3px;
    border-bottom: 1px solid #111111;
    color: #111111 !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.home-faq__list {
    border-top: 1px solid #111111;
}

.home-faq-item {
    border-bottom: 1px solid #cfcfcb;
}

.home-faq-item summary {
    position: relative;
    padding: 27px 48px 27px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}

.home-faq-item[open] summary::after {
    content: "−";
}

.home-faq-item__answer {
    max-width: 720px;
    padding: 0 45px 28px 0;
    color: #6e6e6e;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 900px) {

    .home-hero,
    .home-hero__inner,
    .home-hero__image {
        min-height: 590px;
    }

    .home-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-products__grid .home-product:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 6px);
    }

    .home-how__header,
    .home-difference__heading,
    .home-reviews__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-how__description {
        flex: none;
    }

    .home-features__grid {
        grid-template-columns: 1fr;
    }

    .home-feature {
        padding: 30px 0;
    }

    .home-feature:not(:last-child) {
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .home-feature__number {
        margin-bottom: 20px;
    }

    .home-difference__card {
        min-height: 520px;
    }

    .home-reviews__grid {
        grid-template-columns: 1fr;
    }

    .home-review {
        min-height: 300px;
    }

    .home-faq__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-faq__sidebar {
        position: static;
    }
}

@media (max-width: 640px) {

    .home-hero {
        min-height: 610px;
    }

    .home-hero__inner {
        min-height: 610px;
        padding-top: 40px;
        padding-bottom: 42px;
    }

    .home-hero__image {
        min-height: 610px;
        object-position: 62% center;
    }

    .home-hero__media::after {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.26) 60%,
                rgba(0, 0, 0, 0.08) 100%
            );
    }

    .home-hero__title {
        font-size: 47px;
    }

    .home-hero__description {
        font-size: 15px;
    }

    .home-hero__actions {
        width: 100%;
    }

    .home-hero__actions .home-button {
        width: 100%;
    }

    .home-trust__inner {
        grid-template-columns: 1fr;
        padding: 7px 0;
    }

    .home-trust__item {
        padding: 7px 5px;
        font-size: 10px;
    }

    .home-trust__item:not(:last-child)::after {
        display: none;
    }

    .home-products {
        padding: 70px 0 80px;
    }

    .home-products__heading {
        margin-bottom: 28px;
    }

    .home-section-title {
        font-size: 38px;
    }

    .home-products__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-products__grid .home-product:last-child {
        grid-column: auto;
        width: auto;
    }

    .home-product__media {
        aspect-ratio: 0.92 / 1;
    }

    .home-how {
        padding-top: 65px;
    }

    .home-how__header {
        padding-bottom: 30px;
    }

    .home-how__title,
    .home-features__title {
        font-size: 41px;
    }

    .home-video {
        aspect-ratio: 4 / 5;
    }

    .home-features {
        padding: 60px 0 75px;
    }

    .home-features__title {
        margin-bottom: 36px;
    }

    .home-difference {
        padding: 75px 0;
    }

    .home-difference__grid {
        grid-template-columns: 1fr;
    }

    .home-difference__card {
        min-height: 500px;
    }

    .home-difference__content {
        padding: 65px 22px 25px;
    }

    .home-reviews {
        padding: 75px 0;
    }

    .home-reviews__heading {
        margin-bottom: 35px;
    }

    .home-reviews__score {
        white-space: normal;
    }

    .home-faq {
        padding: 80px 0;
    }

    .home-faq__grid {
        gap: 42px;
    }

    .home-faq-item summary {
        padding: 23px 40px 23px 0;
        font-size: 15px;
    }
}