:root {
    --main-w: calc(100% - 200px);
    --max-w: 1200px;
}

@font-face {
    font-family: 'Onest-regular';
    src: url('/fonts/Onest/Onest-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest-Bold';
    src: url('/fonts/Onest/Onest-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest-sb';
    src: url('/fonts/Onest/Onest-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
}

:target {
    scroll-margin-top: 0px;
}

#about {
    scroll-margin-top: 70px;
}

body {
    font-family: 'Onest-regular';
    background-color: #ffffff;
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
}

.header {
    background-color: #ffffff;
}

.header-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.logo-img {
    width: 78px;
    height: 120px;
    padding-top: 30px;
}

.navigation {
    display: flex;
    gap: 65px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    height: 19px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: rgba(0, 0, 0, 0.8);
}

.cta-button {
    background-color: rgba(141, 198, 63, 1);
    color: rgba(0, 61, 14, 1);
    border: none;
    padding: 16px 24px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'Onest-regular';
    font-weight: 600;
    text-decoration: none;
}

.cta-button:hover {
    background-color: rgba(141, 198, 63, 0.8);
    text-decoration: none;
}

.main {
    margin-top: 42px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -80vw;
    width: 80vw;
    height: 100vh;
    background-color: rgba(27, 80, 38, 1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 44px;
    padding-right: 30px;
    margin-bottom: 92px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding-top: 0px;
}

.mobile-logo .logo-img {
    width: 78px;
    height: auto;
    padding-top: 0;
}

.mobile-menu-close img {
    width: 22px;
    height: 22px;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 100px;
    padding-left: 44px;
}

.mobile-navigation .nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-family: 'Onest-regular';
}

.mobile-navigation .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-cta-button {
    background-color: rgba(141, 198, 63, 1);
    color: rgba(0, 61, 14, 1);
    border: none;
    border-radius: 32px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 44px;
    margin-right: 44px;
    transition: all 0.3s ease;
    font-family: 'Onest-regular';
    width: fit-content;
    text-decoration: none;
}

.mobile-cta-button:hover {
    background-color: rgba(158, 199, 89, 1);
    text-decoration: none;
}


.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    width: 100%;
    margin-bottom: 60px;
}

.hero-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 715px 500px;
    gap: 0px;
    align-items: start;
    min-height: 450px;
}

.hero-left {
    width: 723px;
    height: 450px;
    background-image: url('../assets/icons/1block.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    padding: 80px 0px 0px 80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: rgba(0, 61, 14, 1);
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Onest-sb';
    font-weight: 400;
}

.hero-title br {
    display: none;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(0, 61, 14, 1);
    margin-bottom: 100px;
    line-height: 1.4;
    font-weight: 500;
}

.hero-button {
    background-color: #ffffff;
    color: rgba(29, 29, 29, 1);
    border: none;
    padding: 14px 35px;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Onest-regular';
    font-weight: 600;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #f8f8f8;
    text-decoration: none;
}

.hero-button-mobile {
    display: none;
    background-color: rgba(141, 198, 63, 1);
    color: rgba(0, 61, 14, 1);
    border: none;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    font-family: 'Onest-regular';
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.hero-button-mobile:hover {
    background-color: rgba(141, 198, 63, 0.8);
    text-decoration: none;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    width: 500px;
    flex-shrink: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    max-width: 500px;
    max-height: 450px;
}

.why-us {
    margin-top: 100px;
    margin-bottom: 150px;
}

.why-us-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0;
}

.why-us-title {
    font-size: 48px;
    font-weight: 600;
    color: rgba(29, 29, 29, 1);
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Onest-sb';
    font-weight: 400;
    padding: 0 100px;
    margin-top: 72px;
}

.cards-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 20px 0px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    justify-content: left;
    scroll-behavior: smooth;
    /* extend to the right edge of viewport while left edge stays aligned */
    margin-right: calc(50% - 50vw);
    padding-right: max(0px, calc(50vw - 50%));
    align-items: center;
}


@media (min-width: 641px) {
    .cards-wrapper {
        width: calc(100% + (50vw - 50%));
        transform: none;
        padding-left: 0;
        margin-right: calc(50% - 50vw);
    }
}

