* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #222;
    background: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER ===== */

.header {
     padding: 24px 0;
    background: transparent;
    border-bottom: none;
}

.header .container {
     max-width: 1760px;
    margin: 0 auto;
    padding: 0 24px;
    display: block;
}

.header__inner {
  display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 24px;
    padding: 24px 40px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.header__right {
        display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 64px;
    width: auto;
}

.menu {
    display: flex;
    gap: 28px;
    flex-wrap: nowrap;
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
}

.menu a:hover {
    color: #2f6b2f;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.header__search {
    width: 170px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
}

.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.header__btn--green {
    background: #59cf2f;
}

.header__btn--blue {
    background: #3b82f6;
}

/* ===== MAIN ===== */

.main {
   min-height: 906px;
    max-width: 1760px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    background: transparent;
}

/* ===== HERO ===== */

.hero {
      background:
        linear-gradient(
            90deg,
            rgba(63,111,68,0.84) 0%,
            rgba(63,111,68,0.72) 34%,
            rgba(63,111,68,0.46) 62%,
            rgba(63,111,68,0.24) 100%
        ),
        url("./images/hero.jpg") center/cover no-repeat;

    border-radius: 32px;
    color: #fff;

    padding: 56px 64px 34px;

    min-height: 720px;
    overflow: hidden;
}

.hero__content {
    width: 100%;
    max-width: none;
}

.hero__title {
        margin: 0 0 24px;

    max-width: 1408px;

    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 700;

    line-height: 1.1;

    letter-spacing: 0;

    color: #ffffff;
}

.hero__title span {
    color: #3ECE1B;
}

.hero__text {
     margin: 0 0 40px;

    max-width: 1408px;

    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;

    line-height: 1.4;

    color: rgba(255,255,255,0.9);
}

/* ===== HERO CARDS ===== */

.hero__cards-scroll {
     width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;

    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
}

.hero__cards-scroll::-webkit-scrollbar {
    display: none;
}

.hero__cards-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    min-width: 100%;
}

.hero__cards-track > .hero-card {
    display: block !important;
    flex: 0 0 360px !important;
    width: 360px !important;
    min-width: 360px !important;
    max-width: 360px !important;
    min-height: 180px;
    margin: 0 !important;
    padding: 24px 24px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    color: #222;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

.hero__cards-track > .hero-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.hero__cards-track > .hero-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    grid-template-rows: repeat(3, minmax(44px, auto));
    row-gap: 14px;
}

.hero__cards-track > .hero-card li {
    margin: 0px;
    font-size: 15px;
    line-height: 1.45;
}

/* ===== DOTS ===== */

.hero__dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-left: 8px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.hero__dot--active {
    width: 34px;
    border-radius: 999px;
    background: #fff;
}

/* ===== HERO BOTTOM ===== */

.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
}

.hero__button {
    display: inline-block;
    min-width: 340px;
    padding: 16px 28px;
    border-radius: 14px;
    background: #63d632;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.hero__contacts {
       display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: #0862AC;
    font-size: 16px;
    font-weight: 500;
}
/* ===== WHY ===== */

.why-shell {
   width: 100%;
    margin-top: 48px;
    margin-bottom: 56px;
    padding: 0;
}
.why {
    background: #fff;
    border-radius: 32px;
    padding: 48px 40px 56px
}

.why__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.why__left {
    flex: 1 1 720px;
    max-width: 760px;
}

.why__eyebrow {
    margin: 0 0 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #0862AC;
}

.why__title {
    margin: 0 0 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
    color: #000;
    max-width: 760px;
}

.why__text {
    margin: 0;
    max-width: 760px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    color: #222;
}

.why__right {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex: 0 0 auto;
}

.why-card {
    width: 248px;
    min-height: 156px;
    padding: 24px 22px;
    border-radius: 24px;
    background: #66A8F0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-card__icon {
    margin-bottom: 18px;
    color: #fff;
    line-height: 0;
}

.why-card__icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.why-card__title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}
/* ===== FOOTER ===== */

.footer {
    margin-top: 40px;
    padding: 20px 0;
    background: #1f4d1f;
    color: #fff;
}

/* ===== ADAPTIVE ===== */

@media (max-width: 1200px) {
    .header__inner {
        flex-wrap: wrap;
    }

    .menu {
        order: 3;
        width: 100%;
    }

    .hero__title {
        font-size: 56px;
        line-height: 1.15;
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__button {
        min-width: 240px;
    }

    .hero__cards-track > .hero-card {
        flex: 0 0 320px !important;
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
    }
    .why__inner {
    flex-direction: column;
}

.why__right {
    flex-wrap: wrap;
    padding-top: 0;
}
}

@media (max-width: 768px) {
    .main {
        padding: 20px 14px 30px;
    }

    .hero {
        padding: 32px 20px 24px;
        min-height: auto;
    }

    .hero__title {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero__text {
        max-width: 100%;
        font-size: 16px;
    }

    .hero__cards-track > .hero-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        min-height: 160px;
    }

    .header__actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .header__search {
        width: 100%;
    }
    .why {
    padding: 0 14px 40px;
    .why-shell {
    padding: 0 14px;
    margin-bottom: 40px;
}

.why {
    padding: 32px 20px 36px;
}
}

.why__title {
    font-size: 30px;
}

.why__right {
    gap: 14px;
}

.why-card {
    width: 100%;
    min-height: auto;
}
}