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

:root {
    --primary: #14532d;
    --secondary: #166534;
    --accent: #22c55e;
    --background: #f0fdf4;
    --surface: #ffffff;
    --text: #166534;
    --muted: #86efac;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--surface);
    box-shadow: 0 2px 8px rgba(20, 83, 45, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header__logo-img {
    height: 50px;
    width: auto;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__icon {
    color: var(--accent);
}

.nav__link:hover {
    color: var(--accent);
}

.nav__link--active {
    color: var(--accent);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--surface);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.button--primary {
    background-color: var(--accent);
    color: var(--primary);
}

.button--primary:hover {
    background-color: var(--primary);
    color: var(--surface);
}

.button--secondary {
    background-color: transparent;
    color: var(--surface);
    border-color: var(--surface);
}

.button--secondary:hover {
    background-color: var(--surface);
    color: var(--primary);
}

.button--small {
    padding: 8px 20px;
    font-size: 14px;
}

.button--large {
    padding: 18px 40px;
    font-size: 18px;
}

.button--full {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header__description {
    font-size: 18px;
    color: var(--text);
    opacity: 0.8;
}

.services {
    padding: 80px 0;
    background-color: var(--background);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--surface);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(20, 83, 45, 0.15);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background-color: var(--background);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card__icon svg {
    color: var(--accent);
}

.service-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.stats {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--surface);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card__number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 18px;
    opacity: 0.9;
}

.process {
    padding: 80px 0;
    background-color: var(--surface);
}

.process__grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.process-step--reverse {
    grid-template-columns: 80px 1fr 1fr;
}

.process-step--reverse .process-step__content {
    order: 2;
}

.process-step--reverse .process-step__image {
    order: 1;
}

.process-step__number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
}

.process-step__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.process-step__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.process-step__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.mistakes {
    padding: 80px 0;
    background-color: var(--background);
}

.mistakes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mistake-card {
    background-color: var(--surface);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.mistake-card__icon {
    width: 48px;
    height: 48px;
    background-color: #fee2e2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mistake-card__icon svg {
    color: #dc2626;
}

.mistake-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.mistake-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.contact-preview {
    padding: 80px 0;
    background-color: var(--surface);
}

.contact-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-preview-card {
    background-color: var(--background);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.contact-preview-card__icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-preview-card__icon svg {
    color: var(--primary);
}

.contact-preview-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-preview-card__info {
    font-size: 16px;
    color: var(--text);
}

.contact-preview-card__info a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-preview-card__info a:hover {
    color: var(--accent);
}

.contact-preview__cta {
    text-align: center;
}

.footer {
    background-color: var(--primary);
    color: var(--surface);
    padding-top: 80px;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: var(--surface);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer__contacts a {
    color: var(--surface);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__contacts a:hover {
    opacity: 1;
}

.footer__bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    box-shadow: 0 -4px 12px rgba(20, 83, 45, 0.15);
    padding: 24px;
    z-index: 1000;
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-consent__text {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.cookie-consent__text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent__buttons {
    display: flex;
    gap: 12px;
}

.page-hero {
    background-color: var(--primary);
    color: var(--surface);
    padding: 80px 0;
    text-align: center;
}

.page-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero__description {
    font-size: 20px;
    opacity: 0.9;
}

.why-us {
    padding: 80px 0;
    background-color: var(--background);
}

.why-us__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-us__intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.why-us__intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.why-us__intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.advantages {
    padding: 80px 0;
    background-color: var(--surface);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.advantage-card {
    padding: 32px;
    border: 2px solid var(--background);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.advantage-card:hover {
    border-color: var(--accent);
}

.advantage-card__icon {
    width: 64px;
    height: 64px;
    background-color: var(--background);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-card__icon svg {
    color: var(--accent);
}

.advantage-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.advantage-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.approach {
    padding: 80px 0;
    background-color: var(--background);
}

.approach__grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-item--reverse {
    direction: rtl;
}

.approach-item--reverse .approach-item__content {
    direction: ltr;
}

.approach-item__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.approach-item__description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}

.approach-item__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.values {
    padding: 80px 0;
    background-color: var(--surface);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 32px;
    background-color: var(--background);
    border-radius: 12px;
}

.value-card__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--surface);
}

.cta-section__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section__description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.solutions-intro {
    padding: 60px 0;
    background-color: var(--surface);
}

.solutions-intro__text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solutions-detailed {
    padding: 80px 0;
    background-color: var(--background);
}

.solution-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solution-detail--reverse {
    direction: rtl;
}

.solution-detail--reverse .solution-detail__content {
    direction: ltr;
}

.solution-detail__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.solution-detail__description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.solution-detail__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solution-detail__list li {
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--text);
}

.solution-detail__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.solution-detail__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.solutions-benefits {
    padding: 80px 0;
    background-color: var(--surface);
}

.solutions-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background-color: var(--background);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.benefit-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.contact-section {
    padding: 80px 0;
    background-color: var(--background);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info__description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 40px;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-item__icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__icon svg {
    color: var(--primary);
}

.contact-info-item__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-item__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.contact-info-item__text a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item__text a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--surface);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.08);
}

.contact-form-wrapper__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-form-wrapper__description {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 32px;
}

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

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

.form-group__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.form-group__input,
.form-group__textarea {
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--background);
    border-radius: 8px;
    background-color: var(--background);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group__input:focus,
.form-group__textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group__input.error,
.form-group__textarea.error {
    border-color: #dc2626;
}

.form-group__textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 80px 0;
    background-color: var(--surface);
}

.map-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.map-section__wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.1);
}

.map-section__iframe {
    display: block;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--surface);
}

.legal-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content__wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content__wrapper h2:first-child {
    margin-top: 0;
}

.legal-content__wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content__wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-content__wrapper ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content__wrapper ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-content__wrapper a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content__wrapper a:hover {
    color: var(--primary);
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--background);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content__icon {
    width: 120px;
    height: 120px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content__icon svg {
    color: var(--primary);
}

.thanks-content__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-content__description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}

.thanks-content__info {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 40px;
}

.thanks-content__info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.thanks-content__info a:hover {
    text-decoration: underline;
}

.thanks-content__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--surface);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(20, 83, 45, 0.1);
    }

    .nav__list.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 18px;
    }

    .section-header__title {
        font-size: 32px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

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

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step--reverse {
        grid-template-columns: 1fr;
    }

    .process-step--reverse .process-step__content {
        order: 1;
    }

    .process-step--reverse .process-step__image {
        order: 2;
    }

    .why-us__intro {
        grid-template-columns: 1fr;
    }

    .approach-item {
        grid-template-columns: 1fr;
    }

    .approach-item--reverse {
        direction: ltr;
    }

    .solution-detail {
        grid-template-columns: 1fr;
    }

    .solution-detail--reverse {
        direction: ltr;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

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

    .footer__main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .page-hero__title {
        font-size: 32px;
    }

    .section-header__title {
        font-size: 28px;
    }

    .stat-card__number {
        font-size: 40px;
    }

    .stats__grid {
        grid-template-columns: 1fr;
    }

    .cta-section__title {
        font-size: 28px;
    }

    .thanks-content__title {
        font-size: 28px;
    }
}