.cards-wrapper::-webkit-scrollbar {
    display: none;
}

.cards-wrapper.active {
    cursor: grabbing;
}

.cards-wrapper.active .card {
    pointer-events: none;
}

@media (min-width: 1300px) and (max-width: 1800px) {
    .cards-wrapper {
        justify-content: flex-start;
    }
}

.card {
    flex: 0 0 397px;
    height: 358px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.card-1 {
    background-image: url('../assets/icons/3block.svg');
}

.card-2 {
    background-image: url('../assets/icons/4block.svg');
}

.card-3 {
    background-image: url('../assets/icons/5block.svg');
}

.card-4 {
    background-image: url('../assets/icons/6block.svg');
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    padding: 0px 0px 0px 40px;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 72px;
    line-height: 1;
    font-family: 'Onest-regular';
}

.card-subtitle {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
    font-family: 'Onest-regular';
    font-weight: 500;
}

.card-lower-title {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
    font-family: 'Onest-regular';
    font-weight: 400;
}

.card-1 .card-title {
    margin-top: 22px;
    margin-bottom: 155px;
}

.card-2 .card-title {
    margin-top: 22px;
    margin-bottom: 156px;
}

.card-3 .card-title {
    margin-top: 22px;
    margin-bottom: 12px;
}

.card-3 .card-subtitle {
    margin-bottom: 108px;
}

.card-4 .card-title {
    margin-top: 22px;
    margin-bottom: 12px;
}

.card-1 .card-title,
.card-1 .card-subtitle,
.card-1 .card-lower-title {
    color: #ffffff;
}

.card-2 .card-title,
.card-2 .card-subtitle,
.card-2 .card-lower-title,
.card-3 .card-title,
.card-3 .card-subtitle,
.card-3 .card-lower-title,
.card-4 .card-title,
.card-4 .card-subtitle,
.card-4 .card-lower-title {
    color: rgba(0, 61, 14, 1)
}

.catalog {
    background-image: url('../assets/icons/back.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

.catalog-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.catalog-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Onest-regular';
}

.catalog-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    width: var(--main-w);
    max-width: var(--max-w);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.tab-button {
    background-color: #ffffff;
    color: rgba(0, 61, 14, 1);
    border: none;
    padding: 10px 0px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Onest-regular';
    width: 280px;
}

.tab-button:hover {
    background-color: #f0f0f0;
}

.tab-button.active {
    background-color: rgba(141, 198, 63, 1);
    color: #ffffff;
}

.catalog-subtitle {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Onest-regular';
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    width: 100%;
    max-width: 100%;
}

.product-card {
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 100%;
    object-fit: cover;
}

.product-image-full {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-full img {
    max-width: 100%;
    width: 100%;
    background: red;
}

.product-content {
    color: #ffffff;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Onest-regular';
}

.product-dimensions {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Onest-regular';
}

.learn-more {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.learn-more-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
}

.learn-more-title {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Onest-regular';
}

.learn-more-cards {
    display: flex;
    gap: 18px;
}

.learn-more-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.left-card {
    width: 50%;
    height: 500px;
    background-image: url('../assets/icons/left_block.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 40px 0 0 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: rgba(29, 29, 29, 1);
    margin-bottom: 16px;
    font-family: 'Onest-sb';
    margin-top: 0px;
}

.card-subtitle {
    font-size: 16px;
    color: rgba(29, 29, 29, 1);
    margin-bottom: 40px;
    line-height: 1;
    font-family: 'Onest-regular';
    font-weight: 500;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 60px;
}

.card-button {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(29, 29, 29, 1);
    padding: 12px 20px;
    border-radius: 32px;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Onest-regular';
    display: inline-block;
    width: fit-content;
}

.button-first {
    transform: rotate(-8.36deg);
}

.button-second {
    transform: rotate(11deg);
    margin-top: 40px;
    margin-left: 130px;
}

.right-card {
    width: 50%;
    height: 500px;
    position: relative;
}

.right-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.right-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-text {
    position: absolute;
    font-family: 'Onest-regular';
    pointer-events: none;
}

.overlay-text.top-left {
    top: 40px;
    left: 32px;
}

.overlay-text.bottom-right {
    bottom: 32px;
    right: 20px;
}

.overlay-title {
    font-family: 'Onest-sb';
    font-weight: 600;
    color: rgba(0, 61, 14, 1);
    font-size: 24px;
    margin-bottom: 16px;
}

.overlay-subtitle {
    font-weight: 500;
    color: rgba(0, 61, 14, 1);
    font-size: 16px;
    line-height: 1;
}

.overlay-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.overlay-arrow:hover {
    text-decoration: none;
}

.overlay-arrow img {
    width: 117px;
    height: 54px;
}

.overlay-arrow.bottom-arrow {
    left: 100px;
    bottom: 24px;
}

.overlay-arrow.top-arrow {
    top: 24px;
    right: 20px;
}

.contact {
    background-color: rgba(168, 209, 99, 1);
    padding: 50px 0;
    width: 100%;
}

.contact-container {
    width: var(--main-w);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-logo {
    width: 78px;
    height: 94px;
    flex-shrink: 0;
}

.logo-divider {
    width: 1px;
    height: 78px;
    background-color: rgba(0, 0, 0, 1);
    flex-shrink: 0;
}

.tagline {
    font-size: 20px;
    color: rgba(0, 61, 14, 1);
    line-height: 1.2;
    font-family: 'Onest-regular';
    flex: 1;
}

.contacts-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    font-family: 'Onest-regular';
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.contact-text {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Onest-regular';
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.privacy-link {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    line-height: 24px;
    text-decoration: none;
    font-family: 'Onest-regular';
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: rgba(0, 61, 14, 1);
}

.copyright {
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    line-height: 24px;
    font-family: 'Onest-regular';
}

.contact-form-wrapper {
    flex: 0 0 580px;
    height: 455px;
    background-image: url('../assets/icons/messegeback.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact-form {
    padding: 32px;
    width: 100%;
    max-width: 500px;
}

.form-title {
    font-size: 30px;
    font-weight: 700;
    color: rgba(0, 61, 14, 1);
    margin-bottom: 20px;
    font-family: 'Onest-sb';
}

.form-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: rgba(0, 61, 14, 1);
    margin-bottom: 10px;
    font-family: 'Onest-regular';
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(0, 61, 14, 1);
    background-color: transparent;
    font-size: 16px;
    color: rgba(0, 61, 14, 1);
    font-family: 'Onest-regular';
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(0, 61, 14, 1);
}

.form-textarea {
    padding: 16px;
    margin-top: 12px;
    border: 1px solid rgba(0, 61, 14, 1);
    border-radius: 10px;
    background-color: transparent;
    font-size: 16px;
    color: rgba(0, 61, 14, 1);
    font-family: 'Onest-regular';
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.form-textarea::placeholder {
    color: rgba(29, 29, 29, 0.5);
}

.form-button {
    background-color: rgba(141, 198, 63, 1);
    color: rgba(255, 255, 255, 1);
    padding: 14px 24px;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Onest-regular';
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-button:hover {
    background-color: rgba(141, 198, 63, 0.8);
}

@media (max-width: 768px) {
    .learn-more-cards {
        flex-direction: column;
        gap: 20px;
    }

    .left-card,
    .right-card {
        width: 100%;
    }

    .left-card {
        height: 400px;
    }

    .right-card {
        height: 300px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-wrapper {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 455px;
    }

    .contact-form {
        max-width: none;
    }
}


@media (max-width: 640px) {

    .mobile-menu-toggle {
        display: block;
    }

    .navigation,
    .cta-button {
        display: none;
    }

    .header-container {
        width: calc(100% - 40px);
        justify-content: space-between;
        flex-direction: row;
        align-items: flex-start;
        padding-top: 20px;
    }

    .logo .logo-img {
        width: 44px;
        height: auto;
        padding-top: 0;
    }

    .mobile-menu-toggle img {
        width: 28px;
        height: 8px;
    }


    .hero-container {
        width: calc(100% - 20px);
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .hero-left {
        width: 100%;
        height: 245px;
        order: 1;
        background-image: url('../assets/icons/1block.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;

    }

    .hero-content {
        position: absolute;
        top: 46%;
        left: 50%;
        text-align: left;
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1;
        margin-bottom: 15px;
        color: rgba(0, 61, 14, 1);
        font-weight: 600;
    }

    .hero-title br {
        display: block;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 0;
        color: rgba(0, 61, 14, 1);
        font-weight: 500;
    }

    .hero-button {
        display: none;
    }

    .hero-right {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-top: -70px;
    }

    .hero-image {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        position: relative;
    }

    .hero-button-mobile {
        position: absolute;
        top: 92px;
        left: 16px;
        z-index: 10;
        display: block;
        margin: 0;
        background-color: rgba(141, 198, 63, 1);
        color: rgba(29, 29, 29, 1);
        border: none;
        padding: 4px 16px;
        border-radius: 32px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        font-family: 'Onest-regular';
        transition: background-color 0.3s ease;
        text-decoration: none;
    }

    .hero-right .hero-button-mobile:hover {
        background-color: rgba(141, 198, 63, 0.8);
        text-decoration: none;
    }


    .catalog {
        padding: 50px 0;
        background-image: url('../assets/icons/back.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 100vh;
        position: relative;
    }

    .catalog-container {
        width: calc(100% - 20px);
        padding: 0 20px;
        margin: 0 auto;
        max-width: none;
        position: relative;
        z-index: 2;
    }

    .catalog-title {
        font-size: 28px;
        margin-bottom: 30px;
        color: #ffffff;
        text-align: center;
        font-weight: 600;
        font-family: 'Onest-regular';
    }

    .catalog-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
        max-width: none;
        justify-content: center;
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 20px 0;
    }

    .tab-button {
        background-color: #ffffff;
        color: rgba(0, 61, 14, 1);
        border: none;
        padding: 6px 0px;
        border-radius: 32px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Onest-regular';
        width: 100%;
        max-width: none;
        text-align: center;
        box-sizing: border-box;
    }

    .tab-button:hover {
        background-color: #f0f0f0;
    }

    .tab-button.active {
        background-color: rgba(141, 198, 63, 1);
        color: #ffffff;
    }

    .catalog-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
        font-weight: 500;
        color: #ffffff;
        text-align: center;
        font-family: 'Onest-regular';
    }

    .catalog-container .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .product-card {
        width: 100%;
        max-width: none;
        background-color: transparent;
        overflow: hidden;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .product-image,
    .product-image-full {
        width: 100%;
        height: 209px;
        object-fit: contain;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .product-content {
        padding: 12px 0;
        color: #ffffff;
    }

    .product-title {
        font-size: 14px;
        line-height: 1.3;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
        font-family: 'Onest-regular';
    }

    .why-us {
        margin-top: -40px;
        margin-bottom: 40px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .why-us-container {
        width: 100%;
        padding: 0;
    }

    .why-us-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding: 0 20px;
        text-align: center;
    }

    .cards-wrapper {
        gap: 8px;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .card {
        flex: 0 0 309px;
        height: 223px;
    }

    .card-content {
        padding: 30px 30px;
    }

    .card-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .card-subtitle {
        font-size: 16px;
    }

    .card-lower-title {
        font-size: 16px;
        padding-left: 10px;
    }

    .card-1 .card-title {
        margin-top: 40px;
        margin-bottom: 80px;
        padding-left: 10px;
    }

    .card-2 .card-title {
        margin-top: 40px;
        margin-bottom: 60px;
        padding-left: 10px;
    }

    .card-3 .card-title {
        margin-top: 40px;
        margin-bottom: 4px;
        padding-left: 10px;
    }

    .card-3 .card-subtitle {
        margin-bottom: 30px;
        padding-left: 10px;
    }

    .card-4 .card-title {
        margin-top: 40px;
        margin-bottom: 60px;
        padding-left: 10px;
    }

    .card-4 .card-subtitle {
        padding-left: 10px;
    }

    .card-1 .card-title br {
        display: none;
    }

    .card-1 {
        background-image: url('../assets/icons/1mobile.svg');
    }

    .card-2 {
        background-image: url('../assets/icons/2mobile.svg');
        border-radius: 24px;
    }

    .card-3 {
        background-image: url('../assets/icons/3mobile.svg');
    }

    .card-4 {
        background-image: url('../assets/icons/4mobile.svg');
    }


    .learn-more {
        padding: 50px 0;
    }

    .learn-more-container {
        width: calc(100% - 40px);
        max-width: none;
        margin: 0 auto;
    }

    .learn-more-title {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: center;
    }

    .learn-more-cards {
        flex-direction: column;
        gap: 20px;
    }

    .left-card {
        width: 100%;
        height: 235px;
        order: 1;
    }

    .right-card {
        width: 100%;
        height: 290px;
        order: 2;
    }

    .card-content {
        padding: 5px 16px 0 16px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .card-buttons {
        gap: 8px;
        margin-bottom: 30px;
    }

    .card-button {
        font-size: 16px;
        padding: 4px 8px;
    }

    .button-first {

        transform: rotate(-7deg);
        margin-bottom: 10px;
    }

    .button-second {
        transform: rotate(4deg);
        margin-top: 0;
        margin-left: 65px;
    }

    .overlay-text.top-left {
        top: 20px;
        left: 20px;
    }

    .overlay-text.bottom-right {
        bottom: 20px;
        right: 0px;
    }

    .overlay-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .overlay-subtitle {
        font-size: 12px;
        line-height: 1.2;
    }

    .overlay-arrow.bottom-arrow {
        left: 40px;
        bottom: 20px;
    }

    .overlay-arrow.top-arrow {
        top: 20px;
        right: 10px;
    }

    .overlay-arrow img {
        width: 60px;
        height: 28px;
    }


    .contact {
        padding: 50px 0;
    }

    .contact-container {
        width: calc(100% - 40px);
        max-width: none;
        margin: 0 auto;
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper {
        flex: none;
        width: 355px;
        height: 355px;
        order: 1;
        background-image: url('../assets/icons/mobileForm.svg');
        background-size: 355px 355px;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 auto;
        padding-top: 45px;
    }

    .contact-form {
        padding: 0px;
        max-width: none;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 10px;
        text-align: left;
        font-weight: 500;
    }

    .form {
        gap: 15px;

    }

    .form-input {
        padding: 8px 0;
        font-size: 16px;
    }

    .form-textarea {
        padding: 14px;
        font-size: 16px;
        min-height: 90px;
    }

    .form-button {
        padding: 12px 20px;
        font-size: 14px;
        align-self: left;
    }

    .contact-info {
        flex: none;
        width: 100%;
        gap: 30px;
        order: 2;
        margin-top: -30px;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .logo-divider {
        display: none;
    }

    .tagline {
        font-size: 16px;
        line-height: 1;
        color: rgba(0, 0, 0, 1);
        font-weight: 500;
    }

    .contacts-section {
        gap: 15px;
    }

    .contacts-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }

    .contact-text {
        font-size: 16px;
    }

    .legal-info {
        gap: 10px;
        margin-top: 20px;
    }

    .privacy-link {
        font-size: 16px;
        line-height: 1.4;
    }

    .copyright {
        font-size: 16px;
        line-height: 1.4;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 16px;
    width: 492px;
    height: 287px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
}

.close img {
    width: 24px;
    height: 24px;
    display: block;
}



.modal-icon {
    margin-bottom: 12px;
}

.modal-icon img {
    width: 90px;
    height: 90px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: rgba(29, 29, 29, 1);
    margin: 0 0 0px 0;
    font-family: 'Onest-regular';
}

.modal-text {
    font-size: 16px;
    color: rgba(29, 29, 29, 1);
    font-weight: 500;
    margin: 0;
    font-family: 'Onest-regular';
    line-height: 1.3;
}


@media (max-width: 640px) {
    .modal-content {
        width: 335px;
        height: 196px;
        margin: 50% auto;
        transform: translateY(-50%);
        padding: 20px;
    }

    .modal-icon {
        margin-bottom: 10px;
    }

    .modal-icon img {
        width: 60px;
        height: 60px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .modal-text {
        font-size: 18px;
    }

    .modal-content .close img {
        width: 20px;
        height: 20px;
    }
}