/* HCD HERO */
.hcd-hero {
    --hcd-green: #00833e;
    --hcd-green-dark: #006b33;
    --hcd-black: #111;
    --hcd-text: #444;
    --hcd-border: #e5e5e5;
    --hcd-soft: #f7f8f7;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    color: var(--hcd-text);
    overflow: hidden;
}

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

.hcd-hero h1,
.hcd-hero h2,
.hcd-hero h3,
.hcd-hero p {
    margin: 0;
    padding: 0;
}

.hcd-hero a {
    text-decoration: none !important;
}

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


/* Layout */
.hcd-hero .hcd-hero__wrap {
    width: min(1440px, calc(100% - 80px));
    min-height: 720px;
    margin: 0 auto;
    padding: 78px 0 72px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.hcd-hero .hcd-hero__content,
.hcd-hero .hcd-hero__visual {
    width: 100%;
    min-width: 0;
}


/* Eyebrow */
.hcd-hero .hcd-hero__eyebrow {
    display: inline-block;
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 17px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    color: #353535;
}

.hcd-hero .hcd-hero__eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 30px;
    background: var(--hcd-green);
}


/* Title */
.hcd-hero .hcd-hero__title {
    max-width: 680px;
    margin: 0 0 25px !important;
    font-size: 38px;
    font-weight: 900 !important;
    line-height: .98 !important;
    letter-spacing: -3px !important;
    text-transform: uppercase;
    color: var(--hcd-black) !important;
}

.hcd-hero .hcd-hero__title span {
    color: var(--hcd-green) !important;
}

.hcd-hero .hcd-hero__description {
    max-width: 680px;
    margin-bottom: 34px !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: var(--hcd-text) !important;
}


/* Buttons */
.hcd-hero .hcd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 52px;
}

.hcd-hero .hcd-hero__btn {
    min-height: 58px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0 !important;
    padding: 0 30px !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: .25s ease;
}

.hcd-hero .hcd-hero__btn::before,
.hcd-hero .hcd-hero__btn::after {
    display: none !important;
}

.hcd-hero .hcd-hero__btn svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.hcd-hero .hcd-hero__btn--primary {
    min-width: 255px;
    border: 1px solid var(--hcd-green) !important;
    background: var(--hcd-green) !important;
    color: #fff !important;
}

.hcd-hero .hcd-hero__btn--primary:hover {
    border-color: var(--hcd-green-dark) !important;
    background: var(--hcd-green-dark) !important;
    transform: translateY(-2px);
}

.hcd-hero .hcd-hero__btn--secondary {
    min-width: 250px;
    border: 1px solid var(--hcd-green) !important;
    background: #fff !important;
    color: var(--hcd-green) !important;
}

.hcd-hero .hcd-hero__btn--secondary:hover {
    background: #eaf7f0 !important;
    color: var(--hcd-green-dark) !important;
}


/* Features */
.hcd-hero .hcd-hero__features {
    max-width: 730px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hcd-hero .hcd-hero__feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.hcd-hero .hcd-hero__feature:first-child {
    padding-left: 0;
}

.hcd-hero .hcd-hero__feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 34px;
    background: #ddd;
    transform: translateY(-50%);
}

.hcd-hero .hcd-hero__feature-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hcd-green);
}

.hcd-hero .hcd-hero__feature-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.hcd-hero .hcd-hero__feature-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #434343;
}


/* Image */
.hcd-hero .hcd-hero__image-frame {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--hcd-soft);
}

.hcd-hero .hcd-hero__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.hcd-hero .hcd-hero__image-label {
    position: absolute;
    z-index: 3;
    left: 32px;
    top: 28px;
    max-width: 190px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--hcd-green);
}


/* Dots */
.hcd-hero .hcd-hero__dots {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 17px;
}

.hcd-hero .hcd-hero__dot {
    width: 10px;
    height: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
}

.hcd-hero .hcd-hero__dot--active {
    border-color: var(--hcd-green);
    background: var(--hcd-green);
}


/* Brands */
.hcd-hero .hcd-hero__brands {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 30px;
    align-items: center;
    padding: 34px max(40px, calc((100% - 1360px) / 2));
    border-top: 1px solid #eee;
    background: #f7f8f7;
}

.hcd-hero .hcd-hero__brands-title {
    padding-right: 28px;
    border-right: 1px solid #ddd;
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #686868;
}

.hcd-hero .hcd-hero__brands-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.hcd-hero .hcd-hero__brand {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #555;
}


/* Tablet */
@media (max-width: 1199px) {
    .hcd-hero .hcd-hero__wrap {
        width: calc(100% - 48px);
        min-height: auto;
        gap: 38px;
        padding: 60px 0;
    }

    .hcd-hero .hcd-hero__title {
        font-size: 38px !important;
    }

    .hcd-hero .hcd-hero__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .hcd-hero .hcd-hero__wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 34px;
        padding: 42px 20px 40px;
    }

    .hcd-hero .hcd-hero__eyebrow {
        margin-bottom: 21px;
        padding-bottom: 12px;
        font-size: 11px;
        letter-spacing: 1.35px;
    }

    .hcd-hero .hcd-hero__title {
        margin-bottom: 19px !important;
        font-size: 38px;
        letter-spacing: -2px !important;
    }

    .hcd-hero .hcd-hero__description {
        margin-bottom: 26px !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .hcd-hero .hcd-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 32px;
    }

    .hcd-hero .hcd-hero__btn {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 54px;
    }

    .hcd-hero .hcd-hero__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .hcd-hero .hcd-hero__feature {
        padding: 0 13px;
    }

    .hcd-hero .hcd-hero__feature:nth-child(odd) {
        padding-left: 0;
    }

    .hcd-hero .hcd-hero__feature:nth-child(2)::after {
        display: none;
    }

    .hcd-hero .hcd-hero__image-frame {
        aspect-ratio: 1 / .9;
    }

    .hcd-hero .hcd-hero__image-label {
        left: 18px;
        top: 18px;
        max-width: 130px;
        font-size: 14px;
    }

    .hcd-hero .hcd-hero__brands {
        display: block;
        padding: 27px 20px 32px;
    }

    .hcd-hero .hcd-hero__brands-title {
        margin-bottom: 19px;
        padding: 0;
        border: 0;
        font-size: 11px;
    }

    .hcd-hero .hcd-hero__brands-list {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hcd-hero .hcd-hero__brand {
        width: 130px;
        min-width: 130px;
        min-height: 62px;
    }
}


/* Mobile 390px */
@media (max-width: 420px) {
    .hcd-hero .hcd-hero__wrap,
    .hcd-hero .hcd-hero__brands {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hcd-hero .hcd-hero__title {
        font-size: 38px !important;
    }
}